From 142098aad2946426971f04177d75e6a792374a1e Mon Sep 17 00:00:00 2001 From: Khai Truong Date: Thu, 25 Jul 2024 19:18:43 +0700 Subject: [PATCH 01/40] Able to edit dictionary alias on settings --- ext/css/settings.css | 3 +++ ext/data/schemas/options-schema.json | 5 ++++ ext/js/background/backend.js | 2 ++ ext/js/data/options-util.js | 15 +++++++++++ .../pages/settings/dictionary-controller.js | 27 ++++++++++++++++--- ext/templates-settings.html | 3 ++- test/data/translator-test-inputs.json | 1 + test/database.test.js | 4 +-- test/options-util.test.js | 2 ++ types/ext/settings.d.ts | 1 + types/ext/translation.d.ts | 4 +++ 11 files changed, 61 insertions(+), 6 deletions(-) diff --git a/ext/css/settings.css b/ext/css/settings.css index 651d805b8c..2faea64f87 100644 --- a/ext/css/settings.css +++ b/ext/css/settings.css @@ -2322,6 +2322,9 @@ button.hotkey-list-item-enabled-button[data-scope-count='0'] { .dictionary-item[data-enabled=false] .dictionary-title { color: var(--text-color-light2); } +input[type=text].dictionary-alias-hidden { + display: none; +} input[type=number].dictionary-priority { margin-top: 0; margin-right: 0.5em; diff --git a/ext/data/schemas/options-schema.json b/ext/data/schemas/options-schema.json index 7deec5ffd9..7112ee4d09 100644 --- a/ext/data/schemas/options-schema.json +++ b/ext/data/schemas/options-schema.json @@ -826,6 +826,7 @@ "type": "object", "required": [ "name", + "alias", "priority", "enabled", "allowSecondarySearches", @@ -838,6 +839,10 @@ "type": "string", "default": "" }, + "alias": { + "type": "string", + "default": "" + }, "priority": { "type": "number", "default": 0 diff --git a/ext/js/background/backend.js b/ext/js/background/backend.js index 96e8206bee..2117f3833c 100644 --- a/ext/js/background/backend.js +++ b/ext/js/background/backend.js @@ -2471,6 +2471,7 @@ export class Backend { if (mode === 'merge' && !enabledDictionaryMap.has(mainDictionary)) { enabledDictionaryMap.set(mainDictionary, { index: enabledDictionaryMap.size, + alias: mainDictionary, priority: 0, allowSecondarySearches: false, partsOfSpeechFilter: true, @@ -2518,6 +2519,7 @@ export class Backend { const {name, priority, allowSecondarySearches, partsOfSpeechFilter, useDeinflections} = dictionary; enabledDictionaryMap.set(name, { index: enabledDictionaryMap.size, + alias: name, priority, allowSecondarySearches, partsOfSpeechFilter, diff --git a/ext/js/data/options-util.js b/ext/js/data/options-util.js index 40fc20ddf3..1a3032dbdf 100644 --- a/ext/js/data/options-util.js +++ b/ext/js/data/options-util.js @@ -559,6 +559,7 @@ export class OptionsUtil { this._updateVersion45, this._updateVersion46, this._updateVersion47, + this._updateVersion48, ]; /* eslint-enable @typescript-eslint/unbound-method */ if (typeof targetVersion === 'number' && targetVersion < result.length) { @@ -1434,6 +1435,20 @@ export class OptionsUtil { } } + /** + * - Added scanning.scanWithoutMousemove + * @type {import('options-util').UpdateFunction} + */ + async _updateVersion48(options) { + for (const {options: profileOptions} of options.profiles) { + if (Array.isArray(profileOptions.dictionaries)) { + for (const dictionary of profileOptions.dictionaries) { + dictionary.alias = dictionary.name; + } + } + } + } + /** * @param {string} url * @returns {Promise} diff --git a/ext/js/pages/settings/dictionary-controller.js b/ext/js/pages/settings/dictionary-controller.js index 5099d1f42c..7225c89019 100644 --- a/ext/js/pages/settings/dictionary-controller.js +++ b/ext/js/pages/settings/dictionary-controller.js @@ -63,7 +63,9 @@ class DictionaryEntry { /** @type {HTMLButtonElement} */ this._updatesAvailable = querySelectorNotNull(fragment, '.dictionary-update-available'); /** @type {HTMLElement} */ - this._titleNode = querySelectorNotNull(fragment, '.dictionary-title'); + this._aliasNode = querySelectorNotNull(fragment, '.dictionary-alias'); + /** @type {HTMLInputElement} */ + this._aliasHiddenNode = querySelectorNotNull(fragment, '.dictionary-alias-hidden'); /** @type {HTMLElement} */ this._versionNode = querySelectorNotNull(fragment, '.dictionary-revision'); /** @type {HTMLElement} */ @@ -79,9 +81,12 @@ class DictionaryEntry { prepare() { // const index = this._index; - const {title, revision, version} = this._dictionaryInfo; + const {revision, version} = this._dictionaryInfo; + + this._aliasHiddenNode.dataset.setting = `dictionaries[${index}].alias`; + this._eventListeners.addEventListener(this._aliasNode, 'input', this._onAliasInput.bind(this), false); + this._eventListeners.addEventListener(this._aliasHiddenNode, 'settingChanged', this._onAliasInitialized.bind(this), false); - this._titleNode.textContent = title; this._versionNode.textContent = `rev.${revision}`; this._outdatedButton.hidden = (version >= 3); this._priorityInput.dataset.setting = `dictionaries[${index}].priority`; @@ -180,6 +185,21 @@ class DictionaryEntry { } } + /** */ + _onAliasInput() { + if (this._aliasNode.textContent === '') this._aliasNode.textContent = this.dictionaryTitle; + this._aliasHiddenNode.value = `${this._aliasNode.textContent}`; + this._aliasHiddenNode.dispatchEvent(new Event('change')); + } + + /** + * @param {import('dom-data-binder').SettingChangedEvent} e + */ + _onAliasInitialized(e) { + const {detail: {value}} = e; + this._aliasNode.textContent = value === '' ? this.dictionaryTitle : `${value}`; + } + /** * @param {import('dom-data-binder').SettingChangedEvent} e */ @@ -600,6 +620,7 @@ export class DictionaryController { static createDefaultDictionarySettings(name, enabled, styles) { return { name, + alias: name, priority: 0, enabled, allowSecondarySearches: false, diff --git a/ext/templates-settings.html b/ext/templates-settings.html index 4ae665107c..5c931cff34 100644 --- a/ext/templates-settings.html +++ b/ext/templates-settings.html @@ -52,8 +52,9 @@
- + + diff --git a/test/data/translator-test-inputs.json b/test/data/translator-test-inputs.json index ed0282731f..77e6536464 100644 --- a/test/data/translator-test-inputs.json +++ b/test/data/translator-test-inputs.json @@ -30,6 +30,7 @@ "${title}", { "index": 0, + "alias": "${title}", "priority": 0, "allowSecondarySearches": false, "partsOfSpeechFilter": true, diff --git a/test/database.test.js b/test/database.test.js index 143462bb69..74b5526021 100644 --- a/test/database.test.js +++ b/test/database.test.js @@ -114,7 +114,7 @@ describe('Database', () => { const title = testDictionaryIndex.title; const titles = new Map([ - [title, {priority: 0, allowSecondarySearches: false}], + [title, {alias: title, priority: 0, allowSecondarySearches: false}], ]); // Setup database @@ -184,7 +184,7 @@ describe('Database', () => { const title = testDictionaryIndex.title; const titles = new Map([ - [title, {priority: 0, allowSecondarySearches: false}], + [title, {alias: title, priority: 0, allowSecondarySearches: false}], ]); // Setup database diff --git a/test/options-util.test.js b/test/options-util.test.js index 9ccfabbafd..a0b0f3b4d4 100644 --- a/test/options-util.test.js +++ b/test/options-util.test.js @@ -107,6 +107,7 @@ function createProfileOptionsTestData1() { }, dictionaries: { 'Test Dictionary': { + alias: 'Test Dictionary', priority: 0, enabled: true, allowSecondarySearches: false, @@ -438,6 +439,7 @@ function createProfileOptionsUpdatedTestData1() { dictionaries: [ { name: 'Test Dictionary', + alias: 'Test Dictionary', priority: 0, enabled: true, allowSecondarySearches: false, diff --git a/types/ext/settings.d.ts b/types/ext/settings.d.ts index bd40d73673..3a6b7bcb70 100644 --- a/types/ext/settings.d.ts +++ b/types/ext/settings.d.ts @@ -263,6 +263,7 @@ export type DictionariesOptions = DictionaryOptions[]; export type DictionaryOptions = { name: string; + alias: string; priority: number; enabled: boolean; allowSecondarySearches: boolean; diff --git a/types/ext/translation.d.ts b/types/ext/translation.d.ts index 2e4d1a660d..8bc6ade5cd 100644 --- a/types/ext/translation.d.ts +++ b/types/ext/translation.d.ts @@ -140,6 +140,10 @@ export type FindTermDictionary = { * The index of the dictionary */ index: number; + /** + * The alias of the dictionary + */ + alias: string; /** * The priority of the dictionary */ From 5c05a9db9ae59da1dc690e8863afa2f30c1adcb5 Mon Sep 17 00:00:00 2001 From: Khai Truong Date: Thu, 25 Jul 2024 19:51:05 +0700 Subject: [PATCH 02/40] Fix lint --- ext/js/data/options-util.js | 2 +- ext/js/pages/settings/dictionary-controller.js | 4 +++- test/options-util.test.js | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/ext/js/data/options-util.js b/ext/js/data/options-util.js index 1a3032dbdf..ace29805dd 100644 --- a/ext/js/data/options-util.js +++ b/ext/js/data/options-util.js @@ -1436,7 +1436,7 @@ export class OptionsUtil { } /** - * - Added scanning.scanWithoutMousemove + * - Added dictionary alias * @type {import('options-util').UpdateFunction} */ async _updateVersion48(options) { diff --git a/ext/js/pages/settings/dictionary-controller.js b/ext/js/pages/settings/dictionary-controller.js index 7225c89019..25eba3693a 100644 --- a/ext/js/pages/settings/dictionary-controller.js +++ b/ext/js/pages/settings/dictionary-controller.js @@ -187,7 +187,9 @@ class DictionaryEntry { /** */ _onAliasInput() { - if (this._aliasNode.textContent === '') this._aliasNode.textContent = this.dictionaryTitle; + if (this._aliasNode.textContent === '') { + this._aliasNode.textContent = this.dictionaryTitle; + } this._aliasHiddenNode.value = `${this._aliasNode.textContent}`; this._aliasHiddenNode.dispatchEvent(new Event('change')); } diff --git a/test/options-util.test.js b/test/options-util.test.js index a0b0f3b4d4..dee7c83d14 100644 --- a/test/options-util.test.js +++ b/test/options-util.test.js @@ -639,7 +639,7 @@ function createOptionsUpdatedTestData1() { }, ], profileCurrent: 0, - version: 47, + version: 48, global: { database: { prefixWildcardsSupported: false, From d5153c6065ecd41c359e65c3160f7c787ee2d863 Mon Sep 17 00:00:00 2001 From: Khai Truong Date: Thu, 25 Jul 2024 20:46:58 +0700 Subject: [PATCH 03/40] Persist alias --- ext/js/background/backend.js | 4 +-- ext/js/language/translator.js | 54 ++++++++++++++++++++++------- types/ext/dictionary-data-util.d.ts | 1 + types/ext/dictionary.d.ts | 20 +++++++++++ types/ext/translation.d.ts | 4 +++ 5 files changed, 68 insertions(+), 15 deletions(-) diff --git a/ext/js/background/backend.js b/ext/js/background/backend.js index 2117f3833c..338eeb3d7d 100644 --- a/ext/js/background/backend.js +++ b/ext/js/background/backend.js @@ -2516,10 +2516,10 @@ export class Backend { const enabledDictionaryMap = new Map(); for (const dictionary of options.dictionaries) { if (!dictionary.enabled) { continue; } - const {name, priority, allowSecondarySearches, partsOfSpeechFilter, useDeinflections} = dictionary; + const {name, alias, priority, allowSecondarySearches, partsOfSpeechFilter, useDeinflections} = dictionary; enabledDictionaryMap.set(name, { index: enabledDictionaryMap.size, - alias: name, + alias, priority, allowSecondarySearches, partsOfSpeechFilter, diff --git a/ext/js/language/translator.js b/ext/js/language/translator.js index ef9c3b541b..f11e12bde0 100644 --- a/ext/js/language/translator.js +++ b/ext/js/language/translator.js @@ -1197,6 +1197,7 @@ export class Translator { const metas = await this._database.findTermMetaBulk(headwordMapKeys, enabledDictionaryMap); for (const {mode, data, dictionary, index} of metas) { const {index: dictionaryIndex, priority: dictionaryPriority} = this._getDictionaryOrder(dictionary, enabledDictionaryMap); + const dictionaryAlias = this._getDictionaryAlias(dictionary, enabledDictionaryMap); const map2 = headwordReadingMaps[index]; for (const [reading, targets] of map2.entries()) { switch (mode) { @@ -1212,6 +1213,7 @@ export class Translator { headwordIndex, dictionary, dictionaryIndex, + dictionaryAlias, dictionaryPriority, hasReading, frequencyValue, @@ -1248,6 +1250,7 @@ export class Translator { headwordIndex, dictionary, dictionaryIndex, + dictionaryAlias, dictionaryPriority, pitches, )); @@ -1277,6 +1280,7 @@ export class Translator { headwordIndex, dictionary, dictionaryIndex, + dictionaryAlias, dictionaryPriority, phoneticTranscriptions, )); @@ -1300,6 +1304,7 @@ export class Translator { const metas = await this._database.findKanjiMetaBulk(kanjiList, enabledDictionaryMap); for (const {character, mode, data, dictionary, index} of metas) { const {index: dictionaryIndex, priority: dictionaryPriority} = this._getDictionaryOrder(dictionary, enabledDictionaryMap); + const dictionaryAlias = this._getDictionaryAlias(dictionary, enabledDictionaryMap); switch (mode) { case 'freq': { @@ -1309,6 +1314,7 @@ export class Translator { frequencies.length, dictionary, dictionaryIndex, + dictionaryAlias, dictionaryPriority, character, frequency, @@ -1447,6 +1453,17 @@ export class Translator { return {index, priority}; } + /** + * @param {string} dictionary + * @param {import('translation').TermEnabledDictionaryMap|import('translation').KanjiEnabledDictionaryMap} enabledDictionaryMap + * @returns {string} + */ + _getDictionaryAlias(dictionary, enabledDictionaryMap) { + const info = enabledDictionaryMap.get(dictionary); + console.log(enabledDictionaryMap) + return typeof info !== 'undefined' ? info.alias : dictionary; + } + /** * @param {unknown[]} array * @returns {string} @@ -1489,6 +1506,7 @@ export class Translator { * @param {number} index * @param {string} dictionary * @param {number} dictionaryIndex + * @param {string} dictionaryAlias * @param {number} dictionaryPriority * @param {string} character * @param {number} frequency @@ -1496,8 +1514,8 @@ export class Translator { * @param {boolean} displayValueParsed * @returns {import('dictionary').KanjiFrequency} */ - _createKanjiFrequency(index, dictionary, dictionaryIndex, dictionaryPriority, character, frequency, displayValue, displayValueParsed) { - return {index, dictionary, dictionaryIndex, dictionaryPriority, character, frequency, displayValue, displayValueParsed}; + _createKanjiFrequency(index, dictionary, dictionaryIndex, dictionaryAlias, dictionaryPriority, character, frequency, displayValue, displayValueParsed) { + return {index, dictionary, dictionaryIndex, dictionaryAlias, dictionaryPriority, character, frequency, displayValue, displayValueParsed}; } /** @@ -1578,6 +1596,7 @@ export class Translator { * @param {number[]} headwordIndices * @param {string} dictionary * @param {number} dictionaryIndex + * @param {string} dictionaryAlias * @param {number} dictionaryPriority * @param {number} id * @param {number} score @@ -1587,12 +1606,13 @@ export class Translator { * @param {import('dictionary-data').TermGlossaryContent[]} entries * @returns {import('dictionary').TermDefinition} */ - _createTermDefinition(index, headwordIndices, dictionary, dictionaryIndex, dictionaryPriority, id, score, sequences, isPrimary, tags, entries) { + _createTermDefinition(index, headwordIndices, dictionary, dictionaryIndex, dictionaryAlias, dictionaryPriority, id, score, sequences, isPrimary, tags, entries) { return { index, headwordIndices, dictionary, dictionaryIndex, + dictionaryAlias, dictionaryPriority, id, score, @@ -1609,12 +1629,13 @@ export class Translator { * @param {number} headwordIndex * @param {string} dictionary * @param {number} dictionaryIndex + * @param {string} dictionaryAlias * @param {number} dictionaryPriority * @param {import('dictionary').Pronunciation[]} pronunciations * @returns {import('dictionary').TermPronunciation} */ - _createTermPronunciation(index, headwordIndex, dictionary, dictionaryIndex, dictionaryPriority, pronunciations) { - return {index, headwordIndex, dictionary, dictionaryIndex, dictionaryPriority, pronunciations}; + _createTermPronunciation(index, headwordIndex, dictionary, dictionaryIndex, dictionaryAlias, dictionaryPriority, pronunciations) { + return {index, headwordIndex, dictionary, dictionaryIndex, dictionaryAlias, dictionaryPriority, pronunciations}; } /** @@ -1622,6 +1643,7 @@ export class Translator { * @param {number} headwordIndex * @param {string} dictionary * @param {number} dictionaryIndex + * @param {string} dictionaryAlias * @param {number} dictionaryPriority * @param {boolean} hasReading * @param {number} frequency @@ -1629,8 +1651,8 @@ export class Translator { * @param {boolean} displayValueParsed * @returns {import('dictionary').TermFrequency} */ - _createTermFrequency(index, headwordIndex, dictionary, dictionaryIndex, dictionaryPriority, hasReading, frequency, displayValue, displayValueParsed) { - return {index, headwordIndex, dictionary, dictionaryIndex, dictionaryPriority, hasReading, frequency, displayValue, displayValueParsed}; + _createTermFrequency(index, headwordIndex, dictionary, dictionaryIndex, dictionaryAlias, dictionaryPriority, hasReading, frequency, displayValue, displayValueParsed) { + return {index, headwordIndex, dictionary, dictionaryIndex, dictionaryAlias, dictionaryPriority, hasReading, frequency, displayValue, displayValueParsed}; } /** @@ -1639,6 +1661,7 @@ export class Translator { * @param {import('translation-internal').InflectionRuleChainCandidate[]} inflectionRuleChainCandidates * @param {number} score * @param {number} dictionaryIndex + * @param {string} dictionaryAlias * @param {number} dictionaryPriority * @param {number} sourceTermExactMatchCount * @param {number} maxOriginalTextLength @@ -1646,7 +1669,7 @@ export class Translator { * @param {import('dictionary').TermDefinition[]} definitions * @returns {import('translation-internal').TermDictionaryEntry} */ - _createTermDictionaryEntry(isPrimary, textProcessorRuleChainCandidates, inflectionRuleChainCandidates, score, dictionaryIndex, dictionaryPriority, sourceTermExactMatchCount, maxOriginalTextLength, headwords, definitions) { + _createTermDictionaryEntry(isPrimary, textProcessorRuleChainCandidates, inflectionRuleChainCandidates, score, dictionaryIndex, dictionaryAlias, dictionaryPriority, sourceTermExactMatchCount, maxOriginalTextLength, headwords, definitions) { return { type: 'term', isPrimary, @@ -1655,6 +1678,7 @@ export class Translator { score, frequencyOrder: 0, dictionaryIndex, + dictionaryAlias, dictionaryPriority, sourceTermExactMatchCount, maxOriginalTextLength, @@ -1696,6 +1720,7 @@ export class Translator { const contentDefinitions = /** @type {import('dictionary-data').TermGlossaryContent[]} */ (definitions); const reading = (rawReading.length > 0 ? rawReading : term); const {index: dictionaryIndex, priority: dictionaryPriority} = this._getDictionaryOrder(dictionary, enabledDictionaryMap); + const dictionaryAlias = this._getDictionaryAlias(dictionary, enabledDictionaryMap); const sourceTermExactMatchCount = (isPrimary && deinflectedText === term ? 1 : 0); const source = this._createSource(originalText, transformedText, deinflectedText, matchType, matchSource, isPrimary); const maxOriginalTextLength = originalText.length; @@ -1715,11 +1740,12 @@ export class Translator { inflectionRuleChainCandidates, score, dictionaryIndex, + dictionaryAlias, dictionaryPriority, sourceTermExactMatchCount, maxOriginalTextLength, [this._createTermHeadword(0, term, reading, [source], headwordTagGroups, rules)], - [this._createTermDefinition(0, [0], dictionary, dictionaryIndex, dictionaryPriority, id, score, [sequence], isPrimary, definitionTagGroups, contentDefinitions)], + [this._createTermDefinition(0, [0], dictionary, dictionaryIndex, dictionaryAlias, dictionaryPriority, id, score, [sequence], isPrimary, definitionTagGroups, contentDefinitions)], ); } @@ -1749,6 +1775,7 @@ export class Translator { let score = Number.MIN_SAFE_INTEGER; let dictionaryIndex = Number.MAX_SAFE_INTEGER; let dictionaryPriority = Number.MIN_SAFE_INTEGER; + const dictionaryAlias = dictionaryEntries[0]?.dictionaryAlias; let maxOriginalTextLength = 0; let isPrimary = false; /** @type {import('dictionary').TermDefinition[]} */ @@ -1804,6 +1831,7 @@ export class Translator { inflections !== null ? inflections : [], score, dictionaryIndex, + dictionaryAlias, dictionaryPriority, sourceTermExactMatchCount, maxOriginalTextLength, @@ -1919,12 +1947,12 @@ export class Translator { * @param {number[]} headwordIndexMap */ _addTermDefinitionsFast(definitions, newDefinitions, headwordIndexMap) { - for (const {headwordIndices, dictionary, dictionaryIndex, dictionaryPriority, sequences, id, score, isPrimary, tags, entries} of newDefinitions) { + for (const {headwordIndices, dictionary, dictionaryIndex, dictionaryAlias, dictionaryPriority, sequences, id, score, isPrimary, tags, entries} of newDefinitions) { const headwordIndicesNew = []; for (const headwordIndex of headwordIndices) { headwordIndicesNew.push(headwordIndexMap[headwordIndex]); } - definitions.push(this._createTermDefinition(definitions.length, headwordIndicesNew, dictionary, dictionaryIndex, dictionaryPriority, id, score, sequences, isPrimary, tags, entries)); + definitions.push(this._createTermDefinition(definitions.length, headwordIndicesNew, dictionary, dictionaryIndex, dictionaryAlias, dictionaryPriority, id, score, sequences, isPrimary, tags, entries)); } } @@ -1936,11 +1964,11 @@ export class Translator { * @param {TranslatorTagAggregator} tagAggregator */ _addTermDefinitions(definitions, definitionsMap, newDefinitions, headwordIndexMap, tagAggregator) { - for (const {headwordIndices, dictionary, dictionaryIndex, dictionaryPriority, sequences, id, score, isPrimary, tags, entries} of newDefinitions) { + for (const {headwordIndices, dictionary, dictionaryIndex, dictionaryAlias, dictionaryPriority, sequences, id, score, isPrimary, tags, entries} of newDefinitions) { const key = this._createMapKey([dictionary, ...entries]); let definition = definitionsMap.get(key); if (typeof definition === 'undefined') { - definition = this._createTermDefinition(definitions.length, [], dictionary, dictionaryIndex, dictionaryPriority, id, score, [...sequences], isPrimary, [], [...entries]); + definition = this._createTermDefinition(definitions.length, [], dictionary, dictionaryIndex, dictionaryAlias, dictionaryPriority, id, score, [...sequences], isPrimary, [], [...entries]); definitions.push(definition); definitionsMap.set(key, definition); } else { diff --git a/types/ext/dictionary-data-util.d.ts b/types/ext/dictionary-data-util.d.ts index ddf31e4e28..e27807efe9 100644 --- a/types/ext/dictionary-data-util.d.ts +++ b/types/ext/dictionary-data-util.d.ts @@ -47,6 +47,7 @@ export type TermFrequenciesMap3 = Map; export type DictionaryFrequency = { dictionary: string; + dictionaryAlias: string; frequencies: T[]; }; diff --git a/types/ext/dictionary.d.ts b/types/ext/dictionary.d.ts index 34a22cc215..6cb41cd809 100644 --- a/types/ext/dictionary.d.ts +++ b/types/ext/dictionary.d.ts @@ -170,6 +170,10 @@ export type KanjiFrequency = { * The index of the dictionary in the original list of dictionaries used for the lookup. */ dictionaryIndex: number; + /** + * The alias of the dictionary + */ + dictionaryAlias: string; /** * The priority of the dictionary. */ @@ -227,6 +231,10 @@ export type TermDictionaryEntry = { * The index of the dictionary in the original list of dictionaries used for the lookup. */ dictionaryIndex: number; + /** + * The alias of the dictionary + */ + dictionaryAlias: string; /** * The priority of the dictionary. */ @@ -323,6 +331,10 @@ export type TermDefinition = { * The index of the dictionary in the original list of dictionaries used for the lookup. */ dictionaryIndex: number; + /** + * The alias of the dictionary + */ + dictionaryAlias: string; /** * The priority of the dictionary. */ @@ -380,6 +392,10 @@ export type TermPronunciation = { * The index of the dictionary in the original list of dictionaries used for the lookup. */ dictionaryIndex: number; + /** + * The alias of the dictionary + */ + dictionaryAlias: string; /** * The priority of the dictionary. */ @@ -458,6 +474,10 @@ export type TermFrequency = { * The index of the dictionary in the original list of dictionaries used for the lookup. */ dictionaryIndex: number; + /** + * The alias of the dictionary + */ + dictionaryAlias: string; /** * The priority of the dictionary. */ diff --git a/types/ext/translation.d.ts b/types/ext/translation.d.ts index 8bc6ade5cd..61f9987888 100644 --- a/types/ext/translation.d.ts +++ b/types/ext/translation.d.ts @@ -44,6 +44,10 @@ export type FindKanjiDictionary = { * The index of the dictionary */ index: number; + /** + * The alias of the dictionary + */ + alias: string; /** * The priority of the dictionary */ From fe2257b9d1a8fefb0893f9a7faa10b88f343bff1 Mon Sep 17 00:00:00 2001 From: Khai Truong Date: Thu, 25 Jul 2024 21:07:30 +0700 Subject: [PATCH 04/40] Alias for tag --- ext/js/display/display-generator.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ext/js/display/display-generator.js b/ext/js/display/display-generator.js index be87761b27..e065c2eb85 100644 --- a/ext/js/display/display-generator.js +++ b/ext/js/display/display-generator.js @@ -141,7 +141,8 @@ export class DisplayGenerator { } else { dictionaryTag.redundant = false; dictionaryTag.dictionaries.push(dictionary); - dictionaryTag.name = dictionary; + dictionaryTag.name = dictionaryEntry.dictionaryAlias; + dictionaryTag.content = [dictionary]; } const node2 = this._createTermDefinition(definition, dictionaryTag, headwords, uniqueTerms, uniqueReadings); From 008d5d4589f9018b65771185f09cb3c951b3201a Mon Sep 17 00:00:00 2001 From: Khai Truong Date: Thu, 25 Jul 2024 21:25:55 +0700 Subject: [PATCH 05/40] Fix lint --- ext/js/language/translator.js | 3 +-- types/ext/translation.d.ts | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/ext/js/language/translator.js b/ext/js/language/translator.js index f11e12bde0..663a55d0fd 100644 --- a/ext/js/language/translator.js +++ b/ext/js/language/translator.js @@ -1458,9 +1458,8 @@ export class Translator { * @param {import('translation').TermEnabledDictionaryMap|import('translation').KanjiEnabledDictionaryMap} enabledDictionaryMap * @returns {string} */ - _getDictionaryAlias(dictionary, enabledDictionaryMap) { + _getDictionaryAlias(dictionary, enabledDictionaryMap) { const info = enabledDictionaryMap.get(dictionary); - console.log(enabledDictionaryMap) return typeof info !== 'undefined' ? info.alias : dictionary; } diff --git a/types/ext/translation.d.ts b/types/ext/translation.d.ts index 61f9987888..4d60507ce3 100644 --- a/types/ext/translation.d.ts +++ b/types/ext/translation.d.ts @@ -46,7 +46,7 @@ export type FindKanjiDictionary = { index: number; /** * The alias of the dictionary - */ + */ alias: string; /** * The priority of the dictionary From 19a9dc9a2fbd007fb863eb71f1715cb5345f0af8 Mon Sep 17 00:00:00 2001 From: Khai Truong Date: Thu, 25 Jul 2024 21:53:00 +0700 Subject: [PATCH 06/40] update test --- test/data/translator-test-inputs.json | 3 +- test/data/translator-test-results.json | 809 +++++++++++++++++++++++++ 2 files changed, 811 insertions(+), 1 deletion(-) diff --git a/test/data/translator-test-inputs.json b/test/data/translator-test-inputs.json index 77e6536464..72bf33ed8c 100644 --- a/test/data/translator-test-inputs.json +++ b/test/data/translator-test-inputs.json @@ -7,6 +7,7 @@ "${title}", { "index": 0, + "alias": "", "priority": 0 } ] @@ -30,7 +31,7 @@ "${title}", { "index": 0, - "alias": "${title}", + "alias": "", "priority": 0, "allowSecondarySearches": false, "partsOfSpeechFilter": true, diff --git a/test/data/translator-test-results.json b/test/data/translator-test-results.json index 68a74bb8f4..798b60560f 100644 --- a/test/data/translator-test-results.json +++ b/test/data/translator-test-results.json @@ -110,6 +110,7 @@ "index": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "character": "打", "frequency": 1, @@ -120,6 +121,7 @@ "index": 1, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "character": "打", "frequency": 0, @@ -130,6 +132,7 @@ "index": 2, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "character": "打", "frequency": 5, @@ -250,6 +253,7 @@ "index": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "character": "込", "frequency": 2, @@ -260,6 +264,7 @@ "index": 1, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "character": "込", "frequency": 4, @@ -270,6 +275,7 @@ "index": 2, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "character": "込", "frequency": 6, @@ -303,6 +309,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 1, @@ -349,6 +356,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 1, "score": 1, @@ -385,6 +393,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 1, @@ -396,6 +405,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 0, @@ -407,6 +417,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 5, @@ -418,6 +429,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 8, @@ -429,6 +441,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -440,6 +453,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 20, @@ -451,6 +465,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 26, @@ -474,6 +489,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 1, @@ -520,6 +536,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 2, "score": 1, @@ -569,6 +586,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 1, @@ -580,6 +598,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 0, @@ -591,6 +610,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 5, @@ -602,6 +622,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 9, @@ -613,6 +634,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -624,6 +646,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 21, @@ -635,6 +658,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 27, @@ -664,6 +688,7 @@ "score": 10, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 2, @@ -723,6 +748,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 3, "score": 10, @@ -759,6 +785,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 2, @@ -770,6 +797,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 6, @@ -781,6 +809,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 10, @@ -792,6 +821,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -803,6 +833,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 22, @@ -814,6 +845,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 28, @@ -837,6 +869,7 @@ "score": 10, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 2, @@ -896,6 +929,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 5, "score": 10, @@ -932,6 +966,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 2, @@ -943,6 +978,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 6, @@ -954,6 +990,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 11, @@ -965,6 +1002,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -976,6 +1014,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 23, @@ -987,6 +1026,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 29, @@ -1010,6 +1050,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 2, @@ -1069,6 +1110,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 4, "score": 1, @@ -1105,6 +1147,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 2, @@ -1116,6 +1159,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 6, @@ -1127,6 +1171,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 10, @@ -1138,6 +1183,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -1149,6 +1195,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 22, @@ -1160,6 +1207,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 28, @@ -1183,6 +1231,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 2, @@ -1242,6 +1291,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 6, "score": 1, @@ -1278,6 +1328,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 2, @@ -1289,6 +1340,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 6, @@ -1300,6 +1352,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 11, @@ -1311,6 +1364,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -1322,6 +1376,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 23, @@ -1333,6 +1388,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 29, @@ -1356,6 +1412,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 1, @@ -1402,6 +1459,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 1, "score": 1, @@ -1438,6 +1496,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 1, @@ -1449,6 +1508,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 0, @@ -1460,6 +1520,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 5, @@ -1471,6 +1532,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 8, @@ -1482,6 +1544,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -1493,6 +1556,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 20, @@ -1504,6 +1568,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 26, @@ -1527,6 +1592,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 1, @@ -1573,6 +1639,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 2, "score": 1, @@ -1622,6 +1689,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 1, @@ -1633,6 +1701,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 0, @@ -1644,6 +1713,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 5, @@ -1655,6 +1725,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 9, @@ -1666,6 +1737,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -1677,6 +1749,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 21, @@ -1688,6 +1761,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 27, @@ -1717,6 +1791,7 @@ "score": 10, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 4, @@ -1776,6 +1851,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 7, "score": 10, @@ -1811,6 +1887,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "pronunciations": [ { @@ -1836,6 +1913,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 3, @@ -1847,6 +1925,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 7, @@ -1858,6 +1937,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 12, @@ -1869,6 +1949,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -1880,6 +1961,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 24, @@ -1891,6 +1973,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 30, @@ -1914,6 +1997,7 @@ "score": 10, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 4, @@ -1973,6 +2057,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 9, "score": 10, @@ -2008,6 +2093,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "pronunciations": [ { @@ -2033,6 +2119,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 3, @@ -2044,6 +2131,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 7, @@ -2055,6 +2143,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 13, @@ -2066,6 +2155,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -2077,6 +2167,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 25, @@ -2088,6 +2179,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 31, @@ -2111,6 +2203,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 4, @@ -2170,6 +2263,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 8, "score": 1, @@ -2205,6 +2299,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "pronunciations": [ { @@ -2230,6 +2325,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 3, @@ -2241,6 +2337,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 7, @@ -2252,6 +2349,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 12, @@ -2263,6 +2361,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -2274,6 +2373,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 24, @@ -2285,6 +2385,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 30, @@ -2308,6 +2409,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 4, @@ -2367,6 +2469,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 10, "score": 1, @@ -2402,6 +2505,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "pronunciations": [ { @@ -2427,6 +2531,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 3, @@ -2438,6 +2543,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 7, @@ -2449,6 +2555,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 13, @@ -2460,6 +2567,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -2471,6 +2579,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 25, @@ -2482,6 +2591,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 31, @@ -2510,6 +2620,7 @@ "score": 10, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 2, @@ -2569,6 +2680,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 3, "score": 10, @@ -2605,6 +2717,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 2, @@ -2616,6 +2729,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 6, @@ -2627,6 +2741,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 10, @@ -2638,6 +2753,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -2649,6 +2765,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 22, @@ -2660,6 +2777,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 28, @@ -2688,6 +2806,7 @@ "score": 10, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 2, @@ -2747,6 +2866,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 5, "score": 10, @@ -2783,6 +2903,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 2, @@ -2794,6 +2915,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 6, @@ -2805,6 +2927,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 11, @@ -2816,6 +2939,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -2827,6 +2951,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 23, @@ -2838,6 +2963,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 29, @@ -2866,6 +2992,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 2, @@ -2925,6 +3052,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 4, "score": 1, @@ -2961,6 +3089,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 2, @@ -2972,6 +3101,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 6, @@ -2983,6 +3113,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 10, @@ -2994,6 +3125,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -3005,6 +3137,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 22, @@ -3016,6 +3149,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 28, @@ -3044,6 +3178,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 2, @@ -3103,6 +3238,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 6, "score": 1, @@ -3139,6 +3275,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 2, @@ -3150,6 +3287,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 6, @@ -3161,6 +3299,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 11, @@ -3172,6 +3311,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -3183,6 +3323,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 23, @@ -3194,6 +3335,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 29, @@ -3217,6 +3359,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 1, @@ -3263,6 +3406,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 1, "score": 1, @@ -3299,6 +3443,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 1, @@ -3310,6 +3455,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 0, @@ -3321,6 +3467,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 5, @@ -3332,6 +3479,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 8, @@ -3343,6 +3491,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -3354,6 +3503,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 20, @@ -3365,6 +3515,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 26, @@ -3388,6 +3539,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 1, @@ -3434,6 +3586,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 2, "score": 1, @@ -3483,6 +3636,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 1, @@ -3494,6 +3648,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 0, @@ -3505,6 +3660,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 5, @@ -3516,6 +3672,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 9, @@ -3527,6 +3684,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -3538,6 +3696,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 21, @@ -3549,6 +3708,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 27, @@ -3578,6 +3738,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 2, @@ -3637,6 +3798,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 11, "score": 1, @@ -3699,6 +3861,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 0, "maxOriginalTextLength": 1, @@ -3745,6 +3908,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 1, "score": 1, @@ -3781,6 +3945,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 1, @@ -3792,6 +3957,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 0, @@ -3803,6 +3969,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 5, @@ -3814,6 +3981,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 8, @@ -3825,6 +3993,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -3836,6 +4005,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 20, @@ -3847,6 +4017,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 26, @@ -3876,6 +4047,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 0, "maxOriginalTextLength": 3, @@ -3922,6 +4094,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 2, "score": 1, @@ -3971,6 +4144,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 1, @@ -3982,6 +4156,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 0, @@ -3993,6 +4168,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 5, @@ -4004,6 +4180,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 9, @@ -4015,6 +4192,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -4026,6 +4204,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 21, @@ -4037,6 +4216,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 27, @@ -4062,6 +4242,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 0, "maxOriginalTextLength": 1, @@ -4108,6 +4289,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 1, "score": 1, @@ -4144,6 +4326,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 1, @@ -4155,6 +4338,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 0, @@ -4166,6 +4350,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 5, @@ -4177,6 +4362,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 8, @@ -4188,6 +4374,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -4199,6 +4386,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 20, @@ -4210,6 +4398,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 26, @@ -4239,6 +4428,7 @@ "score": 10, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 0, "maxOriginalTextLength": 2, @@ -4298,6 +4488,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 3, "score": 10, @@ -4334,6 +4525,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 2, @@ -4345,6 +4537,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 6, @@ -4356,6 +4549,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 10, @@ -4367,6 +4561,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -4378,6 +4573,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 22, @@ -4389,6 +4585,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 28, @@ -4412,6 +4609,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 0, "maxOriginalTextLength": 2, @@ -4471,6 +4669,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 4, "score": 1, @@ -4507,6 +4706,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 2, @@ -4518,6 +4718,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 6, @@ -4529,6 +4730,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 10, @@ -4540,6 +4742,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -4551,6 +4754,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 22, @@ -4562,6 +4766,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 28, @@ -4591,6 +4796,7 @@ "score": 10, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 0, "maxOriginalTextLength": 2, @@ -4650,6 +4856,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 5, "score": 10, @@ -4686,6 +4893,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 2, @@ -4697,6 +4905,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 6, @@ -4708,6 +4917,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 11, @@ -4719,6 +4929,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -4730,6 +4941,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 23, @@ -4741,6 +4953,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 29, @@ -4764,6 +4977,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 0, "maxOriginalTextLength": 2, @@ -4823,6 +5037,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 6, "score": 1, @@ -4859,6 +5074,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 2, @@ -4870,6 +5086,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 6, @@ -4881,6 +5098,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 11, @@ -4892,6 +5110,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -4903,6 +5122,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 23, @@ -4914,6 +5134,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 29, @@ -4943,6 +5164,7 @@ "score": 10, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 0, "maxOriginalTextLength": 4, @@ -5002,6 +5224,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 7, "score": 10, @@ -5037,6 +5260,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "pronunciations": [ { @@ -5062,6 +5286,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 3, @@ -5073,6 +5298,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 7, @@ -5084,6 +5310,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 12, @@ -5095,6 +5322,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -5106,6 +5334,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 24, @@ -5117,6 +5346,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 30, @@ -5140,6 +5370,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 0, "maxOriginalTextLength": 4, @@ -5199,6 +5430,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 8, "score": 1, @@ -5234,6 +5466,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "pronunciations": [ { @@ -5259,6 +5492,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 3, @@ -5270,6 +5504,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 7, @@ -5281,6 +5516,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 12, @@ -5292,6 +5528,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -5303,6 +5540,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 24, @@ -5314,6 +5552,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 30, @@ -5342,6 +5581,7 @@ "score": 10, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 0, "maxOriginalTextLength": 2, @@ -5401,6 +5641,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 3, "score": 10, @@ -5437,6 +5678,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 2, @@ -5448,6 +5690,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 6, @@ -5459,6 +5702,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 10, @@ -5470,6 +5714,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -5481,6 +5726,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 22, @@ -5492,6 +5738,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 28, @@ -5520,6 +5767,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 0, "maxOriginalTextLength": 2, @@ -5579,6 +5827,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 4, "score": 1, @@ -5615,6 +5864,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 2, @@ -5626,6 +5876,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 6, @@ -5637,6 +5888,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 10, @@ -5648,6 +5900,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -5659,6 +5912,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 22, @@ -5670,6 +5924,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 28, @@ -5699,6 +5954,7 @@ "score": 10, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 0, "maxOriginalTextLength": 4, @@ -5758,6 +6014,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 9, "score": 10, @@ -5793,6 +6050,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "pronunciations": [ { @@ -5818,6 +6076,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 3, @@ -5829,6 +6088,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 7, @@ -5840,6 +6100,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 13, @@ -5851,6 +6112,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -5862,6 +6124,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 25, @@ -5873,6 +6136,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 31, @@ -5896,6 +6160,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 0, "maxOriginalTextLength": 4, @@ -5955,6 +6220,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 10, "score": 1, @@ -5990,6 +6256,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "pronunciations": [ { @@ -6015,6 +6282,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 3, @@ -6026,6 +6294,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 7, @@ -6037,6 +6306,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 13, @@ -6048,6 +6318,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -6059,6 +6330,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 25, @@ -6070,6 +6342,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 31, @@ -6098,6 +6371,7 @@ "score": 10, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 0, "maxOriginalTextLength": 2, @@ -6157,6 +6431,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 5, "score": 10, @@ -6193,6 +6468,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 2, @@ -6204,6 +6480,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 6, @@ -6215,6 +6492,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 11, @@ -6226,6 +6504,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -6237,6 +6516,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 23, @@ -6248,6 +6528,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 29, @@ -6276,6 +6557,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 0, "maxOriginalTextLength": 2, @@ -6335,6 +6617,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 6, "score": 1, @@ -6371,6 +6654,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 2, @@ -6382,6 +6666,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 6, @@ -6393,6 +6678,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 11, @@ -6404,6 +6690,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -6415,6 +6702,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 23, @@ -6426,6 +6714,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 29, @@ -6455,6 +6744,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 0, "maxOriginalTextLength": 3, @@ -6514,6 +6804,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 11, "score": 1, @@ -6586,6 +6877,7 @@ "score": 10, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 4, @@ -6618,6 +6910,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 7, "score": 10, @@ -6651,6 +6944,7 @@ "score": 10, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 4, @@ -6683,6 +6977,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 9, "score": 10, @@ -6716,6 +7011,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 4, @@ -6748,6 +7044,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 8, "score": 1, @@ -6781,6 +7078,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 4, @@ -6813,6 +7111,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 10, "score": 1, @@ -6851,6 +7150,7 @@ "score": 10, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 2, @@ -6883,6 +7183,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 3, "score": 10, @@ -6921,6 +7222,7 @@ "score": 10, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 2, @@ -6953,6 +7255,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 5, "score": 10, @@ -6991,6 +7294,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 2, @@ -7023,6 +7327,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 4, "score": 1, @@ -7061,6 +7366,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 2, @@ -7093,6 +7399,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 6, "score": 1, @@ -7126,6 +7433,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 1, @@ -7158,6 +7466,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 1, "score": 1, @@ -7191,6 +7500,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 1, @@ -7223,6 +7533,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 2, "score": 1, @@ -7262,6 +7573,7 @@ "score": 10, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 4, @@ -7334,6 +7646,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 7, "score": 10, @@ -7369,6 +7682,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 8, "score": 1, @@ -7404,6 +7718,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "pronunciations": [ { @@ -7429,6 +7744,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 3, @@ -7440,6 +7756,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 7, @@ -7451,6 +7768,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 12, @@ -7462,6 +7780,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -7473,6 +7792,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 24, @@ -7484,6 +7804,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 30, @@ -7507,6 +7828,7 @@ "score": 10, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 4, @@ -7579,6 +7901,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 9, "score": 10, @@ -7614,6 +7937,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 10, "score": 1, @@ -7649,6 +7973,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "pronunciations": [ { @@ -7674,6 +7999,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 3, @@ -7685,6 +8011,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 7, @@ -7696,6 +8023,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 13, @@ -7707,6 +8035,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -7718,6 +8047,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 25, @@ -7729,6 +8059,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 31, @@ -7757,6 +8088,7 @@ "score": 10, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 2, @@ -7829,6 +8161,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 3, "score": 10, @@ -7864,6 +8197,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 4, "score": 1, @@ -7900,6 +8234,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 2, @@ -7911,6 +8246,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 6, @@ -7922,6 +8258,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 10, @@ -7933,6 +8270,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -7944,6 +8282,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 22, @@ -7955,6 +8294,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 28, @@ -7983,6 +8323,7 @@ "score": 10, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 2, @@ -8055,6 +8396,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 5, "score": 10, @@ -8090,6 +8432,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 6, "score": 1, @@ -8126,6 +8469,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 2, @@ -8137,6 +8481,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 6, @@ -8148,6 +8493,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 11, @@ -8159,6 +8505,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -8170,6 +8517,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 23, @@ -8181,6 +8529,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 29, @@ -8204,6 +8553,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 1, @@ -8250,6 +8600,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 1, "score": 1, @@ -8286,6 +8637,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 1, @@ -8297,6 +8649,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 0, @@ -8308,6 +8661,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 5, @@ -8319,6 +8673,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 8, @@ -8330,6 +8685,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -8341,6 +8697,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 20, @@ -8352,6 +8709,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 26, @@ -8375,6 +8733,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 1, @@ -8421,6 +8780,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 2, "score": 1, @@ -8470,6 +8830,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 1, @@ -8481,6 +8842,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 0, @@ -8492,6 +8854,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 5, @@ -8503,6 +8866,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 9, @@ -8514,6 +8878,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -8525,6 +8890,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 21, @@ -8536,6 +8902,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 27, @@ -8565,6 +8932,7 @@ "score": 10, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 2, "maxOriginalTextLength": 4, @@ -8696,6 +9064,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 7, "score": 10, @@ -8731,6 +9100,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 9, "score": 10, @@ -8766,6 +9136,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 8, "score": 1, @@ -8801,6 +9172,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 10, "score": 1, @@ -8836,6 +9208,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "pronunciations": [ { @@ -8859,6 +9232,7 @@ "headwordIndex": 1, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "pronunciations": [ { @@ -8884,6 +9258,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 3, @@ -8895,6 +9270,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 7, @@ -8906,6 +9282,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 12, @@ -8917,6 +9294,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -8928,6 +9306,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 24, @@ -8939,6 +9318,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 30, @@ -8950,6 +9330,7 @@ "headwordIndex": 1, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 3, @@ -8961,6 +9342,7 @@ "headwordIndex": 1, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 7, @@ -8972,6 +9354,7 @@ "headwordIndex": 1, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 13, @@ -8983,6 +9366,7 @@ "headwordIndex": 1, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -8994,6 +9378,7 @@ "headwordIndex": 1, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 25, @@ -9005,6 +9390,7 @@ "headwordIndex": 1, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 31, @@ -9033,6 +9419,7 @@ "score": 10, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 2, "maxOriginalTextLength": 2, @@ -9164,6 +9551,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 3, "score": 10, @@ -9199,6 +9587,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 5, "score": 10, @@ -9234,6 +9623,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 4, "score": 1, @@ -9269,6 +9659,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 6, "score": 1, @@ -9305,6 +9696,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 2, @@ -9316,6 +9708,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 6, @@ -9327,6 +9720,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 10, @@ -9338,6 +9732,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -9349,6 +9744,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 22, @@ -9360,6 +9756,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 28, @@ -9371,6 +9768,7 @@ "headwordIndex": 1, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 2, @@ -9382,6 +9780,7 @@ "headwordIndex": 1, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 6, @@ -9393,6 +9792,7 @@ "headwordIndex": 1, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 11, @@ -9404,6 +9804,7 @@ "headwordIndex": 1, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -9415,6 +9816,7 @@ "headwordIndex": 1, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 23, @@ -9426,6 +9828,7 @@ "headwordIndex": 1, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 29, @@ -9449,6 +9852,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 1, @@ -9495,6 +9899,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 1, "score": 1, @@ -9531,6 +9936,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 1, @@ -9542,6 +9948,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 0, @@ -9553,6 +9960,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 5, @@ -9564,6 +9972,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 8, @@ -9575,6 +9984,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -9586,6 +9996,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 20, @@ -9597,6 +10008,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 26, @@ -9620,6 +10032,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 1, @@ -9666,6 +10079,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 2, "score": 1, @@ -9715,6 +10129,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 1, @@ -9726,6 +10141,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 0, @@ -9737,6 +10153,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 5, @@ -9748,6 +10165,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 9, @@ -9759,6 +10177,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -9770,6 +10189,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 21, @@ -9781,6 +10201,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 27, @@ -9831,6 +10252,7 @@ "score": 10, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 12, @@ -9890,6 +10312,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 7, "score": 10, @@ -9925,6 +10348,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "pronunciations": [ { @@ -9950,6 +10374,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 3, @@ -9961,6 +10386,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 7, @@ -9972,6 +10398,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 12, @@ -9983,6 +10410,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -9994,6 +10422,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 24, @@ -10005,6 +10434,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 30, @@ -10049,6 +10479,7 @@ "score": 10, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 12, @@ -10108,6 +10539,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 9, "score": 10, @@ -10143,6 +10575,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "pronunciations": [ { @@ -10168,6 +10601,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 3, @@ -10179,6 +10613,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 7, @@ -10190,6 +10625,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 13, @@ -10201,6 +10637,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -10212,6 +10649,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 25, @@ -10223,6 +10661,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 31, @@ -10267,6 +10706,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 12, @@ -10326,6 +10766,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 8, "score": 1, @@ -10361,6 +10802,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "pronunciations": [ { @@ -10386,6 +10828,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 3, @@ -10397,6 +10840,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 7, @@ -10408,6 +10852,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 12, @@ -10419,6 +10864,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -10430,6 +10876,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 24, @@ -10441,6 +10888,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 30, @@ -10485,6 +10933,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 12, @@ -10544,6 +10993,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 10, "score": 1, @@ -10579,6 +11029,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "pronunciations": [ { @@ -10604,6 +11055,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 3, @@ -10615,6 +11067,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 7, @@ -10626,6 +11079,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 13, @@ -10637,6 +11091,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -10648,6 +11103,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 25, @@ -10659,6 +11115,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 31, @@ -10687,6 +11144,7 @@ "score": 10, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 2, @@ -10746,6 +11204,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 3, "score": 10, @@ -10782,6 +11241,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 2, @@ -10793,6 +11253,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 6, @@ -10804,6 +11265,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 10, @@ -10815,6 +11277,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -10826,6 +11289,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 22, @@ -10837,6 +11301,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 28, @@ -10865,6 +11330,7 @@ "score": 10, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 2, @@ -10924,6 +11390,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 5, "score": 10, @@ -10960,6 +11427,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 2, @@ -10971,6 +11439,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 6, @@ -10982,6 +11451,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 11, @@ -10993,6 +11463,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -11004,6 +11475,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 23, @@ -11015,6 +11487,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 29, @@ -11043,6 +11516,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 2, @@ -11102,6 +11576,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 4, "score": 1, @@ -11138,6 +11613,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 2, @@ -11149,6 +11625,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 6, @@ -11160,6 +11637,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 10, @@ -11171,6 +11649,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -11182,6 +11661,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 22, @@ -11193,6 +11673,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 28, @@ -11221,6 +11702,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 2, @@ -11280,6 +11762,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 6, "score": 1, @@ -11316,6 +11799,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 2, @@ -11327,6 +11811,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 6, @@ -11338,6 +11823,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 11, @@ -11349,6 +11835,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -11360,6 +11847,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 23, @@ -11371,6 +11859,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 29, @@ -11394,6 +11883,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 1, @@ -11440,6 +11930,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 1, "score": 1, @@ -11476,6 +11967,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 1, @@ -11487,6 +11979,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 0, @@ -11498,6 +11991,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 5, @@ -11509,6 +12003,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 8, @@ -11520,6 +12015,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -11531,6 +12027,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 20, @@ -11542,6 +12039,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 26, @@ -11565,6 +12063,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 1, @@ -11611,6 +12110,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 2, "score": 1, @@ -11660,6 +12160,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 1, @@ -11671,6 +12172,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 0, @@ -11682,6 +12184,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 5, @@ -11693,6 +12196,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 9, @@ -11704,6 +12208,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -11715,6 +12220,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 21, @@ -11726,6 +12232,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 27, @@ -11757,6 +12264,7 @@ "score": 10, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 10, @@ -11816,6 +12324,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 7, "score": 10, @@ -11851,6 +12360,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "pronunciations": [ { @@ -11876,6 +12386,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 3, @@ -11887,6 +12398,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 7, @@ -11898,6 +12410,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 12, @@ -11909,6 +12422,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -11920,6 +12434,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 24, @@ -11931,6 +12446,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 30, @@ -11956,6 +12472,7 @@ "score": 10, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 10, @@ -12015,6 +12532,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 9, "score": 10, @@ -12050,6 +12568,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "pronunciations": [ { @@ -12075,6 +12594,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 3, @@ -12086,6 +12606,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 7, @@ -12097,6 +12618,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 13, @@ -12108,6 +12630,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -12119,6 +12642,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 25, @@ -12130,6 +12654,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 31, @@ -12155,6 +12680,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 10, @@ -12214,6 +12740,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 8, "score": 1, @@ -12249,6 +12776,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "pronunciations": [ { @@ -12274,6 +12802,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 3, @@ -12285,6 +12814,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 7, @@ -12296,6 +12826,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 12, @@ -12307,6 +12838,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -12318,6 +12850,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 24, @@ -12329,6 +12862,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 30, @@ -12354,6 +12888,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 10, @@ -12413,6 +12948,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 10, "score": 1, @@ -12448,6 +12984,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "pronunciations": [ { @@ -12473,6 +13010,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 3, @@ -12484,6 +13022,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 7, @@ -12495,6 +13034,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 13, @@ -12506,6 +13046,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -12517,6 +13058,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 25, @@ -12528,6 +13070,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 31, @@ -12558,6 +13101,7 @@ "score": 10, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 5, @@ -12617,6 +13161,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 3, "score": 10, @@ -12653,6 +13198,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 2, @@ -12664,6 +13210,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 6, @@ -12675,6 +13222,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 10, @@ -12686,6 +13234,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -12697,6 +13246,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 22, @@ -12708,6 +13258,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 28, @@ -12738,6 +13289,7 @@ "score": 10, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 5, @@ -12797,6 +13349,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 5, "score": 10, @@ -12833,6 +13386,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 2, @@ -12844,6 +13398,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 6, @@ -12855,6 +13410,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 11, @@ -12866,6 +13422,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -12877,6 +13434,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 23, @@ -12888,6 +13446,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 29, @@ -12918,6 +13477,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 5, @@ -12977,6 +13537,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 4, "score": 1, @@ -13013,6 +13574,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 2, @@ -13024,6 +13586,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 6, @@ -13035,6 +13598,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 10, @@ -13046,6 +13610,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -13057,6 +13622,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 22, @@ -13068,6 +13634,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 28, @@ -13098,6 +13665,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 5, @@ -13157,6 +13725,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 6, "score": 1, @@ -13193,6 +13762,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 2, @@ -13204,6 +13774,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 6, @@ -13215,6 +13786,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 11, @@ -13226,6 +13798,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -13237,6 +13810,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 23, @@ -13248,6 +13822,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 29, @@ -13273,6 +13848,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 4, @@ -13319,6 +13895,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 1, "score": 1, @@ -13355,6 +13932,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 1, @@ -13366,6 +13944,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 0, @@ -13377,6 +13956,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 5, @@ -13388,6 +13968,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 8, @@ -13399,6 +13980,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -13410,6 +13992,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 20, @@ -13421,6 +14004,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 26, @@ -13446,6 +14030,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 4, @@ -13492,6 +14077,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 2, "score": 1, @@ -13541,6 +14127,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 1, @@ -13552,6 +14139,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 0, @@ -13563,6 +14151,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 5, @@ -13574,6 +14163,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 9, @@ -13585,6 +14175,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -13596,6 +14187,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 21, @@ -13607,6 +14199,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 27, @@ -13638,6 +14231,7 @@ "score": 10, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 12, @@ -13697,6 +14291,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 7, "score": 10, @@ -13732,6 +14327,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "pronunciations": [ { @@ -13757,6 +14353,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 3, @@ -13768,6 +14365,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 7, @@ -13779,6 +14377,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 12, @@ -13790,6 +14389,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -13801,6 +14401,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 24, @@ -13812,6 +14413,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 30, @@ -13837,6 +14439,7 @@ "score": 10, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 12, @@ -13896,6 +14499,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 9, "score": 10, @@ -13931,6 +14535,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "pronunciations": [ { @@ -13956,6 +14561,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 3, @@ -13967,6 +14573,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 7, @@ -13978,6 +14585,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 13, @@ -13989,6 +14597,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -14000,6 +14609,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 25, @@ -14011,6 +14621,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 31, @@ -14036,6 +14647,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 12, @@ -14095,6 +14707,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 8, "score": 1, @@ -14130,6 +14743,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "pronunciations": [ { @@ -14155,6 +14769,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 3, @@ -14166,6 +14781,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 7, @@ -14177,6 +14793,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 12, @@ -14188,6 +14805,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -14199,6 +14817,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 24, @@ -14210,6 +14829,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 30, @@ -14235,6 +14855,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 12, @@ -14294,6 +14915,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 10, "score": 1, @@ -14329,6 +14951,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "pronunciations": [ { @@ -14354,6 +14977,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 3, @@ -14365,6 +14989,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 7, @@ -14376,6 +15001,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 13, @@ -14387,6 +15013,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -14398,6 +15025,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 25, @@ -14409,6 +15037,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 31, @@ -14439,6 +15068,7 @@ "score": 10, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 6, @@ -14498,6 +15128,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 3, "score": 10, @@ -14534,6 +15165,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 2, @@ -14545,6 +15177,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 6, @@ -14556,6 +15189,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 10, @@ -14567,6 +15201,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -14578,6 +15213,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 22, @@ -14589,6 +15225,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 28, @@ -14619,6 +15256,7 @@ "score": 10, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 6, @@ -14678,6 +15316,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 5, "score": 10, @@ -14714,6 +15353,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 2, @@ -14725,6 +15365,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 6, @@ -14736,6 +15377,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 11, @@ -14747,6 +15389,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -14758,6 +15401,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 23, @@ -14769,6 +15413,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 29, @@ -14799,6 +15444,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 6, @@ -14858,6 +15504,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 4, "score": 1, @@ -14894,6 +15541,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 2, @@ -14905,6 +15553,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 6, @@ -14916,6 +15565,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 10, @@ -14927,6 +15577,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -14938,6 +15589,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 22, @@ -14949,6 +15601,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 28, @@ -14979,6 +15632,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 6, @@ -15038,6 +15692,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 6, "score": 1, @@ -15074,6 +15729,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 2, @@ -15085,6 +15741,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 6, @@ -15096,6 +15753,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 11, @@ -15107,6 +15765,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -15118,6 +15777,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 23, @@ -15129,6 +15789,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 29, @@ -15154,6 +15815,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 3, @@ -15200,6 +15862,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 1, "score": 1, @@ -15236,6 +15899,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 1, @@ -15247,6 +15911,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 0, @@ -15258,6 +15923,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 5, @@ -15269,6 +15935,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 8, @@ -15280,6 +15947,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -15291,6 +15959,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 20, @@ -15302,6 +15971,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 26, @@ -15327,6 +15997,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 3, @@ -15373,6 +16044,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 2, "score": 1, @@ -15422,6 +16094,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 1, @@ -15433,6 +16106,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 0, @@ -15444,6 +16118,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 5, @@ -15455,6 +16130,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 9, @@ -15466,6 +16142,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -15477,6 +16154,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 21, @@ -15488,6 +16166,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 27, @@ -15524,6 +16203,7 @@ "score": 100, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 0, "maxOriginalTextLength": 4, @@ -15583,6 +16263,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 12, "score": 100, @@ -15637,6 +16318,7 @@ "score": 90, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 0, "maxOriginalTextLength": 5, @@ -15696,6 +16378,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 13, "score": 90, @@ -15759,6 +16442,7 @@ "score": 100, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 0, "maxOriginalTextLength": 7, @@ -15818,6 +16502,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 12, "score": 100, @@ -15870,6 +16555,7 @@ "score": 10, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 0, "maxOriginalTextLength": 4, @@ -16001,6 +16687,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 7, "score": 10, @@ -16036,6 +16723,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 9, "score": 10, @@ -16071,6 +16759,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 8, "score": 1, @@ -16106,6 +16795,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 10, "score": 1, @@ -16141,6 +16831,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "pronunciations": [ { @@ -16164,6 +16855,7 @@ "headwordIndex": 1, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "pronunciations": [ { @@ -16189,6 +16881,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 3, @@ -16200,6 +16893,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 7, @@ -16211,6 +16905,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 12, @@ -16222,6 +16917,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -16233,6 +16929,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 24, @@ -16244,6 +16941,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 30, @@ -16255,6 +16953,7 @@ "headwordIndex": 1, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 3, @@ -16266,6 +16965,7 @@ "headwordIndex": 1, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 7, @@ -16277,6 +16977,7 @@ "headwordIndex": 1, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 13, @@ -16288,6 +16989,7 @@ "headwordIndex": 1, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -16299,6 +17001,7 @@ "headwordIndex": 1, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 25, @@ -16310,6 +17013,7 @@ "headwordIndex": 1, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 31, @@ -16338,6 +17042,7 @@ "score": 10, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 0, "maxOriginalTextLength": 2, @@ -16469,6 +17174,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 3, "score": 10, @@ -16504,6 +17210,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 5, "score": 10, @@ -16539,6 +17246,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 4, "score": 1, @@ -16574,6 +17282,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 6, "score": 1, @@ -16610,6 +17319,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 2, @@ -16621,6 +17331,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 6, @@ -16632,6 +17343,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 10, @@ -16643,6 +17355,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -16654,6 +17367,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 22, @@ -16665,6 +17379,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 28, @@ -16676,6 +17391,7 @@ "headwordIndex": 1, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 2, @@ -16687,6 +17403,7 @@ "headwordIndex": 1, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 6, @@ -16698,6 +17415,7 @@ "headwordIndex": 1, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 11, @@ -16709,6 +17427,7 @@ "headwordIndex": 1, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -16720,6 +17439,7 @@ "headwordIndex": 1, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 23, @@ -16731,6 +17451,7 @@ "headwordIndex": 1, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 29, @@ -16760,6 +17481,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 3, @@ -16792,6 +17514,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 15, "score": 1, @@ -16826,6 +17549,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "pronunciations": [ { @@ -16917,6 +17641,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 2, @@ -16949,6 +17674,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 16, "score": 1, @@ -16983,6 +17709,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "pronunciations": [ { @@ -17020,6 +17747,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 2, @@ -17052,6 +17780,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 17, "score": 1, @@ -17086,6 +17815,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "pronunciations": [ { @@ -17123,6 +17853,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 2, @@ -17155,6 +17886,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 18, "score": 1, @@ -17189,6 +17921,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "pronunciations": [ { @@ -17226,6 +17959,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 4, @@ -17258,6 +17992,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 19, "score": 1, @@ -17292,6 +18027,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "pronunciations": [ { @@ -17329,6 +18065,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 2, @@ -17359,6 +18096,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 20, "score": 1, @@ -17404,6 +18142,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "pronunciations": [ { @@ -17449,6 +18188,7 @@ "score": 35, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 2, @@ -17508,6 +18248,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 22, "score": 35, @@ -17594,6 +18335,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 5, @@ -17626,6 +18368,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 23, "score": 1, @@ -17678,6 +18421,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 2, @@ -17708,6 +18452,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 25, "score": 1, @@ -17748,6 +18493,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 7, @@ -17780,6 +18526,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 27, "score": 1, @@ -17834,6 +18581,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 3, @@ -17866,6 +18614,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 29, "score": 1, @@ -17920,6 +18669,7 @@ "score": 10, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 0, "maxOriginalTextLength": 4, @@ -17979,6 +18729,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 3, "score": 10, @@ -18015,6 +18766,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 2, @@ -18026,6 +18778,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 6, @@ -18037,6 +18790,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 10, @@ -18048,6 +18802,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -18059,6 +18814,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 22, @@ -18070,6 +18826,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 28, @@ -18095,6 +18852,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 0, "maxOriginalTextLength": 4, @@ -18154,6 +18912,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 4, "score": 1, @@ -18190,6 +18949,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 2, @@ -18201,6 +18961,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 6, @@ -18212,6 +18973,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 10, @@ -18223,6 +18985,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -18234,6 +18997,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 22, @@ -18245,6 +19009,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 28, @@ -18276,6 +19041,7 @@ "score": 10, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 0, "maxOriginalTextLength": 2, @@ -18335,6 +19101,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 3, "score": 10, @@ -18371,6 +19138,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 2, @@ -18382,6 +19150,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 6, @@ -18393,6 +19162,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 10, @@ -18404,6 +19174,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -18415,6 +19186,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 22, @@ -18426,6 +19198,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 28, @@ -18451,6 +19224,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 0, "maxOriginalTextLength": 2, @@ -18510,6 +19284,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 4, "score": 1, @@ -18546,6 +19321,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 2, @@ -18557,6 +19333,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 6, @@ -18568,6 +19345,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 10, @@ -18579,6 +19357,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -18590,6 +19369,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 22, @@ -18601,6 +19381,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 28, @@ -18632,6 +19413,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 4, @@ -18691,6 +19473,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 14, "score": 1, @@ -18747,6 +19530,7 @@ "score": 10, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 0, "maxOriginalTextLength": 2, @@ -18806,6 +19590,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 3, "score": 10, @@ -18842,6 +19627,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 2, @@ -18853,6 +19639,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 6, @@ -18864,6 +19651,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 10, @@ -18875,6 +19663,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -18886,6 +19675,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 22, @@ -18897,6 +19687,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 28, @@ -18923,6 +19714,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 0, "maxOriginalTextLength": 2, @@ -18982,6 +19774,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 4, "score": 1, @@ -19018,6 +19811,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 2, @@ -19029,6 +19823,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": false, "frequency": 6, @@ -19040,6 +19835,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 10, @@ -19051,6 +19847,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -19062,6 +19859,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 22, @@ -19073,6 +19871,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "hasReading": true, "frequency": 28, @@ -19121,6 +19920,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 0, "maxOriginalTextLength": 7, @@ -19153,6 +19953,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 26, "score": 1, @@ -19205,6 +20006,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 7, @@ -19237,6 +20039,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 27, "score": 1, @@ -19291,6 +20094,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 8, @@ -19323,6 +20127,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 28, "score": 1, @@ -19382,6 +20187,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 4, @@ -19414,6 +20220,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 30, "score": 1, @@ -19466,6 +20273,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 7, @@ -19498,6 +20306,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, + "dictionaryAlias": "", "dictionaryPriority": 0, "id": 27, "score": 1, From f13dfac8157d403414a95b2d31731afdf9008751 Mon Sep 17 00:00:00 2001 From: Khai Truong Date: Thu, 25 Jul 2024 22:40:07 +0700 Subject: [PATCH 07/40] draft --- ext/js/display/display-generator.js | 4 +++- ext/js/language/translator.js | 10 ++++++---- types/ext/dictionary.d.ts | 4 ++++ 3 files changed, 13 insertions(+), 5 deletions(-) diff --git a/ext/js/display/display-generator.js b/ext/js/display/display-generator.js index e065c2eb85..9ab39e0237 100644 --- a/ext/js/display/display-generator.js +++ b/ext/js/display/display-generator.js @@ -176,7 +176,9 @@ export class DisplayGenerator { if (this._language === 'ja') { glyphContainer.style.fontFamily = 'kanji-stroke-orders, sans-serif'; } const groupedFrequencies = groupKanjiFrequencies(dictionaryEntry.frequencies); - const dictionaryTag = this._createDictionaryTag(dictionaryEntry.dictionary); + const dictionaryTag = this._createDictionaryTag(''); + dictionaryTag.name = dictionaryEntry.dictionaryAlias; + dictionaryTag.content = [dictionaryEntry.dictionary]; this._appendMultiple(frequencyGroupListContainer, this._createFrequencyGroup.bind(this), groupedFrequencies, true); this._appendMultiple(tagContainer, this._createTag.bind(this), [...dictionaryEntry.tags, dictionaryTag]); diff --git a/ext/js/language/translator.js b/ext/js/language/translator.js index 663a55d0fd..6a8f27889b 100644 --- a/ext/js/language/translator.js +++ b/ext/js/language/translator.js @@ -154,7 +154,7 @@ export class Translator { const tagAggregator = new TranslatorTagAggregator(); for (const {character, onyomi, kunyomi, tags, definitions, stats, dictionary} of databaseEntries) { const expandedStats = await this._expandKanjiStats(stats, dictionary); - const dictionaryEntry = this._createKanjiDictionaryEntry(character, dictionary, onyomi, kunyomi, expandedStats, definitions); + const dictionaryEntry = this._createKanjiDictionaryEntry(character, dictionary, "blank", onyomi, kunyomi, expandedStats, definitions); dictionaryEntries.push(dictionaryEntry); tagAggregator.addTags(dictionaryEntry.tags, dictionary, tags); } @@ -1457,7 +1457,7 @@ export class Translator { * @param {string} dictionary * @param {import('translation').TermEnabledDictionaryMap|import('translation').KanjiEnabledDictionaryMap} enabledDictionaryMap * @returns {string} - */ + */ _getDictionaryAlias(dictionary, enabledDictionaryMap) { const info = enabledDictionaryMap.get(dictionary); return typeof info !== 'undefined' ? info.alias : dictionary; @@ -1520,17 +1520,19 @@ export class Translator { /** * @param {string} character * @param {string} dictionary + * @param {string} dictionaryAlias * @param {string[]} onyomi * @param {string[]} kunyomi * @param {import('dictionary').KanjiStatGroups} stats * @param {string[]} definitions * @returns {import('dictionary').KanjiDictionaryEntry} */ - _createKanjiDictionaryEntry(character, dictionary, onyomi, kunyomi, stats, definitions) { + _createKanjiDictionaryEntry(character, dictionary, dictionaryAlias, onyomi, kunyomi, stats, definitions) { return { type: 'kanji', character, dictionary, + dictionaryAlias, onyomi, kunyomi, tags: [], @@ -1774,7 +1776,7 @@ export class Translator { let score = Number.MIN_SAFE_INTEGER; let dictionaryIndex = Number.MAX_SAFE_INTEGER; let dictionaryPriority = Number.MIN_SAFE_INTEGER; - const dictionaryAlias = dictionaryEntries[0]?.dictionaryAlias; + const dictionaryAlias = dictionaryEntries[0]?.dictionaryAlias; // wrong let maxOriginalTextLength = 0; let isPrimary = false; /** @type {import('dictionary').TermDefinition[]} */ diff --git a/types/ext/dictionary.d.ts b/types/ext/dictionary.d.ts index 6cb41cd809..ac9b7940ca 100644 --- a/types/ext/dictionary.d.ts +++ b/types/ext/dictionary.d.ts @@ -82,6 +82,10 @@ export type KanjiDictionaryEntry = { * The name of the dictionary that the information originated from. */ dictionary: string; + /** + * The alias of the dictionary + */ + dictionaryAlias: string; /** * Onyomi readings for the kanji character. */ From 4fb1c10b82ab08c0fb165284de07eaf668c7a6a8 Mon Sep 17 00:00:00 2001 From: Khai Truong Date: Fri, 26 Jul 2024 12:37:15 +0700 Subject: [PATCH 08/40] handle dom data binder for contenteditable --- ext/css/settings.css | 3 --- ext/js/dom/dom-data-binder.js | 14 +++++++++-- .../pages/settings/dictionary-controller.js | 24 +------------------ ext/templates-settings.html | 3 +-- types/ext/dom-data-binder.d.ts | 2 +- 5 files changed, 15 insertions(+), 31 deletions(-) diff --git a/ext/css/settings.css b/ext/css/settings.css index 2faea64f87..651d805b8c 100644 --- a/ext/css/settings.css +++ b/ext/css/settings.css @@ -2322,9 +2322,6 @@ button.hotkey-list-item-enabled-button[data-scope-count='0'] { .dictionary-item[data-enabled=false] .dictionary-title { color: var(--text-color-light2); } -input[type=text].dictionary-alias-hidden { - display: none; -} input[type=number].dictionary-priority { margin-top: 0; margin-right: 0.5em; diff --git a/ext/js/dom/dom-data-binder.js b/ext/js/dom/dom-data-binder.js index 586e586911..811982a342 100644 --- a/ext/js/dom/dom-data-binder.js +++ b/ext/js/dom/dom-data-binder.js @@ -174,10 +174,11 @@ export class DOMDataBinder { _createObserver(element) { const metadata = this._createElementMetadata(element); if (typeof metadata === 'undefined') { return void 0; } + const type = this._getNormalizedElementType(element); /** @type {import('dom-data-binder').ElementObserver} */ const observer = { element, - type: this._getNormalizedElementType(element), + type, value: null, hasValue: false, onChange: null, @@ -185,7 +186,8 @@ export class DOMDataBinder { }; observer.onChange = this._onElementChange.bind(this, observer); - element.addEventListener('change', observer.onChange, false); + const eventType = type === 'contenteditable' ? 'focusout' : 'change'; + element.addEventListener(eventType, observer.onChange, false); void this._updateTasks.enqueue(observer, {all: false}); @@ -239,6 +241,9 @@ export class DOMDataBinder { case 'select': /** @type {HTMLInputElement|HTMLTextAreaElement|HTMLSelectElement} */ (element).value = typeof value === 'string' ? value : `${value}`; break; + case 'contenteditable': + element.textContent = typeof value === 'string' ? value : `${value}`; + break; } /** @type {number|string|boolean} */ @@ -274,6 +279,8 @@ export class DOMDataBinder { return /** @type {HTMLTextAreaElement} */ (element).value; case 'select': return /** @type {HTMLSelectElement} */ (element).value; + case 'contenteditable': + return element.textContent; } return null; } @@ -283,6 +290,9 @@ export class DOMDataBinder { * @returns {import('dom-data-binder').NormalizedElementType} */ _getNormalizedElementType(element) { + if (element instanceof HTMLElement && element.isContentEditable) { + return 'contenteditable'; + } switch (element.nodeName.toUpperCase()) { case 'INPUT': { diff --git a/ext/js/pages/settings/dictionary-controller.js b/ext/js/pages/settings/dictionary-controller.js index 5382932cb1..04f25ade81 100644 --- a/ext/js/pages/settings/dictionary-controller.js +++ b/ext/js/pages/settings/dictionary-controller.js @@ -64,8 +64,6 @@ class DictionaryEntry { this._updatesAvailable = querySelectorNotNull(fragment, '.dictionary-update-available'); /** @type {HTMLElement} */ this._aliasNode = querySelectorNotNull(fragment, '.dictionary-alias'); - /** @type {HTMLInputElement} */ - this._aliasHiddenNode = querySelectorNotNull(fragment, '.dictionary-alias-hidden'); /** @type {HTMLElement} */ this._versionNode = querySelectorNotNull(fragment, '.dictionary-revision'); /** @type {HTMLElement} */ @@ -83,10 +81,7 @@ class DictionaryEntry { const index = this._index; const {revision, version} = this._dictionaryInfo; - this._aliasHiddenNode.dataset.setting = `dictionaries[${index}].alias`; - this._eventListeners.addEventListener(this._aliasNode, 'input', this._onAliasInput.bind(this), false); - this._eventListeners.addEventListener(this._aliasHiddenNode, 'settingChanged', this._onAliasInitialized.bind(this), false); - + this._aliasNode.dataset.setting = `dictionaries[${index}].alias`; this._versionNode.textContent = `rev.${revision}`; this._outdatedButton.hidden = (version >= 3); this._priorityInput.dataset.setting = `dictionaries[${index}].priority`; @@ -185,23 +180,6 @@ class DictionaryEntry { } } - /** */ - _onAliasInput() { - if (this._aliasNode.textContent === '') { - this._aliasNode.textContent = this.dictionaryTitle; - } - this._aliasHiddenNode.value = `${this._aliasNode.textContent}`; - this._aliasHiddenNode.dispatchEvent(new Event('change')); - } - - /** - * @param {import('dom-data-binder').SettingChangedEvent} e - */ - _onAliasInitialized(e) { - const {detail: {value}} = e; - this._aliasNode.textContent = value === '' ? this.dictionaryTitle : `${value}`; - } - /** * @param {import('dom-data-binder').SettingChangedEvent} e */ diff --git a/ext/templates-settings.html b/ext/templates-settings.html index 186a57c343..e909641393 100644 --- a/ext/templates-settings.html +++ b/ext/templates-settings.html @@ -52,9 +52,8 @@
- + - diff --git a/types/ext/dom-data-binder.d.ts b/types/ext/dom-data-binder.d.ts index 3f12a455a9..a58351ff02 100644 --- a/types/ext/dom-data-binder.d.ts +++ b/types/ext/dom-data-binder.d.ts @@ -53,7 +53,7 @@ export type SettingChangedEventData = { export type SettingChangedEvent = CustomEvent; -export type NormalizedElementType = 'textarea' | 'select' | 'text' | 'checkbox' | 'number' | null; +export type NormalizedElementType = 'textarea' | 'select' | 'text' | 'checkbox' | 'number' | 'contenteditable' | null; export type UpdateTaskValue = {all: boolean}; From 4391ed7690aaec40c83eae766b9dd2c9c5ca0e33 Mon Sep 17 00:00:00 2001 From: Khai Truong Date: Fri, 26 Jul 2024 15:04:06 +0700 Subject: [PATCH 09/40] kanji dict alias --- ext/js/language/translator.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ext/js/language/translator.js b/ext/js/language/translator.js index 6a8f27889b..97aca27edf 100644 --- a/ext/js/language/translator.js +++ b/ext/js/language/translator.js @@ -154,7 +154,8 @@ export class Translator { const tagAggregator = new TranslatorTagAggregator(); for (const {character, onyomi, kunyomi, tags, definitions, stats, dictionary} of databaseEntries) { const expandedStats = await this._expandKanjiStats(stats, dictionary); - const dictionaryEntry = this._createKanjiDictionaryEntry(character, dictionary, "blank", onyomi, kunyomi, expandedStats, definitions); + const dictionaryAlias = this._getDictionaryAlias(dictionary, enabledDictionaryMap); + const dictionaryEntry = this._createKanjiDictionaryEntry(character, dictionary, dictionaryAlias, onyomi, kunyomi, expandedStats, definitions); dictionaryEntries.push(dictionaryEntry); tagAggregator.addTags(dictionaryEntry.tags, dictionary, tags); } From 452be898642ba19ec3cce41040ab8e6df5d7f648 Mon Sep 17 00:00:00 2001 From: Khai Truong Date: Fri, 26 Jul 2024 16:21:22 +0700 Subject: [PATCH 10/40] alias frequency dict --- ext/js/dictionary/dictionary-data-util.js | 16 +++++++++---- ext/js/display/display-generator.js | 28 ++++++++++++++--------- test/anki-template-renderer.test.js | 1 + 3 files changed, 30 insertions(+), 15 deletions(-) diff --git a/ext/js/dictionary/dictionary-data-util.js b/ext/js/dictionary/dictionary-data-util.js index 39b604c8c4..eea6bad96d 100644 --- a/ext/js/dictionary/dictionary-data-util.js +++ b/ext/js/dictionary/dictionary-data-util.js @@ -58,13 +58,16 @@ export function groupTermFrequencies(dictionaryEntry) { /** @type {import('dictionary-data-util').TermFrequenciesMap1} */ const map1 = new Map(); - for (const {headwordIndex, dictionary, hasReading, frequency, displayValue} of sourceFrequencies) { + /** @type {Map} */ + const aliasMap = new Map(); + for (const {headwordIndex, dictionary, dictionaryAlias, hasReading, frequency, displayValue} of sourceFrequencies) { const {term, reading} = headwords[headwordIndex]; let map2 = map1.get(dictionary); if (typeof map2 === 'undefined') { map2 = new Map(); map1.set(dictionary, map2); + aliasMap.set(dictionary, dictionaryAlias); } const readingKey = hasReading ? reading : null; @@ -81,6 +84,7 @@ export function groupTermFrequencies(dictionaryEntry) { const results = []; for (const [dictionary, map2] of map1.entries()) { const frequencies = []; + const dictionaryAlias = aliasMap.get(dictionary) ?? dictionary; for (const {term, reading, values} of map2.values()) { frequencies.push({ term, @@ -88,7 +92,7 @@ export function groupTermFrequencies(dictionaryEntry) { values: [...values.values()], }); } - results.push({dictionary, frequencies}); + results.push({dictionary, frequencies, dictionaryAlias}); } return results; } @@ -100,11 +104,14 @@ export function groupTermFrequencies(dictionaryEntry) { export function groupKanjiFrequencies(sourceFrequencies) { /** @type {import('dictionary-data-util').KanjiFrequenciesMap1} */ const map1 = new Map(); - for (const {dictionary, character, frequency, displayValue} of sourceFrequencies) { + /** @type {Map} */ + const aliasMap = new Map(); + for (const {dictionary, dictionaryAlias, character, frequency, displayValue} of sourceFrequencies) { let map2 = map1.get(dictionary); if (typeof map2 === 'undefined') { map2 = new Map(); map1.set(dictionary, map2); + aliasMap.set(dictionary, dictionaryAlias); } let frequencyData = map2.get(character); @@ -119,13 +126,14 @@ export function groupKanjiFrequencies(sourceFrequencies) { const results = []; for (const [dictionary, map2] of map1.entries()) { const frequencies = []; + const dictionaryAlias = aliasMap.get(dictionary) ?? dictionary; for (const {character, values} of map2.values()) { frequencies.push({ character, values: [...values.values()], }); } - results.push({dictionary, frequencies}); + results.push({dictionary, frequencies, dictionaryAlias}); } return results; } diff --git a/ext/js/display/display-generator.js b/ext/js/display/display-generator.js index 9ab39e0237..c79d047245 100644 --- a/ext/js/display/display-generator.js +++ b/ext/js/display/display-generator.js @@ -799,22 +799,23 @@ export class DisplayGenerator { * @returns {HTMLElement} */ _createFrequencyGroup(details, kanji) { - const {dictionary, frequencies} = details; + const {dictionary, dictionaryAlias, frequencies} = details; const node = this._instantiate('frequency-group-item'); const body = this._querySelector(node, '.tag-body-content'); const tagLabel = this._querySelector(node, '.tag-label-content'); - this._setTextContent(tagLabel, dictionary); - node.dataset.details = dictionary; + const tag = this._querySelector(node, '.tag'); + + this._setTextContent(tagLabel, dictionaryAlias); const ii = frequencies.length; for (let i = 0; i < ii; ++i) { const item = frequencies[i]; const itemNode = ( kanji ? - this._createKanjiFrequency(/** @type {import('dictionary-data-util').KanjiFrequency} */ (item), dictionary) : - this._createTermFrequency(/** @type {import('dictionary-data-util').TermFrequency} */ (item), dictionary) + this._createKanjiFrequency(/** @type {import('dictionary-data-util').KanjiFrequency} */ (item), dictionary, dictionaryAlias) : + this._createTermFrequency(/** @type {import('dictionary-data-util').TermFrequency} */ (item), dictionary, dictionaryAlias) ); itemNode.dataset.index = `${i}`; body.appendChild(itemNode); @@ -823,24 +824,26 @@ export class DisplayGenerator { body.dataset.count = `${ii}`; node.dataset.count = `${ii}`; node.dataset.details = dictionary; - + tag.dataset.details = dictionary; return node; } /** * @param {import('dictionary-data-util').TermFrequency} details * @param {string} dictionary + * @param {string} dictionaryAlias * @returns {HTMLElement} */ - _createTermFrequency(details, dictionary) { + _createTermFrequency(details, dictionary, dictionaryAlias) { const {term, reading, values} = details; const node = this._instantiate('term-frequency-item'); const tagLabel = this._querySelector(node, '.tag-label-content'); + const tag = this._querySelector(node, '.tag'); const disambiguationTerm = this._querySelector(node, '.frequency-disambiguation-term'); const disambiguationReading = this._querySelector(node, '.frequency-disambiguation-reading'); const frequencyValueList = this._querySelector(node, '.frequency-value-list'); - this._setTextContent(tagLabel, dictionary); + this._setTextContent(tagLabel, dictionaryAlias); this._setTextContent(disambiguationTerm, term, this._language); this._setTextContent(disambiguationReading, (reading !== null ? reading : ''), this._language); this._populateFrequencyValueList(frequencyValueList, values); @@ -853,27 +856,30 @@ export class DisplayGenerator { node.dataset.readingIsSame = `${reading === term}`; node.dataset.dictionary = dictionary; node.dataset.details = dictionary; - + tag.dataset.details = dictionary; return node; } /** * @param {import('dictionary-data-util').KanjiFrequency} details * @param {string} dictionary + * @param {string} dictionaryAlias * @returns {HTMLElement} */ - _createKanjiFrequency(details, dictionary) { + _createKanjiFrequency(details, dictionary, dictionaryAlias) { const {character, values} = details; const node = this._instantiate('kanji-frequency-item'); const tagLabel = this._querySelector(node, '.tag-label-content'); + const tag = this._querySelector(node, '.tag'); const frequencyValueList = this._querySelector(node, '.frequency-value-list'); - this._setTextContent(tagLabel, dictionary); + this._setTextContent(tagLabel, dictionaryAlias); this._populateFrequencyValueList(frequencyValueList, values); node.dataset.character = character; node.dataset.dictionary = dictionary; node.dataset.details = dictionary; + tag.dataset.details = dictionary; return node; } diff --git a/test/anki-template-renderer.test.js b/test/anki-template-renderer.test.js index 9c02998dd8..f62daf8ed9 100644 --- a/test/anki-template-renderer.test.js +++ b/test/anki-template-renderer.test.js @@ -29,6 +29,7 @@ describe('AnkiTemplateRenderer', () => { type: 'kanji', character: 'c', dictionary: 'dictionary', + dictionaryAlias: 'dictionaryAlias', onyomi: [], kunyomi: [], tags: [], From 5e0663cca80bab01cbac937b93d235adf6daa5ac Mon Sep 17 00:00:00 2001 From: Khai Truong Date: Fri, 26 Jul 2024 16:54:19 +0700 Subject: [PATCH 11/40] update test --- test/data/translator-test-results.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/data/translator-test-results.json b/test/data/translator-test-results.json index 798b60560f..8f21cca0a8 100644 --- a/test/data/translator-test-results.json +++ b/test/data/translator-test-results.json @@ -6,6 +6,7 @@ "type": "kanji", "character": "打", "dictionary": "Test Dictionary 2", + "dictionaryAlias": "", "onyomi": [ "ダ", "ダアス" @@ -150,6 +151,7 @@ "type": "kanji", "character": "込", "dictionary": "Test Dictionary 2", + "dictionaryAlias": "", "onyomi": [], "kunyomi": [ "-こ.む", From 7fd82f12b5d4ee54149fe1daff1ef3480e88d757 Mon Sep 17 00:00:00 2001 From: Khai Truong Date: Fri, 26 Jul 2024 17:39:31 +0700 Subject: [PATCH 12/40] add alias to anki --- ext/js/data/anki-note-data-creator.js | 6 ++++-- types/ext/anki-templates.d.ts | 2 ++ 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/ext/js/data/anki-note-data-creator.js b/ext/js/data/anki-note-data-creator.js index 4c92926a32..00d77033e6 100644 --- a/ext/js/data/anki-note-data-creator.js +++ b/ext/js/data/anki-note-data-creator.js @@ -327,7 +327,7 @@ function getDefinition(dictionaryEntry, context, resultOutputMode, dictionarySty * @returns {import('anki-templates').KanjiDictionaryEntry} */ function getKanjiDefinition(dictionaryEntry, context) { - const {character, dictionary, onyomi, kunyomi, definitions} = dictionaryEntry; + const {character, dictionary, dictionaryAlias, onyomi, kunyomi, definitions} = dictionaryEntry; let {url} = context; if (typeof url !== 'string') { url = ''; } @@ -343,6 +343,7 @@ function getKanjiDefinition(dictionaryEntry, context) { type: 'kanji', character, dictionary, + dictionaryAlias, onyomi, kunyomi, glossary: definitions, @@ -422,7 +423,7 @@ function getTermDefinition(dictionaryEntry, context, resultOutputMode, dictionar case 'merge': type = 'termMerged'; break; } - const {inflectionRuleChainCandidates, score, dictionaryIndex, dictionaryPriority, sourceTermExactMatchCount, definitions} = dictionaryEntry; + const {inflectionRuleChainCandidates, score, dictionaryIndex, dictionaryAlias, dictionaryPriority, sourceTermExactMatchCount, definitions} = dictionaryEntry; let {url} = context; if (typeof url !== 'string') { url = ''; } @@ -455,6 +456,7 @@ function getTermDefinition(dictionaryEntry, context, resultOutputMode, dictionar isPrimary: (type === 'term' ? dictionaryEntry.isPrimary : void 0), get sequence() { return getCachedValue(sequence); }, get dictionary() { return getCachedValue(dictionaryNames)[0]; }, + dictionaryAlias, dictionaryOrder: { index: dictionaryIndex, priority: dictionaryPriority, diff --git a/types/ext/anki-templates.d.ts b/types/ext/anki-templates.d.ts index 8780be8941..8192b6970f 100644 --- a/types/ext/anki-templates.d.ts +++ b/types/ext/anki-templates.d.ts @@ -129,6 +129,7 @@ export type KanjiDictionaryEntry = { type: 'kanji'; character: string; dictionary: string; + dictionaryAlias: string; onyomi: string[]; kunyomi: string[]; glossary: string[]; @@ -179,6 +180,7 @@ export type TermDictionaryEntry = { isPrimary?: boolean; readonly sequence: number; readonly dictionary: string; + readonly dictionaryAlias: string; dictionaryOrder: { index: number; priority: number; From 49c266bde1bc7b30db7ef8fae32ce0bd742dce3c Mon Sep 17 00:00:00 2001 From: Khai Truong Date: Fri, 26 Jul 2024 18:03:11 +0700 Subject: [PATCH 13/40] Revert "add alias to anki" This reverts commit 7fd82f12b5d4ee54149fe1daff1ef3480e88d757. --- ext/js/data/anki-note-data-creator.js | 6 ++---- types/ext/anki-templates.d.ts | 2 -- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/ext/js/data/anki-note-data-creator.js b/ext/js/data/anki-note-data-creator.js index 00d77033e6..4c92926a32 100644 --- a/ext/js/data/anki-note-data-creator.js +++ b/ext/js/data/anki-note-data-creator.js @@ -327,7 +327,7 @@ function getDefinition(dictionaryEntry, context, resultOutputMode, dictionarySty * @returns {import('anki-templates').KanjiDictionaryEntry} */ function getKanjiDefinition(dictionaryEntry, context) { - const {character, dictionary, dictionaryAlias, onyomi, kunyomi, definitions} = dictionaryEntry; + const {character, dictionary, onyomi, kunyomi, definitions} = dictionaryEntry; let {url} = context; if (typeof url !== 'string') { url = ''; } @@ -343,7 +343,6 @@ function getKanjiDefinition(dictionaryEntry, context) { type: 'kanji', character, dictionary, - dictionaryAlias, onyomi, kunyomi, glossary: definitions, @@ -423,7 +422,7 @@ function getTermDefinition(dictionaryEntry, context, resultOutputMode, dictionar case 'merge': type = 'termMerged'; break; } - const {inflectionRuleChainCandidates, score, dictionaryIndex, dictionaryAlias, dictionaryPriority, sourceTermExactMatchCount, definitions} = dictionaryEntry; + const {inflectionRuleChainCandidates, score, dictionaryIndex, dictionaryPriority, sourceTermExactMatchCount, definitions} = dictionaryEntry; let {url} = context; if (typeof url !== 'string') { url = ''; } @@ -456,7 +455,6 @@ function getTermDefinition(dictionaryEntry, context, resultOutputMode, dictionar isPrimary: (type === 'term' ? dictionaryEntry.isPrimary : void 0), get sequence() { return getCachedValue(sequence); }, get dictionary() { return getCachedValue(dictionaryNames)[0]; }, - dictionaryAlias, dictionaryOrder: { index: dictionaryIndex, priority: dictionaryPriority, diff --git a/types/ext/anki-templates.d.ts b/types/ext/anki-templates.d.ts index 8192b6970f..8780be8941 100644 --- a/types/ext/anki-templates.d.ts +++ b/types/ext/anki-templates.d.ts @@ -129,7 +129,6 @@ export type KanjiDictionaryEntry = { type: 'kanji'; character: string; dictionary: string; - dictionaryAlias: string; onyomi: string[]; kunyomi: string[]; glossary: string[]; @@ -180,7 +179,6 @@ export type TermDictionaryEntry = { isPrimary?: boolean; readonly sequence: number; readonly dictionary: string; - readonly dictionaryAlias: string; dictionaryOrder: { index: number; priority: number; From 914472dd7ff7336f96ff014996c32af1aecba50c Mon Sep 17 00:00:00 2001 From: Khai Truong Date: Fri, 26 Jul 2024 18:35:59 +0700 Subject: [PATCH 14/40] Fix alias not working correctly for grouped entries --- ext/js/display/display-generator.js | 4 ++-- ext/js/language/translator.js | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ext/js/display/display-generator.js b/ext/js/display/display-generator.js index c79d047245..70579d3143 100644 --- a/ext/js/display/display-generator.js +++ b/ext/js/display/display-generator.js @@ -134,14 +134,14 @@ export class DisplayGenerator { const dictionaryTag = this._createDictionaryTag(''); for (let i = 0, ii = definitions.length; i < ii; ++i) { const definition = definitions[i]; - const {dictionary} = definition; + const {dictionary, dictionaryAlias} = definition; if (dictionaryTag.dictionaries.includes(dictionary)) { dictionaryTag.redundant = true; } else { dictionaryTag.redundant = false; dictionaryTag.dictionaries.push(dictionary); - dictionaryTag.name = dictionaryEntry.dictionaryAlias; + dictionaryTag.name = dictionaryAlias; dictionaryTag.content = [dictionary]; } diff --git a/ext/js/language/translator.js b/ext/js/language/translator.js index 97aca27edf..1ddfca54ec 100644 --- a/ext/js/language/translator.js +++ b/ext/js/language/translator.js @@ -1777,7 +1777,7 @@ export class Translator { let score = Number.MIN_SAFE_INTEGER; let dictionaryIndex = Number.MAX_SAFE_INTEGER; let dictionaryPriority = Number.MIN_SAFE_INTEGER; - const dictionaryAlias = dictionaryEntries[0]?.dictionaryAlias; // wrong + const dictionaryAlias = ""; let maxOriginalTextLength = 0; let isPrimary = false; /** @type {import('dictionary').TermDefinition[]} */ From 618b53c6c690a526d0970d86fd9d75ea7bc2e000 Mon Sep 17 00:00:00 2001 From: Khai Truong Date: Fri, 26 Jul 2024 18:46:20 +0700 Subject: [PATCH 15/40] Remove contenteditable event listener --- ext/js/dom/dom-data-binder.js | 28 ++++++++++++++++++++++++---- ext/js/language/translator.js | 2 +- types/ext/dom-data-binder.d.ts | 3 +++ 3 files changed, 28 insertions(+), 5 deletions(-) diff --git a/ext/js/dom/dom-data-binder.js b/ext/js/dom/dom-data-binder.js index 811982a342..ccce7633b3 100644 --- a/ext/js/dom/dom-data-binder.js +++ b/ext/js/dom/dom-data-binder.js @@ -175,18 +175,18 @@ export class DOMDataBinder { const metadata = this._createElementMetadata(element); if (typeof metadata === 'undefined') { return void 0; } const type = this._getNormalizedElementType(element); + const eventType = this._getEventType(element); /** @type {import('dom-data-binder').ElementObserver} */ const observer = { element, type, value: null, hasValue: false, + eventType, onChange: null, metadata, }; observer.onChange = this._onElementChange.bind(this, observer); - - const eventType = type === 'contenteditable' ? 'focusout' : 'change'; element.addEventListener(eventType, observer.onChange, false); void this._updateTasks.enqueue(observer, {all: false}); @@ -200,7 +200,7 @@ export class DOMDataBinder { */ _removeObserver(element, observer) { if (observer.onChange === null) { return; } - element.removeEventListener('change', observer.onChange, false); + element.removeEventListener(observer.eventType, observer.onChange, false); observer.onChange = null; } @@ -285,12 +285,24 @@ export class DOMDataBinder { return null; } + + /** + * @param {Element} element + * @returns {import('dom-data-binder').EventType} + */ + _getEventType(element) { + if (this._isContentEditable(element)) { + return 'focusout'; + } + return 'change'; + } + /** * @param {Element} element * @returns {import('dom-data-binder').NormalizedElementType} */ _getNormalizedElementType(element) { - if (element instanceof HTMLElement && element.isContentEditable) { + if (this._isContentEditable(element)) { return 'contenteditable'; } switch (element.nodeName.toUpperCase()) { @@ -314,4 +326,12 @@ export class DOMDataBinder { } return null; } + + /** + * @param {Element} element + * @returns {boolean} + */ + _isContentEditable(element) { + return element instanceof HTMLElement && element.isContentEditable; + } } diff --git a/ext/js/language/translator.js b/ext/js/language/translator.js index 1ddfca54ec..4b5a8ef834 100644 --- a/ext/js/language/translator.js +++ b/ext/js/language/translator.js @@ -1777,7 +1777,7 @@ export class Translator { let score = Number.MIN_SAFE_INTEGER; let dictionaryIndex = Number.MAX_SAFE_INTEGER; let dictionaryPriority = Number.MIN_SAFE_INTEGER; - const dictionaryAlias = ""; + const dictionaryAlias = ''; let maxOriginalTextLength = 0; let isPrimary = false; /** @type {import('dictionary').TermDefinition[]} */ diff --git a/types/ext/dom-data-binder.d.ts b/types/ext/dom-data-binder.d.ts index a58351ff02..3883dd5f1a 100644 --- a/types/ext/dom-data-binder.d.ts +++ b/types/ext/dom-data-binder.d.ts @@ -43,6 +43,7 @@ export type ElementObserver = { type: NormalizedElementType; value: unknown; hasValue: boolean; + eventType: string; onChange: null | (() => void); metadata: T; }; @@ -55,6 +56,8 @@ export type SettingChangedEvent = CustomEvent; export type NormalizedElementType = 'textarea' | 'select' | 'text' | 'checkbox' | 'number' | 'contenteditable' | null; +export type EventType = 'change' | 'focusout' + export type UpdateTaskValue = {all: boolean}; export type AssignTaskValue = {value: ValueType}; From 3a15e0637f0822222972575aa12762558aec878c Mon Sep 17 00:00:00 2001 From: Khai Truong Date: Fri, 26 Jul 2024 18:47:02 +0700 Subject: [PATCH 16/40] renaming --- ext/js/dom/dom-data-binder.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/ext/js/dom/dom-data-binder.js b/ext/js/dom/dom-data-binder.js index ccce7633b3..789c18a63e 100644 --- a/ext/js/dom/dom-data-binder.js +++ b/ext/js/dom/dom-data-binder.js @@ -175,7 +175,7 @@ export class DOMDataBinder { const metadata = this._createElementMetadata(element); if (typeof metadata === 'undefined') { return void 0; } const type = this._getNormalizedElementType(element); - const eventType = this._getEventType(element); + const eventType = this._getElementEventType(element); /** @type {import('dom-data-binder').ElementObserver} */ const observer = { element, @@ -290,8 +290,8 @@ export class DOMDataBinder { * @param {Element} element * @returns {import('dom-data-binder').EventType} */ - _getEventType(element) { - if (this._isContentEditable(element)) { + _getElementEventType(element) { + if (this._isElementContentEditable(element)) { return 'focusout'; } return 'change'; @@ -302,7 +302,7 @@ export class DOMDataBinder { * @returns {import('dom-data-binder').NormalizedElementType} */ _getNormalizedElementType(element) { - if (this._isContentEditable(element)) { + if (this._isElementContentEditable(element)) { return 'contenteditable'; } switch (element.nodeName.toUpperCase()) { @@ -331,7 +331,7 @@ export class DOMDataBinder { * @param {Element} element * @returns {boolean} */ - _isContentEditable(element) { + _isElementContentEditable(element) { return element instanceof HTMLElement && element.isContentEditable; } } From 6603fe327e283864ac72eda53a1f57a9f3b78db0 Mon Sep 17 00:00:00 2001 From: Khai Truong Date: Fri, 26 Jul 2024 23:52:15 +0700 Subject: [PATCH 17/40] reset original name when alias empty && make alias pastable --- ext/js/dom/dom-data-binder.js | 11 ++++++++--- ext/js/pages/settings/dictionary-controller.js | 10 ++++++++++ types/ext/dom-data-binder.d.ts | 2 +- 3 files changed, 19 insertions(+), 4 deletions(-) diff --git a/ext/js/dom/dom-data-binder.js b/ext/js/dom/dom-data-binder.js index 789c18a63e..a4d2a89164 100644 --- a/ext/js/dom/dom-data-binder.js +++ b/ext/js/dom/dom-data-binder.js @@ -209,9 +209,14 @@ export class DOMDataBinder { * @param {import('dom-data-binder').ElementObserver} observer */ _onObserverChildrenUpdated(element, observer) { - if (observer.hasValue) { - this._setElementValue(element, observer.value); + if (!observer.hasValue) { + return; } + if (this._isElementContentEditable(element)) { + this._setElementValue(element, element.textContent ?? ''); + return; + } + this._setElementValue(element, observer.value); } /** @@ -292,7 +297,7 @@ export class DOMDataBinder { */ _getElementEventType(element) { if (this._isElementContentEditable(element)) { - return 'focusout'; + return 'blur'; } return 'change'; } diff --git a/ext/js/pages/settings/dictionary-controller.js b/ext/js/pages/settings/dictionary-controller.js index 04f25ade81..b5b20e2a5f 100644 --- a/ext/js/pages/settings/dictionary-controller.js +++ b/ext/js/pages/settings/dictionary-controller.js @@ -86,6 +86,7 @@ class DictionaryEntry { this._outdatedButton.hidden = (version >= 3); this._priorityInput.dataset.setting = `dictionaries[${index}].priority`; this._enabledCheckbox.dataset.setting = `dictionaries[${index}].enabled`; + this._eventListeners.addEventListener(this._aliasNode, 'blur', this._onAliasBlur.bind(this), false); this._eventListeners.addEventListener(this._enabledCheckbox, 'settingChanged', this._onEnabledChanged.bind(this), false); this._eventListeners.addEventListener(this._menuButton, 'menuOpen', this._onMenuOpen.bind(this), false); this._eventListeners.addEventListener(this._menuButton, 'menuClose', this._onMenuClose.bind(this), false); @@ -180,6 +181,15 @@ class DictionaryEntry { } } + /** + * + */ + _onAliasBlur() { + if (!this._aliasNode.textContent) { + this._aliasNode.textContent = this.dictionaryTitle; + } + } + /** * @param {import('dom-data-binder').SettingChangedEvent} e */ diff --git a/types/ext/dom-data-binder.d.ts b/types/ext/dom-data-binder.d.ts index 3883dd5f1a..4898625175 100644 --- a/types/ext/dom-data-binder.d.ts +++ b/types/ext/dom-data-binder.d.ts @@ -56,7 +56,7 @@ export type SettingChangedEvent = CustomEvent; export type NormalizedElementType = 'textarea' | 'select' | 'text' | 'checkbox' | 'number' | 'contenteditable' | null; -export type EventType = 'change' | 'focusout' +export type EventType = 'change' | 'blur' export type UpdateTaskValue = {all: boolean}; From 6a5f1f58a32f041e8edfbc805988c116e11b59ab Mon Sep 17 00:00:00 2001 From: Khai Truong Date: Sat, 27 Jul 2024 00:28:13 +0700 Subject: [PATCH 18/40] refactor --- ext/js/dom/dom-data-binder.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/js/dom/dom-data-binder.js b/ext/js/dom/dom-data-binder.js index a4d2a89164..6998ab3bd4 100644 --- a/ext/js/dom/dom-data-binder.js +++ b/ext/js/dom/dom-data-binder.js @@ -213,7 +213,7 @@ export class DOMDataBinder { return; } if (this._isElementContentEditable(element)) { - this._setElementValue(element, element.textContent ?? ''); + this._setElementValue(element, element.textContent); return; } this._setElementValue(element, observer.value); From 7dc291347b14e4e27bdb3242c74fc1f60c203ee7 Mon Sep 17 00:00:00 2001 From: Khai Truong Date: Sat, 27 Jul 2024 15:19:37 +0700 Subject: [PATCH 19/40] Handle contenteditable empty makes observer child triggered --- ext/js/dom/dom-data-binder.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/ext/js/dom/dom-data-binder.js b/ext/js/dom/dom-data-binder.js index 6998ab3bd4..96275a799c 100644 --- a/ext/js/dom/dom-data-binder.js +++ b/ext/js/dom/dom-data-binder.js @@ -213,8 +213,10 @@ export class DOMDataBinder { return; } if (this._isElementContentEditable(element)) { - this._setElementValue(element, element.textContent); - return; + if (element.textContent !== observer.value) { + this._setElementValue(element, element.textContent); + return; + } } this._setElementValue(element, observer.value); } From 6d040c49cafe485cca775757df6dad1947ab579b Mon Sep 17 00:00:00 2001 From: Khai Truong Date: Sat, 27 Jul 2024 15:33:17 +0700 Subject: [PATCH 20/40] lint --- ext/js/dom/dom-data-binder.js | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/ext/js/dom/dom-data-binder.js b/ext/js/dom/dom-data-binder.js index 96275a799c..2f94d93834 100644 --- a/ext/js/dom/dom-data-binder.js +++ b/ext/js/dom/dom-data-binder.js @@ -212,11 +212,9 @@ export class DOMDataBinder { if (!observer.hasValue) { return; } - if (this._isElementContentEditable(element)) { - if (element.textContent !== observer.value) { - this._setElementValue(element, element.textContent); - return; - } + if (this._isElementContentEditable(element) && element.textContent !== observer.value) { + this._setElementValue(element, element.textContent); + return; } this._setElementValue(element, observer.value); } From 824fda81185faef3cdd318f6bb67bb5241aa476c Mon Sep 17 00:00:00 2001 From: Khai Truong Date: Mon, 29 Jul 2024 21:58:25 +0700 Subject: [PATCH 21/40] add alias to anki glossary && add dictionary-alias marker --- ...eld-templates-upgrade-v45 copy.handlebars} | 0 ...nki-field-templates-upgrade-v48.handlebars | 69 +++++++++++++++++++ .../default-anki-field-templates.handlebars | 6 +- ext/js/data/anki-note-data-creator.js | 20 +++++- ext/js/data/anki-template-util.js | 2 + ext/js/data/options-util.js | 1 + ext/js/dom/dom-data-binder.js | 4 ++ types/ext/anki-templates.d.ts | 3 + 8 files changed, 102 insertions(+), 3 deletions(-) rename ext/data/templates/{anki-field-templates-upgrade-v45.handlebars => anki-field-templates-upgrade-v45 copy.handlebars} (100%) create mode 100644 ext/data/templates/anki-field-templates-upgrade-v48.handlebars diff --git a/ext/data/templates/anki-field-templates-upgrade-v45.handlebars b/ext/data/templates/anki-field-templates-upgrade-v45 copy.handlebars similarity index 100% rename from ext/data/templates/anki-field-templates-upgrade-v45.handlebars rename to ext/data/templates/anki-field-templates-upgrade-v45 copy.handlebars diff --git a/ext/data/templates/anki-field-templates-upgrade-v48.handlebars b/ext/data/templates/anki-field-templates-upgrade-v48.handlebars new file mode 100644 index 0000000000..affe8b6850 --- /dev/null +++ b/ext/data/templates/anki-field-templates-upgrade-v48.handlebars @@ -0,0 +1,69 @@ +{{<<<<<<<}} +{{#*inline "glossary-single"}} + {{~#unless brief~}} + {{~#scope~}} + {{~#set "any" false}}{{/set~}} + {{~#each definitionTags~}} + {{~#if (op "||" (op "!" @root.compactTags) (op "!" redundant))~}} + {{~#if (get "any")}}, {{else}}({{/if~}} + {{name}} + {{~#set "any" true}}{{/set~}} + {{~/if~}} + {{~/each~}} + {{~#unless noDictionaryTag~}} + {{~#if (op "||" (op "!" @root.compactTags) (op "!==" dictionary (get "previousDictionary")))~}} + {{~#if (get "any")}}, {{else}}({{/if~}} + {{dictionary}} + {{~#set "any" true}}{{/set~}} + {{~/if~}} + {{~/unless~}} + {{~#if (get "any")}}) {{/if~}} + {{~/scope~}} + {{~#if only~}}({{#each only}}{{.}}{{#unless @last}}, {{/unless}}{{/each}} only) {{/if~}} + {{~/unless~}} + {{~#if (op "<=" glossary.length 1)~}} + {{#each glossary}}{{#multiLine}}{{.}}{{/multiLine}}{{/each}} + {{~else if @root.compactGlossaries~}} + {{#each glossary}}{{#multiLine}}{{.}}{{/multiLine}}{{#unless @last}} | {{/unless}}{{/each}} + {{~else~}} +
    {{#each glossary}}
  • {{#multiLine}}{{.}}{{/multiLine}}
  • {{/each}}
+ {{~/if~}} + {{~#set "previousDictionary" dictionary~}}{{~/set~}} +{{/inline}} +{{=======}} +{{#*inline "glossary-single"}} + {{~#unless brief~}} + {{~#scope~}} + {{~#set "any" false}}{{/set~}} + {{~#each definitionTags~}} + {{~#if (op "||" (op "!" @root.compactTags) (op "!" redundant))~}} + {{~#if (get "any")}}, {{else}}({{/if~}} + {{name}} + {{~#set "any" true}}{{/set~}} + {{~/if~}} + {{~/each~}} + {{~#unless noDictionaryTag~}} + {{~#if (op "||" (op "!" @root.compactTags) (op "!==" dictionary (get "previousDictionary")))~}} + {{~#if (get "any")}}, {{else}}({{/if~}} + {{dictionaryAlias}} + {{~#set "any" true}}{{/set~}} + {{~/if~}} + {{~/unless~}} + {{~#if (get "any")}}) {{/if~}} + {{~/scope~}} + {{~#if only~}}({{#each only}}{{.}}{{#unless @last}}, {{/unless}}{{/each}} only) {{/if~}} + {{~/unless~}} + {{~#if (op "<=" glossary.length 1)~}} + {{#each glossary}}{{#multiLine}}{{.}}{{/multiLine}}{{/each}} + {{~else if @root.compactGlossaries~}} + {{#each glossary}}{{#multiLine}}{{.}}{{/multiLine}}{{#unless @last}} | {{/unless}}{{/each}} + {{~else~}} +
    {{#each glossary}}
  • {{#multiLine}}{{.}}{{/multiLine}}
  • {{/each}}
+ {{~/if~}} + {{~#set "previousDictionary" dictionary~}}{{~/set~}} +{{/inline}} +{{>>>>>>>}} + +{{#*inline "dictionary-alias"}} + {{~definition.dictionaryAlias~}} +{{/inline}} \ No newline at end of file diff --git a/ext/data/templates/default-anki-field-templates.handlebars b/ext/data/templates/default-anki-field-templates.handlebars index 2ccea7ba09..1920c5e822 100644 --- a/ext/data/templates/default-anki-field-templates.handlebars +++ b/ext/data/templates/default-anki-field-templates.handlebars @@ -12,7 +12,7 @@ {{~#unless noDictionaryTag~}} {{~#if (op "||" (op "!" @root.compactTags) (op "!==" dictionary (get "previousDictionary")))~}} {{~#if (get "any")}}, {{else}}({{/if~}} - {{dictionary}} + {{dictionaryAlias}} {{~set "any" true~}} {{~/if~}} {{~/unless~}} @@ -44,6 +44,10 @@ {{~definition.dictionary~}} {{/inline}} +{{#*inline "dictionary-alias"}} + {{~definition.dictionaryAlias~}} +{{/inline}} + {{#*inline "expression"}} {{~#if merge~}} {{~#if modeTermKana~}} diff --git a/ext/js/data/anki-note-data-creator.js b/ext/js/data/anki-note-data-creator.js index 4c92926a32..f4113f8688 100644 --- a/ext/js/data/anki-note-data-creator.js +++ b/ext/js/data/anki-note-data-creator.js @@ -327,7 +327,7 @@ function getDefinition(dictionaryEntry, context, resultOutputMode, dictionarySty * @returns {import('anki-templates').KanjiDictionaryEntry} */ function getKanjiDefinition(dictionaryEntry, context) { - const {character, dictionary, onyomi, kunyomi, definitions} = dictionaryEntry; + const {character, dictionary, dictionaryAlias, onyomi, kunyomi, definitions} = dictionaryEntry; let {url} = context; if (typeof url !== 'string') { url = ''; } @@ -343,6 +343,7 @@ function getKanjiDefinition(dictionaryEntry, context) { type: 'kanji', character, dictionary, + dictionaryAlias, onyomi, kunyomi, glossary: definitions, @@ -429,6 +430,7 @@ function getTermDefinition(dictionaryEntry, context, resultOutputMode, dictionar const primarySource = getPrimarySource(dictionaryEntry); + const dictionaryAliases = createCachedValue(getTermDictionaryAliases.bind(null, dictionaryEntry)); const dictionaryNames = createCachedValue(getTermDictionaryNames.bind(null, dictionaryEntry)); const commonInfo = createCachedValue(getTermDictionaryEntryCommonInfo.bind(null, dictionaryEntry, type, dictionaryStylesMap)); const termTags = createCachedValue(getTermTags.bind(null, dictionaryEntry, type)); @@ -455,6 +457,7 @@ function getTermDefinition(dictionaryEntry, context, resultOutputMode, dictionar isPrimary: (type === 'term' ? dictionaryEntry.isPrimary : void 0), get sequence() { return getCachedValue(sequence); }, get dictionary() { return getCachedValue(dictionaryNames)[0]; }, + get dictionaryAlias() { return getCachedValue(dictionaryAliases)[0]; }, dictionaryOrder: { index: dictionaryIndex, priority: dictionaryPriority, @@ -499,6 +502,18 @@ function getTermDictionaryNames(dictionaryEntry) { return [...dictionaryNames]; } +/** + * @param {import('dictionary').TermDictionaryEntry} dictionaryEntry + * @returns {string[]} + */ +function getTermDictionaryAliases(dictionaryEntry) { + const dictionaryAliases = new Set(); + for (const {dictionaryAlias} of dictionaryEntry.definitions) { + dictionaryAliases.add(dictionaryAlias); + } + return [...dictionaryAliases]; +} + /** * @param {import('dictionary').TermDictionaryEntry} dictionaryEntry * @param {import('anki-templates').TermDictionaryEntryType} type @@ -524,7 +539,7 @@ function getTermDictionaryEntryCommonInfo(dictionaryEntry, type, dictionaryStyle const definitions = []; /** @type {import('anki-templates').Tag[]} */ const definitionTags = []; - for (const {tags, headwordIndices, entries, dictionary, sequences} of dictionaryEntry.definitions) { + for (const {tags, headwordIndices, entries, dictionary, dictionaryAlias, sequences} of dictionaryEntry.definitions) { const dictionaryStyles = dictionaryStylesMap.get(dictionary); let glossaryScopedStyles = ''; let dictScopedStyles = ''; @@ -542,6 +557,7 @@ function getTermDictionaryEntryCommonInfo(dictionaryEntry, type, dictionaryStyle definitions.push({ sequence: sequences[0], dictionary, + dictionaryAlias, glossaryScopedStyles, dictScopedStyles, glossary: entries, diff --git a/ext/js/data/anki-template-util.js b/ext/js/data/anki-template-util.js index 74589c5bcf..5e36b7e607 100644 --- a/ext/js/data/anki-template-util.js +++ b/ext/js/data/anki-template-util.js @@ -34,6 +34,7 @@ export function getStandardFieldMarkers(type) { 'cloze-suffix', 'conjugation', 'dictionary', + 'dictionary-alias', 'document-title', 'expression', 'frequencies', @@ -74,6 +75,7 @@ export function getStandardFieldMarkers(type) { 'cloze-prefix', 'cloze-suffix', 'dictionary', + 'dictionary-alias', 'document-title', 'frequencies', 'frequency-harmonic-rank', diff --git a/ext/js/data/options-util.js b/ext/js/data/options-util.js index ace29805dd..3d7e128623 100644 --- a/ext/js/data/options-util.js +++ b/ext/js/data/options-util.js @@ -1440,6 +1440,7 @@ export class OptionsUtil { * @type {import('options-util').UpdateFunction} */ async _updateVersion48(options) { + await this._applyAnkiFieldTemplatesPatch(options, '/data/templates/anki-field-templates-upgrade-v48.handlebars'); for (const {options: profileOptions} of options.profiles) { if (Array.isArray(profileOptions.dictionaries)) { for (const dictionary of profileOptions.dictionaries) { diff --git a/ext/js/dom/dom-data-binder.js b/ext/js/dom/dom-data-binder.js index 2f94d93834..fa4b08e2ba 100644 --- a/ext/js/dom/dom-data-binder.js +++ b/ext/js/dom/dom-data-binder.js @@ -212,6 +212,10 @@ export class DOMDataBinder { if (!observer.hasValue) { return; } + // When contenteditable is made empty or inputted from empty, + // the value is reset back to original state + // because there is a removal / addition of text node. + // This is a workaround to prevent the value from being reset back. if (this._isElementContentEditable(element) && element.textContent !== observer.value) { this._setElementValue(element, element.textContent); return; diff --git a/types/ext/anki-templates.d.ts b/types/ext/anki-templates.d.ts index 8780be8941..341b14bbd6 100644 --- a/types/ext/anki-templates.d.ts +++ b/types/ext/anki-templates.d.ts @@ -129,6 +129,7 @@ export type KanjiDictionaryEntry = { type: 'kanji'; character: string; dictionary: string; + dictionaryAlias: string; onyomi: string[]; kunyomi: string[]; glossary: string[]; @@ -179,6 +180,7 @@ export type TermDictionaryEntry = { isPrimary?: boolean; readonly sequence: number; readonly dictionary: string; + readonly dictionaryAlias: string; dictionaryOrder: { index: number; priority: number; @@ -228,6 +230,7 @@ export type Tag = { export type TermDefinition = { sequence: number; dictionary: string; + dictionaryAlias: string; glossary: DictionaryData.TermGlossary[]; definitionTags: Tag[]; glossaryScopedStyles: string; From 51a67c07a513049b2c6a55e7858153dcaaa91c52 Mon Sep 17 00:00:00 2001 From: Khai Truong Date: Mon, 29 Jul 2024 22:05:45 +0700 Subject: [PATCH 22/40] fallback to dictionary name if alias is empty --- ext/js/language/translator.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/js/language/translator.js b/ext/js/language/translator.js index 4b5a8ef834..5c59bd7679 100644 --- a/ext/js/language/translator.js +++ b/ext/js/language/translator.js @@ -1461,7 +1461,7 @@ export class Translator { */ _getDictionaryAlias(dictionary, enabledDictionaryMap) { const info = enabledDictionaryMap.get(dictionary); - return typeof info !== 'undefined' ? info.alias : dictionary; + return info?.alias || dictionary; } /** From 4f94cf28004e1e355533ea30ebbb87130e88ee13 Mon Sep 17 00:00:00 2001 From: Khai Truong Date: Mon, 29 Jul 2024 23:17:59 +0700 Subject: [PATCH 23/40] update handlebars --- docs/anki-integration.md | 2 + ...ki-field-templates-upgrade-v45.handlebars} | 0 ...nki-field-templates-upgrade-v49.handlebars | 40 +++++---- ext/js/data/options-util.js | 1 + ext/settings.html | 4 + ...ld-default-anki-field-templates.handlebars | 4 + test/options-util.test.js | 85 ++++++++++++++++++- 7 files changed, 120 insertions(+), 16 deletions(-) rename ext/data/templates/{anki-field-templates-upgrade-v45 copy.handlebars => anki-field-templates-upgrade-v45.handlebars} (100%) diff --git a/docs/anki-integration.md b/docs/anki-integration.md index 9582025149..243035ddc3 100644 --- a/docs/anki-integration.md +++ b/docs/anki-integration.md @@ -35,6 +35,7 @@ Flashcard fields can be configured with the following steps: | `{cloze-suffix}` | Fragment of the containing `{sentence}` starting at the end of `{cloze-body}` until the end of `{sentence}`. | | `{conjugation}` | Conjugation path from the raw inflected term to the source term. | | `{dictionary}` | Name of the dictionary from which the card is being created (unavailable in _grouped_ mode). | + | `{dictionary-alias}` | Alias of the dictionary from which the card is being created (unavailable in _grouped_ mode). | | `{document-title}` | Title of the web page that the term appeared in. | | `{expression}` | Term expressed as kanji (will be displayed in kana if kanji is not available). | | `{frequencies}` | Frequency information for the term. | @@ -80,6 +81,7 @@ Flashcard fields can be configured with the following steps: | `{cloze-prefix}` | Fragment of the containing `{sentence}` starting at the beginning of `{sentence}` until the beginning of `{cloze-body}`. | | `{cloze-suffix}` | Fragment of the containing `{sentence}` starting at the end of `{cloze-body}` until the end of `{sentence}`. | | `{dictionary}` | Name of the dictionary from which the card is being created. | + | `{dictionary-alias}` | Alias of the dictionary from which the card is being created. | | `{document-title}` | Title of the web page that the kanji appeared in. | | `{frequencies}` | Frequency information for the kanji. | | `{frequency-harmonic-rank}` | The harmonic mean of frequency data for the current kanji. Defaults to rank 9999999 when frequency data is not found, indicating extremely low rank-based kanji usage. | diff --git a/ext/data/templates/anki-field-templates-upgrade-v45 copy.handlebars b/ext/data/templates/anki-field-templates-upgrade-v45.handlebars similarity index 100% rename from ext/data/templates/anki-field-templates-upgrade-v45 copy.handlebars rename to ext/data/templates/anki-field-templates-upgrade-v45.handlebars diff --git a/ext/data/templates/anki-field-templates-upgrade-v49.handlebars b/ext/data/templates/anki-field-templates-upgrade-v49.handlebars index affe8b6850..44d194cd1c 100644 --- a/ext/data/templates/anki-field-templates-upgrade-v49.handlebars +++ b/ext/data/templates/anki-field-templates-upgrade-v49.handlebars @@ -2,19 +2,19 @@ {{#*inline "glossary-single"}} {{~#unless brief~}} {{~#scope~}} - {{~#set "any" false}}{{/set~}} + {{~set "any" false~}} {{~#each definitionTags~}} {{~#if (op "||" (op "!" @root.compactTags) (op "!" redundant))~}} {{~#if (get "any")}}, {{else}}({{/if~}} {{name}} - {{~#set "any" true}}{{/set~}} + {{~set "any" true~}} {{~/if~}} {{~/each~}} {{~#unless noDictionaryTag~}} {{~#if (op "||" (op "!" @root.compactTags) (op "!==" dictionary (get "previousDictionary")))~}} {{~#if (get "any")}}, {{else}}({{/if~}} {{dictionary}} - {{~#set "any" true}}{{/set~}} + {{~set "any" true~}} {{~/if~}} {{~/unless~}} {{~#if (get "any")}}) {{/if~}} @@ -22,31 +22,31 @@ {{~#if only~}}({{#each only}}{{.}}{{#unless @last}}, {{/unless}}{{/each}} only) {{/if~}} {{~/unless~}} {{~#if (op "<=" glossary.length 1)~}} - {{#each glossary}}{{#multiLine}}{{.}}{{/multiLine}}{{/each}} + {{#each glossary}}{{formatGlossary ../dictionary .}}{{/each}} {{~else if @root.compactGlossaries~}} - {{#each glossary}}{{#multiLine}}{{.}}{{/multiLine}}{{#unless @last}} | {{/unless}}{{/each}} + {{#each glossary}}{{formatGlossary ../dictionary .}}{{#unless @last}} | {{/unless}}{{/each}} {{~else~}} -
    {{#each glossary}}
  • {{#multiLine}}{{.}}{{/multiLine}}
  • {{/each}}
+
    {{#each glossary}}
  • {{formatGlossary ../dictionary .}}
  • {{/each}}
{{~/if~}} - {{~#set "previousDictionary" dictionary~}}{{~/set~}} + {{~set "previousDictionary" dictionary~}} {{/inline}} {{=======}} {{#*inline "glossary-single"}} {{~#unless brief~}} {{~#scope~}} - {{~#set "any" false}}{{/set~}} + {{~set "any" false~}} {{~#each definitionTags~}} {{~#if (op "||" (op "!" @root.compactTags) (op "!" redundant))~}} {{~#if (get "any")}}, {{else}}({{/if~}} {{name}} - {{~#set "any" true}}{{/set~}} + {{~set "any" true~}} {{~/if~}} {{~/each~}} {{~#unless noDictionaryTag~}} {{~#if (op "||" (op "!" @root.compactTags) (op "!==" dictionary (get "previousDictionary")))~}} {{~#if (get "any")}}, {{else}}({{/if~}} {{dictionaryAlias}} - {{~#set "any" true}}{{/set~}} + {{~set "any" true~}} {{~/if~}} {{~/unless~}} {{~#if (get "any")}}) {{/if~}} @@ -54,16 +54,26 @@ {{~#if only~}}({{#each only}}{{.}}{{#unless @last}}, {{/unless}}{{/each}} only) {{/if~}} {{~/unless~}} {{~#if (op "<=" glossary.length 1)~}} - {{#each glossary}}{{#multiLine}}{{.}}{{/multiLine}}{{/each}} + {{#each glossary}}{{formatGlossary ../dictionary .}}{{/each}} {{~else if @root.compactGlossaries~}} - {{#each glossary}}{{#multiLine}}{{.}}{{/multiLine}}{{#unless @last}} | {{/unless}}{{/each}} + {{#each glossary}}{{formatGlossary ../dictionary .}}{{#unless @last}} | {{/unless}}{{/each}} {{~else~}} -
    {{#each glossary}}
  • {{#multiLine}}{{.}}{{/multiLine}}
  • {{/each}}
+
    {{#each glossary}}
  • {{formatGlossary ../dictionary .}}
  • {{/each}}
{{~/if~}} - {{~#set "previousDictionary" dictionary~}}{{~/set~}} + {{~set "previousDictionary" dictionary~}} {{/inline}} {{>>>>>>>}} +{{<<<<<<<}} +{{#*inline "dictionary"}} + {{~definition.dictionary~}} +{{/inline}} +{{=======}} +{{#*inline "dictionary"}} + {{~definition.dictionary~}} +{{/inline}} + {{#*inline "dictionary-alias"}} {{~definition.dictionaryAlias~}} -{{/inline}} \ No newline at end of file +{{/inline}} +{{>>>>>>>}} \ No newline at end of file diff --git a/ext/js/data/options-util.js b/ext/js/data/options-util.js index 41bdaab9d7..3ae48df717 100644 --- a/ext/js/data/options-util.js +++ b/ext/js/data/options-util.js @@ -560,6 +560,7 @@ export class OptionsUtil { this._updateVersion46, this._updateVersion47, this._updateVersion48, + this._updateVersion49, ]; /* eslint-enable @typescript-eslint/unbound-method */ if (typeof targetVersion === 'number' && targetVersion < result.length) { diff --git a/ext/settings.html b/ext/settings.html index d552a1d2de..dca7008f26 100644 --- a/ext/settings.html +++ b/ext/settings.html @@ -3300,6 +3300,10 @@
or click here to upload
{dictionary} Name of the dictionary from which the card is being created. + + {dictionary-alias} + Alias of the dictionary from which the card is being created. + {document-title} Title of the web page that the term or kanji appeared in. diff --git a/test/data/templates/old-default-anki-field-templates.handlebars b/test/data/templates/old-default-anki-field-templates.handlebars index 42deae2394..88a67d2a77 100644 --- a/test/data/templates/old-default-anki-field-templates.handlebars +++ b/test/data/templates/old-default-anki-field-templates.handlebars @@ -28,6 +28,10 @@ {{~definition.dictionary~}} {{/inline}} +{{#*inline "dictionary-alias"}} + {{~definition.dictionaryAlias~}} +{{/inline}} + {{#*inline "expression"}} {{~#if merge~}} {{~#if modeTermKana~}} diff --git a/test/options-util.test.js b/test/options-util.test.js index a9b8c1912a..3a40398bd0 100644 --- a/test/options-util.test.js +++ b/test/options-util.test.js @@ -640,7 +640,7 @@ function createOptionsUpdatedTestData1() { }, ], profileCurrent: 0, - version: 48, + version: 49, global: { database: { prefixWildcardsSupported: false, @@ -1835,6 +1835,89 @@ describe('OptionsUtil', () => { {{#*inline "popup-selection-text"}} {{~#if (hasMedia "popupSelectionText")}}{{{getMedia "popupSelectionText"}}}{{/if~}} {{/inline}} +`.trimStart(), + }, + { + oldVersion: 48, + newVersion: 49, + old: ` +{{#*inline "glossary-single"}} + {{~#unless brief~}} + {{~#scope~}} + {{~set "any" false~}} + {{~#each definitionTags~}} + {{~#if (op "||" (op "!" @root.compactTags) (op "!" redundant))~}} + {{~#if (get "any")}}, {{else}}({{/if~}} + {{name}} + {{~set "any" true~}} + {{~/if~}} + {{~/each~}} + {{~#unless noDictionaryTag~}} + {{~#if (op "||" (op "!" @root.compactTags) (op "!==" dictionary (get "previousDictionary")))~}} + {{~#if (get "any")}}, {{else}}({{/if~}} + {{dictionary}} + {{~set "any" true~}} + {{~/if~}} + {{~/unless~}} + {{~#if (get "any")}}) {{/if~}} + {{~/scope~}} + {{~#if only~}}({{#each only}}{{.}}{{#unless @last}}, {{/unless}}{{/each}} only) {{/if~}} + {{~/unless~}} + {{~#if (op "<=" glossary.length 1)~}} + {{#each glossary}}{{formatGlossary ../dictionary .}}{{/each}} + {{~else if @root.compactGlossaries~}} + {{#each glossary}}{{formatGlossary ../dictionary .}}{{#unless @last}} | {{/unless}}{{/each}} + {{~else~}} +
    {{#each glossary}}
  • {{formatGlossary ../dictionary .}}
  • {{/each}}
+ {{~/if~}} + {{~set "previousDictionary" dictionary~}} +{{/inline}} + +{{#*inline "dictionary"}} + {{~definition.dictionary~}} +{{/inline}} +`.trimStart(), + + expected: ` +{{#*inline "glossary-single"}} + {{~#unless brief~}} + {{~#scope~}} + {{~set "any" false~}} + {{~#each definitionTags~}} + {{~#if (op "||" (op "!" @root.compactTags) (op "!" redundant))~}} + {{~#if (get "any")}}, {{else}}({{/if~}} + {{name}} + {{~set "any" true~}} + {{~/if~}} + {{~/each~}} + {{~#unless noDictionaryTag~}} + {{~#if (op "||" (op "!" @root.compactTags) (op "!==" dictionary (get "previousDictionary")))~}} + {{~#if (get "any")}}, {{else}}({{/if~}} + {{dictionaryAlias}} + {{~set "any" true~}} + {{~/if~}} + {{~/unless~}} + {{~#if (get "any")}}) {{/if~}} + {{~/scope~}} + {{~#if only~}}({{#each only}}{{.}}{{#unless @last}}, {{/unless}}{{/each}} only) {{/if~}} + {{~/unless~}} + {{~#if (op "<=" glossary.length 1)~}} + {{#each glossary}}{{formatGlossary ../dictionary .}}{{/each}} + {{~else if @root.compactGlossaries~}} + {{#each glossary}}{{formatGlossary ../dictionary .}}{{#unless @last}} | {{/unless}}{{/each}} + {{~else~}} +
    {{#each glossary}}
  • {{formatGlossary ../dictionary .}}
  • {{/each}}
+ {{~/if~}} + {{~set "previousDictionary" dictionary~}} +{{/inline}} + +{{#*inline "dictionary"}} + {{~definition.dictionary~}} +{{/inline}} + +{{#*inline "dictionary-alias"}} + {{~definition.dictionaryAlias~}} +{{/inline}} `.trimStart(), }, ]; From aea9e9bb91459fa6d45270f52dbbfc90c958fd0f Mon Sep 17 00:00:00 2001 From: Khai Truong Date: Tue, 30 Jul 2024 00:12:06 +0700 Subject: [PATCH 24/40] add alias to test --- test/data/anki-note-builder-test-results.json | 361 ++-- test/data/translator-test-inputs.json | 4 +- .../translator-test-results-note-data1.json | 105 ++ test/data/translator-test-results.json | 1622 ++++++++--------- 4 files changed, 1151 insertions(+), 941 deletions(-) diff --git a/test/data/anki-note-builder-test-results.json b/test/data/anki-note-builder-test-results.json index 212cf2c2ca..e7cad27230 100644 --- a/test/data/anki-note-builder-test-results.json +++ b/test/data/anki-note-builder-test-results.json @@ -10,6 +10,7 @@ "cloze-prefix": "cloze-prefix", "cloze-suffix": "cloze-suffix", "dictionary": "Test Dictionary 2", + "dictionary-alias": "kanjiDictAlias", "document-title": "title", "frequencies": "
  • Test Dictionary 2: 1
  • Test Dictionary 2: three
  • Test Dictionary 2: 5
", "frequency-harmonic-rank": "1", @@ -42,6 +43,7 @@ "cloze-prefix": "cloze-prefix", "cloze-suffix": "cloze-suffix", "dictionary": "Test Dictionary 2", + "dictionary-alias": "kanjiDictAlias", "document-title": "title", "frequencies": "
  • Test Dictionary 2: 2
  • Test Dictionary 2: four (4)
  • Test Dictionary 2: six
", "frequency-harmonic-rank": "2", @@ -80,6 +82,7 @@ "cloze-suffix": "cloze-suffix", "conjugation": "", "dictionary": "Test Dictionary 2", + "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打", "frequencies": "
  • Test Dictionary 2: 1
  • Test Dictionary 2: four
  • Test Dictionary 2: five (5)
  • Test Dictionary 2: 8
  • Test Dictionary 2: fourteen
  • Test Dictionary 2: twenty (20)
  • Test Dictionary 2: 26
", @@ -121,6 +124,7 @@ "cloze-suffix": "cloze-suffix", "conjugation": "", "dictionary": "Test Dictionary 2", + "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打", "frequencies": "
  • Test Dictionary 2: 1
  • Test Dictionary 2: four
  • Test Dictionary 2: five (5)
  • Test Dictionary 2: 9
  • Test Dictionary 2: fifteen
  • Test Dictionary 2: twenty-one (21)
  • Test Dictionary 2: twenty-seven
", @@ -167,6 +171,7 @@ "cloze-suffix": "cloze-suffix", "conjugation": "", "dictionary": "Test Dictionary 2", + "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打つ", "frequencies": "
  • Test Dictionary 2: 2
  • Test Dictionary 2: 6
  • Test Dictionary 2: 10
  • Test Dictionary 2: sixteen
  • Test Dictionary 2: twenty-two (22)
  • Test Dictionary 2: 28
", @@ -176,10 +181,10 @@ "frequency-average-occurrence": "2", "furigana": "つ", "furigana-plain": "打[う]つ", - "glossary": "
(vt, Test Dictionary 2)
  • utsu definition 1
  • utsu definition 2
", + "glossary": "
(vt, termsDictAlias)
  • utsu definition 1
  • utsu definition 2
", "glossary-brief": "
  • utsu definition 1
  • utsu definition 2
", "glossary-no-dictionary": "
(vt)
  • utsu definition 1
  • utsu definition 2
", - "glossary-first": "
(vt, Test Dictionary 2)
  • utsu definition 1
  • utsu definition 2
", + "glossary-first": "
(vt, termsDictAlias)
  • utsu definition 1
  • utsu definition 2
", "glossary-first-brief": "
  • utsu definition 1
  • utsu definition 2
", "glossary-first-no-dictionary": "
(vt)
  • utsu definition 1
  • utsu definition 2
", "part-of-speech": "Godan verb", @@ -208,6 +213,7 @@ "cloze-suffix": "cloze-suffix", "conjugation": "", "dictionary": "Test Dictionary 2", + "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打つ", "frequencies": "
  • Test Dictionary 2: 2
  • Test Dictionary 2: 6
  • Test Dictionary 2: 11
  • Test Dictionary 2: seventeen
  • Test Dictionary 2: twenty-three (23)
  • Test Dictionary 2: twenty-nine
", @@ -217,10 +223,10 @@ "frequency-average-occurrence": "2", "furigana": "つ", "furigana-plain": "打[ぶ]つ", - "glossary": "
(vt, Test Dictionary 2)
  • butsu definition 1
  • butsu definition 2
", + "glossary": "
(vt, termsDictAlias)
  • butsu definition 1
  • butsu definition 2
", "glossary-brief": "
  • butsu definition 1
  • butsu definition 2
", "glossary-no-dictionary": "
(vt)
  • butsu definition 1
  • butsu definition 2
", - "glossary-first": "
(vt, Test Dictionary 2)
  • butsu definition 1
  • butsu definition 2
", + "glossary-first": "
(vt, termsDictAlias)
  • butsu definition 1
  • butsu definition 2
", "glossary-first-brief": "
  • butsu definition 1
  • butsu definition 2
", "glossary-first-no-dictionary": "
(vt)
  • butsu definition 1
  • butsu definition 2
", "part-of-speech": "Godan verb", @@ -249,6 +255,7 @@ "cloze-suffix": "cloze-suffix", "conjugation": "", "dictionary": "Test Dictionary 2", + "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打つ", "frequencies": "
  • Test Dictionary 2: 2
  • Test Dictionary 2: 6
  • Test Dictionary 2: 10
  • Test Dictionary 2: sixteen
  • Test Dictionary 2: twenty-two (22)
  • Test Dictionary 2: 28
", @@ -258,10 +265,10 @@ "frequency-average-occurrence": "2", "furigana": "つ", "furigana-plain": "打[う]つ", - "glossary": "
(vt, Test Dictionary 2)
  • utsu definition 3
  • utsu definition 4
", + "glossary": "
(vt, termsDictAlias)
  • utsu definition 3
  • utsu definition 4
", "glossary-brief": "
  • utsu definition 3
  • utsu definition 4
", "glossary-no-dictionary": "
(vt)
  • utsu definition 3
  • utsu definition 4
", - "glossary-first": "
(vt, Test Dictionary 2)
  • utsu definition 3
  • utsu definition 4
", + "glossary-first": "
(vt, termsDictAlias)
  • utsu definition 3
  • utsu definition 4
", "glossary-first-brief": "
  • utsu definition 3
  • utsu definition 4
", "glossary-first-no-dictionary": "
(vt)
  • utsu definition 3
  • utsu definition 4
", "part-of-speech": "Godan verb", @@ -290,6 +297,7 @@ "cloze-suffix": "cloze-suffix", "conjugation": "", "dictionary": "Test Dictionary 2", + "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打つ", "frequencies": "
  • Test Dictionary 2: 2
  • Test Dictionary 2: 6
  • Test Dictionary 2: 11
  • Test Dictionary 2: seventeen
  • Test Dictionary 2: twenty-three (23)
  • Test Dictionary 2: twenty-nine
", @@ -299,10 +307,10 @@ "frequency-average-occurrence": "2", "furigana": "つ", "furigana-plain": "打[ぶ]つ", - "glossary": "
(vt, Test Dictionary 2)
  • butsu definition 3
  • butsu definition 4
", + "glossary": "
(vt, termsDictAlias)
  • butsu definition 3
  • butsu definition 4
", "glossary-brief": "
  • butsu definition 3
  • butsu definition 4
", "glossary-no-dictionary": "
(vt)
  • butsu definition 3
  • butsu definition 4
", - "glossary-first": "
(vt, Test Dictionary 2)
  • butsu definition 3
  • butsu definition 4
", + "glossary-first": "
(vt, termsDictAlias)
  • butsu definition 3
  • butsu definition 4
", "glossary-first-brief": "
  • butsu definition 3
  • butsu definition 4
", "glossary-first-no-dictionary": "
(vt)
  • butsu definition 3
  • butsu definition 4
", "part-of-speech": "Godan verb", @@ -331,6 +339,7 @@ "cloze-suffix": "cloze-suffix", "conjugation": "", "dictionary": "Test Dictionary 2", + "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打", "frequencies": "
  • Test Dictionary 2: 1
  • Test Dictionary 2: four
  • Test Dictionary 2: five (5)
  • Test Dictionary 2: 8
  • Test Dictionary 2: fourteen
  • Test Dictionary 2: twenty (20)
  • Test Dictionary 2: 26
", @@ -372,6 +381,7 @@ "cloze-suffix": "cloze-suffix", "conjugation": "", "dictionary": "Test Dictionary 2", + "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打", "frequencies": "
  • Test Dictionary 2: 1
  • Test Dictionary 2: four
  • Test Dictionary 2: five (5)
  • Test Dictionary 2: 9
  • Test Dictionary 2: fifteen
  • Test Dictionary 2: twenty-one (21)
  • Test Dictionary 2: twenty-seven
", @@ -418,6 +428,7 @@ "cloze-suffix": "cloze-suffix", "conjugation": "", "dictionary": "Test Dictionary 2", + "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打ち込む", "frequencies": "
  • Test Dictionary 2: 3
  • Test Dictionary 2: seven
  • Test Dictionary 2: 12
  • Test Dictionary 2: eighteen
  • Test Dictionary 2: twenty-four (24)
  • Test Dictionary 2: 30
", @@ -427,10 +438,10 @@ "frequency-average-occurrence": "3", "furigana": "む", "furigana-plain": "打[う]ち 込[こ]む", - "glossary": "
(vt, Test Dictionary 2)
  • uchikomu definition 1
  • uchikomu definition 2
", + "glossary": "
(vt, termsDictAlias)
  • uchikomu definition 1
  • uchikomu definition 2
", "glossary-brief": "
  • uchikomu definition 1
  • uchikomu definition 2
", "glossary-no-dictionary": "
(vt)
  • uchikomu definition 1
  • uchikomu definition 2
", - "glossary-first": "
(vt, Test Dictionary 2)
  • uchikomu definition 1
  • uchikomu definition 2
", + "glossary-first": "
(vt, termsDictAlias)
  • uchikomu definition 1
  • uchikomu definition 2
", "glossary-first-brief": "
  • uchikomu definition 1
  • uchikomu definition 2
", "glossary-first-no-dictionary": "
(vt)
  • uchikomu definition 1
  • uchikomu definition 2
", "part-of-speech": "Godan verb", @@ -459,6 +470,7 @@ "cloze-suffix": "cloze-suffix", "conjugation": "", "dictionary": "Test Dictionary 2", + "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打ち込む", "frequencies": "
  • Test Dictionary 2: 3
  • Test Dictionary 2: seven
  • Test Dictionary 2: 13
  • Test Dictionary 2: nineteen
  • Test Dictionary 2: twenty-five (25)
  • Test Dictionary 2: thirty-one
", @@ -468,10 +480,10 @@ "frequency-average-occurrence": "3", "furigana": "む", "furigana-plain": "打[ぶ]ち 込[こ]む", - "glossary": "
(vt, Test Dictionary 2)
  • buchikomu definition 1
  • buchikomu definition 2
", + "glossary": "
(vt, termsDictAlias)
  • buchikomu definition 1
  • buchikomu definition 2
", "glossary-brief": "
  • buchikomu definition 1
  • buchikomu definition 2
", "glossary-no-dictionary": "
(vt)
  • buchikomu definition 1
  • buchikomu definition 2
", - "glossary-first": "
(vt, Test Dictionary 2)
  • buchikomu definition 1
  • buchikomu definition 2
", + "glossary-first": "
(vt, termsDictAlias)
  • buchikomu definition 1
  • buchikomu definition 2
", "glossary-first-brief": "
  • buchikomu definition 1
  • buchikomu definition 2
", "glossary-first-no-dictionary": "
(vt)
  • buchikomu definition 1
  • buchikomu definition 2
", "part-of-speech": "Godan verb", @@ -500,6 +512,7 @@ "cloze-suffix": "cloze-suffix", "conjugation": "", "dictionary": "Test Dictionary 2", + "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打ち込む", "frequencies": "
  • Test Dictionary 2: 3
  • Test Dictionary 2: seven
  • Test Dictionary 2: 12
  • Test Dictionary 2: eighteen
  • Test Dictionary 2: twenty-four (24)
  • Test Dictionary 2: 30
", @@ -509,10 +522,10 @@ "frequency-average-occurrence": "3", "furigana": "む", "furigana-plain": "打[う]ち 込[こ]む", - "glossary": "
(vt, Test Dictionary 2)
  • uchikomu definition 3
  • uchikomu definition 4
", + "glossary": "
(vt, termsDictAlias)
  • uchikomu definition 3
  • uchikomu definition 4
", "glossary-brief": "
  • uchikomu definition 3
  • uchikomu definition 4
", "glossary-no-dictionary": "
(vt)
  • uchikomu definition 3
  • uchikomu definition 4
", - "glossary-first": "
(vt, Test Dictionary 2)
  • uchikomu definition 3
  • uchikomu definition 4
", + "glossary-first": "
(vt, termsDictAlias)
  • uchikomu definition 3
  • uchikomu definition 4
", "glossary-first-brief": "
  • uchikomu definition 3
  • uchikomu definition 4
", "glossary-first-no-dictionary": "
(vt)
  • uchikomu definition 3
  • uchikomu definition 4
", "part-of-speech": "Godan verb", @@ -541,6 +554,7 @@ "cloze-suffix": "cloze-suffix", "conjugation": "", "dictionary": "Test Dictionary 2", + "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打ち込む", "frequencies": "
  • Test Dictionary 2: 3
  • Test Dictionary 2: seven
  • Test Dictionary 2: 13
  • Test Dictionary 2: nineteen
  • Test Dictionary 2: twenty-five (25)
  • Test Dictionary 2: thirty-one
", @@ -550,10 +564,10 @@ "frequency-average-occurrence": "3", "furigana": "む", "furigana-plain": "打[ぶ]ち 込[こ]む", - "glossary": "
(vt, Test Dictionary 2)
  • buchikomu definition 3
  • buchikomu definition 4
", + "glossary": "
(vt, termsDictAlias)
  • buchikomu definition 3
  • buchikomu definition 4
", "glossary-brief": "
  • buchikomu definition 3
  • buchikomu definition 4
", "glossary-no-dictionary": "
(vt)
  • buchikomu definition 3
  • buchikomu definition 4
", - "glossary-first": "
(vt, Test Dictionary 2)
  • buchikomu definition 3
  • buchikomu definition 4
", + "glossary-first": "
(vt, termsDictAlias)
  • buchikomu definition 3
  • buchikomu definition 4
", "glossary-first-brief": "
  • buchikomu definition 3
  • buchikomu definition 4
", "glossary-first-no-dictionary": "
(vt)
  • buchikomu definition 3
  • buchikomu definition 4
", "part-of-speech": "Godan verb", @@ -582,6 +596,7 @@ "cloze-suffix": "cloze-suffix", "conjugation": "continuative", "dictionary": "Test Dictionary 2", + "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打つ", "frequencies": "
  • Test Dictionary 2: 2
  • Test Dictionary 2: 6
  • Test Dictionary 2: 10
  • Test Dictionary 2: sixteen
  • Test Dictionary 2: twenty-two (22)
  • Test Dictionary 2: 28
", @@ -591,10 +606,10 @@ "frequency-average-occurrence": "2", "furigana": "つ", "furigana-plain": "打[う]つ", - "glossary": "
(vt, Test Dictionary 2)
  • utsu definition 1
  • utsu definition 2
", + "glossary": "
(vt, termsDictAlias)
  • utsu definition 1
  • utsu definition 2
", "glossary-brief": "
  • utsu definition 1
  • utsu definition 2
", "glossary-no-dictionary": "
(vt)
  • utsu definition 1
  • utsu definition 2
", - "glossary-first": "
(vt, Test Dictionary 2)
  • utsu definition 1
  • utsu definition 2
", + "glossary-first": "
(vt, termsDictAlias)
  • utsu definition 1
  • utsu definition 2
", "glossary-first-brief": "
  • utsu definition 1
  • utsu definition 2
", "glossary-first-no-dictionary": "
(vt)
  • utsu definition 1
  • utsu definition 2
", "part-of-speech": "Godan verb", @@ -623,6 +638,7 @@ "cloze-suffix": "cloze-suffix", "conjugation": "continuative", "dictionary": "Test Dictionary 2", + "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打つ", "frequencies": "
  • Test Dictionary 2: 2
  • Test Dictionary 2: 6
  • Test Dictionary 2: 11
  • Test Dictionary 2: seventeen
  • Test Dictionary 2: twenty-three (23)
  • Test Dictionary 2: twenty-nine
", @@ -632,10 +648,10 @@ "frequency-average-occurrence": "2", "furigana": "つ", "furigana-plain": "打[ぶ]つ", - "glossary": "
(vt, Test Dictionary 2)
  • butsu definition 1
  • butsu definition 2
", + "glossary": "
(vt, termsDictAlias)
  • butsu definition 1
  • butsu definition 2
", "glossary-brief": "
  • butsu definition 1
  • butsu definition 2
", "glossary-no-dictionary": "
(vt)
  • butsu definition 1
  • butsu definition 2
", - "glossary-first": "
(vt, Test Dictionary 2)
  • butsu definition 1
  • butsu definition 2
", + "glossary-first": "
(vt, termsDictAlias)
  • butsu definition 1
  • butsu definition 2
", "glossary-first-brief": "
  • butsu definition 1
  • butsu definition 2
", "glossary-first-no-dictionary": "
(vt)
  • butsu definition 1
  • butsu definition 2
", "part-of-speech": "Godan verb", @@ -664,6 +680,7 @@ "cloze-suffix": "cloze-suffix", "conjugation": "continuative", "dictionary": "Test Dictionary 2", + "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打つ", "frequencies": "
  • Test Dictionary 2: 2
  • Test Dictionary 2: 6
  • Test Dictionary 2: 10
  • Test Dictionary 2: sixteen
  • Test Dictionary 2: twenty-two (22)
  • Test Dictionary 2: 28
", @@ -673,10 +690,10 @@ "frequency-average-occurrence": "2", "furigana": "つ", "furigana-plain": "打[う]つ", - "glossary": "
(vt, Test Dictionary 2)
  • utsu definition 3
  • utsu definition 4
", + "glossary": "
(vt, termsDictAlias)
  • utsu definition 3
  • utsu definition 4
", "glossary-brief": "
  • utsu definition 3
  • utsu definition 4
", "glossary-no-dictionary": "
(vt)
  • utsu definition 3
  • utsu definition 4
", - "glossary-first": "
(vt, Test Dictionary 2)
  • utsu definition 3
  • utsu definition 4
", + "glossary-first": "
(vt, termsDictAlias)
  • utsu definition 3
  • utsu definition 4
", "glossary-first-brief": "
  • utsu definition 3
  • utsu definition 4
", "glossary-first-no-dictionary": "
(vt)
  • utsu definition 3
  • utsu definition 4
", "part-of-speech": "Godan verb", @@ -705,6 +722,7 @@ "cloze-suffix": "cloze-suffix", "conjugation": "continuative", "dictionary": "Test Dictionary 2", + "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打つ", "frequencies": "
  • Test Dictionary 2: 2
  • Test Dictionary 2: 6
  • Test Dictionary 2: 11
  • Test Dictionary 2: seventeen
  • Test Dictionary 2: twenty-three (23)
  • Test Dictionary 2: twenty-nine
", @@ -714,10 +732,10 @@ "frequency-average-occurrence": "2", "furigana": "つ", "furigana-plain": "打[ぶ]つ", - "glossary": "
(vt, Test Dictionary 2)
  • butsu definition 3
  • butsu definition 4
", + "glossary": "
(vt, termsDictAlias)
  • butsu definition 3
  • butsu definition 4
", "glossary-brief": "
  • butsu definition 3
  • butsu definition 4
", "glossary-no-dictionary": "
(vt)
  • butsu definition 3
  • butsu definition 4
", - "glossary-first": "
(vt, Test Dictionary 2)
  • butsu definition 3
  • butsu definition 4
", + "glossary-first": "
(vt, termsDictAlias)
  • butsu definition 3
  • butsu definition 4
", "glossary-first-brief": "
  • butsu definition 3
  • butsu definition 4
", "glossary-first-no-dictionary": "
(vt)
  • butsu definition 3
  • butsu definition 4
", "part-of-speech": "Godan verb", @@ -746,6 +764,7 @@ "cloze-suffix": "cloze-suffix", "conjugation": "", "dictionary": "Test Dictionary 2", + "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打", "frequencies": "
  • Test Dictionary 2: 1
  • Test Dictionary 2: four
  • Test Dictionary 2: five (5)
  • Test Dictionary 2: 8
  • Test Dictionary 2: fourteen
  • Test Dictionary 2: twenty (20)
  • Test Dictionary 2: 26
", @@ -787,6 +806,7 @@ "cloze-suffix": "cloze-suffix", "conjugation": "", "dictionary": "Test Dictionary 2", + "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打", "frequencies": "
  • Test Dictionary 2: 1
  • Test Dictionary 2: four
  • Test Dictionary 2: five (5)
  • Test Dictionary 2: 9
  • Test Dictionary 2: fifteen
  • Test Dictionary 2: twenty-one (21)
  • Test Dictionary 2: twenty-seven
", @@ -833,6 +853,7 @@ "cloze-suffix": "cloze-suffix", "conjugation": "", "dictionary": "Test Dictionary 2", + "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "画像", "frequencies": "", @@ -879,6 +900,7 @@ "cloze-suffix": "cloze-suffix", "conjugation": "", "dictionary": "Test Dictionary 2", + "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打", "frequencies": "
  • Test Dictionary 2: 1
  • Test Dictionary 2: four
  • Test Dictionary 2: five (5)
  • Test Dictionary 2: 8
  • Test Dictionary 2: fourteen
  • Test Dictionary 2: twenty (20)
  • Test Dictionary 2: 26
", @@ -925,6 +947,7 @@ "cloze-suffix": "cloze-suffix", "conjugation": "", "dictionary": "Test Dictionary 2", + "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打", "frequencies": "
  • Test Dictionary 2: 1
  • Test Dictionary 2: four
  • Test Dictionary 2: five (5)
  • Test Dictionary 2: 9
  • Test Dictionary 2: fifteen
  • Test Dictionary 2: twenty-one (21)
  • Test Dictionary 2: twenty-seven
", @@ -966,6 +989,7 @@ "cloze-suffix": "cloze-suffix", "conjugation": "", "dictionary": "Test Dictionary 2", + "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打", "frequencies": "
  • Test Dictionary 2: 1
  • Test Dictionary 2: four
  • Test Dictionary 2: five (5)
  • Test Dictionary 2: 8
  • Test Dictionary 2: fourteen
  • Test Dictionary 2: twenty (20)
  • Test Dictionary 2: 26
", @@ -1012,6 +1036,7 @@ "cloze-suffix": "cloze-suffix", "conjugation": "", "dictionary": "Test Dictionary 2", + "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打つ", "frequencies": "
  • Test Dictionary 2: 2
  • Test Dictionary 2: 6
  • Test Dictionary 2: 10
  • Test Dictionary 2: sixteen
  • Test Dictionary 2: twenty-two (22)
  • Test Dictionary 2: 28
", @@ -1021,10 +1046,10 @@ "frequency-average-occurrence": "2", "furigana": "つ", "furigana-plain": "打[う]つ", - "glossary": "
(vt, Test Dictionary 2)
  • utsu definition 1
  • utsu definition 2
", + "glossary": "
(vt, termsDictAlias)
  • utsu definition 1
  • utsu definition 2
", "glossary-brief": "
  • utsu definition 1
  • utsu definition 2
", "glossary-no-dictionary": "
(vt)
  • utsu definition 1
  • utsu definition 2
", - "glossary-first": "
(vt, Test Dictionary 2)
  • utsu definition 1
  • utsu definition 2
", + "glossary-first": "
(vt, termsDictAlias)
  • utsu definition 1
  • utsu definition 2
", "glossary-first-brief": "
  • utsu definition 1
  • utsu definition 2
", "glossary-first-no-dictionary": "
(vt)
  • utsu definition 1
  • utsu definition 2
", "part-of-speech": "Godan verb", @@ -1053,6 +1078,7 @@ "cloze-suffix": "cloze-suffix", "conjugation": "", "dictionary": "Test Dictionary 2", + "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打つ", "frequencies": "
  • Test Dictionary 2: 2
  • Test Dictionary 2: 6
  • Test Dictionary 2: 10
  • Test Dictionary 2: sixteen
  • Test Dictionary 2: twenty-two (22)
  • Test Dictionary 2: 28
", @@ -1062,10 +1088,10 @@ "frequency-average-occurrence": "2", "furigana": "つ", "furigana-plain": "打[う]つ", - "glossary": "
(vt, Test Dictionary 2)
  • utsu definition 3
  • utsu definition 4
", + "glossary": "
(vt, termsDictAlias)
  • utsu definition 3
  • utsu definition 4
", "glossary-brief": "
  • utsu definition 3
  • utsu definition 4
", "glossary-no-dictionary": "
(vt)
  • utsu definition 3
  • utsu definition 4
", - "glossary-first": "
(vt, Test Dictionary 2)
  • utsu definition 3
  • utsu definition 4
", + "glossary-first": "
(vt, termsDictAlias)
  • utsu definition 3
  • utsu definition 4
", "glossary-first-brief": "
  • utsu definition 3
  • utsu definition 4
", "glossary-first-no-dictionary": "
(vt)
  • utsu definition 3
  • utsu definition 4
", "part-of-speech": "Godan verb", @@ -1099,6 +1125,7 @@ "cloze-suffix": "cloze-suffix", "conjugation": "", "dictionary": "Test Dictionary 2", + "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打つ", "frequencies": "
  • Test Dictionary 2: 2
  • Test Dictionary 2: 6
  • Test Dictionary 2: 11
  • Test Dictionary 2: seventeen
  • Test Dictionary 2: twenty-three (23)
  • Test Dictionary 2: twenty-nine
", @@ -1108,10 +1135,10 @@ "frequency-average-occurrence": "2", "furigana": "つ", "furigana-plain": "打[ぶ]つ", - "glossary": "
(vt, Test Dictionary 2)
  • butsu definition 1
  • butsu definition 2
", + "glossary": "
(vt, termsDictAlias)
  • butsu definition 1
  • butsu definition 2
", "glossary-brief": "
  • butsu definition 1
  • butsu definition 2
", "glossary-no-dictionary": "
(vt)
  • butsu definition 1
  • butsu definition 2
", - "glossary-first": "
(vt, Test Dictionary 2)
  • butsu definition 1
  • butsu definition 2
", + "glossary-first": "
(vt, termsDictAlias)
  • butsu definition 1
  • butsu definition 2
", "glossary-first-brief": "
  • butsu definition 1
  • butsu definition 2
", "glossary-first-no-dictionary": "
(vt)
  • butsu definition 1
  • butsu definition 2
", "part-of-speech": "Godan verb", @@ -1140,6 +1167,7 @@ "cloze-suffix": "cloze-suffix", "conjugation": "", "dictionary": "Test Dictionary 2", + "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打つ", "frequencies": "
  • Test Dictionary 2: 2
  • Test Dictionary 2: 6
  • Test Dictionary 2: 11
  • Test Dictionary 2: seventeen
  • Test Dictionary 2: twenty-three (23)
  • Test Dictionary 2: twenty-nine
", @@ -1149,10 +1177,10 @@ "frequency-average-occurrence": "2", "furigana": "つ", "furigana-plain": "打[ぶ]つ", - "glossary": "
(vt, Test Dictionary 2)
  • butsu definition 3
  • butsu definition 4
", + "glossary": "
(vt, termsDictAlias)
  • butsu definition 3
  • butsu definition 4
", "glossary-brief": "
  • butsu definition 3
  • butsu definition 4
", "glossary-no-dictionary": "
(vt)
  • butsu definition 3
  • butsu definition 4
", - "glossary-first": "
(vt, Test Dictionary 2)
  • butsu definition 3
  • butsu definition 4
", + "glossary-first": "
(vt, termsDictAlias)
  • butsu definition 3
  • butsu definition 4
", "glossary-first-brief": "
  • butsu definition 3
  • butsu definition 4
", "glossary-first-no-dictionary": "
(vt)
  • butsu definition 3
  • butsu definition 4
", "part-of-speech": "Godan verb", @@ -1186,6 +1214,7 @@ "cloze-suffix": "cloze-suffix", "conjugation": "", "dictionary": "Test Dictionary 2", + "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打ち込む", "frequencies": "
  • Test Dictionary 2: 3
  • Test Dictionary 2: seven
  • Test Dictionary 2: 12
  • Test Dictionary 2: eighteen
  • Test Dictionary 2: twenty-four (24)
  • Test Dictionary 2: 30
", @@ -1195,10 +1224,10 @@ "frequency-average-occurrence": "3", "furigana": "む", "furigana-plain": "打[う]ち 込[こ]む", - "glossary": "
(vt, Test Dictionary 2)
  • uchikomu definition 1
  • uchikomu definition 2
", + "glossary": "
(vt, termsDictAlias)
  • uchikomu definition 1
  • uchikomu definition 2
", "glossary-brief": "
  • uchikomu definition 1
  • uchikomu definition 2
", "glossary-no-dictionary": "
(vt)
  • uchikomu definition 1
  • uchikomu definition 2
", - "glossary-first": "
(vt, Test Dictionary 2)
  • uchikomu definition 1
  • uchikomu definition 2
", + "glossary-first": "
(vt, termsDictAlias)
  • uchikomu definition 1
  • uchikomu definition 2
", "glossary-first-brief": "
  • uchikomu definition 1
  • uchikomu definition 2
", "glossary-first-no-dictionary": "
(vt)
  • uchikomu definition 1
  • uchikomu definition 2
", "part-of-speech": "Godan verb", @@ -1227,6 +1256,7 @@ "cloze-suffix": "cloze-suffix", "conjugation": "", "dictionary": "Test Dictionary 2", + "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打ち込む", "frequencies": "
  • Test Dictionary 2: 3
  • Test Dictionary 2: seven
  • Test Dictionary 2: 12
  • Test Dictionary 2: eighteen
  • Test Dictionary 2: twenty-four (24)
  • Test Dictionary 2: 30
", @@ -1236,10 +1266,10 @@ "frequency-average-occurrence": "3", "furigana": "む", "furigana-plain": "打[う]ち 込[こ]む", - "glossary": "
(vt, Test Dictionary 2)
  • uchikomu definition 3
  • uchikomu definition 4
", + "glossary": "
(vt, termsDictAlias)
  • uchikomu definition 3
  • uchikomu definition 4
", "glossary-brief": "
  • uchikomu definition 3
  • uchikomu definition 4
", "glossary-no-dictionary": "
(vt)
  • uchikomu definition 3
  • uchikomu definition 4
", - "glossary-first": "
(vt, Test Dictionary 2)
  • uchikomu definition 3
  • uchikomu definition 4
", + "glossary-first": "
(vt, termsDictAlias)
  • uchikomu definition 3
  • uchikomu definition 4
", "glossary-first-brief": "
  • uchikomu definition 3
  • uchikomu definition 4
", "glossary-first-no-dictionary": "
(vt)
  • uchikomu definition 3
  • uchikomu definition 4
", "part-of-speech": "Godan verb", @@ -1268,6 +1298,7 @@ "cloze-suffix": "cloze-suffix", "conjugation": "continuative", "dictionary": "Test Dictionary 2", + "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打つ", "frequencies": "
  • Test Dictionary 2: 2
  • Test Dictionary 2: 6
  • Test Dictionary 2: 10
  • Test Dictionary 2: sixteen
  • Test Dictionary 2: twenty-two (22)
  • Test Dictionary 2: 28
", @@ -1277,10 +1308,10 @@ "frequency-average-occurrence": "2", "furigana": "つ", "furigana-plain": "打[う]つ", - "glossary": "
(vt, Test Dictionary 2)
  • utsu definition 1
  • utsu definition 2
", + "glossary": "
(vt, termsDictAlias)
  • utsu definition 1
  • utsu definition 2
", "glossary-brief": "
  • utsu definition 1
  • utsu definition 2
", "glossary-no-dictionary": "
(vt)
  • utsu definition 1
  • utsu definition 2
", - "glossary-first": "
(vt, Test Dictionary 2)
  • utsu definition 1
  • utsu definition 2
", + "glossary-first": "
(vt, termsDictAlias)
  • utsu definition 1
  • utsu definition 2
", "glossary-first-brief": "
  • utsu definition 1
  • utsu definition 2
", "glossary-first-no-dictionary": "
(vt)
  • utsu definition 1
  • utsu definition 2
", "part-of-speech": "Godan verb", @@ -1309,6 +1340,7 @@ "cloze-suffix": "cloze-suffix", "conjugation": "continuative", "dictionary": "Test Dictionary 2", + "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打つ", "frequencies": "
  • Test Dictionary 2: 2
  • Test Dictionary 2: 6
  • Test Dictionary 2: 10
  • Test Dictionary 2: sixteen
  • Test Dictionary 2: twenty-two (22)
  • Test Dictionary 2: 28
", @@ -1318,10 +1350,10 @@ "frequency-average-occurrence": "2", "furigana": "つ", "furigana-plain": "打[う]つ", - "glossary": "
(vt, Test Dictionary 2)
  • utsu definition 3
  • utsu definition 4
", + "glossary": "
(vt, termsDictAlias)
  • utsu definition 3
  • utsu definition 4
", "glossary-brief": "
  • utsu definition 3
  • utsu definition 4
", "glossary-no-dictionary": "
(vt)
  • utsu definition 3
  • utsu definition 4
", - "glossary-first": "
(vt, Test Dictionary 2)
  • utsu definition 3
  • utsu definition 4
", + "glossary-first": "
(vt, termsDictAlias)
  • utsu definition 3
  • utsu definition 4
", "glossary-first-brief": "
  • utsu definition 3
  • utsu definition 4
", "glossary-first-no-dictionary": "
(vt)
  • utsu definition 3
  • utsu definition 4
", "part-of-speech": "Godan verb", @@ -1355,6 +1387,7 @@ "cloze-suffix": "cloze-suffix", "conjugation": "", "dictionary": "Test Dictionary 2", + "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打ち込む", "frequencies": "
  • Test Dictionary 2: 3
  • Test Dictionary 2: seven
  • Test Dictionary 2: 13
  • Test Dictionary 2: nineteen
  • Test Dictionary 2: twenty-five (25)
  • Test Dictionary 2: thirty-one
", @@ -1364,10 +1397,10 @@ "frequency-average-occurrence": "3", "furigana": "む", "furigana-plain": "打[ぶ]ち 込[こ]む", - "glossary": "
(vt, Test Dictionary 2)
  • buchikomu definition 1
  • buchikomu definition 2
", + "glossary": "
(vt, termsDictAlias)
  • buchikomu definition 1
  • buchikomu definition 2
", "glossary-brief": "
  • buchikomu definition 1
  • buchikomu definition 2
", "glossary-no-dictionary": "
(vt)
  • buchikomu definition 1
  • buchikomu definition 2
", - "glossary-first": "
(vt, Test Dictionary 2)
  • buchikomu definition 1
  • buchikomu definition 2
", + "glossary-first": "
(vt, termsDictAlias)
  • buchikomu definition 1
  • buchikomu definition 2
", "glossary-first-brief": "
  • buchikomu definition 1
  • buchikomu definition 2
", "glossary-first-no-dictionary": "
(vt)
  • buchikomu definition 1
  • buchikomu definition 2
", "part-of-speech": "Godan verb", @@ -1396,6 +1429,7 @@ "cloze-suffix": "cloze-suffix", "conjugation": "", "dictionary": "Test Dictionary 2", + "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打ち込む", "frequencies": "
  • Test Dictionary 2: 3
  • Test Dictionary 2: seven
  • Test Dictionary 2: 13
  • Test Dictionary 2: nineteen
  • Test Dictionary 2: twenty-five (25)
  • Test Dictionary 2: thirty-one
", @@ -1405,10 +1439,10 @@ "frequency-average-occurrence": "3", "furigana": "む", "furigana-plain": "打[ぶ]ち 込[こ]む", - "glossary": "
(vt, Test Dictionary 2)
  • buchikomu definition 3
  • buchikomu definition 4
", + "glossary": "
(vt, termsDictAlias)
  • buchikomu definition 3
  • buchikomu definition 4
", "glossary-brief": "
  • buchikomu definition 3
  • buchikomu definition 4
", "glossary-no-dictionary": "
(vt)
  • buchikomu definition 3
  • buchikomu definition 4
", - "glossary-first": "
(vt, Test Dictionary 2)
  • buchikomu definition 3
  • buchikomu definition 4
", + "glossary-first": "
(vt, termsDictAlias)
  • buchikomu definition 3
  • buchikomu definition 4
", "glossary-first-brief": "
  • buchikomu definition 3
  • buchikomu definition 4
", "glossary-first-no-dictionary": "
(vt)
  • buchikomu definition 3
  • buchikomu definition 4
", "part-of-speech": "Godan verb", @@ -1437,6 +1471,7 @@ "cloze-suffix": "cloze-suffix", "conjugation": "continuative", "dictionary": "Test Dictionary 2", + "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打つ", "frequencies": "
  • Test Dictionary 2: 2
  • Test Dictionary 2: 6
  • Test Dictionary 2: 11
  • Test Dictionary 2: seventeen
  • Test Dictionary 2: twenty-three (23)
  • Test Dictionary 2: twenty-nine
", @@ -1446,10 +1481,10 @@ "frequency-average-occurrence": "2", "furigana": "つ", "furigana-plain": "打[ぶ]つ", - "glossary": "
(vt, Test Dictionary 2)
  • butsu definition 1
  • butsu definition 2
", + "glossary": "
(vt, termsDictAlias)
  • butsu definition 1
  • butsu definition 2
", "glossary-brief": "
  • butsu definition 1
  • butsu definition 2
", "glossary-no-dictionary": "
(vt)
  • butsu definition 1
  • butsu definition 2
", - "glossary-first": "
(vt, Test Dictionary 2)
  • butsu definition 1
  • butsu definition 2
", + "glossary-first": "
(vt, termsDictAlias)
  • butsu definition 1
  • butsu definition 2
", "glossary-first-brief": "
  • butsu definition 1
  • butsu definition 2
", "glossary-first-no-dictionary": "
(vt)
  • butsu definition 1
  • butsu definition 2
", "part-of-speech": "Godan verb", @@ -1478,6 +1513,7 @@ "cloze-suffix": "cloze-suffix", "conjugation": "continuative", "dictionary": "Test Dictionary 2", + "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打つ", "frequencies": "
  • Test Dictionary 2: 2
  • Test Dictionary 2: 6
  • Test Dictionary 2: 11
  • Test Dictionary 2: seventeen
  • Test Dictionary 2: twenty-three (23)
  • Test Dictionary 2: twenty-nine
", @@ -1487,10 +1523,10 @@ "frequency-average-occurrence": "2", "furigana": "つ", "furigana-plain": "打[ぶ]つ", - "glossary": "
(vt, Test Dictionary 2)
  • butsu definition 3
  • butsu definition 4
", + "glossary": "
(vt, termsDictAlias)
  • butsu definition 3
  • butsu definition 4
", "glossary-brief": "
  • butsu definition 3
  • butsu definition 4
", "glossary-no-dictionary": "
(vt)
  • butsu definition 3
  • butsu definition 4
", - "glossary-first": "
(vt, Test Dictionary 2)
  • butsu definition 3
  • butsu definition 4
", + "glossary-first": "
(vt, termsDictAlias)
  • butsu definition 3
  • butsu definition 4
", "glossary-first-brief": "
  • butsu definition 3
  • butsu definition 4
", "glossary-first-no-dictionary": "
(vt)
  • butsu definition 3
  • butsu definition 4
", "part-of-speech": "Godan verb", @@ -1524,6 +1560,7 @@ "cloze-suffix": "cloze-suffix", "conjugation": "", "dictionary": "Test Dictionary 2", + "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "画像", "frequencies": "", @@ -1582,6 +1619,7 @@ "cloze-suffix": "cloze-suffix", "conjugation": "", "dictionary": "Test Dictionary 2", + "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打ち込む", "frequencies": "
  • Test Dictionary 2: 3
  • Test Dictionary 2: seven
  • Test Dictionary 2: 12
  • Test Dictionary 2: eighteen
  • Test Dictionary 2: twenty-four (24)
  • Test Dictionary 2: 30
", @@ -1591,10 +1629,10 @@ "frequency-average-occurrence": "3", "furigana": "む", "furigana-plain": "打[う]ち 込[こ]む", - "glossary": "
  1. (vt, Test Dictionary 2)
    • uchikomu definition 1
    • uchikomu definition 2
  2. (vt, Test Dictionary 2)
    • uchikomu definition 3
    • uchikomu definition 4
", + "glossary": "
  1. (vt, termsDictAlias)
    • uchikomu definition 1
    • uchikomu definition 2
  2. (vt, termsDictAlias)
    • uchikomu definition 3
    • uchikomu definition 4
", "glossary-brief": "
    • uchikomu definition 1
    • uchikomu definition 2
    • uchikomu definition 3
    • uchikomu definition 4
", "glossary-no-dictionary": "
  1. (vt)
    • uchikomu definition 1
    • uchikomu definition 2
  2. (vt)
    • uchikomu definition 3
    • uchikomu definition 4
", - "glossary-first": "
(vt, Test Dictionary 2)
  • uchikomu definition 1
  • uchikomu definition 2
", + "glossary-first": "
(vt, termsDictAlias)
  • uchikomu definition 1
  • uchikomu definition 2
", "glossary-first-brief": "
  • uchikomu definition 1
  • uchikomu definition 2
", "glossary-first-no-dictionary": "
(vt)
  • uchikomu definition 1
  • uchikomu definition 2
", "part-of-speech": "Godan verb", @@ -1623,6 +1661,7 @@ "cloze-suffix": "cloze-suffix", "conjugation": "", "dictionary": "Test Dictionary 2", + "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打ち込む", "frequencies": "
  • Test Dictionary 2: 3
  • Test Dictionary 2: seven
  • Test Dictionary 2: 13
  • Test Dictionary 2: nineteen
  • Test Dictionary 2: twenty-five (25)
  • Test Dictionary 2: thirty-one
", @@ -1632,10 +1671,10 @@ "frequency-average-occurrence": "3", "furigana": "む", "furigana-plain": "打[ぶ]ち 込[こ]む", - "glossary": "
  1. (vt, Test Dictionary 2)
    • buchikomu definition 1
    • buchikomu definition 2
  2. (vt, Test Dictionary 2)
    • buchikomu definition 3
    • buchikomu definition 4
", + "glossary": "
  1. (vt, termsDictAlias)
    • buchikomu definition 1
    • buchikomu definition 2
  2. (vt, termsDictAlias)
    • buchikomu definition 3
    • buchikomu definition 4
", "glossary-brief": "
    • buchikomu definition 1
    • buchikomu definition 2
    • buchikomu definition 3
    • buchikomu definition 4
", "glossary-no-dictionary": "
  1. (vt)
    • buchikomu definition 1
    • buchikomu definition 2
  2. (vt)
    • buchikomu definition 3
    • buchikomu definition 4
", - "glossary-first": "
(vt, Test Dictionary 2)
  • buchikomu definition 1
  • buchikomu definition 2
", + "glossary-first": "
(vt, termsDictAlias)
  • buchikomu definition 1
  • buchikomu definition 2
", "glossary-first-brief": "
  • buchikomu definition 1
  • buchikomu definition 2
", "glossary-first-no-dictionary": "
(vt)
  • buchikomu definition 1
  • buchikomu definition 2
", "part-of-speech": "Godan verb", @@ -1664,6 +1703,7 @@ "cloze-suffix": "cloze-suffix", "conjugation": "continuative", "dictionary": "Test Dictionary 2", + "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打つ", "frequencies": "
  • Test Dictionary 2: 2
  • Test Dictionary 2: 6
  • Test Dictionary 2: 10
  • Test Dictionary 2: sixteen
  • Test Dictionary 2: twenty-two (22)
  • Test Dictionary 2: 28
", @@ -1673,10 +1713,10 @@ "frequency-average-occurrence": "2", "furigana": "つ", "furigana-plain": "打[う]つ", - "glossary": "
  1. (vt, Test Dictionary 2)
    • utsu definition 1
    • utsu definition 2
  2. (vt, Test Dictionary 2)
    • utsu definition 3
    • utsu definition 4
", + "glossary": "
  1. (vt, termsDictAlias)
    • utsu definition 1
    • utsu definition 2
  2. (vt, termsDictAlias)
    • utsu definition 3
    • utsu definition 4
", "glossary-brief": "
    • utsu definition 1
    • utsu definition 2
    • utsu definition 3
    • utsu definition 4
", "glossary-no-dictionary": "
  1. (vt)
    • utsu definition 1
    • utsu definition 2
  2. (vt)
    • utsu definition 3
    • utsu definition 4
", - "glossary-first": "
(vt, Test Dictionary 2)
  • utsu definition 1
  • utsu definition 2
", + "glossary-first": "
(vt, termsDictAlias)
  • utsu definition 1
  • utsu definition 2
", "glossary-first-brief": "
  • utsu definition 1
  • utsu definition 2
", "glossary-first-no-dictionary": "
(vt)
  • utsu definition 1
  • utsu definition 2
", "part-of-speech": "Godan verb", @@ -1705,6 +1745,7 @@ "cloze-suffix": "cloze-suffix", "conjugation": "continuative", "dictionary": "Test Dictionary 2", + "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打つ", "frequencies": "
  • Test Dictionary 2: 2
  • Test Dictionary 2: 6
  • Test Dictionary 2: 11
  • Test Dictionary 2: seventeen
  • Test Dictionary 2: twenty-three (23)
  • Test Dictionary 2: twenty-nine
", @@ -1714,10 +1755,10 @@ "frequency-average-occurrence": "2", "furigana": "つ", "furigana-plain": "打[ぶ]つ", - "glossary": "
  1. (vt, Test Dictionary 2)
    • butsu definition 1
    • butsu definition 2
  2. (vt, Test Dictionary 2)
    • butsu definition 3
    • butsu definition 4
", + "glossary": "
  1. (vt, termsDictAlias)
    • butsu definition 1
    • butsu definition 2
  2. (vt, termsDictAlias)
    • butsu definition 3
    • butsu definition 4
", "glossary-brief": "
    • butsu definition 1
    • butsu definition 2
    • butsu definition 3
    • butsu definition 4
", "glossary-no-dictionary": "
  1. (vt)
    • butsu definition 1
    • butsu definition 2
  2. (vt)
    • butsu definition 3
    • butsu definition 4
", - "glossary-first": "
(vt, Test Dictionary 2)
  • butsu definition 1
  • butsu definition 2
", + "glossary-first": "
(vt, termsDictAlias)
  • butsu definition 1
  • butsu definition 2
", "glossary-first-brief": "
  • butsu definition 1
  • butsu definition 2
", "glossary-first-no-dictionary": "
(vt)
  • butsu definition 1
  • butsu definition 2
", "part-of-speech": "Godan verb", @@ -1746,6 +1787,7 @@ "cloze-suffix": "cloze-suffix", "conjugation": "", "dictionary": "Test Dictionary 2", + "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打", "frequencies": "
  • Test Dictionary 2: 1
  • Test Dictionary 2: four
  • Test Dictionary 2: five (5)
  • Test Dictionary 2: 8
  • Test Dictionary 2: fourteen
  • Test Dictionary 2: twenty (20)
  • Test Dictionary 2: 26
", @@ -1787,6 +1829,7 @@ "cloze-suffix": "cloze-suffix", "conjugation": "", "dictionary": "Test Dictionary 2", + "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打", "frequencies": "
  • Test Dictionary 2: 1
  • Test Dictionary 2: four
  • Test Dictionary 2: five (5)
  • Test Dictionary 2: 9
  • Test Dictionary 2: fifteen
  • Test Dictionary 2: twenty-one (21)
  • Test Dictionary 2: twenty-seven
", @@ -1833,6 +1876,7 @@ "cloze-suffix": "cloze-suffix", "conjugation": "", "dictionary": "Test Dictionary 2", + "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打ち込む", "frequencies": "
  • (む) Test Dictionary 2: 3
  • (む) Test Dictionary 2: seven
  • (む) Test Dictionary 2: 12
  • (む) Test Dictionary 2: eighteen
  • (む) Test Dictionary 2: twenty-four (24)
  • (む) Test Dictionary 2: 30
  • (む) Test Dictionary 2: 3
  • (む) Test Dictionary 2: seven
  • (む) Test Dictionary 2: 13
  • (む) Test Dictionary 2: nineteen
  • (む) Test Dictionary 2: twenty-five (25)
  • (む) Test Dictionary 2: thirty-one
", @@ -1842,10 +1886,10 @@ "frequency-average-occurrence": "3", "furigana": "", "furigana-plain": "打[う]ち 込[こ]む打[ぶ]ち 込[こ]む", - "glossary": "
  1. (vt, Test Dictionary 2) (うちこむ only)
    • uchikomu definition 1
    • uchikomu definition 2
  2. (vt, Test Dictionary 2) (ぶちこむ only)
    • buchikomu definition 1
    • buchikomu definition 2
  3. (vt, Test Dictionary 2) (うちこむ only)
    • uchikomu definition 3
    • uchikomu definition 4
  4. (vt, Test Dictionary 2) (ぶちこむ only)
    • buchikomu definition 3
    • buchikomu definition 4
", + "glossary": "
  1. (vt, termsDictAlias) (うちこむ only)
    • uchikomu definition 1
    • uchikomu definition 2
  2. (vt, termsDictAlias) (ぶちこむ only)
    • buchikomu definition 1
    • buchikomu definition 2
  3. (vt, termsDictAlias) (うちこむ only)
    • uchikomu definition 3
    • uchikomu definition 4
  4. (vt, termsDictAlias) (ぶちこむ only)
    • buchikomu definition 3
    • buchikomu definition 4
", "glossary-brief": "
    • uchikomu definition 1
    • uchikomu definition 2
    • buchikomu definition 1
    • buchikomu definition 2
    • uchikomu definition 3
    • uchikomu definition 4
    • buchikomu definition 3
    • buchikomu definition 4
", "glossary-no-dictionary": "
  1. (vt) (うちこむ only)
    • uchikomu definition 1
    • uchikomu definition 2
  2. (vt) (ぶちこむ only)
    • buchikomu definition 1
    • buchikomu definition 2
  3. (vt) (うちこむ only)
    • uchikomu definition 3
    • uchikomu definition 4
  4. (vt) (ぶちこむ only)
    • buchikomu definition 3
    • buchikomu definition 4
", - "glossary-first": "
(vt, Test Dictionary 2) (うちこむ only)
  • uchikomu definition 1
  • uchikomu definition 2
", + "glossary-first": "
(vt, termsDictAlias) (うちこむ only)
  • uchikomu definition 1
  • uchikomu definition 2
", "glossary-first-brief": "
  • uchikomu definition 1
  • uchikomu definition 2
", "glossary-first-no-dictionary": "
(vt) (うちこむ only)
  • uchikomu definition 1
  • uchikomu definition 2
", "part-of-speech": "Godan verb", @@ -1874,6 +1918,7 @@ "cloze-suffix": "cloze-suffix", "conjugation": "continuative", "dictionary": "Test Dictionary 2", + "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打つ", "frequencies": "
  • (つ) Test Dictionary 2: 2
  • (つ) Test Dictionary 2: 6
  • (つ) Test Dictionary 2: 10
  • (つ) Test Dictionary 2: sixteen
  • (つ) Test Dictionary 2: twenty-two (22)
  • (つ) Test Dictionary 2: 28
  • (つ) Test Dictionary 2: 2
  • (つ) Test Dictionary 2: 6
  • (つ) Test Dictionary 2: 11
  • (つ) Test Dictionary 2: seventeen
  • (つ) Test Dictionary 2: twenty-three (23)
  • (つ) Test Dictionary 2: twenty-nine
", @@ -1883,10 +1928,10 @@ "frequency-average-occurrence": "2", "furigana": "", "furigana-plain": "打[う]つ打[ぶ]つ", - "glossary": "
  1. (vt, Test Dictionary 2) (うつ only)
    • utsu definition 1
    • utsu definition 2
  2. (vt, Test Dictionary 2) (ぶつ only)
    • butsu definition 1
    • butsu definition 2
  3. (vt, Test Dictionary 2) (うつ only)
    • utsu definition 3
    • utsu definition 4
  4. (vt, Test Dictionary 2) (ぶつ only)
    • butsu definition 3
    • butsu definition 4
", + "glossary": "
  1. (vt, termsDictAlias) (うつ only)
    • utsu definition 1
    • utsu definition 2
  2. (vt, termsDictAlias) (ぶつ only)
    • butsu definition 1
    • butsu definition 2
  3. (vt, termsDictAlias) (うつ only)
    • utsu definition 3
    • utsu definition 4
  4. (vt, termsDictAlias) (ぶつ only)
    • butsu definition 3
    • butsu definition 4
", "glossary-brief": "
    • utsu definition 1
    • utsu definition 2
    • butsu definition 1
    • butsu definition 2
    • utsu definition 3
    • utsu definition 4
    • butsu definition 3
    • butsu definition 4
", "glossary-no-dictionary": "
  1. (vt) (うつ only)
    • utsu definition 1
    • utsu definition 2
  2. (vt) (ぶつ only)
    • butsu definition 1
    • butsu definition 2
  3. (vt) (うつ only)
    • utsu definition 3
    • utsu definition 4
  4. (vt) (ぶつ only)
    • butsu definition 3
    • butsu definition 4
", - "glossary-first": "
(vt, Test Dictionary 2) (うつ only)
  • utsu definition 1
  • utsu definition 2
", + "glossary-first": "
(vt, termsDictAlias) (うつ only)
  • utsu definition 1
  • utsu definition 2
", "glossary-first-brief": "
  • utsu definition 1
  • utsu definition 2
", "glossary-first-no-dictionary": "
(vt) (うつ only)
  • utsu definition 1
  • utsu definition 2
", "part-of-speech": "Godan verb", @@ -1915,6 +1960,7 @@ "cloze-suffix": "cloze-suffix", "conjugation": "", "dictionary": "Test Dictionary 2", + "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打", "frequencies": "
  • Test Dictionary 2: 1
  • Test Dictionary 2: four
  • Test Dictionary 2: five (5)
  • Test Dictionary 2: 8
  • Test Dictionary 2: fourteen
  • Test Dictionary 2: twenty (20)
  • Test Dictionary 2: 26
", @@ -1956,6 +2002,7 @@ "cloze-suffix": "cloze-suffix", "conjugation": "", "dictionary": "Test Dictionary 2", + "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打", "frequencies": "
  • Test Dictionary 2: 1
  • Test Dictionary 2: four
  • Test Dictionary 2: five (5)
  • Test Dictionary 2: 9
  • Test Dictionary 2: fifteen
  • Test Dictionary 2: twenty-one (21)
  • Test Dictionary 2: twenty-seven
", @@ -2002,6 +2049,7 @@ "cloze-suffix": "cloze-suffix", "conjugation": "-te « -teiru « -masu « negative « -ta", "dictionary": "Test Dictionary 2", + "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打ち込む", "frequencies": "
  • Test Dictionary 2: 3
  • Test Dictionary 2: seven
  • Test Dictionary 2: 12
  • Test Dictionary 2: eighteen
  • Test Dictionary 2: twenty-four (24)
  • Test Dictionary 2: 30
", @@ -2011,10 +2059,10 @@ "frequency-average-occurrence": "3", "furigana": "む", "furigana-plain": "打[う]ち 込[こ]む", - "glossary": "
(vt, Test Dictionary 2)
  • uchikomu definition 1
  • uchikomu definition 2
", + "glossary": "
(vt, termsDictAlias)
  • uchikomu definition 1
  • uchikomu definition 2
", "glossary-brief": "
  • uchikomu definition 1
  • uchikomu definition 2
", "glossary-no-dictionary": "
(vt)
  • uchikomu definition 1
  • uchikomu definition 2
", - "glossary-first": "
(vt, Test Dictionary 2)
  • uchikomu definition 1
  • uchikomu definition 2
", + "glossary-first": "
(vt, termsDictAlias)
  • uchikomu definition 1
  • uchikomu definition 2
", "glossary-first-brief": "
  • uchikomu definition 1
  • uchikomu definition 2
", "glossary-first-no-dictionary": "
(vt)
  • uchikomu definition 1
  • uchikomu definition 2
", "part-of-speech": "Godan verb", @@ -2043,6 +2091,7 @@ "cloze-suffix": "cloze-suffix", "conjugation": "-te « -teiru « -masu « negative « -ta", "dictionary": "Test Dictionary 2", + "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打ち込む", "frequencies": "
  • Test Dictionary 2: 3
  • Test Dictionary 2: seven
  • Test Dictionary 2: 13
  • Test Dictionary 2: nineteen
  • Test Dictionary 2: twenty-five (25)
  • Test Dictionary 2: thirty-one
", @@ -2052,10 +2101,10 @@ "frequency-average-occurrence": "3", "furigana": "む", "furigana-plain": "打[ぶ]ち 込[こ]む", - "glossary": "
(vt, Test Dictionary 2)
  • buchikomu definition 1
  • buchikomu definition 2
", + "glossary": "
(vt, termsDictAlias)
  • buchikomu definition 1
  • buchikomu definition 2
", "glossary-brief": "
  • buchikomu definition 1
  • buchikomu definition 2
", "glossary-no-dictionary": "
(vt)
  • buchikomu definition 1
  • buchikomu definition 2
", - "glossary-first": "
(vt, Test Dictionary 2)
  • buchikomu definition 1
  • buchikomu definition 2
", + "glossary-first": "
(vt, termsDictAlias)
  • buchikomu definition 1
  • buchikomu definition 2
", "glossary-first-brief": "
  • buchikomu definition 1
  • buchikomu definition 2
", "glossary-first-no-dictionary": "
(vt)
  • buchikomu definition 1
  • buchikomu definition 2
", "part-of-speech": "Godan verb", @@ -2084,6 +2133,7 @@ "cloze-suffix": "cloze-suffix", "conjugation": "-te « -teiru « -masu « negative « -ta", "dictionary": "Test Dictionary 2", + "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打ち込む", "frequencies": "
  • Test Dictionary 2: 3
  • Test Dictionary 2: seven
  • Test Dictionary 2: 12
  • Test Dictionary 2: eighteen
  • Test Dictionary 2: twenty-four (24)
  • Test Dictionary 2: 30
", @@ -2093,10 +2143,10 @@ "frequency-average-occurrence": "3", "furigana": "む", "furigana-plain": "打[う]ち 込[こ]む", - "glossary": "
(vt, Test Dictionary 2)
  • uchikomu definition 3
  • uchikomu definition 4
", + "glossary": "
(vt, termsDictAlias)
  • uchikomu definition 3
  • uchikomu definition 4
", "glossary-brief": "
  • uchikomu definition 3
  • uchikomu definition 4
", "glossary-no-dictionary": "
(vt)
  • uchikomu definition 3
  • uchikomu definition 4
", - "glossary-first": "
(vt, Test Dictionary 2)
  • uchikomu definition 3
  • uchikomu definition 4
", + "glossary-first": "
(vt, termsDictAlias)
  • uchikomu definition 3
  • uchikomu definition 4
", "glossary-first-brief": "
  • uchikomu definition 3
  • uchikomu definition 4
", "glossary-first-no-dictionary": "
(vt)
  • uchikomu definition 3
  • uchikomu definition 4
", "part-of-speech": "Godan verb", @@ -2125,6 +2175,7 @@ "cloze-suffix": "cloze-suffix", "conjugation": "-te « -teiru « -masu « negative « -ta", "dictionary": "Test Dictionary 2", + "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打ち込む", "frequencies": "
  • Test Dictionary 2: 3
  • Test Dictionary 2: seven
  • Test Dictionary 2: 13
  • Test Dictionary 2: nineteen
  • Test Dictionary 2: twenty-five (25)
  • Test Dictionary 2: thirty-one
", @@ -2134,10 +2185,10 @@ "frequency-average-occurrence": "3", "furigana": "む", "furigana-plain": "打[ぶ]ち 込[こ]む", - "glossary": "
(vt, Test Dictionary 2)
  • buchikomu definition 3
  • buchikomu definition 4
", + "glossary": "
(vt, termsDictAlias)
  • buchikomu definition 3
  • buchikomu definition 4
", "glossary-brief": "
  • buchikomu definition 3
  • buchikomu definition 4
", "glossary-no-dictionary": "
(vt)
  • buchikomu definition 3
  • buchikomu definition 4
", - "glossary-first": "
(vt, Test Dictionary 2)
  • buchikomu definition 3
  • buchikomu definition 4
", + "glossary-first": "
(vt, termsDictAlias)
  • buchikomu definition 3
  • buchikomu definition 4
", "glossary-first-brief": "
  • buchikomu definition 3
  • buchikomu definition 4
", "glossary-first-no-dictionary": "
(vt)
  • buchikomu definition 3
  • buchikomu definition 4
", "part-of-speech": "Godan verb", @@ -2166,6 +2217,7 @@ "cloze-suffix": "cloze-suffix", "conjugation": "continuative", "dictionary": "Test Dictionary 2", + "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打つ", "frequencies": "
  • Test Dictionary 2: 2
  • Test Dictionary 2: 6
  • Test Dictionary 2: 10
  • Test Dictionary 2: sixteen
  • Test Dictionary 2: twenty-two (22)
  • Test Dictionary 2: 28
", @@ -2175,10 +2227,10 @@ "frequency-average-occurrence": "2", "furigana": "つ", "furigana-plain": "打[う]つ", - "glossary": "
(vt, Test Dictionary 2)
  • utsu definition 1
  • utsu definition 2
", + "glossary": "
(vt, termsDictAlias)
  • utsu definition 1
  • utsu definition 2
", "glossary-brief": "
  • utsu definition 1
  • utsu definition 2
", "glossary-no-dictionary": "
(vt)
  • utsu definition 1
  • utsu definition 2
", - "glossary-first": "
(vt, Test Dictionary 2)
  • utsu definition 1
  • utsu definition 2
", + "glossary-first": "
(vt, termsDictAlias)
  • utsu definition 1
  • utsu definition 2
", "glossary-first-brief": "
  • utsu definition 1
  • utsu definition 2
", "glossary-first-no-dictionary": "
(vt)
  • utsu definition 1
  • utsu definition 2
", "part-of-speech": "Godan verb", @@ -2207,6 +2259,7 @@ "cloze-suffix": "cloze-suffix", "conjugation": "continuative", "dictionary": "Test Dictionary 2", + "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打つ", "frequencies": "
  • Test Dictionary 2: 2
  • Test Dictionary 2: 6
  • Test Dictionary 2: 11
  • Test Dictionary 2: seventeen
  • Test Dictionary 2: twenty-three (23)
  • Test Dictionary 2: twenty-nine
", @@ -2216,10 +2269,10 @@ "frequency-average-occurrence": "2", "furigana": "つ", "furigana-plain": "打[ぶ]つ", - "glossary": "
(vt, Test Dictionary 2)
  • butsu definition 1
  • butsu definition 2
", + "glossary": "
(vt, termsDictAlias)
  • butsu definition 1
  • butsu definition 2
", "glossary-brief": "
  • butsu definition 1
  • butsu definition 2
", "glossary-no-dictionary": "
(vt)
  • butsu definition 1
  • butsu definition 2
", - "glossary-first": "
(vt, Test Dictionary 2)
  • butsu definition 1
  • butsu definition 2
", + "glossary-first": "
(vt, termsDictAlias)
  • butsu definition 1
  • butsu definition 2
", "glossary-first-brief": "
  • butsu definition 1
  • butsu definition 2
", "glossary-first-no-dictionary": "
(vt)
  • butsu definition 1
  • butsu definition 2
", "part-of-speech": "Godan verb", @@ -2248,6 +2301,7 @@ "cloze-suffix": "cloze-suffix", "conjugation": "continuative", "dictionary": "Test Dictionary 2", + "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打つ", "frequencies": "
  • Test Dictionary 2: 2
  • Test Dictionary 2: 6
  • Test Dictionary 2: 10
  • Test Dictionary 2: sixteen
  • Test Dictionary 2: twenty-two (22)
  • Test Dictionary 2: 28
", @@ -2257,10 +2311,10 @@ "frequency-average-occurrence": "2", "furigana": "つ", "furigana-plain": "打[う]つ", - "glossary": "
(vt, Test Dictionary 2)
  • utsu definition 3
  • utsu definition 4
", + "glossary": "
(vt, termsDictAlias)
  • utsu definition 3
  • utsu definition 4
", "glossary-brief": "
  • utsu definition 3
  • utsu definition 4
", "glossary-no-dictionary": "
(vt)
  • utsu definition 3
  • utsu definition 4
", - "glossary-first": "
(vt, Test Dictionary 2)
  • utsu definition 3
  • utsu definition 4
", + "glossary-first": "
(vt, termsDictAlias)
  • utsu definition 3
  • utsu definition 4
", "glossary-first-brief": "
  • utsu definition 3
  • utsu definition 4
", "glossary-first-no-dictionary": "
(vt)
  • utsu definition 3
  • utsu definition 4
", "part-of-speech": "Godan verb", @@ -2289,6 +2343,7 @@ "cloze-suffix": "cloze-suffix", "conjugation": "continuative", "dictionary": "Test Dictionary 2", + "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打つ", "frequencies": "
  • Test Dictionary 2: 2
  • Test Dictionary 2: 6
  • Test Dictionary 2: 11
  • Test Dictionary 2: seventeen
  • Test Dictionary 2: twenty-three (23)
  • Test Dictionary 2: twenty-nine
", @@ -2298,10 +2353,10 @@ "frequency-average-occurrence": "2", "furigana": "つ", "furigana-plain": "打[ぶ]つ", - "glossary": "
(vt, Test Dictionary 2)
  • butsu definition 3
  • butsu definition 4
", + "glossary": "
(vt, termsDictAlias)
  • butsu definition 3
  • butsu definition 4
", "glossary-brief": "
  • butsu definition 3
  • butsu definition 4
", "glossary-no-dictionary": "
(vt)
  • butsu definition 3
  • butsu definition 4
", - "glossary-first": "
(vt, Test Dictionary 2)
  • butsu definition 3
  • butsu definition 4
", + "glossary-first": "
(vt, termsDictAlias)
  • butsu definition 3
  • butsu definition 4
", "glossary-first-brief": "
  • butsu definition 3
  • butsu definition 4
", "glossary-first-no-dictionary": "
(vt)
  • butsu definition 3
  • butsu definition 4
", "part-of-speech": "Godan verb", @@ -2330,6 +2385,7 @@ "cloze-suffix": "cloze-suffix", "conjugation": "", "dictionary": "Test Dictionary 2", + "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打", "frequencies": "
  • Test Dictionary 2: 1
  • Test Dictionary 2: four
  • Test Dictionary 2: five (5)
  • Test Dictionary 2: 8
  • Test Dictionary 2: fourteen
  • Test Dictionary 2: twenty (20)
  • Test Dictionary 2: 26
", @@ -2371,6 +2427,7 @@ "cloze-suffix": "cloze-suffix", "conjugation": "", "dictionary": "Test Dictionary 2", + "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打", "frequencies": "
  • Test Dictionary 2: 1
  • Test Dictionary 2: four
  • Test Dictionary 2: five (5)
  • Test Dictionary 2: 9
  • Test Dictionary 2: fifteen
  • Test Dictionary 2: twenty-one (21)
  • Test Dictionary 2: twenty-seven
", @@ -2417,6 +2474,7 @@ "cloze-suffix": "cloze-suffix", "conjugation": "", "dictionary": "Test Dictionary 2", + "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打ち込む", "frequencies": "
  • Test Dictionary 2: 3
  • Test Dictionary 2: seven
  • Test Dictionary 2: 12
  • Test Dictionary 2: eighteen
  • Test Dictionary 2: twenty-four (24)
  • Test Dictionary 2: 30
", @@ -2426,10 +2484,10 @@ "frequency-average-occurrence": "3", "furigana": "む", "furigana-plain": "打[う]ち 込[こ]む", - "glossary": "
(vt, Test Dictionary 2)
  • uchikomu definition 1
  • uchikomu definition 2
", + "glossary": "
(vt, termsDictAlias)
  • uchikomu definition 1
  • uchikomu definition 2
", "glossary-brief": "
  • uchikomu definition 1
  • uchikomu definition 2
", "glossary-no-dictionary": "
(vt)
  • uchikomu definition 1
  • uchikomu definition 2
", - "glossary-first": "
(vt, Test Dictionary 2)
  • uchikomu definition 1
  • uchikomu definition 2
", + "glossary-first": "
(vt, termsDictAlias)
  • uchikomu definition 1
  • uchikomu definition 2
", "glossary-first-brief": "
  • uchikomu definition 1
  • uchikomu definition 2
", "glossary-first-no-dictionary": "
(vt)
  • uchikomu definition 1
  • uchikomu definition 2
", "part-of-speech": "Godan verb", @@ -2458,6 +2516,7 @@ "cloze-suffix": "cloze-suffix", "conjugation": "", "dictionary": "Test Dictionary 2", + "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打ち込む", "frequencies": "
  • Test Dictionary 2: 3
  • Test Dictionary 2: seven
  • Test Dictionary 2: 13
  • Test Dictionary 2: nineteen
  • Test Dictionary 2: twenty-five (25)
  • Test Dictionary 2: thirty-one
", @@ -2467,10 +2526,10 @@ "frequency-average-occurrence": "3", "furigana": "む", "furigana-plain": "打[ぶ]ち 込[こ]む", - "glossary": "
(vt, Test Dictionary 2)
  • buchikomu definition 1
  • buchikomu definition 2
", + "glossary": "
(vt, termsDictAlias)
  • buchikomu definition 1
  • buchikomu definition 2
", "glossary-brief": "
  • buchikomu definition 1
  • buchikomu definition 2
", "glossary-no-dictionary": "
(vt)
  • buchikomu definition 1
  • buchikomu definition 2
", - "glossary-first": "
(vt, Test Dictionary 2)
  • buchikomu definition 1
  • buchikomu definition 2
", + "glossary-first": "
(vt, termsDictAlias)
  • buchikomu definition 1
  • buchikomu definition 2
", "glossary-first-brief": "
  • buchikomu definition 1
  • buchikomu definition 2
", "glossary-first-no-dictionary": "
(vt)
  • buchikomu definition 1
  • buchikomu definition 2
", "part-of-speech": "Godan verb", @@ -2499,6 +2558,7 @@ "cloze-suffix": "cloze-suffix", "conjugation": "", "dictionary": "Test Dictionary 2", + "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打ち込む", "frequencies": "
  • Test Dictionary 2: 3
  • Test Dictionary 2: seven
  • Test Dictionary 2: 12
  • Test Dictionary 2: eighteen
  • Test Dictionary 2: twenty-four (24)
  • Test Dictionary 2: 30
", @@ -2508,10 +2568,10 @@ "frequency-average-occurrence": "3", "furigana": "む", "furigana-plain": "打[う]ち 込[こ]む", - "glossary": "
(vt, Test Dictionary 2)
  • uchikomu definition 3
  • uchikomu definition 4
", + "glossary": "
(vt, termsDictAlias)
  • uchikomu definition 3
  • uchikomu definition 4
", "glossary-brief": "
  • uchikomu definition 3
  • uchikomu definition 4
", "glossary-no-dictionary": "
(vt)
  • uchikomu definition 3
  • uchikomu definition 4
", - "glossary-first": "
(vt, Test Dictionary 2)
  • uchikomu definition 3
  • uchikomu definition 4
", + "glossary-first": "
(vt, termsDictAlias)
  • uchikomu definition 3
  • uchikomu definition 4
", "glossary-first-brief": "
  • uchikomu definition 3
  • uchikomu definition 4
", "glossary-first-no-dictionary": "
(vt)
  • uchikomu definition 3
  • uchikomu definition 4
", "part-of-speech": "Godan verb", @@ -2540,6 +2600,7 @@ "cloze-suffix": "cloze-suffix", "conjugation": "", "dictionary": "Test Dictionary 2", + "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打ち込む", "frequencies": "
  • Test Dictionary 2: 3
  • Test Dictionary 2: seven
  • Test Dictionary 2: 13
  • Test Dictionary 2: nineteen
  • Test Dictionary 2: twenty-five (25)
  • Test Dictionary 2: thirty-one
", @@ -2549,10 +2610,10 @@ "frequency-average-occurrence": "3", "furigana": "む", "furigana-plain": "打[ぶ]ち 込[こ]む", - "glossary": "
(vt, Test Dictionary 2)
  • buchikomu definition 3
  • buchikomu definition 4
", + "glossary": "
(vt, termsDictAlias)
  • buchikomu definition 3
  • buchikomu definition 4
", "glossary-brief": "
  • buchikomu definition 3
  • buchikomu definition 4
", "glossary-no-dictionary": "
(vt)
  • buchikomu definition 3
  • buchikomu definition 4
", - "glossary-first": "
(vt, Test Dictionary 2)
  • buchikomu definition 3
  • buchikomu definition 4
", + "glossary-first": "
(vt, termsDictAlias)
  • buchikomu definition 3
  • buchikomu definition 4
", "glossary-first-brief": "
  • buchikomu definition 3
  • buchikomu definition 4
", "glossary-first-no-dictionary": "
(vt)
  • buchikomu definition 3
  • buchikomu definition 4
", "part-of-speech": "Godan verb", @@ -2581,6 +2642,7 @@ "cloze-suffix": "cloze-suffix", "conjugation": "continuative", "dictionary": "Test Dictionary 2", + "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打つ", "frequencies": "
  • Test Dictionary 2: 2
  • Test Dictionary 2: 6
  • Test Dictionary 2: 10
  • Test Dictionary 2: sixteen
  • Test Dictionary 2: twenty-two (22)
  • Test Dictionary 2: 28
", @@ -2590,10 +2652,10 @@ "frequency-average-occurrence": "2", "furigana": "つ", "furigana-plain": "打[う]つ", - "glossary": "
(vt, Test Dictionary 2)
  • utsu definition 1
  • utsu definition 2
", + "glossary": "
(vt, termsDictAlias)
  • utsu definition 1
  • utsu definition 2
", "glossary-brief": "
  • utsu definition 1
  • utsu definition 2
", "glossary-no-dictionary": "
(vt)
  • utsu definition 1
  • utsu definition 2
", - "glossary-first": "
(vt, Test Dictionary 2)
  • utsu definition 1
  • utsu definition 2
", + "glossary-first": "
(vt, termsDictAlias)
  • utsu definition 1
  • utsu definition 2
", "glossary-first-brief": "
  • utsu definition 1
  • utsu definition 2
", "glossary-first-no-dictionary": "
(vt)
  • utsu definition 1
  • utsu definition 2
", "part-of-speech": "Godan verb", @@ -2622,6 +2684,7 @@ "cloze-suffix": "cloze-suffix", "conjugation": "continuative", "dictionary": "Test Dictionary 2", + "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打つ", "frequencies": "
  • Test Dictionary 2: 2
  • Test Dictionary 2: 6
  • Test Dictionary 2: 11
  • Test Dictionary 2: seventeen
  • Test Dictionary 2: twenty-three (23)
  • Test Dictionary 2: twenty-nine
", @@ -2631,10 +2694,10 @@ "frequency-average-occurrence": "2", "furigana": "つ", "furigana-plain": "打[ぶ]つ", - "glossary": "
(vt, Test Dictionary 2)
  • butsu definition 1
  • butsu definition 2
", + "glossary": "
(vt, termsDictAlias)
  • butsu definition 1
  • butsu definition 2
", "glossary-brief": "
  • butsu definition 1
  • butsu definition 2
", "glossary-no-dictionary": "
(vt)
  • butsu definition 1
  • butsu definition 2
", - "glossary-first": "
(vt, Test Dictionary 2)
  • butsu definition 1
  • butsu definition 2
", + "glossary-first": "
(vt, termsDictAlias)
  • butsu definition 1
  • butsu definition 2
", "glossary-first-brief": "
  • butsu definition 1
  • butsu definition 2
", "glossary-first-no-dictionary": "
(vt)
  • butsu definition 1
  • butsu definition 2
", "part-of-speech": "Godan verb", @@ -2663,6 +2726,7 @@ "cloze-suffix": "cloze-suffix", "conjugation": "continuative", "dictionary": "Test Dictionary 2", + "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打つ", "frequencies": "
  • Test Dictionary 2: 2
  • Test Dictionary 2: 6
  • Test Dictionary 2: 10
  • Test Dictionary 2: sixteen
  • Test Dictionary 2: twenty-two (22)
  • Test Dictionary 2: 28
", @@ -2672,10 +2736,10 @@ "frequency-average-occurrence": "2", "furigana": "つ", "furigana-plain": "打[う]つ", - "glossary": "
(vt, Test Dictionary 2)
  • utsu definition 3
  • utsu definition 4
", + "glossary": "
(vt, termsDictAlias)
  • utsu definition 3
  • utsu definition 4
", "glossary-brief": "
  • utsu definition 3
  • utsu definition 4
", "glossary-no-dictionary": "
(vt)
  • utsu definition 3
  • utsu definition 4
", - "glossary-first": "
(vt, Test Dictionary 2)
  • utsu definition 3
  • utsu definition 4
", + "glossary-first": "
(vt, termsDictAlias)
  • utsu definition 3
  • utsu definition 4
", "glossary-first-brief": "
  • utsu definition 3
  • utsu definition 4
", "glossary-first-no-dictionary": "
(vt)
  • utsu definition 3
  • utsu definition 4
", "part-of-speech": "Godan verb", @@ -2704,6 +2768,7 @@ "cloze-suffix": "cloze-suffix", "conjugation": "continuative", "dictionary": "Test Dictionary 2", + "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打つ", "frequencies": "
  • Test Dictionary 2: 2
  • Test Dictionary 2: 6
  • Test Dictionary 2: 11
  • Test Dictionary 2: seventeen
  • Test Dictionary 2: twenty-three (23)
  • Test Dictionary 2: twenty-nine
", @@ -2713,10 +2778,10 @@ "frequency-average-occurrence": "2", "furigana": "つ", "furigana-plain": "打[ぶ]つ", - "glossary": "
(vt, Test Dictionary 2)
  • butsu definition 3
  • butsu definition 4
", + "glossary": "
(vt, termsDictAlias)
  • butsu definition 3
  • butsu definition 4
", "glossary-brief": "
  • butsu definition 3
  • butsu definition 4
", "glossary-no-dictionary": "
(vt)
  • butsu definition 3
  • butsu definition 4
", - "glossary-first": "
(vt, Test Dictionary 2)
  • butsu definition 3
  • butsu definition 4
", + "glossary-first": "
(vt, termsDictAlias)
  • butsu definition 3
  • butsu definition 4
", "glossary-first-brief": "
  • butsu definition 3
  • butsu definition 4
", "glossary-first-no-dictionary": "
(vt)
  • butsu definition 3
  • butsu definition 4
", "part-of-speech": "Godan verb", @@ -2745,6 +2810,7 @@ "cloze-suffix": "cloze-suffix", "conjugation": "", "dictionary": "Test Dictionary 2", + "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打", "frequencies": "
  • Test Dictionary 2: 1
  • Test Dictionary 2: four
  • Test Dictionary 2: five (5)
  • Test Dictionary 2: 8
  • Test Dictionary 2: fourteen
  • Test Dictionary 2: twenty (20)
  • Test Dictionary 2: 26
", @@ -2786,6 +2852,7 @@ "cloze-suffix": "cloze-suffix", "conjugation": "", "dictionary": "Test Dictionary 2", + "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打", "frequencies": "
  • Test Dictionary 2: 1
  • Test Dictionary 2: four
  • Test Dictionary 2: five (5)
  • Test Dictionary 2: 9
  • Test Dictionary 2: fifteen
  • Test Dictionary 2: twenty-one (21)
  • Test Dictionary 2: twenty-seven
", @@ -2832,6 +2899,7 @@ "cloze-suffix": "cloze-suffix", "conjugation": "", "dictionary": "Test Dictionary 2", + "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打ち込む", "frequencies": "
  • Test Dictionary 2: 3
  • Test Dictionary 2: seven
  • Test Dictionary 2: 12
  • Test Dictionary 2: eighteen
  • Test Dictionary 2: twenty-four (24)
  • Test Dictionary 2: 30
", @@ -2841,10 +2909,10 @@ "frequency-average-occurrence": "3", "furigana": "む", "furigana-plain": "打[う]ち 込[こ]む", - "glossary": "
(vt, Test Dictionary 2)
  • uchikomu definition 1
  • uchikomu definition 2
", + "glossary": "
(vt, termsDictAlias)
  • uchikomu definition 1
  • uchikomu definition 2
", "glossary-brief": "
  • uchikomu definition 1
  • uchikomu definition 2
", "glossary-no-dictionary": "
(vt)
  • uchikomu definition 1
  • uchikomu definition 2
", - "glossary-first": "
(vt, Test Dictionary 2)
  • uchikomu definition 1
  • uchikomu definition 2
", + "glossary-first": "
(vt, termsDictAlias)
  • uchikomu definition 1
  • uchikomu definition 2
", "glossary-first-brief": "
  • uchikomu definition 1
  • uchikomu definition 2
", "glossary-first-no-dictionary": "
(vt)
  • uchikomu definition 1
  • uchikomu definition 2
", "part-of-speech": "Godan verb", @@ -2873,6 +2941,7 @@ "cloze-suffix": "cloze-suffix", "conjugation": "", "dictionary": "Test Dictionary 2", + "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打ち込む", "frequencies": "
  • Test Dictionary 2: 3
  • Test Dictionary 2: seven
  • Test Dictionary 2: 13
  • Test Dictionary 2: nineteen
  • Test Dictionary 2: twenty-five (25)
  • Test Dictionary 2: thirty-one
", @@ -2882,10 +2951,10 @@ "frequency-average-occurrence": "3", "furigana": "む", "furigana-plain": "打[ぶ]ち 込[こ]む", - "glossary": "
(vt, Test Dictionary 2)
  • buchikomu definition 1
  • buchikomu definition 2
", + "glossary": "
(vt, termsDictAlias)
  • buchikomu definition 1
  • buchikomu definition 2
", "glossary-brief": "
  • buchikomu definition 1
  • buchikomu definition 2
", "glossary-no-dictionary": "
(vt)
  • buchikomu definition 1
  • buchikomu definition 2
", - "glossary-first": "
(vt, Test Dictionary 2)
  • buchikomu definition 1
  • buchikomu definition 2
", + "glossary-first": "
(vt, termsDictAlias)
  • buchikomu definition 1
  • buchikomu definition 2
", "glossary-first-brief": "
  • buchikomu definition 1
  • buchikomu definition 2
", "glossary-first-no-dictionary": "
(vt)
  • buchikomu definition 1
  • buchikomu definition 2
", "part-of-speech": "Godan verb", @@ -2914,6 +2983,7 @@ "cloze-suffix": "cloze-suffix", "conjugation": "", "dictionary": "Test Dictionary 2", + "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打ち込む", "frequencies": "
  • Test Dictionary 2: 3
  • Test Dictionary 2: seven
  • Test Dictionary 2: 12
  • Test Dictionary 2: eighteen
  • Test Dictionary 2: twenty-four (24)
  • Test Dictionary 2: 30
", @@ -2923,10 +2993,10 @@ "frequency-average-occurrence": "3", "furigana": "む", "furigana-plain": "打[う]ち 込[こ]む", - "glossary": "
(vt, Test Dictionary 2)
  • uchikomu definition 3
  • uchikomu definition 4
", + "glossary": "
(vt, termsDictAlias)
  • uchikomu definition 3
  • uchikomu definition 4
", "glossary-brief": "
  • uchikomu definition 3
  • uchikomu definition 4
", "glossary-no-dictionary": "
(vt)
  • uchikomu definition 3
  • uchikomu definition 4
", - "glossary-first": "
(vt, Test Dictionary 2)
  • uchikomu definition 3
  • uchikomu definition 4
", + "glossary-first": "
(vt, termsDictAlias)
  • uchikomu definition 3
  • uchikomu definition 4
", "glossary-first-brief": "
  • uchikomu definition 3
  • uchikomu definition 4
", "glossary-first-no-dictionary": "
(vt)
  • uchikomu definition 3
  • uchikomu definition 4
", "part-of-speech": "Godan verb", @@ -2955,6 +3025,7 @@ "cloze-suffix": "cloze-suffix", "conjugation": "", "dictionary": "Test Dictionary 2", + "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打ち込む", "frequencies": "
  • Test Dictionary 2: 3
  • Test Dictionary 2: seven
  • Test Dictionary 2: 13
  • Test Dictionary 2: nineteen
  • Test Dictionary 2: twenty-five (25)
  • Test Dictionary 2: thirty-one
", @@ -2964,10 +3035,10 @@ "frequency-average-occurrence": "3", "furigana": "む", "furigana-plain": "打[ぶ]ち 込[こ]む", - "glossary": "
(vt, Test Dictionary 2)
  • buchikomu definition 3
  • buchikomu definition 4
", + "glossary": "
(vt, termsDictAlias)
  • buchikomu definition 3
  • buchikomu definition 4
", "glossary-brief": "
  • buchikomu definition 3
  • buchikomu definition 4
", "glossary-no-dictionary": "
(vt)
  • buchikomu definition 3
  • buchikomu definition 4
", - "glossary-first": "
(vt, Test Dictionary 2)
  • buchikomu definition 3
  • buchikomu definition 4
", + "glossary-first": "
(vt, termsDictAlias)
  • buchikomu definition 3
  • buchikomu definition 4
", "glossary-first-brief": "
  • buchikomu definition 3
  • buchikomu definition 4
", "glossary-first-no-dictionary": "
(vt)
  • buchikomu definition 3
  • buchikomu definition 4
", "part-of-speech": "Godan verb", @@ -2996,6 +3067,7 @@ "cloze-suffix": "cloze-suffix", "conjugation": "continuative", "dictionary": "Test Dictionary 2", + "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打つ", "frequencies": "
  • Test Dictionary 2: 2
  • Test Dictionary 2: 6
  • Test Dictionary 2: 10
  • Test Dictionary 2: sixteen
  • Test Dictionary 2: twenty-two (22)
  • Test Dictionary 2: 28
", @@ -3005,10 +3077,10 @@ "frequency-average-occurrence": "2", "furigana": "つ", "furigana-plain": "打[う]つ", - "glossary": "
(vt, Test Dictionary 2)
  • utsu definition 1
  • utsu definition 2
", + "glossary": "
(vt, termsDictAlias)
  • utsu definition 1
  • utsu definition 2
", "glossary-brief": "
  • utsu definition 1
  • utsu definition 2
", "glossary-no-dictionary": "
(vt)
  • utsu definition 1
  • utsu definition 2
", - "glossary-first": "
(vt, Test Dictionary 2)
  • utsu definition 1
  • utsu definition 2
", + "glossary-first": "
(vt, termsDictAlias)
  • utsu definition 1
  • utsu definition 2
", "glossary-first-brief": "
  • utsu definition 1
  • utsu definition 2
", "glossary-first-no-dictionary": "
(vt)
  • utsu definition 1
  • utsu definition 2
", "part-of-speech": "Godan verb", @@ -3037,6 +3109,7 @@ "cloze-suffix": "cloze-suffix", "conjugation": "continuative", "dictionary": "Test Dictionary 2", + "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打つ", "frequencies": "
  • Test Dictionary 2: 2
  • Test Dictionary 2: 6
  • Test Dictionary 2: 11
  • Test Dictionary 2: seventeen
  • Test Dictionary 2: twenty-three (23)
  • Test Dictionary 2: twenty-nine
", @@ -3046,10 +3119,10 @@ "frequency-average-occurrence": "2", "furigana": "つ", "furigana-plain": "打[ぶ]つ", - "glossary": "
(vt, Test Dictionary 2)
  • butsu definition 1
  • butsu definition 2
", + "glossary": "
(vt, termsDictAlias)
  • butsu definition 1
  • butsu definition 2
", "glossary-brief": "
  • butsu definition 1
  • butsu definition 2
", "glossary-no-dictionary": "
(vt)
  • butsu definition 1
  • butsu definition 2
", - "glossary-first": "
(vt, Test Dictionary 2)
  • butsu definition 1
  • butsu definition 2
", + "glossary-first": "
(vt, termsDictAlias)
  • butsu definition 1
  • butsu definition 2
", "glossary-first-brief": "
  • butsu definition 1
  • butsu definition 2
", "glossary-first-no-dictionary": "
(vt)
  • butsu definition 1
  • butsu definition 2
", "part-of-speech": "Godan verb", @@ -3078,6 +3151,7 @@ "cloze-suffix": "cloze-suffix", "conjugation": "continuative", "dictionary": "Test Dictionary 2", + "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打つ", "frequencies": "
  • Test Dictionary 2: 2
  • Test Dictionary 2: 6
  • Test Dictionary 2: 10
  • Test Dictionary 2: sixteen
  • Test Dictionary 2: twenty-two (22)
  • Test Dictionary 2: 28
", @@ -3087,10 +3161,10 @@ "frequency-average-occurrence": "2", "furigana": "つ", "furigana-plain": "打[う]つ", - "glossary": "
(vt, Test Dictionary 2)
  • utsu definition 3
  • utsu definition 4
", + "glossary": "
(vt, termsDictAlias)
  • utsu definition 3
  • utsu definition 4
", "glossary-brief": "
  • utsu definition 3
  • utsu definition 4
", "glossary-no-dictionary": "
(vt)
  • utsu definition 3
  • utsu definition 4
", - "glossary-first": "
(vt, Test Dictionary 2)
  • utsu definition 3
  • utsu definition 4
", + "glossary-first": "
(vt, termsDictAlias)
  • utsu definition 3
  • utsu definition 4
", "glossary-first-brief": "
  • utsu definition 3
  • utsu definition 4
", "glossary-first-no-dictionary": "
(vt)
  • utsu definition 3
  • utsu definition 4
", "part-of-speech": "Godan verb", @@ -3119,6 +3193,7 @@ "cloze-suffix": "cloze-suffix", "conjugation": "continuative", "dictionary": "Test Dictionary 2", + "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打つ", "frequencies": "
  • Test Dictionary 2: 2
  • Test Dictionary 2: 6
  • Test Dictionary 2: 11
  • Test Dictionary 2: seventeen
  • Test Dictionary 2: twenty-three (23)
  • Test Dictionary 2: twenty-nine
", @@ -3128,10 +3203,10 @@ "frequency-average-occurrence": "2", "furigana": "つ", "furigana-plain": "打[ぶ]つ", - "glossary": "
(vt, Test Dictionary 2)
  • butsu definition 3
  • butsu definition 4
", + "glossary": "
(vt, termsDictAlias)
  • butsu definition 3
  • butsu definition 4
", "glossary-brief": "
  • butsu definition 3
  • butsu definition 4
", "glossary-no-dictionary": "
(vt)
  • butsu definition 3
  • butsu definition 4
", - "glossary-first": "
(vt, Test Dictionary 2)
  • butsu definition 3
  • butsu definition 4
", + "glossary-first": "
(vt, termsDictAlias)
  • butsu definition 3
  • butsu definition 4
", "glossary-first-brief": "
  • butsu definition 3
  • butsu definition 4
", "glossary-first-no-dictionary": "
(vt)
  • butsu definition 3
  • butsu definition 4
", "part-of-speech": "Godan verb", @@ -3160,6 +3235,7 @@ "cloze-suffix": "cloze-suffix", "conjugation": "", "dictionary": "Test Dictionary 2", + "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打", "frequencies": "
  • Test Dictionary 2: 1
  • Test Dictionary 2: four
  • Test Dictionary 2: five (5)
  • Test Dictionary 2: 8
  • Test Dictionary 2: fourteen
  • Test Dictionary 2: twenty (20)
  • Test Dictionary 2: 26
", @@ -3201,6 +3277,7 @@ "cloze-suffix": "cloze-suffix", "conjugation": "", "dictionary": "Test Dictionary 2", + "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打", "frequencies": "
  • Test Dictionary 2: 1
  • Test Dictionary 2: four
  • Test Dictionary 2: five (5)
  • Test Dictionary 2: 9
  • Test Dictionary 2: fifteen
  • Test Dictionary 2: twenty-one (21)
  • Test Dictionary 2: twenty-seven
", @@ -3247,6 +3324,7 @@ "cloze-suffix": "cloze-suffix", "conjugation": "continuative", "dictionary": "Test Dictionary 2", + "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "読む", "frequencies": "", @@ -3256,10 +3334,10 @@ "frequency-average-occurrence": "0", "furigana": "む", "furigana-plain": "読[よ]む", - "glossary": "
(vt, Test Dictionary 2) to read
", + "glossary": "
(vt, termsDictAlias) to read
", "glossary-brief": "
to read
", "glossary-no-dictionary": "
(vt) to read
", - "glossary-first": "
(vt, Test Dictionary 2) to read
", + "glossary-first": "
(vt, termsDictAlias) to read
", "glossary-first-brief": "
to read
", "glossary-first-no-dictionary": "
(vt) to read
", "part-of-speech": "Godan verb", @@ -3293,6 +3371,7 @@ "cloze-suffix": "cloze-suffix", "conjugation": "", "dictionary": "Test Dictionary 2", + "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "強み", "frequencies": "", @@ -3339,6 +3418,7 @@ "cloze-suffix": "cloze-suffix", "conjugation": "-masu « -ta", "dictionary": "Test Dictionary 2", + "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "読む", "frequencies": "", @@ -3348,10 +3428,10 @@ "frequency-average-occurrence": "0", "furigana": "む", "furigana-plain": "読[よ]む", - "glossary": "
(vt, Test Dictionary 2) to read
", + "glossary": "
(vt, termsDictAlias) to read
", "glossary-brief": "
to read
", "glossary-no-dictionary": "
(vt) to read
", - "glossary-first": "
(vt, Test Dictionary 2) to read
", + "glossary-first": "
(vt, termsDictAlias) to read
", "glossary-first-brief": "
to read
", "glossary-first-no-dictionary": "
(vt) to read
", "part-of-speech": "Godan verb", @@ -3385,6 +3465,7 @@ "cloze-suffix": "cloze-suffix", "conjugation": "", "dictionary": "Test Dictionary 2", + "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打ち込む", "frequencies": "
  • (む) Test Dictionary 2: 3
  • (む) Test Dictionary 2: seven
  • (む) Test Dictionary 2: 12
  • (む) Test Dictionary 2: eighteen
  • (む) Test Dictionary 2: twenty-four (24)
  • (む) Test Dictionary 2: 30
  • (む) Test Dictionary 2: 3
  • (む) Test Dictionary 2: seven
  • (む) Test Dictionary 2: 13
  • (む) Test Dictionary 2: nineteen
  • (む) Test Dictionary 2: twenty-five (25)
  • (む) Test Dictionary 2: thirty-one
", @@ -3394,10 +3475,10 @@ "frequency-average-occurrence": "3", "furigana": "", "furigana-plain": "打[う]ち 込[こ]む打[ぶ]ち 込[こ]む", - "glossary": "
  1. (vt, Test Dictionary 2) (うちこむ only)
    • uchikomu definition 1
    • uchikomu definition 2
  2. (vt, Test Dictionary 2) (ぶちこむ only)
    • buchikomu definition 1
    • buchikomu definition 2
  3. (vt, Test Dictionary 2) (うちこむ only)
    • uchikomu definition 3
    • uchikomu definition 4
  4. (vt, Test Dictionary 2) (ぶちこむ only)
    • buchikomu definition 3
    • buchikomu definition 4
", + "glossary": "
  1. (vt, termsDictAlias) (うちこむ only)
    • uchikomu definition 1
    • uchikomu definition 2
  2. (vt, termsDictAlias) (ぶちこむ only)
    • buchikomu definition 1
    • buchikomu definition 2
  3. (vt, termsDictAlias) (うちこむ only)
    • uchikomu definition 3
    • uchikomu definition 4
  4. (vt, termsDictAlias) (ぶちこむ only)
    • buchikomu definition 3
    • buchikomu definition 4
", "glossary-brief": "
    • uchikomu definition 1
    • uchikomu definition 2
    • buchikomu definition 1
    • buchikomu definition 2
    • uchikomu definition 3
    • uchikomu definition 4
    • buchikomu definition 3
    • buchikomu definition 4
", "glossary-no-dictionary": "
  1. (vt) (うちこむ only)
    • uchikomu definition 1
    • uchikomu definition 2
  2. (vt) (ぶちこむ only)
    • buchikomu definition 1
    • buchikomu definition 2
  3. (vt) (うちこむ only)
    • uchikomu definition 3
    • uchikomu definition 4
  4. (vt) (ぶちこむ only)
    • buchikomu definition 3
    • buchikomu definition 4
", - "glossary-first": "
(vt, Test Dictionary 2) (うちこむ only)
  • uchikomu definition 1
  • uchikomu definition 2
", + "glossary-first": "
(vt, termsDictAlias) (うちこむ only)
  • uchikomu definition 1
  • uchikomu definition 2
", "glossary-first-brief": "
  • uchikomu definition 1
  • uchikomu definition 2
", "glossary-first-no-dictionary": "
(vt) (うちこむ only)
  • uchikomu definition 1
  • uchikomu definition 2
", "part-of-speech": "Godan verb", @@ -3426,6 +3507,7 @@ "cloze-suffix": "cloze-suffix", "conjugation": "continuative", "dictionary": "Test Dictionary 2", + "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打つ", "frequencies": "
  • (つ) Test Dictionary 2: 2
  • (つ) Test Dictionary 2: 6
  • (つ) Test Dictionary 2: 10
  • (つ) Test Dictionary 2: sixteen
  • (つ) Test Dictionary 2: twenty-two (22)
  • (つ) Test Dictionary 2: 28
  • (つ) Test Dictionary 2: 2
  • (つ) Test Dictionary 2: 6
  • (つ) Test Dictionary 2: 11
  • (つ) Test Dictionary 2: seventeen
  • (つ) Test Dictionary 2: twenty-three (23)
  • (つ) Test Dictionary 2: twenty-nine
", @@ -3435,10 +3517,10 @@ "frequency-average-occurrence": "2", "furigana": "", "furigana-plain": "打[う]つ打[ぶ]つ", - "glossary": "
  1. (vt, Test Dictionary 2) (うつ only)
    • utsu definition 1
    • utsu definition 2
  2. (vt, Test Dictionary 2) (ぶつ only)
    • butsu definition 1
    • butsu definition 2
  3. (vt, Test Dictionary 2) (うつ only)
    • utsu definition 3
    • utsu definition 4
  4. (vt, Test Dictionary 2) (ぶつ only)
    • butsu definition 3
    • butsu definition 4
", + "glossary": "
  1. (vt, termsDictAlias) (うつ only)
    • utsu definition 1
    • utsu definition 2
  2. (vt, termsDictAlias) (ぶつ only)
    • butsu definition 1
    • butsu definition 2
  3. (vt, termsDictAlias) (うつ only)
    • utsu definition 3
    • utsu definition 4
  4. (vt, termsDictAlias) (ぶつ only)
    • butsu definition 3
    • butsu definition 4
", "glossary-brief": "
    • utsu definition 1
    • utsu definition 2
    • butsu definition 1
    • butsu definition 2
    • utsu definition 3
    • utsu definition 4
    • butsu definition 3
    • butsu definition 4
", "glossary-no-dictionary": "
  1. (vt) (うつ only)
    • utsu definition 1
    • utsu definition 2
  2. (vt) (ぶつ only)
    • butsu definition 1
    • butsu definition 2
  3. (vt) (うつ only)
    • utsu definition 3
    • utsu definition 4
  4. (vt) (ぶつ only)
    • butsu definition 3
    • butsu definition 4
", - "glossary-first": "
(vt, Test Dictionary 2) (うつ only)
  • utsu definition 1
  • utsu definition 2
", + "glossary-first": "
(vt, termsDictAlias) (うつ only)
  • utsu definition 1
  • utsu definition 2
", "glossary-first-brief": "
  • utsu definition 1
  • utsu definition 2
", "glossary-first-no-dictionary": "
(vt) (うつ only)
  • utsu definition 1
  • utsu definition 2
", "part-of-speech": "Godan verb", @@ -3472,6 +3554,7 @@ "cloze-suffix": "cloze-suffix", "conjugation": "", "dictionary": "Test Dictionary 2", + "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "お手前", "frequencies": "", @@ -3518,6 +3601,7 @@ "cloze-suffix": "cloze-suffix", "conjugation": "", "dictionary": "Test Dictionary 2", + "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "番号", "frequencies": "", @@ -3564,6 +3648,7 @@ "cloze-suffix": "cloze-suffix", "conjugation": "", "dictionary": "Test Dictionary 2", + "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "中腰", "frequencies": "", @@ -3610,6 +3695,7 @@ "cloze-suffix": "cloze-suffix", "conjugation": "", "dictionary": "Test Dictionary 2", + "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "所業", "frequencies": "", @@ -3656,6 +3742,7 @@ "cloze-suffix": "cloze-suffix", "conjugation": "", "dictionary": "Test Dictionary 2", + "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "土木工事", "frequencies": "", @@ -3702,6 +3789,7 @@ "cloze-suffix": "cloze-suffix", "conjugation": "", "dictionary": "Test Dictionary 2", + "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "好き", "frequencies": "", @@ -3748,6 +3836,7 @@ "cloze-suffix": "cloze-suffix", "conjugation": "", "dictionary": "Test Dictionary 2", + "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "構造", "frequencies": "", @@ -3794,6 +3883,7 @@ "cloze-suffix": "cloze-suffix", "conjugation": "
  • -ta
  • -ta « kansai-ben
  • past
", "dictionary": "Test Dictionary 2", + "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "のたまう", "frequencies": "", @@ -3840,6 +3930,7 @@ "cloze-suffix": "cloze-suffix", "conjugation": "", "dictionary": "Test Dictionary 2", + "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "39", "frequencies": "", @@ -3886,6 +3977,7 @@ "cloze-suffix": "cloze-suffix", "conjugation": "", "dictionary": "Test Dictionary 2", + "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "English", "frequencies": "", @@ -3932,6 +4024,7 @@ "cloze-suffix": "cloze-suffix", "conjugation": "", "dictionary": "Test Dictionary 2", + "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "USB", "frequencies": "", @@ -3978,6 +4071,7 @@ "cloze-suffix": "cloze-suffix", "conjugation": "", "dictionary": "Test Dictionary 2", + "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打つ", "frequencies": "
  • Test Dictionary 2: 2
  • Test Dictionary 2: 6
  • Test Dictionary 2: 10
  • Test Dictionary 2: sixteen
  • Test Dictionary 2: twenty-two (22)
  • Test Dictionary 2: 28
", @@ -3987,10 +4081,10 @@ "frequency-average-occurrence": "2", "furigana": "つ", "furigana-plain": "打[う]つ", - "glossary": "
(vt, Test Dictionary 2)
  • utsu definition 1
  • utsu definition 2
", + "glossary": "
(vt, termsDictAlias)
  • utsu definition 1
  • utsu definition 2
", "glossary-brief": "
  • utsu definition 1
  • utsu definition 2
", "glossary-no-dictionary": "
(vt)
  • utsu definition 1
  • utsu definition 2
", - "glossary-first": "
(vt, Test Dictionary 2)
  • utsu definition 1
  • utsu definition 2
", + "glossary-first": "
(vt, termsDictAlias)
  • utsu definition 1
  • utsu definition 2
", "glossary-first-brief": "
  • utsu definition 1
  • utsu definition 2
", "glossary-first-no-dictionary": "
(vt)
  • utsu definition 1
  • utsu definition 2
", "part-of-speech": "Godan verb", @@ -4019,6 +4113,7 @@ "cloze-suffix": "cloze-suffix", "conjugation": "", "dictionary": "Test Dictionary 2", + "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打つ", "frequencies": "
  • Test Dictionary 2: 2
  • Test Dictionary 2: 6
  • Test Dictionary 2: 10
  • Test Dictionary 2: sixteen
  • Test Dictionary 2: twenty-two (22)
  • Test Dictionary 2: 28
", @@ -4028,10 +4123,10 @@ "frequency-average-occurrence": "2", "furigana": "つ", "furigana-plain": "打[う]つ", - "glossary": "
(vt, Test Dictionary 2)
  • utsu definition 3
  • utsu definition 4
", + "glossary": "
(vt, termsDictAlias)
  • utsu definition 3
  • utsu definition 4
", "glossary-brief": "
  • utsu definition 3
  • utsu definition 4
", "glossary-no-dictionary": "
(vt)
  • utsu definition 3
  • utsu definition 4
", - "glossary-first": "
(vt, Test Dictionary 2)
  • utsu definition 3
  • utsu definition 4
", + "glossary-first": "
(vt, termsDictAlias)
  • utsu definition 3
  • utsu definition 4
", "glossary-first-brief": "
  • utsu definition 3
  • utsu definition 4
", "glossary-first-no-dictionary": "
(vt)
  • utsu definition 3
  • utsu definition 4
", "part-of-speech": "Godan verb", @@ -4065,6 +4160,7 @@ "cloze-suffix": "cloze-suffix", "conjugation": "", "dictionary": "Test Dictionary 2", + "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打つ", "frequencies": "
  • Test Dictionary 2: 2
  • Test Dictionary 2: 6
  • Test Dictionary 2: 10
  • Test Dictionary 2: sixteen
  • Test Dictionary 2: twenty-two (22)
  • Test Dictionary 2: 28
", @@ -4074,10 +4170,10 @@ "frequency-average-occurrence": "2", "furigana": "つ", "furigana-plain": "打[う]つ", - "glossary": "
(vt, Test Dictionary 2)
  • utsu definition 1
  • utsu definition 2
", + "glossary": "
(vt, termsDictAlias)
  • utsu definition 1
  • utsu definition 2
", "glossary-brief": "
  • utsu definition 1
  • utsu definition 2
", "glossary-no-dictionary": "
(vt)
  • utsu definition 1
  • utsu definition 2
", - "glossary-first": "
(vt, Test Dictionary 2)
  • utsu definition 1
  • utsu definition 2
", + "glossary-first": "
(vt, termsDictAlias)
  • utsu definition 1
  • utsu definition 2
", "glossary-first-brief": "
  • utsu definition 1
  • utsu definition 2
", "glossary-first-no-dictionary": "
(vt)
  • utsu definition 1
  • utsu definition 2
", "part-of-speech": "Godan verb", @@ -4106,6 +4202,7 @@ "cloze-suffix": "cloze-suffix", "conjugation": "", "dictionary": "Test Dictionary 2", + "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打つ", "frequencies": "
  • Test Dictionary 2: 2
  • Test Dictionary 2: 6
  • Test Dictionary 2: 10
  • Test Dictionary 2: sixteen
  • Test Dictionary 2: twenty-two (22)
  • Test Dictionary 2: 28
", @@ -4115,10 +4212,10 @@ "frequency-average-occurrence": "2", "furigana": "つ", "furigana-plain": "打[う]つ", - "glossary": "
(vt, Test Dictionary 2)
  • utsu definition 3
  • utsu definition 4
", + "glossary": "
(vt, termsDictAlias)
  • utsu definition 3
  • utsu definition 4
", "glossary-brief": "
  • utsu definition 3
  • utsu definition 4
", "glossary-no-dictionary": "
(vt)
  • utsu definition 3
  • utsu definition 4
", - "glossary-first": "
(vt, Test Dictionary 2)
  • utsu definition 3
  • utsu definition 4
", + "glossary-first": "
(vt, termsDictAlias)
  • utsu definition 3
  • utsu definition 4
", "glossary-first-brief": "
  • utsu definition 3
  • utsu definition 4
", "glossary-first-no-dictionary": "
(vt)
  • utsu definition 3
  • utsu definition 4
", "part-of-speech": "Godan verb", @@ -4152,6 +4249,7 @@ "cloze-suffix": "cloze-suffix", "conjugation": "", "dictionary": "Test Dictionary 2", + "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "テキスト", "frequencies": "", @@ -4198,6 +4296,7 @@ "cloze-suffix": "cloze-suffix", "conjugation": "", "dictionary": "Test Dictionary 2", + "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打つ", "frequencies": "
  • Test Dictionary 2: 2
  • Test Dictionary 2: 6
  • Test Dictionary 2: 10
  • Test Dictionary 2: sixteen
  • Test Dictionary 2: twenty-two (22)
  • Test Dictionary 2: 28
", @@ -4207,10 +4306,10 @@ "frequency-average-occurrence": "2", "furigana": "つ", "furigana-plain": "打[う]つ", - "glossary": "
(vt, Test Dictionary 2)
  • utsu definition 1
  • utsu definition 2
", + "glossary": "
(vt, termsDictAlias)
  • utsu definition 1
  • utsu definition 2
", "glossary-brief": "
  • utsu definition 1
  • utsu definition 2
", "glossary-no-dictionary": "
(vt)
  • utsu definition 1
  • utsu definition 2
", - "glossary-first": "
(vt, Test Dictionary 2)
  • utsu definition 1
  • utsu definition 2
", + "glossary-first": "
(vt, termsDictAlias)
  • utsu definition 1
  • utsu definition 2
", "glossary-first-brief": "
  • utsu definition 1
  • utsu definition 2
", "glossary-first-no-dictionary": "
(vt)
  • utsu definition 1
  • utsu definition 2
", "part-of-speech": "Godan verb", @@ -4239,6 +4338,7 @@ "cloze-suffix": "cloze-suffix", "conjugation": "", "dictionary": "Test Dictionary 2", + "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打つ", "frequencies": "
  • Test Dictionary 2: 2
  • Test Dictionary 2: 6
  • Test Dictionary 2: 10
  • Test Dictionary 2: sixteen
  • Test Dictionary 2: twenty-two (22)
  • Test Dictionary 2: 28
", @@ -4248,10 +4348,10 @@ "frequency-average-occurrence": "2", "furigana": "つ", "furigana-plain": "打[う]つ", - "glossary": "
(vt, Test Dictionary 2)
  • utsu definition 3
  • utsu definition 4
", + "glossary": "
(vt, termsDictAlias)
  • utsu definition 3
  • utsu definition 4
", "glossary-brief": "
  • utsu definition 3
  • utsu definition 4
", "glossary-no-dictionary": "
(vt)
  • utsu definition 3
  • utsu definition 4
", - "glossary-first": "
(vt, Test Dictionary 2)
  • utsu definition 3
  • utsu definition 4
", + "glossary-first": "
(vt, termsDictAlias)
  • utsu definition 3
  • utsu definition 4
", "glossary-first-brief": "
  • utsu definition 3
  • utsu definition 4
", "glossary-first-no-dictionary": "
(vt)
  • utsu definition 3
  • utsu definition 4
", "part-of-speech": "Godan verb", @@ -4285,6 +4385,7 @@ "cloze-suffix": "cloze-suffix", "conjugation": "
  • -ku « kansai-ben
", "dictionary": "Test Dictionary 2", + "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "凄い", "frequencies": "", @@ -4331,6 +4432,7 @@ "cloze-suffix": "cloze-suffix", "conjugation": "", "dictionary": "Test Dictionary 2", + "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "English", "frequencies": "", @@ -4377,6 +4479,7 @@ "cloze-suffix": "cloze-suffix", "conjugation": "", "dictionary": "Test Dictionary 2", + "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "language", "frequencies": "", @@ -4423,6 +4526,7 @@ "cloze-suffix": "cloze-suffix", "conjugation": "-거나", "dictionary": "Test Dictionary 2", + "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "마시다", "frequencies": "", @@ -4469,6 +4573,7 @@ "cloze-suffix": "cloze-suffix", "conjugation": "", "dictionary": "Test Dictionary 2", + "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "English", "frequencies": "", diff --git a/test/data/translator-test-inputs.json b/test/data/translator-test-inputs.json index 72bf33ed8c..25115e9c23 100644 --- a/test/data/translator-test-inputs.json +++ b/test/data/translator-test-inputs.json @@ -7,7 +7,7 @@ "${title}", { "index": 0, - "alias": "", + "alias": "kanjiDictAlias", "priority": 0 } ] @@ -31,7 +31,7 @@ "${title}", { "index": 0, - "alias": "", + "alias": "termsDictAlias", "priority": 0, "allowSecondarySearches": false, "partsOfSpeechFilter": true, diff --git a/test/data/translator-test-results-note-data1.json b/test/data/translator-test-results-note-data1.json index af07050067..5ed170a73e 100644 --- a/test/data/translator-test-results-note-data1.json +++ b/test/data/translator-test-results-note-data1.json @@ -8,6 +8,7 @@ "type": "kanji", "character": "打", "dictionary": "Test Dictionary 2", + "dictionaryAlias": "kanjiDictAlias", "onyomi": [ "ダ", "ダアス" @@ -175,6 +176,7 @@ "type": "kanji", "character": "込", "dictionary": "Test Dictionary 2", + "dictionaryAlias": "kanjiDictAlias", "onyomi": [], "kunyomi": [ "-こ.む", @@ -357,6 +359,7 @@ "isPrimary": true, "sequence": 1, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -673,6 +676,7 @@ "isPrimary": true, "sequence": 2, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -1003,6 +1007,7 @@ "isPrimary": true, "sequence": 3, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -1319,6 +1324,7 @@ "isPrimary": true, "sequence": 3, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -1635,6 +1641,7 @@ "isPrimary": true, "sequence": 3, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -1951,6 +1958,7 @@ "isPrimary": true, "sequence": 3, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -2267,6 +2275,7 @@ "isPrimary": true, "sequence": 1, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -2583,6 +2592,7 @@ "isPrimary": true, "sequence": 2, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -2913,6 +2923,7 @@ "isPrimary": true, "sequence": 4, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -3337,6 +3348,7 @@ "isPrimary": true, "sequence": 4, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -3761,6 +3773,7 @@ "isPrimary": true, "sequence": 4, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -4185,6 +4198,7 @@ "isPrimary": true, "sequence": 4, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -4614,6 +4628,7 @@ "isPrimary": true, "sequence": 3, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -4935,6 +4950,7 @@ "isPrimary": true, "sequence": 3, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -5256,6 +5272,7 @@ "isPrimary": true, "sequence": 3, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -5577,6 +5594,7 @@ "isPrimary": true, "sequence": 3, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -5893,6 +5911,7 @@ "isPrimary": true, "sequence": 1, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -6209,6 +6228,7 @@ "isPrimary": true, "sequence": 2, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -6539,6 +6559,7 @@ "isPrimary": true, "sequence": 5, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -6703,6 +6724,7 @@ "isPrimary": true, "sequence": 1, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -7024,6 +7046,7 @@ "isPrimary": true, "sequence": 2, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -7349,6 +7372,7 @@ "isPrimary": true, "sequence": 1, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -7670,6 +7694,7 @@ "isPrimary": true, "sequence": 3, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -7986,6 +8011,7 @@ "isPrimary": true, "sequence": 3, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -8307,6 +8333,7 @@ "isPrimary": true, "sequence": 3, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -8623,6 +8650,7 @@ "isPrimary": true, "sequence": 3, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -8944,6 +8972,7 @@ "isPrimary": true, "sequence": 4, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -9368,6 +9397,7 @@ "isPrimary": true, "sequence": 4, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -9797,6 +9827,7 @@ "isPrimary": true, "sequence": 3, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -10118,6 +10149,7 @@ "isPrimary": true, "sequence": 3, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -10439,6 +10471,7 @@ "isPrimary": true, "sequence": 4, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -10863,6 +10896,7 @@ "isPrimary": true, "sequence": 4, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -11292,6 +11326,7 @@ "isPrimary": true, "sequence": 3, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -11613,6 +11648,7 @@ "isPrimary": true, "sequence": 3, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -11934,6 +11970,7 @@ "isPrimary": true, "sequence": 5, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -12108,6 +12145,7 @@ "score": 10, "sequence": 4, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -12557,6 +12595,7 @@ "score": 10, "sequence": 4, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -13011,6 +13050,7 @@ "score": 10, "sequence": 3, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -13365,6 +13405,7 @@ "score": 10, "sequence": 3, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -13714,6 +13755,7 @@ "score": 1, "sequence": 1, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -14028,6 +14070,7 @@ "score": 1, "sequence": 2, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -14355,6 +14398,7 @@ "score": 10, "sequence": 4, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -15141,6 +15185,7 @@ "score": 10, "sequence": 3, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -15727,6 +15772,7 @@ "score": 1, "sequence": 1, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -16034,6 +16080,7 @@ "score": 1, "sequence": 2, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -16379,6 +16426,7 @@ "isPrimary": true, "sequence": 4, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -16824,6 +16872,7 @@ "isPrimary": true, "sequence": 4, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -17269,6 +17318,7 @@ "isPrimary": true, "sequence": 4, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -17714,6 +17764,7 @@ "isPrimary": true, "sequence": 4, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -18143,6 +18194,7 @@ "isPrimary": true, "sequence": 3, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -18464,6 +18516,7 @@ "isPrimary": true, "sequence": 3, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -18785,6 +18838,7 @@ "isPrimary": true, "sequence": 3, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -19106,6 +19160,7 @@ "isPrimary": true, "sequence": 3, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -19422,6 +19477,7 @@ "isPrimary": true, "sequence": 1, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -19738,6 +19794,7 @@ "isPrimary": true, "sequence": 2, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -20068,6 +20125,7 @@ "isPrimary": true, "sequence": 4, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -20492,6 +20550,7 @@ "isPrimary": true, "sequence": 4, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -20916,6 +20975,7 @@ "isPrimary": true, "sequence": 4, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -21340,6 +21400,7 @@ "isPrimary": true, "sequence": 4, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -21769,6 +21830,7 @@ "isPrimary": true, "sequence": 3, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -22090,6 +22152,7 @@ "isPrimary": true, "sequence": 3, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -22411,6 +22474,7 @@ "isPrimary": true, "sequence": 3, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -22732,6 +22796,7 @@ "isPrimary": true, "sequence": 3, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -23048,6 +23113,7 @@ "isPrimary": true, "sequence": 1, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -23364,6 +23430,7 @@ "isPrimary": true, "sequence": 2, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -23694,6 +23761,7 @@ "isPrimary": true, "sequence": 4, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -24118,6 +24186,7 @@ "isPrimary": true, "sequence": 4, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -24542,6 +24611,7 @@ "isPrimary": true, "sequence": 4, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -24966,6 +25036,7 @@ "isPrimary": true, "sequence": 4, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -25395,6 +25466,7 @@ "isPrimary": true, "sequence": 3, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -25716,6 +25788,7 @@ "isPrimary": true, "sequence": 3, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -26037,6 +26110,7 @@ "isPrimary": true, "sequence": 3, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -26358,6 +26432,7 @@ "isPrimary": true, "sequence": 3, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -26674,6 +26749,7 @@ "isPrimary": true, "sequence": 1, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -26990,6 +27066,7 @@ "isPrimary": true, "sequence": 2, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -27325,6 +27402,7 @@ "isPrimary": true, "sequence": 6, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -27487,6 +27565,7 @@ "isPrimary": true, "sequence": 7, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -27658,6 +27737,7 @@ "isPrimary": true, "sequence": 6, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -27817,6 +27897,7 @@ "score": 10, "sequence": 4, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -28603,6 +28684,7 @@ "score": 10, "sequence": 3, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -29197,6 +29279,7 @@ "isPrimary": true, "sequence": 9, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -29535,6 +29618,7 @@ "isPrimary": true, "sequence": 10, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -29725,6 +29809,7 @@ "isPrimary": true, "sequence": 11, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -29915,6 +30000,7 @@ "isPrimary": true, "sequence": 12, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -30105,6 +30191,7 @@ "isPrimary": true, "sequence": 13, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -30295,6 +30382,7 @@ "isPrimary": true, "sequence": 14, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -30513,6 +30601,7 @@ "isPrimary": true, "sequence": 101, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -30701,6 +30790,7 @@ "isPrimary": true, "sequence": 15, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -30817,6 +30907,7 @@ "isPrimary": true, "sequence": 17, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -30921,6 +31012,7 @@ "isPrimary": true, "sequence": 19, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -31037,6 +31129,7 @@ "isPrimary": true, "sequence": 21, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -31153,6 +31246,7 @@ "isPrimary": true, "sequence": 3, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -31469,6 +31563,7 @@ "isPrimary": true, "sequence": 3, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -31790,6 +31885,7 @@ "isPrimary": true, "sequence": 3, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -32106,6 +32202,7 @@ "isPrimary": true, "sequence": 3, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -32427,6 +32524,7 @@ "isPrimary": true, "sequence": 8, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -32582,6 +32680,7 @@ "isPrimary": true, "sequence": 3, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -32898,6 +32997,7 @@ "isPrimary": true, "sequence": 3, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -33232,6 +33332,7 @@ "isPrimary": true, "sequence": 18, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -33356,6 +33457,7 @@ "isPrimary": true, "sequence": 19, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -33472,6 +33574,7 @@ "isPrimary": true, "sequence": 20, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -33592,6 +33695,7 @@ "isPrimary": true, "sequence": 22, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -33708,6 +33812,7 @@ "isPrimary": true, "sequence": 19, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 diff --git a/test/data/translator-test-results.json b/test/data/translator-test-results.json index 8f21cca0a8..25e04e9757 100644 --- a/test/data/translator-test-results.json +++ b/test/data/translator-test-results.json @@ -6,7 +6,7 @@ "type": "kanji", "character": "打", "dictionary": "Test Dictionary 2", - "dictionaryAlias": "", + "dictionaryAlias": "kanjiDictAlias", "onyomi": [ "ダ", "ダアス" @@ -111,7 +111,7 @@ "index": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "kanjiDictAlias", "dictionaryPriority": 0, "character": "打", "frequency": 1, @@ -122,7 +122,7 @@ "index": 1, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "kanjiDictAlias", "dictionaryPriority": 0, "character": "打", "frequency": 0, @@ -133,7 +133,7 @@ "index": 2, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "kanjiDictAlias", "dictionaryPriority": 0, "character": "打", "frequency": 5, @@ -151,7 +151,7 @@ "type": "kanji", "character": "込", "dictionary": "Test Dictionary 2", - "dictionaryAlias": "", + "dictionaryAlias": "kanjiDictAlias", "onyomi": [], "kunyomi": [ "-こ.む", @@ -255,7 +255,7 @@ "index": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "kanjiDictAlias", "dictionaryPriority": 0, "character": "込", "frequency": 2, @@ -266,7 +266,7 @@ "index": 1, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "kanjiDictAlias", "dictionaryPriority": 0, "character": "込", "frequency": 4, @@ -277,7 +277,7 @@ "index": 2, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "kanjiDictAlias", "dictionaryPriority": 0, "character": "込", "frequency": 6, @@ -311,7 +311,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 1, @@ -358,7 +358,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 1, "score": 1, @@ -395,7 +395,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 1, @@ -407,7 +407,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 0, @@ -419,7 +419,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 5, @@ -431,7 +431,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 8, @@ -443,7 +443,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -455,7 +455,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 20, @@ -467,7 +467,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 26, @@ -491,7 +491,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 1, @@ -538,7 +538,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 2, "score": 1, @@ -588,7 +588,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 1, @@ -600,7 +600,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 0, @@ -612,7 +612,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 5, @@ -624,7 +624,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 9, @@ -636,7 +636,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -648,7 +648,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 21, @@ -660,7 +660,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 27, @@ -690,7 +690,7 @@ "score": 10, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 2, @@ -750,7 +750,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 3, "score": 10, @@ -787,7 +787,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 2, @@ -799,7 +799,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 6, @@ -811,7 +811,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 10, @@ -823,7 +823,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -835,7 +835,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 22, @@ -847,7 +847,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 28, @@ -871,7 +871,7 @@ "score": 10, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 2, @@ -931,7 +931,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 5, "score": 10, @@ -968,7 +968,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 2, @@ -980,7 +980,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 6, @@ -992,7 +992,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 11, @@ -1004,7 +1004,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -1016,7 +1016,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 23, @@ -1028,7 +1028,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 29, @@ -1052,7 +1052,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 2, @@ -1112,7 +1112,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 4, "score": 1, @@ -1149,7 +1149,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 2, @@ -1161,7 +1161,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 6, @@ -1173,7 +1173,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 10, @@ -1185,7 +1185,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -1197,7 +1197,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 22, @@ -1209,7 +1209,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 28, @@ -1233,7 +1233,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 2, @@ -1293,7 +1293,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 6, "score": 1, @@ -1330,7 +1330,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 2, @@ -1342,7 +1342,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 6, @@ -1354,7 +1354,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 11, @@ -1366,7 +1366,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -1378,7 +1378,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 23, @@ -1390,7 +1390,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 29, @@ -1414,7 +1414,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 1, @@ -1461,7 +1461,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 1, "score": 1, @@ -1498,7 +1498,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 1, @@ -1510,7 +1510,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 0, @@ -1522,7 +1522,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 5, @@ -1534,7 +1534,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 8, @@ -1546,7 +1546,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -1558,7 +1558,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 20, @@ -1570,7 +1570,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 26, @@ -1594,7 +1594,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 1, @@ -1641,7 +1641,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 2, "score": 1, @@ -1691,7 +1691,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 1, @@ -1703,7 +1703,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 0, @@ -1715,7 +1715,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 5, @@ -1727,7 +1727,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 9, @@ -1739,7 +1739,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -1751,7 +1751,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 21, @@ -1763,7 +1763,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 27, @@ -1793,7 +1793,7 @@ "score": 10, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 4, @@ -1853,7 +1853,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 7, "score": 10, @@ -1889,7 +1889,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "pronunciations": [ { @@ -1915,7 +1915,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 3, @@ -1927,7 +1927,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 7, @@ -1939,7 +1939,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 12, @@ -1951,7 +1951,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -1963,7 +1963,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 24, @@ -1975,7 +1975,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 30, @@ -1999,7 +1999,7 @@ "score": 10, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 4, @@ -2059,7 +2059,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 9, "score": 10, @@ -2095,7 +2095,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "pronunciations": [ { @@ -2121,7 +2121,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 3, @@ -2133,7 +2133,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 7, @@ -2145,7 +2145,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 13, @@ -2157,7 +2157,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -2169,7 +2169,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 25, @@ -2181,7 +2181,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 31, @@ -2205,7 +2205,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 4, @@ -2265,7 +2265,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 8, "score": 1, @@ -2301,7 +2301,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "pronunciations": [ { @@ -2327,7 +2327,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 3, @@ -2339,7 +2339,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 7, @@ -2351,7 +2351,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 12, @@ -2363,7 +2363,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -2375,7 +2375,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 24, @@ -2387,7 +2387,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 30, @@ -2411,7 +2411,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 4, @@ -2471,7 +2471,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 10, "score": 1, @@ -2507,7 +2507,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "pronunciations": [ { @@ -2533,7 +2533,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 3, @@ -2545,7 +2545,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 7, @@ -2557,7 +2557,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 13, @@ -2569,7 +2569,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -2581,7 +2581,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 25, @@ -2593,7 +2593,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 31, @@ -2622,7 +2622,7 @@ "score": 10, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 2, @@ -2682,7 +2682,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 3, "score": 10, @@ -2719,7 +2719,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 2, @@ -2731,7 +2731,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 6, @@ -2743,7 +2743,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 10, @@ -2755,7 +2755,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -2767,7 +2767,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 22, @@ -2779,7 +2779,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 28, @@ -2808,7 +2808,7 @@ "score": 10, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 2, @@ -2868,7 +2868,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 5, "score": 10, @@ -2905,7 +2905,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 2, @@ -2917,7 +2917,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 6, @@ -2929,7 +2929,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 11, @@ -2941,7 +2941,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -2953,7 +2953,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 23, @@ -2965,7 +2965,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 29, @@ -2994,7 +2994,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 2, @@ -3054,7 +3054,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 4, "score": 1, @@ -3091,7 +3091,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 2, @@ -3103,7 +3103,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 6, @@ -3115,7 +3115,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 10, @@ -3127,7 +3127,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -3139,7 +3139,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 22, @@ -3151,7 +3151,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 28, @@ -3180,7 +3180,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 2, @@ -3240,7 +3240,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 6, "score": 1, @@ -3277,7 +3277,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 2, @@ -3289,7 +3289,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 6, @@ -3301,7 +3301,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 11, @@ -3313,7 +3313,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -3325,7 +3325,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 23, @@ -3337,7 +3337,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 29, @@ -3361,7 +3361,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 1, @@ -3408,7 +3408,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 1, "score": 1, @@ -3445,7 +3445,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 1, @@ -3457,7 +3457,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 0, @@ -3469,7 +3469,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 5, @@ -3481,7 +3481,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 8, @@ -3493,7 +3493,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -3505,7 +3505,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 20, @@ -3517,7 +3517,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 26, @@ -3541,7 +3541,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 1, @@ -3588,7 +3588,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 2, "score": 1, @@ -3638,7 +3638,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 1, @@ -3650,7 +3650,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 0, @@ -3662,7 +3662,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 5, @@ -3674,7 +3674,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 9, @@ -3686,7 +3686,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -3698,7 +3698,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 21, @@ -3710,7 +3710,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 27, @@ -3740,7 +3740,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 2, @@ -3800,7 +3800,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 11, "score": 1, @@ -3863,7 +3863,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 0, "maxOriginalTextLength": 1, @@ -3910,7 +3910,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 1, "score": 1, @@ -3947,7 +3947,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 1, @@ -3959,7 +3959,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 0, @@ -3971,7 +3971,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 5, @@ -3983,7 +3983,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 8, @@ -3995,7 +3995,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -4007,7 +4007,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 20, @@ -4019,7 +4019,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 26, @@ -4049,7 +4049,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 0, "maxOriginalTextLength": 3, @@ -4096,7 +4096,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 2, "score": 1, @@ -4146,7 +4146,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 1, @@ -4158,7 +4158,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 0, @@ -4170,7 +4170,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 5, @@ -4182,7 +4182,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 9, @@ -4194,7 +4194,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -4206,7 +4206,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 21, @@ -4218,7 +4218,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 27, @@ -4244,7 +4244,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 0, "maxOriginalTextLength": 1, @@ -4291,7 +4291,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 1, "score": 1, @@ -4328,7 +4328,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 1, @@ -4340,7 +4340,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 0, @@ -4352,7 +4352,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 5, @@ -4364,7 +4364,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 8, @@ -4376,7 +4376,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -4388,7 +4388,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 20, @@ -4400,7 +4400,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 26, @@ -4430,7 +4430,7 @@ "score": 10, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 0, "maxOriginalTextLength": 2, @@ -4490,7 +4490,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 3, "score": 10, @@ -4527,7 +4527,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 2, @@ -4539,7 +4539,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 6, @@ -4551,7 +4551,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 10, @@ -4563,7 +4563,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -4575,7 +4575,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 22, @@ -4587,7 +4587,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 28, @@ -4611,7 +4611,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 0, "maxOriginalTextLength": 2, @@ -4671,7 +4671,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 4, "score": 1, @@ -4708,7 +4708,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 2, @@ -4720,7 +4720,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 6, @@ -4732,7 +4732,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 10, @@ -4744,7 +4744,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -4756,7 +4756,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 22, @@ -4768,7 +4768,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 28, @@ -4798,7 +4798,7 @@ "score": 10, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 0, "maxOriginalTextLength": 2, @@ -4858,7 +4858,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 5, "score": 10, @@ -4895,7 +4895,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 2, @@ -4907,7 +4907,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 6, @@ -4919,7 +4919,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 11, @@ -4931,7 +4931,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -4943,7 +4943,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 23, @@ -4955,7 +4955,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 29, @@ -4979,7 +4979,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 0, "maxOriginalTextLength": 2, @@ -5039,7 +5039,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 6, "score": 1, @@ -5076,7 +5076,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 2, @@ -5088,7 +5088,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 6, @@ -5100,7 +5100,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 11, @@ -5112,7 +5112,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -5124,7 +5124,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 23, @@ -5136,7 +5136,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 29, @@ -5166,7 +5166,7 @@ "score": 10, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 0, "maxOriginalTextLength": 4, @@ -5226,7 +5226,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 7, "score": 10, @@ -5262,7 +5262,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "pronunciations": [ { @@ -5288,7 +5288,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 3, @@ -5300,7 +5300,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 7, @@ -5312,7 +5312,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 12, @@ -5324,7 +5324,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -5336,7 +5336,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 24, @@ -5348,7 +5348,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 30, @@ -5372,7 +5372,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 0, "maxOriginalTextLength": 4, @@ -5432,7 +5432,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 8, "score": 1, @@ -5468,7 +5468,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "pronunciations": [ { @@ -5494,7 +5494,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 3, @@ -5506,7 +5506,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 7, @@ -5518,7 +5518,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 12, @@ -5530,7 +5530,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -5542,7 +5542,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 24, @@ -5554,7 +5554,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 30, @@ -5583,7 +5583,7 @@ "score": 10, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 0, "maxOriginalTextLength": 2, @@ -5643,7 +5643,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 3, "score": 10, @@ -5680,7 +5680,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 2, @@ -5692,7 +5692,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 6, @@ -5704,7 +5704,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 10, @@ -5716,7 +5716,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -5728,7 +5728,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 22, @@ -5740,7 +5740,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 28, @@ -5769,7 +5769,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 0, "maxOriginalTextLength": 2, @@ -5829,7 +5829,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 4, "score": 1, @@ -5866,7 +5866,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 2, @@ -5878,7 +5878,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 6, @@ -5890,7 +5890,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 10, @@ -5902,7 +5902,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -5914,7 +5914,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 22, @@ -5926,7 +5926,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 28, @@ -5956,7 +5956,7 @@ "score": 10, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 0, "maxOriginalTextLength": 4, @@ -6016,7 +6016,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 9, "score": 10, @@ -6052,7 +6052,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "pronunciations": [ { @@ -6078,7 +6078,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 3, @@ -6090,7 +6090,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 7, @@ -6102,7 +6102,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 13, @@ -6114,7 +6114,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -6126,7 +6126,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 25, @@ -6138,7 +6138,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 31, @@ -6162,7 +6162,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 0, "maxOriginalTextLength": 4, @@ -6222,7 +6222,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 10, "score": 1, @@ -6258,7 +6258,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "pronunciations": [ { @@ -6284,7 +6284,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 3, @@ -6296,7 +6296,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 7, @@ -6308,7 +6308,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 13, @@ -6320,7 +6320,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -6332,7 +6332,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 25, @@ -6344,7 +6344,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 31, @@ -6373,7 +6373,7 @@ "score": 10, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 0, "maxOriginalTextLength": 2, @@ -6433,7 +6433,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 5, "score": 10, @@ -6470,7 +6470,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 2, @@ -6482,7 +6482,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 6, @@ -6494,7 +6494,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 11, @@ -6506,7 +6506,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -6518,7 +6518,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 23, @@ -6530,7 +6530,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 29, @@ -6559,7 +6559,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 0, "maxOriginalTextLength": 2, @@ -6619,7 +6619,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 6, "score": 1, @@ -6656,7 +6656,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 2, @@ -6668,7 +6668,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 6, @@ -6680,7 +6680,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 11, @@ -6692,7 +6692,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -6704,7 +6704,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 23, @@ -6716,7 +6716,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 29, @@ -6746,7 +6746,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 0, "maxOriginalTextLength": 3, @@ -6806,7 +6806,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 11, "score": 1, @@ -6879,7 +6879,7 @@ "score": 10, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 4, @@ -6912,7 +6912,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 7, "score": 10, @@ -6946,7 +6946,7 @@ "score": 10, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 4, @@ -6979,7 +6979,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 9, "score": 10, @@ -7013,7 +7013,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 4, @@ -7046,7 +7046,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 8, "score": 1, @@ -7080,7 +7080,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 4, @@ -7113,7 +7113,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 10, "score": 1, @@ -7152,7 +7152,7 @@ "score": 10, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 2, @@ -7185,7 +7185,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 3, "score": 10, @@ -7224,7 +7224,7 @@ "score": 10, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 2, @@ -7257,7 +7257,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 5, "score": 10, @@ -7296,7 +7296,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 2, @@ -7329,7 +7329,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 4, "score": 1, @@ -7368,7 +7368,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 2, @@ -7401,7 +7401,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 6, "score": 1, @@ -7435,7 +7435,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 1, @@ -7468,7 +7468,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 1, "score": 1, @@ -7502,7 +7502,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 1, @@ -7535,7 +7535,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 2, "score": 1, @@ -7575,7 +7575,7 @@ "score": 10, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 4, @@ -7648,7 +7648,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 7, "score": 10, @@ -7684,7 +7684,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 8, "score": 1, @@ -7720,7 +7720,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "pronunciations": [ { @@ -7746,7 +7746,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 3, @@ -7758,7 +7758,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 7, @@ -7770,7 +7770,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 12, @@ -7782,7 +7782,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -7794,7 +7794,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 24, @@ -7806,7 +7806,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 30, @@ -7830,7 +7830,7 @@ "score": 10, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 4, @@ -7903,7 +7903,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 9, "score": 10, @@ -7939,7 +7939,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 10, "score": 1, @@ -7975,7 +7975,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "pronunciations": [ { @@ -8001,7 +8001,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 3, @@ -8013,7 +8013,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 7, @@ -8025,7 +8025,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 13, @@ -8037,7 +8037,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -8049,7 +8049,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 25, @@ -8061,7 +8061,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 31, @@ -8090,7 +8090,7 @@ "score": 10, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 2, @@ -8163,7 +8163,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 3, "score": 10, @@ -8199,7 +8199,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 4, "score": 1, @@ -8236,7 +8236,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 2, @@ -8248,7 +8248,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 6, @@ -8260,7 +8260,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 10, @@ -8272,7 +8272,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -8284,7 +8284,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 22, @@ -8296,7 +8296,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 28, @@ -8325,7 +8325,7 @@ "score": 10, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 2, @@ -8398,7 +8398,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 5, "score": 10, @@ -8434,7 +8434,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 6, "score": 1, @@ -8471,7 +8471,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 2, @@ -8483,7 +8483,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 6, @@ -8495,7 +8495,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 11, @@ -8507,7 +8507,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -8519,7 +8519,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 23, @@ -8531,7 +8531,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 29, @@ -8555,7 +8555,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 1, @@ -8602,7 +8602,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 1, "score": 1, @@ -8639,7 +8639,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 1, @@ -8651,7 +8651,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 0, @@ -8663,7 +8663,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 5, @@ -8675,7 +8675,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 8, @@ -8687,7 +8687,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -8699,7 +8699,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 20, @@ -8711,7 +8711,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 26, @@ -8735,7 +8735,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 1, @@ -8782,7 +8782,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 2, "score": 1, @@ -8832,7 +8832,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 1, @@ -8844,7 +8844,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 0, @@ -8856,7 +8856,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 5, @@ -8868,7 +8868,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 9, @@ -8880,7 +8880,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -8892,7 +8892,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 21, @@ -8904,7 +8904,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 27, @@ -8934,7 +8934,7 @@ "score": 10, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 2, "maxOriginalTextLength": 4, @@ -9066,7 +9066,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 7, "score": 10, @@ -9102,7 +9102,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 9, "score": 10, @@ -9138,7 +9138,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 8, "score": 1, @@ -9174,7 +9174,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 10, "score": 1, @@ -9210,7 +9210,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "pronunciations": [ { @@ -9234,7 +9234,7 @@ "headwordIndex": 1, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "pronunciations": [ { @@ -9260,7 +9260,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 3, @@ -9272,7 +9272,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 7, @@ -9284,7 +9284,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 12, @@ -9296,7 +9296,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -9308,7 +9308,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 24, @@ -9320,7 +9320,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 30, @@ -9332,7 +9332,7 @@ "headwordIndex": 1, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 3, @@ -9344,7 +9344,7 @@ "headwordIndex": 1, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 7, @@ -9356,7 +9356,7 @@ "headwordIndex": 1, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 13, @@ -9368,7 +9368,7 @@ "headwordIndex": 1, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -9380,7 +9380,7 @@ "headwordIndex": 1, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 25, @@ -9392,7 +9392,7 @@ "headwordIndex": 1, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 31, @@ -9421,7 +9421,7 @@ "score": 10, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 2, "maxOriginalTextLength": 2, @@ -9553,7 +9553,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 3, "score": 10, @@ -9589,7 +9589,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 5, "score": 10, @@ -9625,7 +9625,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 4, "score": 1, @@ -9661,7 +9661,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 6, "score": 1, @@ -9698,7 +9698,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 2, @@ -9710,7 +9710,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 6, @@ -9722,7 +9722,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 10, @@ -9734,7 +9734,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -9746,7 +9746,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 22, @@ -9758,7 +9758,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 28, @@ -9770,7 +9770,7 @@ "headwordIndex": 1, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 2, @@ -9782,7 +9782,7 @@ "headwordIndex": 1, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 6, @@ -9794,7 +9794,7 @@ "headwordIndex": 1, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 11, @@ -9806,7 +9806,7 @@ "headwordIndex": 1, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -9818,7 +9818,7 @@ "headwordIndex": 1, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 23, @@ -9830,7 +9830,7 @@ "headwordIndex": 1, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 29, @@ -9854,7 +9854,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 1, @@ -9901,7 +9901,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 1, "score": 1, @@ -9938,7 +9938,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 1, @@ -9950,7 +9950,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 0, @@ -9962,7 +9962,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 5, @@ -9974,7 +9974,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 8, @@ -9986,7 +9986,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -9998,7 +9998,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 20, @@ -10010,7 +10010,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 26, @@ -10034,7 +10034,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 1, @@ -10081,7 +10081,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 2, "score": 1, @@ -10131,7 +10131,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 1, @@ -10143,7 +10143,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 0, @@ -10155,7 +10155,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 5, @@ -10167,7 +10167,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 9, @@ -10179,7 +10179,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -10191,7 +10191,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 21, @@ -10203,7 +10203,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 27, @@ -10254,7 +10254,7 @@ "score": 10, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 12, @@ -10314,7 +10314,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 7, "score": 10, @@ -10350,7 +10350,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "pronunciations": [ { @@ -10376,7 +10376,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 3, @@ -10388,7 +10388,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 7, @@ -10400,7 +10400,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 12, @@ -10412,7 +10412,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -10424,7 +10424,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 24, @@ -10436,7 +10436,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 30, @@ -10481,7 +10481,7 @@ "score": 10, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 12, @@ -10541,7 +10541,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 9, "score": 10, @@ -10577,7 +10577,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "pronunciations": [ { @@ -10603,7 +10603,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 3, @@ -10615,7 +10615,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 7, @@ -10627,7 +10627,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 13, @@ -10639,7 +10639,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -10651,7 +10651,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 25, @@ -10663,7 +10663,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 31, @@ -10708,7 +10708,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 12, @@ -10768,7 +10768,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 8, "score": 1, @@ -10804,7 +10804,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "pronunciations": [ { @@ -10830,7 +10830,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 3, @@ -10842,7 +10842,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 7, @@ -10854,7 +10854,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 12, @@ -10866,7 +10866,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -10878,7 +10878,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 24, @@ -10890,7 +10890,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 30, @@ -10935,7 +10935,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 12, @@ -10995,7 +10995,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 10, "score": 1, @@ -11031,7 +11031,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "pronunciations": [ { @@ -11057,7 +11057,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 3, @@ -11069,7 +11069,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 7, @@ -11081,7 +11081,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 13, @@ -11093,7 +11093,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -11105,7 +11105,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 25, @@ -11117,7 +11117,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 31, @@ -11146,7 +11146,7 @@ "score": 10, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 2, @@ -11206,7 +11206,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 3, "score": 10, @@ -11243,7 +11243,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 2, @@ -11255,7 +11255,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 6, @@ -11267,7 +11267,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 10, @@ -11279,7 +11279,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -11291,7 +11291,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 22, @@ -11303,7 +11303,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 28, @@ -11332,7 +11332,7 @@ "score": 10, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 2, @@ -11392,7 +11392,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 5, "score": 10, @@ -11429,7 +11429,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 2, @@ -11441,7 +11441,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 6, @@ -11453,7 +11453,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 11, @@ -11465,7 +11465,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -11477,7 +11477,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 23, @@ -11489,7 +11489,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 29, @@ -11518,7 +11518,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 2, @@ -11578,7 +11578,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 4, "score": 1, @@ -11615,7 +11615,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 2, @@ -11627,7 +11627,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 6, @@ -11639,7 +11639,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 10, @@ -11651,7 +11651,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -11663,7 +11663,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 22, @@ -11675,7 +11675,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 28, @@ -11704,7 +11704,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 2, @@ -11764,7 +11764,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 6, "score": 1, @@ -11801,7 +11801,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 2, @@ -11813,7 +11813,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 6, @@ -11825,7 +11825,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 11, @@ -11837,7 +11837,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -11849,7 +11849,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 23, @@ -11861,7 +11861,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 29, @@ -11885,7 +11885,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 1, @@ -11932,7 +11932,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 1, "score": 1, @@ -11969,7 +11969,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 1, @@ -11981,7 +11981,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 0, @@ -11993,7 +11993,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 5, @@ -12005,7 +12005,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 8, @@ -12017,7 +12017,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -12029,7 +12029,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 20, @@ -12041,7 +12041,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 26, @@ -12065,7 +12065,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 1, @@ -12112,7 +12112,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 2, "score": 1, @@ -12162,7 +12162,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 1, @@ -12174,7 +12174,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 0, @@ -12186,7 +12186,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 5, @@ -12198,7 +12198,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 9, @@ -12210,7 +12210,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -12222,7 +12222,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 21, @@ -12234,7 +12234,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 27, @@ -12266,7 +12266,7 @@ "score": 10, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 10, @@ -12326,7 +12326,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 7, "score": 10, @@ -12362,7 +12362,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "pronunciations": [ { @@ -12388,7 +12388,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 3, @@ -12400,7 +12400,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 7, @@ -12412,7 +12412,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 12, @@ -12424,7 +12424,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -12436,7 +12436,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 24, @@ -12448,7 +12448,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 30, @@ -12474,7 +12474,7 @@ "score": 10, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 10, @@ -12534,7 +12534,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 9, "score": 10, @@ -12570,7 +12570,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "pronunciations": [ { @@ -12596,7 +12596,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 3, @@ -12608,7 +12608,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 7, @@ -12620,7 +12620,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 13, @@ -12632,7 +12632,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -12644,7 +12644,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 25, @@ -12656,7 +12656,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 31, @@ -12682,7 +12682,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 10, @@ -12742,7 +12742,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 8, "score": 1, @@ -12778,7 +12778,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "pronunciations": [ { @@ -12804,7 +12804,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 3, @@ -12816,7 +12816,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 7, @@ -12828,7 +12828,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 12, @@ -12840,7 +12840,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -12852,7 +12852,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 24, @@ -12864,7 +12864,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 30, @@ -12890,7 +12890,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 10, @@ -12950,7 +12950,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 10, "score": 1, @@ -12986,7 +12986,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "pronunciations": [ { @@ -13012,7 +13012,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 3, @@ -13024,7 +13024,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 7, @@ -13036,7 +13036,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 13, @@ -13048,7 +13048,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -13060,7 +13060,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 25, @@ -13072,7 +13072,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 31, @@ -13103,7 +13103,7 @@ "score": 10, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 5, @@ -13163,7 +13163,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 3, "score": 10, @@ -13200,7 +13200,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 2, @@ -13212,7 +13212,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 6, @@ -13224,7 +13224,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 10, @@ -13236,7 +13236,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -13248,7 +13248,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 22, @@ -13260,7 +13260,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 28, @@ -13291,7 +13291,7 @@ "score": 10, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 5, @@ -13351,7 +13351,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 5, "score": 10, @@ -13388,7 +13388,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 2, @@ -13400,7 +13400,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 6, @@ -13412,7 +13412,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 11, @@ -13424,7 +13424,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -13436,7 +13436,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 23, @@ -13448,7 +13448,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 29, @@ -13479,7 +13479,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 5, @@ -13539,7 +13539,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 4, "score": 1, @@ -13576,7 +13576,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 2, @@ -13588,7 +13588,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 6, @@ -13600,7 +13600,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 10, @@ -13612,7 +13612,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -13624,7 +13624,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 22, @@ -13636,7 +13636,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 28, @@ -13667,7 +13667,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 5, @@ -13727,7 +13727,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 6, "score": 1, @@ -13764,7 +13764,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 2, @@ -13776,7 +13776,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 6, @@ -13788,7 +13788,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 11, @@ -13800,7 +13800,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -13812,7 +13812,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 23, @@ -13824,7 +13824,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 29, @@ -13850,7 +13850,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 4, @@ -13897,7 +13897,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 1, "score": 1, @@ -13934,7 +13934,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 1, @@ -13946,7 +13946,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 0, @@ -13958,7 +13958,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 5, @@ -13970,7 +13970,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 8, @@ -13982,7 +13982,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -13994,7 +13994,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 20, @@ -14006,7 +14006,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 26, @@ -14032,7 +14032,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 4, @@ -14079,7 +14079,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 2, "score": 1, @@ -14129,7 +14129,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 1, @@ -14141,7 +14141,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 0, @@ -14153,7 +14153,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 5, @@ -14165,7 +14165,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 9, @@ -14177,7 +14177,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -14189,7 +14189,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 21, @@ -14201,7 +14201,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 27, @@ -14233,7 +14233,7 @@ "score": 10, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 12, @@ -14293,7 +14293,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 7, "score": 10, @@ -14329,7 +14329,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "pronunciations": [ { @@ -14355,7 +14355,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 3, @@ -14367,7 +14367,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 7, @@ -14379,7 +14379,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 12, @@ -14391,7 +14391,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -14403,7 +14403,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 24, @@ -14415,7 +14415,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 30, @@ -14441,7 +14441,7 @@ "score": 10, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 12, @@ -14501,7 +14501,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 9, "score": 10, @@ -14537,7 +14537,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "pronunciations": [ { @@ -14563,7 +14563,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 3, @@ -14575,7 +14575,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 7, @@ -14587,7 +14587,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 13, @@ -14599,7 +14599,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -14611,7 +14611,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 25, @@ -14623,7 +14623,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 31, @@ -14649,7 +14649,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 12, @@ -14709,7 +14709,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 8, "score": 1, @@ -14745,7 +14745,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "pronunciations": [ { @@ -14771,7 +14771,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 3, @@ -14783,7 +14783,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 7, @@ -14795,7 +14795,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 12, @@ -14807,7 +14807,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -14819,7 +14819,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 24, @@ -14831,7 +14831,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 30, @@ -14857,7 +14857,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 12, @@ -14917,7 +14917,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 10, "score": 1, @@ -14953,7 +14953,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "pronunciations": [ { @@ -14979,7 +14979,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 3, @@ -14991,7 +14991,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 7, @@ -15003,7 +15003,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 13, @@ -15015,7 +15015,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -15027,7 +15027,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 25, @@ -15039,7 +15039,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 31, @@ -15070,7 +15070,7 @@ "score": 10, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 6, @@ -15130,7 +15130,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 3, "score": 10, @@ -15167,7 +15167,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 2, @@ -15179,7 +15179,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 6, @@ -15191,7 +15191,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 10, @@ -15203,7 +15203,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -15215,7 +15215,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 22, @@ -15227,7 +15227,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 28, @@ -15258,7 +15258,7 @@ "score": 10, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 6, @@ -15318,7 +15318,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 5, "score": 10, @@ -15355,7 +15355,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 2, @@ -15367,7 +15367,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 6, @@ -15379,7 +15379,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 11, @@ -15391,7 +15391,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -15403,7 +15403,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 23, @@ -15415,7 +15415,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 29, @@ -15446,7 +15446,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 6, @@ -15506,7 +15506,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 4, "score": 1, @@ -15543,7 +15543,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 2, @@ -15555,7 +15555,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 6, @@ -15567,7 +15567,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 10, @@ -15579,7 +15579,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -15591,7 +15591,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 22, @@ -15603,7 +15603,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 28, @@ -15634,7 +15634,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 6, @@ -15694,7 +15694,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 6, "score": 1, @@ -15731,7 +15731,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 2, @@ -15743,7 +15743,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 6, @@ -15755,7 +15755,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 11, @@ -15767,7 +15767,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -15779,7 +15779,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 23, @@ -15791,7 +15791,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 29, @@ -15817,7 +15817,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 3, @@ -15864,7 +15864,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 1, "score": 1, @@ -15901,7 +15901,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 1, @@ -15913,7 +15913,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 0, @@ -15925,7 +15925,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 5, @@ -15937,7 +15937,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 8, @@ -15949,7 +15949,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -15961,7 +15961,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 20, @@ -15973,7 +15973,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 26, @@ -15999,7 +15999,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 3, @@ -16046,7 +16046,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 2, "score": 1, @@ -16096,7 +16096,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 1, @@ -16108,7 +16108,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 0, @@ -16120,7 +16120,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 5, @@ -16132,7 +16132,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 9, @@ -16144,7 +16144,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -16156,7 +16156,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 21, @@ -16168,7 +16168,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 27, @@ -16205,7 +16205,7 @@ "score": 100, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 0, "maxOriginalTextLength": 4, @@ -16265,7 +16265,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 12, "score": 100, @@ -16320,7 +16320,7 @@ "score": 90, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 0, "maxOriginalTextLength": 5, @@ -16380,7 +16380,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 13, "score": 90, @@ -16444,7 +16444,7 @@ "score": 100, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 0, "maxOriginalTextLength": 7, @@ -16504,7 +16504,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 12, "score": 100, @@ -16557,7 +16557,7 @@ "score": 10, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 0, "maxOriginalTextLength": 4, @@ -16689,7 +16689,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 7, "score": 10, @@ -16725,7 +16725,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 9, "score": 10, @@ -16761,7 +16761,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 8, "score": 1, @@ -16797,7 +16797,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 10, "score": 1, @@ -16833,7 +16833,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "pronunciations": [ { @@ -16857,7 +16857,7 @@ "headwordIndex": 1, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "pronunciations": [ { @@ -16883,7 +16883,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 3, @@ -16895,7 +16895,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 7, @@ -16907,7 +16907,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 12, @@ -16919,7 +16919,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -16931,7 +16931,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 24, @@ -16943,7 +16943,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 30, @@ -16955,7 +16955,7 @@ "headwordIndex": 1, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 3, @@ -16967,7 +16967,7 @@ "headwordIndex": 1, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 7, @@ -16979,7 +16979,7 @@ "headwordIndex": 1, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 13, @@ -16991,7 +16991,7 @@ "headwordIndex": 1, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -17003,7 +17003,7 @@ "headwordIndex": 1, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 25, @@ -17015,7 +17015,7 @@ "headwordIndex": 1, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 31, @@ -17044,7 +17044,7 @@ "score": 10, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 0, "maxOriginalTextLength": 2, @@ -17176,7 +17176,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 3, "score": 10, @@ -17212,7 +17212,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 5, "score": 10, @@ -17248,7 +17248,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 4, "score": 1, @@ -17284,7 +17284,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 6, "score": 1, @@ -17321,7 +17321,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 2, @@ -17333,7 +17333,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 6, @@ -17345,7 +17345,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 10, @@ -17357,7 +17357,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -17369,7 +17369,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 22, @@ -17381,7 +17381,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 28, @@ -17393,7 +17393,7 @@ "headwordIndex": 1, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 2, @@ -17405,7 +17405,7 @@ "headwordIndex": 1, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 6, @@ -17417,7 +17417,7 @@ "headwordIndex": 1, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 11, @@ -17429,7 +17429,7 @@ "headwordIndex": 1, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -17441,7 +17441,7 @@ "headwordIndex": 1, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 23, @@ -17453,7 +17453,7 @@ "headwordIndex": 1, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 29, @@ -17483,7 +17483,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 3, @@ -17516,7 +17516,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 15, "score": 1, @@ -17551,7 +17551,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "pronunciations": [ { @@ -17643,7 +17643,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 2, @@ -17676,7 +17676,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 16, "score": 1, @@ -17711,7 +17711,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "pronunciations": [ { @@ -17749,7 +17749,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 2, @@ -17782,7 +17782,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 17, "score": 1, @@ -17817,7 +17817,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "pronunciations": [ { @@ -17855,7 +17855,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 2, @@ -17888,7 +17888,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 18, "score": 1, @@ -17923,7 +17923,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "pronunciations": [ { @@ -17961,7 +17961,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 4, @@ -17994,7 +17994,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 19, "score": 1, @@ -18029,7 +18029,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "pronunciations": [ { @@ -18067,7 +18067,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 2, @@ -18098,7 +18098,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 20, "score": 1, @@ -18144,7 +18144,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "pronunciations": [ { @@ -18190,7 +18190,7 @@ "score": 35, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 2, @@ -18250,7 +18250,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 22, "score": 35, @@ -18337,7 +18337,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 5, @@ -18370,7 +18370,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 23, "score": 1, @@ -18423,7 +18423,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 2, @@ -18454,7 +18454,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 25, "score": 1, @@ -18495,7 +18495,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 7, @@ -18528,7 +18528,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 27, "score": 1, @@ -18583,7 +18583,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 3, @@ -18616,7 +18616,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 29, "score": 1, @@ -18671,7 +18671,7 @@ "score": 10, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 0, "maxOriginalTextLength": 4, @@ -18731,7 +18731,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 3, "score": 10, @@ -18768,7 +18768,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 2, @@ -18780,7 +18780,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 6, @@ -18792,7 +18792,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 10, @@ -18804,7 +18804,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -18816,7 +18816,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 22, @@ -18828,7 +18828,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 28, @@ -18854,7 +18854,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 0, "maxOriginalTextLength": 4, @@ -18914,7 +18914,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 4, "score": 1, @@ -18951,7 +18951,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 2, @@ -18963,7 +18963,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 6, @@ -18975,7 +18975,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 10, @@ -18987,7 +18987,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -18999,7 +18999,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 22, @@ -19011,7 +19011,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 28, @@ -19043,7 +19043,7 @@ "score": 10, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 0, "maxOriginalTextLength": 2, @@ -19103,7 +19103,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 3, "score": 10, @@ -19140,7 +19140,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 2, @@ -19152,7 +19152,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 6, @@ -19164,7 +19164,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 10, @@ -19176,7 +19176,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -19188,7 +19188,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 22, @@ -19200,7 +19200,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 28, @@ -19226,7 +19226,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 0, "maxOriginalTextLength": 2, @@ -19286,7 +19286,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 4, "score": 1, @@ -19323,7 +19323,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 2, @@ -19335,7 +19335,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 6, @@ -19347,7 +19347,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 10, @@ -19359,7 +19359,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -19371,7 +19371,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 22, @@ -19383,7 +19383,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 28, @@ -19415,7 +19415,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 4, @@ -19475,7 +19475,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 14, "score": 1, @@ -19532,7 +19532,7 @@ "score": 10, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 0, "maxOriginalTextLength": 2, @@ -19592,7 +19592,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 3, "score": 10, @@ -19629,7 +19629,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 2, @@ -19641,7 +19641,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 6, @@ -19653,7 +19653,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 10, @@ -19665,7 +19665,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -19677,7 +19677,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 22, @@ -19689,7 +19689,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 28, @@ -19716,7 +19716,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 0, "maxOriginalTextLength": 2, @@ -19776,7 +19776,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 4, "score": 1, @@ -19813,7 +19813,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 2, @@ -19825,7 +19825,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": false, "frequency": 6, @@ -19837,7 +19837,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 10, @@ -19849,7 +19849,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 0, @@ -19861,7 +19861,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 22, @@ -19873,7 +19873,7 @@ "headwordIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "hasReading": true, "frequency": 28, @@ -19922,7 +19922,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 0, "maxOriginalTextLength": 7, @@ -19955,7 +19955,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 26, "score": 1, @@ -20008,7 +20008,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 7, @@ -20041,7 +20041,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 27, "score": 1, @@ -20096,7 +20096,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 8, @@ -20129,7 +20129,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 28, "score": 1, @@ -20189,7 +20189,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 4, @@ -20222,7 +20222,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 30, "score": 1, @@ -20275,7 +20275,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 7, @@ -20308,7 +20308,7 @@ ], "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryPriority": 0, "id": 27, "score": 1, From c31146a768a3647c1f372cff29b965cb9af30041 Mon Sep 17 00:00:00 2001 From: Khai Truong Date: Tue, 30 Jul 2024 00:41:23 +0700 Subject: [PATCH 25/40] update test glossary --- test/data/anki-note-builder-test-results.json | 156 +++++++++--------- 1 file changed, 78 insertions(+), 78 deletions(-) diff --git a/test/data/anki-note-builder-test-results.json b/test/data/anki-note-builder-test-results.json index e7cad27230..5c9fe9e720 100644 --- a/test/data/anki-note-builder-test-results.json +++ b/test/data/anki-note-builder-test-results.json @@ -92,10 +92,10 @@ "frequency-average-occurrence": "1", "furigana": "", "furigana-plain": "打[だ]", - "glossary": "
(n, Test Dictionary 2)
  • da definition 1
  • da definition 2
", + "glossary": "
(n, termsDictAlias)
  • da definition 1
  • da definition 2
", "glossary-brief": "
  • da definition 1
  • da definition 2
", "glossary-no-dictionary": "
(n)
  • da definition 1
  • da definition 2
", - "glossary-first": "
(n, Test Dictionary 2)
  • da definition 1
  • da definition 2
", + "glossary-first": "
(n, termsDictAlias)
  • da definition 1
  • da definition 2
", "glossary-first-brief": "
  • da definition 1
  • da definition 2
", "glossary-first-no-dictionary": "
(n)
  • da definition 1
  • da definition 2
", "part-of-speech": "Noun", @@ -134,10 +134,10 @@ "frequency-average-occurrence": "1", "furigana": "ダース", "furigana-plain": "打[ダース]", - "glossary": "
(abbr, n, Test Dictionary 2)
  • daasu definition 1
  • daasu definition 2
", + "glossary": "
(abbr, n, termsDictAlias)
  • daasu definition 1
  • daasu definition 2
", "glossary-brief": "
  • daasu definition 1
  • daasu definition 2
", "glossary-no-dictionary": "
(abbr, n)
  • daasu definition 1
  • daasu definition 2
", - "glossary-first": "
(abbr, n, Test Dictionary 2)
  • daasu definition 1
  • daasu definition 2
", + "glossary-first": "
(abbr, n, termsDictAlias)
  • daasu definition 1
  • daasu definition 2
", "glossary-first-brief": "
  • daasu definition 1
  • daasu definition 2
", "glossary-first-no-dictionary": "
(abbr, n)
  • daasu definition 1
  • daasu definition 2
", "part-of-speech": "Noun", @@ -349,10 +349,10 @@ "frequency-average-occurrence": "1", "furigana": "", "furigana-plain": "打[だ]", - "glossary": "
(n, Test Dictionary 2)
  • da definition 1
  • da definition 2
", + "glossary": "
(n, termsDictAlias)
  • da definition 1
  • da definition 2
", "glossary-brief": "
  • da definition 1
  • da definition 2
", "glossary-no-dictionary": "
(n)
  • da definition 1
  • da definition 2
", - "glossary-first": "
(n, Test Dictionary 2)
  • da definition 1
  • da definition 2
", + "glossary-first": "
(n, termsDictAlias)
  • da definition 1
  • da definition 2
", "glossary-first-brief": "
  • da definition 1
  • da definition 2
", "glossary-first-no-dictionary": "
(n)
  • da definition 1
  • da definition 2
", "part-of-speech": "Noun", @@ -391,10 +391,10 @@ "frequency-average-occurrence": "1", "furigana": "ダース", "furigana-plain": "打[ダース]", - "glossary": "
(abbr, n, Test Dictionary 2)
  • daasu definition 1
  • daasu definition 2
", + "glossary": "
(abbr, n, termsDictAlias)
  • daasu definition 1
  • daasu definition 2
", "glossary-brief": "
  • daasu definition 1
  • daasu definition 2
", "glossary-no-dictionary": "
(abbr, n)
  • daasu definition 1
  • daasu definition 2
", - "glossary-first": "
(abbr, n, Test Dictionary 2)
  • daasu definition 1
  • daasu definition 2
", + "glossary-first": "
(abbr, n, termsDictAlias)
  • daasu definition 1
  • daasu definition 2
", "glossary-first-brief": "
  • daasu definition 1
  • daasu definition 2
", "glossary-first-no-dictionary": "
(abbr, n)
  • daasu definition 1
  • daasu definition 2
", "part-of-speech": "Noun", @@ -774,10 +774,10 @@ "frequency-average-occurrence": "1", "furigana": "", "furigana-plain": "打[だ]", - "glossary": "
(n, Test Dictionary 2)
  • da definition 1
  • da definition 2
", + "glossary": "
(n, termsDictAlias)
  • da definition 1
  • da definition 2
", "glossary-brief": "
  • da definition 1
  • da definition 2
", "glossary-no-dictionary": "
(n)
  • da definition 1
  • da definition 2
", - "glossary-first": "
(n, Test Dictionary 2)
  • da definition 1
  • da definition 2
", + "glossary-first": "
(n, termsDictAlias)
  • da definition 1
  • da definition 2
", "glossary-first-brief": "
  • da definition 1
  • da definition 2
", "glossary-first-no-dictionary": "
(n)
  • da definition 1
  • da definition 2
", "part-of-speech": "Noun", @@ -816,10 +816,10 @@ "frequency-average-occurrence": "1", "furigana": "ダース", "furigana-plain": "打[ダース]", - "glossary": "
(abbr, n, Test Dictionary 2)
  • daasu definition 1
  • daasu definition 2
", + "glossary": "
(abbr, n, termsDictAlias)
  • daasu definition 1
  • daasu definition 2
", "glossary-brief": "
  • daasu definition 1
  • daasu definition 2
", "glossary-no-dictionary": "
(abbr, n)
  • daasu definition 1
  • daasu definition 2
", - "glossary-first": "
(abbr, n, Test Dictionary 2)
  • daasu definition 1
  • daasu definition 2
", + "glossary-first": "
(abbr, n, termsDictAlias)
  • daasu definition 1
  • daasu definition 2
", "glossary-first-brief": "
  • daasu definition 1
  • daasu definition 2
", "glossary-first-no-dictionary": "
(abbr, n)
  • daasu definition 1
  • daasu definition 2
", "part-of-speech": "Noun", @@ -863,10 +863,10 @@ "frequency-average-occurrence": "0", "furigana": "画像がぞう", "furigana-plain": "画像[がぞう]", - "glossary": "
(n, Test Dictionary 2)
", + "glossary": "
(n, termsDictAlias)
", "glossary-brief": "
", "glossary-no-dictionary": "
(n)
", - "glossary-first": "
(n, Test Dictionary 2)
", + "glossary-first": "
(n, termsDictAlias)
", "glossary-first-brief": "
", "glossary-first-no-dictionary": "
(n)
", "part-of-speech": "Noun", @@ -910,10 +910,10 @@ "frequency-average-occurrence": "1", "furigana": "", "furigana-plain": "打[だ]", - "glossary": "
(n, Test Dictionary 2)
  • da definition 1
  • da definition 2
", + "glossary": "
(n, termsDictAlias)
  • da definition 1
  • da definition 2
", "glossary-brief": "
  • da definition 1
  • da definition 2
", "glossary-no-dictionary": "
(n)
  • da definition 1
  • da definition 2
", - "glossary-first": "
(n, Test Dictionary 2)
  • da definition 1
  • da definition 2
", + "glossary-first": "
(n, termsDictAlias)
  • da definition 1
  • da definition 2
", "glossary-first-brief": "
  • da definition 1
  • da definition 2
", "glossary-first-no-dictionary": "
(n)
  • da definition 1
  • da definition 2
", "part-of-speech": "Noun", @@ -957,10 +957,10 @@ "frequency-average-occurrence": "1", "furigana": "ダース", "furigana-plain": "打[ダース]", - "glossary": "
(abbr, n, Test Dictionary 2)
  • daasu definition 1
  • daasu definition 2
", + "glossary": "
(abbr, n, termsDictAlias)
  • daasu definition 1
  • daasu definition 2
", "glossary-brief": "
  • daasu definition 1
  • daasu definition 2
", "glossary-no-dictionary": "
(abbr, n)
  • daasu definition 1
  • daasu definition 2
", - "glossary-first": "
(abbr, n, Test Dictionary 2)
  • daasu definition 1
  • daasu definition 2
", + "glossary-first": "
(abbr, n, termsDictAlias)
  • daasu definition 1
  • daasu definition 2
", "glossary-first-brief": "
  • daasu definition 1
  • daasu definition 2
", "glossary-first-no-dictionary": "
(abbr, n)
  • daasu definition 1
  • daasu definition 2
", "part-of-speech": "Noun", @@ -999,10 +999,10 @@ "frequency-average-occurrence": "1", "furigana": "", "furigana-plain": "打[だ]", - "glossary": "
(n, Test Dictionary 2)
  • da definition 1
  • da definition 2
", + "glossary": "
(n, termsDictAlias)
  • da definition 1
  • da definition 2
", "glossary-brief": "
  • da definition 1
  • da definition 2
", "glossary-no-dictionary": "
(n)
  • da definition 1
  • da definition 2
", - "glossary-first": "
(n, Test Dictionary 2)
  • da definition 1
  • da definition 2
", + "glossary-first": "
(n, termsDictAlias)
  • da definition 1
  • da definition 2
", "glossary-first-brief": "
  • da definition 1
  • da definition 2
", "glossary-first-no-dictionary": "
(n)
  • da definition 1
  • da definition 2
", "part-of-speech": "Noun", @@ -1570,10 +1570,10 @@ "frequency-average-occurrence": "0", "furigana": "画像がぞう", "furigana-plain": "画像[がぞう]", - "glossary": "
(n, Test Dictionary 2)
", + "glossary": "
(n, termsDictAlias)
", "glossary-brief": "
", "glossary-no-dictionary": "
(n)
", - "glossary-first": "
(n, Test Dictionary 2)
", + "glossary-first": "
(n, termsDictAlias)
", "glossary-first-brief": "
", "glossary-first-no-dictionary": "
(n)
", "part-of-speech": "Noun", @@ -1797,10 +1797,10 @@ "frequency-average-occurrence": "1", "furigana": "", "furigana-plain": "打[だ]", - "glossary": "
(n, Test Dictionary 2)
  • da definition 1
  • da definition 2
", + "glossary": "
(n, termsDictAlias)
  • da definition 1
  • da definition 2
", "glossary-brief": "
  • da definition 1
  • da definition 2
", "glossary-no-dictionary": "
(n)
  • da definition 1
  • da definition 2
", - "glossary-first": "
(n, Test Dictionary 2)
  • da definition 1
  • da definition 2
", + "glossary-first": "
(n, termsDictAlias)
  • da definition 1
  • da definition 2
", "glossary-first-brief": "
  • da definition 1
  • da definition 2
", "glossary-first-no-dictionary": "
(n)
  • da definition 1
  • da definition 2
", "part-of-speech": "Noun", @@ -1839,10 +1839,10 @@ "frequency-average-occurrence": "1", "furigana": "ダース", "furigana-plain": "打[ダース]", - "glossary": "
(abbr, n, Test Dictionary 2)
  • daasu definition 1
  • daasu definition 2
", + "glossary": "
(abbr, n, termsDictAlias)
  • daasu definition 1
  • daasu definition 2
", "glossary-brief": "
  • daasu definition 1
  • daasu definition 2
", "glossary-no-dictionary": "
(abbr, n)
  • daasu definition 1
  • daasu definition 2
", - "glossary-first": "
(abbr, n, Test Dictionary 2)
  • daasu definition 1
  • daasu definition 2
", + "glossary-first": "
(abbr, n, termsDictAlias)
  • daasu definition 1
  • daasu definition 2
", "glossary-first-brief": "
  • daasu definition 1
  • daasu definition 2
", "glossary-first-no-dictionary": "
(abbr, n)
  • daasu definition 1
  • daasu definition 2
", "part-of-speech": "Noun", @@ -1970,10 +1970,10 @@ "frequency-average-occurrence": "1", "furigana": "", "furigana-plain": "打[だ]", - "glossary": "
(n, Test Dictionary 2)
  • da definition 1
  • da definition 2
", + "glossary": "
(n, termsDictAlias)
  • da definition 1
  • da definition 2
", "glossary-brief": "
  • da definition 1
  • da definition 2
", "glossary-no-dictionary": "
(n)
  • da definition 1
  • da definition 2
", - "glossary-first": "
(n, Test Dictionary 2)
  • da definition 1
  • da definition 2
", + "glossary-first": "
(n, termsDictAlias)
  • da definition 1
  • da definition 2
", "glossary-first-brief": "
  • da definition 1
  • da definition 2
", "glossary-first-no-dictionary": "
(n)
  • da definition 1
  • da definition 2
", "part-of-speech": "Noun", @@ -2012,10 +2012,10 @@ "frequency-average-occurrence": "1", "furigana": "ダース", "furigana-plain": "打[ダース]", - "glossary": "
(abbr, n, Test Dictionary 2)
  • daasu definition 1
  • daasu definition 2
", + "glossary": "
(abbr, n, termsDictAlias)
  • daasu definition 1
  • daasu definition 2
", "glossary-brief": "
  • daasu definition 1
  • daasu definition 2
", "glossary-no-dictionary": "
(abbr, n)
  • daasu definition 1
  • daasu definition 2
", - "glossary-first": "
(abbr, n, Test Dictionary 2)
  • daasu definition 1
  • daasu definition 2
", + "glossary-first": "
(abbr, n, termsDictAlias)
  • daasu definition 1
  • daasu definition 2
", "glossary-first-brief": "
  • daasu definition 1
  • daasu definition 2
", "glossary-first-no-dictionary": "
(abbr, n)
  • daasu definition 1
  • daasu definition 2
", "part-of-speech": "Noun", @@ -2395,10 +2395,10 @@ "frequency-average-occurrence": "1", "furigana": "", "furigana-plain": "打[だ]", - "glossary": "
(n, Test Dictionary 2)
  • da definition 1
  • da definition 2
", + "glossary": "
(n, termsDictAlias)
  • da definition 1
  • da definition 2
", "glossary-brief": "
  • da definition 1
  • da definition 2
", "glossary-no-dictionary": "
(n)
  • da definition 1
  • da definition 2
", - "glossary-first": "
(n, Test Dictionary 2)
  • da definition 1
  • da definition 2
", + "glossary-first": "
(n, termsDictAlias)
  • da definition 1
  • da definition 2
", "glossary-first-brief": "
  • da definition 1
  • da definition 2
", "glossary-first-no-dictionary": "
(n)
  • da definition 1
  • da definition 2
", "part-of-speech": "Noun", @@ -2437,10 +2437,10 @@ "frequency-average-occurrence": "1", "furigana": "ダース", "furigana-plain": "打[ダース]", - "glossary": "
(abbr, n, Test Dictionary 2)
  • daasu definition 1
  • daasu definition 2
", + "glossary": "
(abbr, n, termsDictAlias)
  • daasu definition 1
  • daasu definition 2
", "glossary-brief": "
  • daasu definition 1
  • daasu definition 2
", "glossary-no-dictionary": "
(abbr, n)
  • daasu definition 1
  • daasu definition 2
", - "glossary-first": "
(abbr, n, Test Dictionary 2)
  • daasu definition 1
  • daasu definition 2
", + "glossary-first": "
(abbr, n, termsDictAlias)
  • daasu definition 1
  • daasu definition 2
", "glossary-first-brief": "
  • daasu definition 1
  • daasu definition 2
", "glossary-first-no-dictionary": "
(abbr, n)
  • daasu definition 1
  • daasu definition 2
", "part-of-speech": "Noun", @@ -2820,10 +2820,10 @@ "frequency-average-occurrence": "1", "furigana": "", "furigana-plain": "打[だ]", - "glossary": "
(n, Test Dictionary 2)
  • da definition 1
  • da definition 2
", + "glossary": "
(n, termsDictAlias)
  • da definition 1
  • da definition 2
", "glossary-brief": "
  • da definition 1
  • da definition 2
", "glossary-no-dictionary": "
(n)
  • da definition 1
  • da definition 2
", - "glossary-first": "
(n, Test Dictionary 2)
  • da definition 1
  • da definition 2
", + "glossary-first": "
(n, termsDictAlias)
  • da definition 1
  • da definition 2
", "glossary-first-brief": "
  • da definition 1
  • da definition 2
", "glossary-first-no-dictionary": "
(n)
  • da definition 1
  • da definition 2
", "part-of-speech": "Noun", @@ -2862,10 +2862,10 @@ "frequency-average-occurrence": "1", "furigana": "ダース", "furigana-plain": "打[ダース]", - "glossary": "
(abbr, n, Test Dictionary 2)
  • daasu definition 1
  • daasu definition 2
", + "glossary": "
(abbr, n, termsDictAlias)
  • daasu definition 1
  • daasu definition 2
", "glossary-brief": "
  • daasu definition 1
  • daasu definition 2
", "glossary-no-dictionary": "
(abbr, n)
  • daasu definition 1
  • daasu definition 2
", - "glossary-first": "
(abbr, n, Test Dictionary 2)
  • daasu definition 1
  • daasu definition 2
", + "glossary-first": "
(abbr, n, termsDictAlias)
  • daasu definition 1
  • daasu definition 2
", "glossary-first-brief": "
  • daasu definition 1
  • daasu definition 2
", "glossary-first-no-dictionary": "
(abbr, n)
  • daasu definition 1
  • daasu definition 2
", "part-of-speech": "Noun", @@ -3245,10 +3245,10 @@ "frequency-average-occurrence": "1", "furigana": "", "furigana-plain": "打[だ]", - "glossary": "
(n, Test Dictionary 2)
  • da definition 1
  • da definition 2
", + "glossary": "
(n, termsDictAlias)
  • da definition 1
  • da definition 2
", "glossary-brief": "
  • da definition 1
  • da definition 2
", "glossary-no-dictionary": "
(n)
  • da definition 1
  • da definition 2
", - "glossary-first": "
(n, Test Dictionary 2)
  • da definition 1
  • da definition 2
", + "glossary-first": "
(n, termsDictAlias)
  • da definition 1
  • da definition 2
", "glossary-first-brief": "
  • da definition 1
  • da definition 2
", "glossary-first-no-dictionary": "
(n)
  • da definition 1
  • da definition 2
", "part-of-speech": "Noun", @@ -3287,10 +3287,10 @@ "frequency-average-occurrence": "1", "furigana": "ダース", "furigana-plain": "打[ダース]", - "glossary": "
(abbr, n, Test Dictionary 2)
  • daasu definition 1
  • daasu definition 2
", + "glossary": "
(abbr, n, termsDictAlias)
  • daasu definition 1
  • daasu definition 2
", "glossary-brief": "
  • daasu definition 1
  • daasu definition 2
", "glossary-no-dictionary": "
(abbr, n)
  • daasu definition 1
  • daasu definition 2
", - "glossary-first": "
(abbr, n, Test Dictionary 2)
  • daasu definition 1
  • daasu definition 2
", + "glossary-first": "
(abbr, n, termsDictAlias)
  • daasu definition 1
  • daasu definition 2
", "glossary-first-brief": "
  • daasu definition 1
  • daasu definition 2
", "glossary-first-no-dictionary": "
(abbr, n)
  • daasu definition 1
  • daasu definition 2
", "part-of-speech": "Noun", @@ -3381,10 +3381,10 @@ "frequency-average-occurrence": "0", "furigana": "つよみ", "furigana-plain": "強[つよ]み", - "glossary": "
(n, Test Dictionary 2) strong point
", + "glossary": "
(n, termsDictAlias) strong point
", "glossary-brief": "
strong point
", "glossary-no-dictionary": "
(n) strong point
", - "glossary-first": "
(n, Test Dictionary 2) strong point
", + "glossary-first": "
(n, termsDictAlias) strong point
", "glossary-first-brief": "
strong point
", "glossary-first-no-dictionary": "
(n) strong point
", "part-of-speech": "Noun", @@ -3564,10 +3564,10 @@ "frequency-average-occurrence": "0", "furigana": "お手前てまえ", "furigana-plain": "お 手前[てまえ]", - "glossary": "
(n, Test Dictionary 2) otemae definition
", + "glossary": "
(n, termsDictAlias) otemae definition
", "glossary-brief": "
otemae definition
", "glossary-no-dictionary": "
(n) otemae definition
", - "glossary-first": "
(n, Test Dictionary 2) otemae definition
", + "glossary-first": "
(n, termsDictAlias) otemae definition
", "glossary-first-brief": "
otemae definition
", "glossary-first-no-dictionary": "
(n) otemae definition
", "part-of-speech": "Noun", @@ -3611,10 +3611,10 @@ "frequency-average-occurrence": "0", "furigana": "番号ばんごう", "furigana-plain": "番号[ばんごう]", - "glossary": "
(n, Test Dictionary 2) bangou definition
", + "glossary": "
(n, termsDictAlias) bangou definition
", "glossary-brief": "
bangou definition
", "glossary-no-dictionary": "
(n) bangou definition
", - "glossary-first": "
(n, Test Dictionary 2) bangou definition
", + "glossary-first": "
(n, termsDictAlias) bangou definition
", "glossary-first-brief": "
bangou definition
", "glossary-first-no-dictionary": "
(n) bangou definition
", "part-of-speech": "Noun", @@ -3658,10 +3658,10 @@ "frequency-average-occurrence": "0", "furigana": "中腰ちゅうごし", "furigana-plain": "中腰[ちゅうごし]", - "glossary": "
(n, Test Dictionary 2) chuugoshi definition
", + "glossary": "
(n, termsDictAlias) chuugoshi definition
", "glossary-brief": "
chuugoshi definition
", "glossary-no-dictionary": "
(n) chuugoshi definition
", - "glossary-first": "
(n, Test Dictionary 2) chuugoshi definition
", + "glossary-first": "
(n, termsDictAlias) chuugoshi definition
", "glossary-first-brief": "
chuugoshi definition
", "glossary-first-no-dictionary": "
(n) chuugoshi definition
", "part-of-speech": "Noun", @@ -3705,10 +3705,10 @@ "frequency-average-occurrence": "0", "furigana": "所業しょぎょう", "furigana-plain": "所業[しょぎょう]", - "glossary": "
(n, Test Dictionary 2) shogyouu definition
", + "glossary": "
(n, termsDictAlias) shogyouu definition
", "glossary-brief": "
shogyouu definition
", "glossary-no-dictionary": "
(n) shogyouu definition
", - "glossary-first": "
(n, Test Dictionary 2) shogyouu definition
", + "glossary-first": "
(n, termsDictAlias) shogyouu definition
", "glossary-first-brief": "
shogyouu definition
", "glossary-first-no-dictionary": "
(n) shogyouu definition
", "part-of-speech": "Noun", @@ -3752,10 +3752,10 @@ "frequency-average-occurrence": "0", "furigana": "土木工事どぼくこうじ", "furigana-plain": "土木工事[どぼくこうじ]", - "glossary": "
(n, Test Dictionary 2) dobokukouji definition
", + "glossary": "
(n, termsDictAlias) dobokukouji definition
", "glossary-brief": "
dobokukouji definition
", "glossary-no-dictionary": "
(n) dobokukouji definition
", - "glossary-first": "
(n, Test Dictionary 2) dobokukouji definition
", + "glossary-first": "
(n, termsDictAlias) dobokukouji definition
", "glossary-first-brief": "
dobokukouji definition
", "glossary-first-no-dictionary": "
(n) dobokukouji definition
", "part-of-speech": "Noun", @@ -3799,10 +3799,10 @@ "frequency-average-occurrence": "0", "furigana": "き", "furigana-plain": "好[す]き", - "glossary": "
(adj-na, n, Test Dictionary 2) suki definition
", + "glossary": "
(adj-na, n, termsDictAlias) suki definition
", "glossary-brief": "
suki definition
", "glossary-no-dictionary": "
(adj-na, n) suki definition
", - "glossary-first": "
(adj-na, n, Test Dictionary 2) suki definition
", + "glossary-first": "
(adj-na, n, termsDictAlias) suki definition
", "glossary-first-brief": "
suki definition
", "glossary-first-no-dictionary": "
(adj-na, n) suki definition
", "part-of-speech": "Unknown", @@ -3846,10 +3846,10 @@ "frequency-average-occurrence": "0", "furigana": "構造こうぞう", "furigana-plain": "構造[こうぞう]", - "glossary": "
(n, Test Dictionary 2)
  • kouzou definition 1
  • kouzou definition 2
  • kouzou definition 3 (構造)
", + "glossary": "
(n, termsDictAlias)
  • kouzou definition 1
  • kouzou definition 2
  • kouzou definition 3 (構造)
", "glossary-brief": "
  • kouzou definition 1
  • kouzou definition 2
  • kouzou definition 3 (構造)
", "glossary-no-dictionary": "
(n)
  • kouzou definition 1
  • kouzou definition 2
  • kouzou definition 3 (構造)
", - "glossary-first": "
(n, Test Dictionary 2)
  • kouzou definition 1
  • kouzou definition 2
  • kouzou definition 3 (構造)
", + "glossary-first": "
(n, termsDictAlias)
  • kouzou definition 1
  • kouzou definition 2
  • kouzou definition 3 (構造)
", "glossary-first-brief": "
  • kouzou definition 1
  • kouzou definition 2
  • kouzou definition 3 (構造)
", "glossary-first-no-dictionary": "
(n)
  • kouzou definition 1
  • kouzou definition 2
  • kouzou definition 3 (構造)
", "part-of-speech": "Noun", @@ -3893,10 +3893,10 @@ "frequency-average-occurrence": "0", "furigana": "のたまう", "furigana-plain": "のたまう", - "glossary": "
(v5, Test Dictionary 2) notamau definition
", + "glossary": "
(v5, termsDictAlias) notamau definition
", "glossary-brief": "
notamau definition
", "glossary-no-dictionary": "
(v5) notamau definition
", - "glossary-first": "
(v5, Test Dictionary 2) notamau definition
", + "glossary-first": "
(v5, termsDictAlias) notamau definition
", "glossary-first-brief": "
notamau definition
", "glossary-first-no-dictionary": "
(v5) notamau definition
", "part-of-speech": "Godan verb", @@ -3940,10 +3940,10 @@ "frequency-average-occurrence": "0", "furigana": "39さんきゅう", "furigana-plain": "39[さんきゅう]", - "glossary": "
(Test Dictionary 2) sankyuu definition
", + "glossary": "
(termsDictAlias) sankyuu definition
", "glossary-brief": "
sankyuu definition
", "glossary-no-dictionary": "
sankyuu definition
", - "glossary-first": "
(Test Dictionary 2) sankyuu definition
", + "glossary-first": "
(termsDictAlias) sankyuu definition
", "glossary-first-brief": "
sankyuu definition
", "glossary-first-no-dictionary": "
sankyuu definition
", "part-of-speech": "Unknown", @@ -3987,10 +3987,10 @@ "frequency-average-occurrence": "0", "furigana": "English", "furigana-plain": "English", - "glossary": "
(n, Test Dictionary 2) English definition
", + "glossary": "
(n, termsDictAlias) English definition
", "glossary-brief": "
English definition
", "glossary-no-dictionary": "
(n) English definition
", - "glossary-first": "
(n, Test Dictionary 2) English definition
", + "glossary-first": "
(n, termsDictAlias) English definition
", "glossary-first-brief": "
English definition
", "glossary-first-no-dictionary": "
(n) English definition
", "part-of-speech": "Noun", @@ -4034,10 +4034,10 @@ "frequency-average-occurrence": "0", "furigana": "USBユーエスビー", "furigana-plain": "USB[ユーエスビー]", - "glossary": "
(n, Test Dictionary 2) USB definition
", + "glossary": "
(n, termsDictAlias) USB definition
", "glossary-brief": "
USB definition
", "glossary-no-dictionary": "
(n) USB definition
", - "glossary-first": "
(n, Test Dictionary 2) USB definition
", + "glossary-first": "
(n, termsDictAlias) USB definition
", "glossary-first-brief": "
USB definition
", "glossary-first-no-dictionary": "
(n) USB definition
", "part-of-speech": "Noun", @@ -4259,10 +4259,10 @@ "frequency-average-occurrence": "0", "furigana": "テキスト", "furigana-plain": "テキスト", - "glossary": "
(n, Test Dictionary 2)
  • text definition 1
  • text definition 2
", + "glossary": "
(n, termsDictAlias)
  • text definition 1
  • text definition 2
", "glossary-brief": "
  • text definition 1
  • text definition 2
", "glossary-no-dictionary": "
(n)
  • text definition 1
  • text definition 2
", - "glossary-first": "
(n, Test Dictionary 2)
  • text definition 1
  • text definition 2
", + "glossary-first": "
(n, termsDictAlias)
  • text definition 1
  • text definition 2
", "glossary-first-brief": "
  • text definition 1
  • text definition 2
", "glossary-first-no-dictionary": "
(n)
  • text definition 1
  • text definition 2
", "part-of-speech": "Noun", @@ -4395,10 +4395,10 @@ "frequency-average-occurrence": "0", "furigana": "すごい", "furigana-plain": "凄[すご]い", - "glossary": "
(adj-i, Test Dictionary 2) sugoi definition
", + "glossary": "
(adj-i, termsDictAlias) sugoi definition
", "glossary-brief": "
sugoi definition
", "glossary-no-dictionary": "
(adj-i) sugoi definition
", - "glossary-first": "
(adj-i, Test Dictionary 2) sugoi definition
", + "glossary-first": "
(adj-i, termsDictAlias) sugoi definition
", "glossary-first-brief": "
sugoi definition
", "glossary-first-no-dictionary": "
(adj-i) sugoi definition
", "part-of-speech": "I-adjective", @@ -4442,10 +4442,10 @@ "frequency-average-occurrence": "0", "furigana": "English", "furigana-plain": "English", - "glossary": "
(n, Test Dictionary 2) English definition
", + "glossary": "
(n, termsDictAlias) English definition
", "glossary-brief": "
English definition
", "glossary-no-dictionary": "
(n) English definition
", - "glossary-first": "
(n, Test Dictionary 2) English definition
", + "glossary-first": "
(n, termsDictAlias) English definition
", "glossary-first-brief": "
English definition
", "glossary-first-no-dictionary": "
(n) English definition
", "part-of-speech": "Noun", @@ -4489,10 +4489,10 @@ "frequency-average-occurrence": "0", "furigana": "language", "furigana-plain": "language", - "glossary": "
(n, Test Dictionary 2) language definition
", + "glossary": "
(n, termsDictAlias) language definition
", "glossary-brief": "
language definition
", "glossary-no-dictionary": "
(n) language definition
", - "glossary-first": "
(n, Test Dictionary 2) language definition
", + "glossary-first": "
(n, termsDictAlias) language definition
", "glossary-first-brief": "
language definition
", "glossary-first-no-dictionary": "
(n) language definition
", "part-of-speech": "Noun", @@ -4536,10 +4536,10 @@ "frequency-average-occurrence": "0", "furigana": "마시다", "furigana-plain": "마시다", - "glossary": "
(v, Test Dictionary 2) masida definition
", + "glossary": "
(v, termsDictAlias) masida definition
", "glossary-brief": "
masida definition
", "glossary-no-dictionary": "
(v) masida definition
", - "glossary-first": "
(v, Test Dictionary 2) masida definition
", + "glossary-first": "
(v, termsDictAlias) masida definition
", "glossary-first-brief": "
masida definition
", "glossary-first-no-dictionary": "
(v) masida definition
", "part-of-speech": "v", @@ -4583,10 +4583,10 @@ "frequency-average-occurrence": "0", "furigana": "English", "furigana-plain": "English", - "glossary": "
(n, Test Dictionary 2) English definition
", + "glossary": "
(n, termsDictAlias) English definition
", "glossary-brief": "
English definition
", "glossary-no-dictionary": "
(n) English definition
", - "glossary-first": "
(n, Test Dictionary 2) English definition
", + "glossary-first": "
(n, termsDictAlias) English definition
", "glossary-first-brief": "
English definition
", "glossary-first-no-dictionary": "
(n) English definition
", "part-of-speech": "Noun", From 55bda554ebfd08de028aa96f83837d219b2d149b Mon Sep 17 00:00:00 2001 From: Khai Truong Date: Tue, 30 Jul 2024 16:56:23 +0700 Subject: [PATCH 26/40] fixing test --- .../translator-test-results-note-data1.json | 48 ++++++++++++++----- test/data/translator-test-results.json | 24 +++++----- 2 files changed, 48 insertions(+), 24 deletions(-) diff --git a/test/data/translator-test-results-note-data1.json b/test/data/translator-test-results-note-data1.json index 5ed170a73e..853f21a8d7 100644 --- a/test/data/translator-test-results-note-data1.json +++ b/test/data/translator-test-results-note-data1.json @@ -12145,7 +12145,7 @@ "score": 10, "sequence": 4, "dictionary": "Test Dictionary 2", - "dictionaryAlias": "termsDictAlias", + "dictionaryAlias": "", "dictionaryOrder": { "index": 0, "priority": 0 @@ -12349,6 +12349,7 @@ { "sequence": 4, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "glossaryScopedStyles": ".yomitan-glossary [data-sc-content='glossary'] {\n color: #ffff00;\n}", "dictScopedStyles": ".yomitan-glossary [data-dictionary=\"Test Dictionary 2\"] [data-sc-content='glossary'] {\n color: #ffff00;\n}", "glossary": [ @@ -12370,6 +12371,7 @@ { "sequence": 4, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "glossaryScopedStyles": ".yomitan-glossary [data-sc-content='glossary'] {\n color: #ffff00;\n}", "dictScopedStyles": ".yomitan-glossary [data-dictionary=\"Test Dictionary 2\"] [data-sc-content='glossary'] {\n color: #ffff00;\n}", "glossary": [ @@ -12595,7 +12597,7 @@ "score": 10, "sequence": 4, "dictionary": "Test Dictionary 2", - "dictionaryAlias": "termsDictAlias", + "dictionaryAlias": "", "dictionaryOrder": { "index": 0, "priority": 0 @@ -12799,6 +12801,7 @@ { "sequence": 4, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "glossaryScopedStyles": ".yomitan-glossary [data-sc-content='glossary'] {\n color: #ffff00;\n}", "dictScopedStyles": ".yomitan-glossary [data-dictionary=\"Test Dictionary 2\"] [data-sc-content='glossary'] {\n color: #ffff00;\n}", "glossary": [ @@ -12820,6 +12823,7 @@ { "sequence": 4, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "glossaryScopedStyles": ".yomitan-glossary [data-sc-content='glossary'] {\n color: #ffff00;\n}", "dictScopedStyles": ".yomitan-glossary [data-dictionary=\"Test Dictionary 2\"] [data-sc-content='glossary'] {\n color: #ffff00;\n}", "glossary": [ @@ -13050,7 +13054,7 @@ "score": 10, "sequence": 3, "dictionary": "Test Dictionary 2", - "dictionaryAlias": "termsDictAlias", + "dictionaryAlias": "", "dictionaryOrder": { "index": 0, "priority": 0 @@ -13224,6 +13228,7 @@ { "sequence": 3, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "glossaryScopedStyles": ".yomitan-glossary [data-sc-content='glossary'] {\n color: #ffff00;\n}", "dictScopedStyles": ".yomitan-glossary [data-dictionary=\"Test Dictionary 2\"] [data-sc-content='glossary'] {\n color: #ffff00;\n}", "glossary": [ @@ -13245,6 +13250,7 @@ { "sequence": 3, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "glossaryScopedStyles": ".yomitan-glossary [data-sc-content='glossary'] {\n color: #ffff00;\n}", "dictScopedStyles": ".yomitan-glossary [data-dictionary=\"Test Dictionary 2\"] [data-sc-content='glossary'] {\n color: #ffff00;\n}", "glossary": [ @@ -13405,7 +13411,7 @@ "score": 10, "sequence": 3, "dictionary": "Test Dictionary 2", - "dictionaryAlias": "termsDictAlias", + "dictionaryAlias": "", "dictionaryOrder": { "index": 0, "priority": 0 @@ -13579,6 +13585,7 @@ { "sequence": 3, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "glossaryScopedStyles": ".yomitan-glossary [data-sc-content='glossary'] {\n color: #ffff00;\n}", "dictScopedStyles": ".yomitan-glossary [data-dictionary=\"Test Dictionary 2\"] [data-sc-content='glossary'] {\n color: #ffff00;\n}", "glossary": [ @@ -13600,6 +13607,7 @@ { "sequence": 3, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "glossaryScopedStyles": ".yomitan-glossary [data-sc-content='glossary'] {\n color: #ffff00;\n}", "dictScopedStyles": ".yomitan-glossary [data-dictionary=\"Test Dictionary 2\"] [data-sc-content='glossary'] {\n color: #ffff00;\n}", "glossary": [ @@ -13755,7 +13763,7 @@ "score": 1, "sequence": 1, "dictionary": "Test Dictionary 2", - "dictionaryAlias": "termsDictAlias", + "dictionaryAlias": "", "dictionaryOrder": { "index": 0, "priority": 0 @@ -13902,6 +13910,7 @@ { "sequence": 1, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "glossaryScopedStyles": ".yomitan-glossary [data-sc-content='glossary'] {\n color: #ffff00;\n}", "dictScopedStyles": ".yomitan-glossary [data-dictionary=\"Test Dictionary 2\"] [data-sc-content='glossary'] {\n color: #ffff00;\n}", "glossary": [ @@ -14070,7 +14079,7 @@ "score": 1, "sequence": 2, "dictionary": "Test Dictionary 2", - "dictionaryAlias": "termsDictAlias", + "dictionaryAlias": "", "dictionaryOrder": { "index": 0, "priority": 0 @@ -14217,6 +14226,7 @@ { "sequence": 2, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "glossaryScopedStyles": ".yomitan-glossary [data-sc-content='glossary'] {\n color: #ffff00;\n}", "dictScopedStyles": ".yomitan-glossary [data-dictionary=\"Test Dictionary 2\"] [data-sc-content='glossary'] {\n color: #ffff00;\n}", "glossary": [ @@ -14398,7 +14408,7 @@ "score": 10, "sequence": 4, "dictionary": "Test Dictionary 2", - "dictionaryAlias": "termsDictAlias", + "dictionaryAlias": "", "dictionaryOrder": { "index": 0, "priority": 0 @@ -14737,6 +14747,7 @@ { "sequence": 4, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "glossaryScopedStyles": ".yomitan-glossary [data-sc-content='glossary'] {\n color: #ffff00;\n}", "dictScopedStyles": ".yomitan-glossary [data-dictionary=\"Test Dictionary 2\"] [data-sc-content='glossary'] {\n color: #ffff00;\n}", "glossary": [ @@ -14761,6 +14772,7 @@ { "sequence": 4, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "glossaryScopedStyles": ".yomitan-glossary [data-sc-content='glossary'] {\n color: #ffff00;\n}", "dictScopedStyles": ".yomitan-glossary [data-dictionary=\"Test Dictionary 2\"] [data-sc-content='glossary'] {\n color: #ffff00;\n}", "glossary": [ @@ -14785,6 +14797,7 @@ { "sequence": 4, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "glossaryScopedStyles": ".yomitan-glossary [data-sc-content='glossary'] {\n color: #ffff00;\n}", "dictScopedStyles": ".yomitan-glossary [data-dictionary=\"Test Dictionary 2\"] [data-sc-content='glossary'] {\n color: #ffff00;\n}", "glossary": [ @@ -14809,6 +14822,7 @@ { "sequence": 4, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "glossaryScopedStyles": ".yomitan-glossary [data-sc-content='glossary'] {\n color: #ffff00;\n}", "dictScopedStyles": ".yomitan-glossary [data-dictionary=\"Test Dictionary 2\"] [data-sc-content='glossary'] {\n color: #ffff00;\n}", "glossary": [ @@ -15185,7 +15199,7 @@ "score": 10, "sequence": 3, "dictionary": "Test Dictionary 2", - "dictionaryAlias": "termsDictAlias", + "dictionaryAlias": "", "dictionaryOrder": { "index": 0, "priority": 0 @@ -15464,6 +15478,7 @@ { "sequence": 3, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "glossaryScopedStyles": ".yomitan-glossary [data-sc-content='glossary'] {\n color: #ffff00;\n}", "dictScopedStyles": ".yomitan-glossary [data-dictionary=\"Test Dictionary 2\"] [data-sc-content='glossary'] {\n color: #ffff00;\n}", "glossary": [ @@ -15488,6 +15503,7 @@ { "sequence": 3, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "glossaryScopedStyles": ".yomitan-glossary [data-sc-content='glossary'] {\n color: #ffff00;\n}", "dictScopedStyles": ".yomitan-glossary [data-dictionary=\"Test Dictionary 2\"] [data-sc-content='glossary'] {\n color: #ffff00;\n}", "glossary": [ @@ -15512,6 +15528,7 @@ { "sequence": 3, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "glossaryScopedStyles": ".yomitan-glossary [data-sc-content='glossary'] {\n color: #ffff00;\n}", "dictScopedStyles": ".yomitan-glossary [data-dictionary=\"Test Dictionary 2\"] [data-sc-content='glossary'] {\n color: #ffff00;\n}", "glossary": [ @@ -15536,6 +15553,7 @@ { "sequence": 3, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "glossaryScopedStyles": ".yomitan-glossary [data-sc-content='glossary'] {\n color: #ffff00;\n}", "dictScopedStyles": ".yomitan-glossary [data-dictionary=\"Test Dictionary 2\"] [data-sc-content='glossary'] {\n color: #ffff00;\n}", "glossary": [ @@ -15772,7 +15790,7 @@ "score": 1, "sequence": 1, "dictionary": "Test Dictionary 2", - "dictionaryAlias": "termsDictAlias", + "dictionaryAlias": "", "dictionaryOrder": { "index": 0, "priority": 0 @@ -15912,6 +15930,7 @@ { "sequence": 1, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "glossaryScopedStyles": ".yomitan-glossary [data-sc-content='glossary'] {\n color: #ffff00;\n}", "dictScopedStyles": ".yomitan-glossary [data-dictionary=\"Test Dictionary 2\"] [data-sc-content='glossary'] {\n color: #ffff00;\n}", "glossary": [ @@ -16080,7 +16099,7 @@ "score": 1, "sequence": 2, "dictionary": "Test Dictionary 2", - "dictionaryAlias": "termsDictAlias", + "dictionaryAlias": "", "dictionaryOrder": { "index": 0, "priority": 0 @@ -16220,6 +16239,7 @@ { "sequence": 2, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "glossaryScopedStyles": ".yomitan-glossary [data-sc-content='glossary'] {\n color: #ffff00;\n}", "dictScopedStyles": ".yomitan-glossary [data-dictionary=\"Test Dictionary 2\"] [data-sc-content='glossary'] {\n color: #ffff00;\n}", "glossary": [ @@ -27897,7 +27917,7 @@ "score": 10, "sequence": 4, "dictionary": "Test Dictionary 2", - "dictionaryAlias": "termsDictAlias", + "dictionaryAlias": "", "dictionaryOrder": { "index": 0, "priority": 0 @@ -28236,6 +28256,7 @@ { "sequence": 4, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "glossaryScopedStyles": ".yomitan-glossary [data-sc-content='glossary'] {\n color: #ffff00;\n}", "dictScopedStyles": ".yomitan-glossary [data-dictionary=\"Test Dictionary 2\"] [data-sc-content='glossary'] {\n color: #ffff00;\n}", "glossary": [ @@ -28259,7 +28280,8 @@ }, { "sequence": 4, - "dictionary": "Test Dictionary 2", + "dicttionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "glossaryScopedStyles": ".yomitan-glossary [data-sc-content='glossary'] {\n color: #ffff00;\n}", "dictScopedStyles": ".yomitan-glossary [data-dictionary=\"Test Dictionary 2\"] [data-sc-content='glossary'] {\n color: #ffff00;\n}", "glossary": [ @@ -28284,6 +28306,7 @@ { "sequence": 4, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "glossaryScopedStyles": ".yomitan-glossary [data-sc-content='glossary'] {\n color: #ffff00;\n}", "dictScopedStyles": ".yomitan-glossary [data-dictionary=\"Test Dictionary 2\"] [data-sc-content='glossary'] {\n color: #ffff00;\n}", "glossary": [ @@ -28308,6 +28331,7 @@ { "sequence": 4, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "glossaryScopedStyles": ".yomitan-glossary [data-sc-content='glossary'] {\n color: #ffff00;\n}", "dictScopedStyles": ".yomitan-glossary [data-dictionary=\"Test Dictionary 2\"] [data-sc-content='glossary'] {\n color: #ffff00;\n}", "glossary": [ diff --git a/test/data/translator-test-results.json b/test/data/translator-test-results.json index 25e04e9757..88f94b8f0f 100644 --- a/test/data/translator-test-results.json +++ b/test/data/translator-test-results.json @@ -7575,7 +7575,7 @@ "score": 10, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "termsDictAlias", + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 4, @@ -7830,7 +7830,7 @@ "score": 10, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "termsDictAlias", + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 4, @@ -8090,7 +8090,7 @@ "score": 10, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "termsDictAlias", + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 2, @@ -8325,7 +8325,7 @@ "score": 10, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "termsDictAlias", + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 2, @@ -8555,7 +8555,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "termsDictAlias", + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 1, @@ -8735,7 +8735,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "termsDictAlias", + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 1, @@ -8934,7 +8934,7 @@ "score": 10, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "termsDictAlias", + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 2, "maxOriginalTextLength": 4, @@ -9421,7 +9421,7 @@ "score": 10, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "termsDictAlias", + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 2, "maxOriginalTextLength": 2, @@ -9854,7 +9854,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "termsDictAlias", + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 1, @@ -10034,7 +10034,7 @@ "score": 1, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "termsDictAlias", + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 1, "maxOriginalTextLength": 1, @@ -16557,7 +16557,7 @@ "score": 10, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "termsDictAlias", + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 0, "maxOriginalTextLength": 4, @@ -17044,7 +17044,7 @@ "score": 10, "frequencyOrder": 0, "dictionaryIndex": 0, - "dictionaryAlias": "termsDictAlias", + "dictionaryAlias": "", "dictionaryPriority": 0, "sourceTermExactMatchCount": 0, "maxOriginalTextLength": 2, From 2863a8efa92d946f59b3e3c544aee573bbd55be4 Mon Sep 17 00:00:00 2001 From: Khai Truong Date: Tue, 30 Jul 2024 17:02:02 +0700 Subject: [PATCH 27/40] add alias term frequncy & pitch accent anki --- ext/js/data/anki-note-data-creator.js | 12 ++++++++---- types/ext/anki-templates.d.ts | 2 ++ 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/ext/js/data/anki-note-data-creator.js b/ext/js/data/anki-note-data-creator.js index f4113f8688..969f1308d8 100644 --- a/ext/js/data/anki-note-data-creator.js +++ b/ext/js/data/anki-note-data-creator.js @@ -614,12 +614,13 @@ function addScopeToCss(css, scopeSelector) { function getTermFrequencies(dictionaryEntry) { const results = []; const {headwords} = dictionaryEntry; - for (const {headwordIndex, dictionary, dictionaryIndex, dictionaryPriority, hasReading, frequency, displayValue} of dictionaryEntry.frequencies) { + for (const {headwordIndex, dictionary, dictionaryAlias, dictionaryIndex, dictionaryPriority, hasReading, frequency, displayValue} of dictionaryEntry.frequencies) { const {term, reading} = headwords[headwordIndex]; results.push({ index: results.length, expressionIndex: headwordIndex, dictionary, + dictionaryAlias, dictionaryOrder: { index: dictionaryIndex, priority: dictionaryPriority, @@ -640,7 +641,7 @@ function getTermFrequencies(dictionaryEntry) { function getTermPitches(dictionaryEntry) { const results = []; const {headwords} = dictionaryEntry; - for (const {headwordIndex, dictionary, dictionaryIndex, dictionaryPriority, pronunciations} of dictionaryEntry.pronunciations) { + for (const {headwordIndex, dictionary, dictionaryAlias, dictionaryIndex, dictionaryPriority, pronunciations} of dictionaryEntry.pronunciations) { const {term, reading} = headwords[headwordIndex]; const pitches = getPronunciationsOfType(pronunciations, 'pitch-accent'); const cachedPitches = createCachedValue(getTermPitchesInner.bind(null, pitches)); @@ -648,6 +649,7 @@ function getTermPitches(dictionaryEntry) { index: results.length, expressionIndex: headwordIndex, dictionary, + dictionaryAlias, dictionaryOrder: { index: dictionaryIndex, priority: dictionaryPriority, @@ -758,13 +760,14 @@ function getTermExpressions(dictionaryEntry) { function getTermExpressionFrequencies(dictionaryEntry, i) { const results = []; const {headwords, frequencies} = dictionaryEntry; - for (const {headwordIndex, dictionary, dictionaryIndex, dictionaryPriority, hasReading, frequency, displayValue} of frequencies) { + for (const {headwordIndex, dictionary, dictionaryAlias, dictionaryIndex, dictionaryPriority, hasReading, frequency, displayValue} of frequencies) { if (headwordIndex !== i) { continue; } const {term, reading} = headwords[headwordIndex]; results.push({ index: results.length, expressionIndex: headwordIndex, dictionary, + dictionaryAlias, dictionaryOrder: { index: dictionaryIndex, priority: dictionaryPriority, @@ -786,7 +789,7 @@ function getTermExpressionFrequencies(dictionaryEntry, i) { function getTermExpressionPitches(dictionaryEntry, i) { const results = []; const {headwords, pronunciations: termPronunciations} = dictionaryEntry; - for (const {headwordIndex, dictionary, dictionaryIndex, dictionaryPriority, pronunciations} of termPronunciations) { + for (const {headwordIndex, dictionary, dictionaryAlias, dictionaryIndex, dictionaryPriority, pronunciations} of termPronunciations) { if (headwordIndex !== i) { continue; } const {term, reading} = headwords[headwordIndex]; const pitches = getPronunciationsOfType(pronunciations, 'pitch-accent'); @@ -795,6 +798,7 @@ function getTermExpressionPitches(dictionaryEntry, i) { index: results.length, expressionIndex: headwordIndex, dictionary, + dictionaryAlias, dictionaryOrder: { index: dictionaryIndex, priority: dictionaryPriority, diff --git a/types/ext/anki-templates.d.ts b/types/ext/anki-templates.d.ts index 341b14bbd6..7a5185e87e 100644 --- a/types/ext/anki-templates.d.ts +++ b/types/ext/anki-templates.d.ts @@ -242,6 +242,7 @@ export type TermFrequency = { index: number; expressionIndex: number; dictionary: string; + dictionaryAlias: string; dictionaryOrder: { index: number; priority: number; @@ -256,6 +257,7 @@ export type TermPitchAccent = { index: number; expressionIndex: number; dictionary: string; + dictionaryAlias: string; dictionaryOrder: { index: number; priority: number; From dbaba4151a0af6704917564f22f10e46c90cdd12 Mon Sep 17 00:00:00 2001 From: Khai Truong Date: Tue, 30 Jul 2024 17:17:49 +0700 Subject: [PATCH 28/40] Pass dictionary alias to all anki type --- ext/js/data/anki-note-data-creator.js | 6 ++++-- types/ext/anki-templates.d.ts | 2 ++ 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/ext/js/data/anki-note-data-creator.js b/ext/js/data/anki-note-data-creator.js index 969f1308d8..4c6576322c 100644 --- a/ext/js/data/anki-note-data-creator.js +++ b/ext/js/data/anki-note-data-creator.js @@ -393,10 +393,11 @@ function convertKanjiStat({name, category, content, order, score, dictionary, va function getKanjiFrequencies(dictionaryEntry) { /** @type {import('anki-templates').KanjiFrequency[]} */ const results = []; - for (const {index, dictionary, dictionaryIndex, dictionaryPriority, character, frequency, displayValue} of dictionaryEntry.frequencies) { + for (const {index, dictionary, dictionaryAlias, dictionaryIndex, dictionaryPriority, character, frequency, displayValue} of dictionaryEntry.frequencies) { results.push({ index, dictionary, + dictionaryAlias, dictionaryOrder: { index: dictionaryIndex, priority: dictionaryPriority, @@ -685,7 +686,7 @@ function getTermPitchesInner(pitches) { function getTermPhoneticTranscriptions(dictionaryEntry) { const results = []; const {headwords} = dictionaryEntry; - for (const {headwordIndex, dictionary, dictionaryIndex, dictionaryPriority, pronunciations} of dictionaryEntry.pronunciations) { + for (const {headwordIndex, dictionary, dictionaryAlias, dictionaryIndex, dictionaryPriority, pronunciations} of dictionaryEntry.pronunciations) { const {term, reading} = headwords[headwordIndex]; const phoneticTranscriptions = getPronunciationsOfType(pronunciations, 'phonetic-transcription'); const termPhoneticTranscriptions = getTermPhoneticTranscriptionsInner(phoneticTranscriptions); @@ -693,6 +694,7 @@ function getTermPhoneticTranscriptions(dictionaryEntry) { index: results.length, expressionIndex: headwordIndex, dictionary, + dictionaryAlias, dictionaryOrder: { index: dictionaryIndex, priority: dictionaryPriority, diff --git a/types/ext/anki-templates.d.ts b/types/ext/anki-templates.d.ts index 7a5185e87e..b25246de6a 100644 --- a/types/ext/anki-templates.d.ts +++ b/types/ext/anki-templates.d.ts @@ -159,6 +159,7 @@ export type KanjiStat = { export type KanjiFrequency = { index: number; dictionary: string; + dictionaryAlias: string; dictionaryOrder: { index: number; priority: number; @@ -276,6 +277,7 @@ export type TermPhoneticTranscription = { index: number; expressionIndex: number; dictionary: string; + dictionaryAlias: string; dictionaryOrder: { index: number; priority: number; From b794e89278af3f2ea71cc530f72d4f5557ececcb Mon Sep 17 00:00:00 2001 From: Khai Truong Date: Tue, 30 Jul 2024 18:32:46 +0700 Subject: [PATCH 29/40] update all unit tests --- .../translator-test-results-note-data1.json | 1188 ++++++++++++++++- 1 file changed, 1176 insertions(+), 12 deletions(-) diff --git a/test/data/translator-test-results-note-data1.json b/test/data/translator-test-results-note-data1.json index 853f21a8d7..77fb239ff4 100644 --- a/test/data/translator-test-results-note-data1.json +++ b/test/data/translator-test-results-note-data1.json @@ -104,6 +104,7 @@ { "index": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "kanjiDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -114,6 +115,7 @@ { "index": 1, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "kanjiDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -124,6 +126,7 @@ { "index": 2, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "kanjiDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -271,6 +274,7 @@ { "index": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "kanjiDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -281,6 +285,7 @@ { "index": 1, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "kanjiDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -291,6 +296,7 @@ { "index": 2, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "kanjiDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -390,6 +396,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -403,6 +410,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -416,6 +424,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -429,6 +438,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -442,6 +452,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -455,6 +466,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -468,6 +480,7 @@ "index": 6, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -524,6 +537,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -537,6 +551,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -550,6 +565,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -563,6 +579,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -576,6 +593,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -589,6 +607,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -602,6 +621,7 @@ "index": 6, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -707,6 +727,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -720,6 +741,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -733,6 +755,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -746,6 +769,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -759,6 +783,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -772,6 +797,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -785,6 +811,7 @@ "index": 6, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -850,6 +877,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -863,6 +891,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -876,6 +905,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -889,6 +919,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -902,6 +933,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -915,6 +947,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -928,6 +961,7 @@ "index": 6, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -1047,6 +1081,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -1060,6 +1095,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -1073,6 +1109,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -1086,6 +1123,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -1099,6 +1137,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -1112,6 +1151,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -1181,6 +1221,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -1194,6 +1235,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -1207,6 +1249,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -1220,6 +1263,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -1233,6 +1277,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -1246,6 +1291,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -1364,6 +1410,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -1377,6 +1424,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -1390,6 +1438,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -1403,6 +1452,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -1416,6 +1466,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -1429,6 +1480,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -1498,6 +1550,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -1511,6 +1564,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -1524,6 +1578,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -1537,6 +1592,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -1550,6 +1606,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -1563,6 +1620,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -1681,6 +1739,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -1694,6 +1753,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -1707,6 +1767,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -1720,6 +1781,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -1733,6 +1795,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -1746,6 +1809,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -1815,6 +1879,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -1828,6 +1893,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -1841,6 +1907,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -1854,6 +1921,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -1867,6 +1935,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -1880,6 +1949,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -1998,6 +2068,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -2011,6 +2082,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -2024,6 +2096,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -2037,6 +2110,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -2050,6 +2124,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -2063,6 +2138,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -2132,6 +2208,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -2145,6 +2222,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -2158,6 +2236,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -2171,6 +2250,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -2184,6 +2264,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -2197,6 +2278,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -2306,6 +2388,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -2319,6 +2402,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -2332,6 +2416,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -2345,6 +2430,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -2358,6 +2444,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -2371,6 +2458,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -2384,6 +2472,7 @@ "index": 6, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -2440,6 +2529,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -2453,6 +2543,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -2466,6 +2557,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -2479,6 +2571,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -2492,6 +2585,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -2505,6 +2599,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -2518,6 +2613,7 @@ "index": 6, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -2623,6 +2719,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -2636,6 +2733,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -2649,6 +2747,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -2662,6 +2761,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -2675,6 +2775,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -2688,6 +2789,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -2701,6 +2803,7 @@ "index": 6, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -2766,6 +2869,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -2779,6 +2883,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -2792,6 +2897,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -2805,6 +2911,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -2818,6 +2925,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -2831,6 +2939,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -2844,6 +2953,7 @@ "index": 6, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -2963,6 +3073,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -2976,6 +3087,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -2989,6 +3101,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -3002,6 +3115,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -3015,6 +3129,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -3028,6 +3143,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -3043,6 +3159,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -3127,6 +3244,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -3140,6 +3258,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -3153,6 +3272,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -3166,6 +3286,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -3179,6 +3300,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -3192,6 +3314,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -3209,6 +3332,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -3232,6 +3356,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -3388,6 +3513,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -3401,6 +3527,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -3414,6 +3541,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -3427,6 +3555,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -3440,6 +3569,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -3453,6 +3583,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -3468,6 +3599,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -3552,6 +3684,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -3565,6 +3698,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -3578,6 +3712,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -3591,6 +3726,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -3604,6 +3740,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -3617,6 +3754,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -3634,6 +3772,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -3657,6 +3796,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -3813,6 +3953,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -3826,6 +3967,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -3839,6 +3981,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -3852,6 +3995,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -3865,6 +4009,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -3878,6 +4023,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -3893,6 +4039,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -3977,6 +4124,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -3990,6 +4138,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -4003,6 +4152,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -4016,6 +4166,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -4029,6 +4180,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -4042,6 +4194,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -4059,6 +4212,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -4082,6 +4236,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -4238,6 +4393,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -4251,6 +4407,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -4264,6 +4421,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -4277,6 +4435,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -4290,6 +4449,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -4303,6 +4463,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -4318,6 +4479,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -4402,6 +4564,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -4415,6 +4578,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -4428,6 +4592,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -4441,6 +4606,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -4454,6 +4620,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -4467,6 +4634,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -4484,6 +4652,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -4507,6 +4676,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -4668,6 +4838,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -4681,6 +4852,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -4694,6 +4866,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -4707,6 +4880,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -4720,6 +4894,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -4733,6 +4908,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -4802,6 +4978,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -4815,6 +4992,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -4828,6 +5006,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -4841,6 +5020,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -4854,6 +5034,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -4867,6 +5048,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -4990,6 +5172,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -5003,6 +5186,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -5016,6 +5200,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -5029,6 +5214,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -5042,6 +5228,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -5055,6 +5242,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -5124,6 +5312,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -5137,6 +5326,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -5150,6 +5340,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -5163,6 +5354,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -5176,6 +5368,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -5189,6 +5382,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -5312,6 +5506,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -5325,6 +5520,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -5338,6 +5534,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -5351,6 +5548,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -5364,6 +5562,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -5377,6 +5576,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -5446,6 +5646,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -5459,6 +5660,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -5472,6 +5674,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -5485,6 +5688,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -5498,6 +5702,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -5511,6 +5716,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -5634,6 +5840,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -5647,6 +5854,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -5660,6 +5868,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -5673,6 +5882,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -5686,6 +5896,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -5699,6 +5910,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -5768,6 +5980,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -5781,6 +5994,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -5794,6 +6008,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -5807,6 +6022,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -5820,6 +6036,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -5833,6 +6050,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -5942,6 +6160,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -5955,6 +6174,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -5968,6 +6188,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -5981,6 +6202,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -5994,6 +6216,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -6007,6 +6230,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -6020,6 +6244,7 @@ "index": 6, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -6076,6 +6301,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -6089,6 +6315,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -6102,6 +6329,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -6115,6 +6343,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -6128,6 +6357,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -6141,6 +6371,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -6154,6 +6385,7 @@ "index": 6, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -6259,6 +6491,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -6272,6 +6505,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -6285,6 +6519,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -6298,6 +6533,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -6311,6 +6547,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -6324,6 +6561,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -6337,6 +6575,7 @@ "index": 6, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -6402,6 +6641,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -6415,6 +6655,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -6428,6 +6669,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -6441,6 +6683,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -6454,6 +6697,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -6467,6 +6711,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -6480,6 +6725,7 @@ "index": 6, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -6755,6 +7001,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -6768,6 +7015,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -6781,6 +7029,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -6794,6 +7043,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -6807,6 +7057,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -6820,6 +7071,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -6833,6 +7085,7 @@ "index": 6, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -6889,6 +7142,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -6902,6 +7156,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -6915,6 +7170,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -6928,6 +7184,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -6941,6 +7198,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -6954,6 +7212,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -6967,6 +7226,7 @@ "index": 6, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -7077,6 +7337,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -7090,6 +7351,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -7103,6 +7365,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -7116,6 +7379,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -7129,6 +7393,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -7142,6 +7407,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -7155,6 +7421,7 @@ "index": 6, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -7220,6 +7487,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -7233,6 +7501,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -7246,6 +7515,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -7259,6 +7529,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -7272,6 +7543,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -7285,6 +7557,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -7298,6 +7571,7 @@ "index": 6, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -7403,6 +7677,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -7416,6 +7691,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -7429,6 +7705,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -7442,6 +7719,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -7455,6 +7733,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -7468,6 +7747,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -7481,6 +7761,7 @@ "index": 6, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -7537,6 +7818,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -7550,6 +7832,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -7563,6 +7846,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -7576,6 +7860,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -7589,6 +7874,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -7602,6 +7888,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -7615,6 +7902,7 @@ "index": 6, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -7734,6 +8022,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -7747,6 +8036,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -7760,6 +8050,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -7773,6 +8064,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -7786,6 +8078,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -7799,6 +8092,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -7868,6 +8162,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -7881,6 +8176,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -7894,6 +8190,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -7907,6 +8204,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -7920,6 +8218,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -7933,6 +8232,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -8051,6 +8351,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -8064,6 +8365,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -8077,6 +8379,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -8090,6 +8393,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -8103,6 +8407,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -8116,6 +8421,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -8185,6 +8491,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -8198,6 +8505,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -8211,6 +8519,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -8224,6 +8533,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -8237,6 +8547,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -8250,6 +8561,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -8373,6 +8685,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -8386,6 +8699,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -8399,6 +8713,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -8412,6 +8727,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -8425,6 +8741,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -8438,6 +8755,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -8507,6 +8825,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -8520,6 +8839,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -8533,6 +8853,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -8546,6 +8867,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -8559,6 +8881,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -8572,6 +8895,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -8690,6 +9014,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -8703,6 +9028,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -8716,6 +9042,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -8729,6 +9056,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -8742,6 +9070,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -8755,6 +9084,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -8824,6 +9154,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -8837,6 +9168,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -8850,6 +9182,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -8863,6 +9196,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -8876,6 +9210,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -8889,6 +9224,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -9012,6 +9348,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -9025,6 +9362,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -9038,6 +9376,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -9051,6 +9390,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -9064,6 +9404,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -9077,6 +9418,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -9092,6 +9434,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -9176,6 +9519,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -9189,6 +9533,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -9202,6 +9547,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -9215,6 +9561,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -9228,6 +9575,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -9241,6 +9589,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -9258,6 +9607,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -9281,6 +9631,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -9437,6 +9788,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -9450,6 +9802,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -9463,6 +9816,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -9476,6 +9830,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -9489,6 +9844,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -9502,6 +9858,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -9517,6 +9874,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -9601,6 +9959,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -9614,6 +9973,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -9627,6 +9987,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -9640,6 +10001,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -9653,6 +10015,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -9666,6 +10029,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -9683,6 +10047,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -9706,6 +10071,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -9867,6 +10233,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -9880,6 +10247,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -9893,6 +10261,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -9906,6 +10275,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -9919,6 +10289,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -9932,6 +10303,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -10001,6 +10373,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -10014,6 +10387,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -10027,6 +10401,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -10040,6 +10415,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -10053,6 +10429,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -10066,6 +10443,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -10189,6 +10567,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -10202,6 +10581,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -10215,6 +10595,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -10228,6 +10609,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -10241,6 +10623,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -10254,6 +10637,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -10323,6 +10707,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -10336,6 +10721,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -10349,6 +10735,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -10362,6 +10749,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -10375,6 +10763,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -10388,6 +10777,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -10511,6 +10901,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -10524,6 +10915,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -10537,6 +10929,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -10550,6 +10943,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -10563,6 +10957,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -10576,6 +10971,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -10591,6 +10987,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -10675,6 +11072,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -10688,6 +11086,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -10701,6 +11100,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -10714,6 +11114,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -10727,6 +11128,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -10740,6 +11142,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -10757,6 +11160,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -10780,6 +11184,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -10936,6 +11341,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -10949,6 +11355,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -10962,6 +11369,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -10975,6 +11383,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -10988,6 +11397,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -11001,6 +11411,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -11016,6 +11427,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -11100,6 +11512,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -11113,6 +11526,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -11126,6 +11540,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -11139,6 +11554,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -11152,6 +11568,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -11165,6 +11582,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -11182,6 +11600,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -11205,6 +11624,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -11366,6 +11786,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -11379,6 +11800,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -11392,6 +11814,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -11405,6 +11828,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -11418,6 +11842,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -11431,6 +11856,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -11500,6 +11926,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -11513,6 +11940,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -11526,6 +11954,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -11539,6 +11968,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -11552,6 +11982,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -11565,6 +11996,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -11688,6 +12120,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -11701,6 +12134,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -11714,6 +12148,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -11727,6 +12162,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -11740,6 +12176,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -11753,6 +12190,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -11822,6 +12260,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -11835,6 +12274,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -11848,6 +12288,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -11861,6 +12302,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -11874,6 +12316,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -11887,6 +12330,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -12145,7 +12589,7 @@ "score": 10, "sequence": 4, "dictionary": "Test Dictionary 2", - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -12194,6 +12638,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -12207,6 +12652,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -12220,6 +12666,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -12233,6 +12680,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -12246,6 +12694,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -12259,6 +12708,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -12274,6 +12724,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -12396,6 +12847,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -12409,6 +12861,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -12422,6 +12875,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -12435,6 +12889,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -12448,6 +12903,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -12461,6 +12917,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -12478,6 +12935,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -12501,6 +12959,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -12597,7 +13056,7 @@ "score": 10, "sequence": 4, "dictionary": "Test Dictionary 2", - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -12646,6 +13105,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -12659,6 +13119,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -12672,6 +13133,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -12685,6 +13147,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -12698,6 +13161,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -12711,6 +13175,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -12726,6 +13191,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -12848,6 +13314,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -12861,6 +13328,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -12874,6 +13342,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -12887,6 +13356,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -12900,6 +13370,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -12913,6 +13384,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -12930,6 +13402,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -12953,6 +13426,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -13054,7 +13528,7 @@ "score": 10, "sequence": 3, "dictionary": "Test Dictionary 2", - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -13103,6 +13577,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -13116,6 +13591,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -13129,6 +13605,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -13142,6 +13619,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -13155,6 +13633,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -13168,6 +13647,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -13275,6 +13755,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -13288,6 +13769,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -13301,6 +13783,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -13314,6 +13797,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -13327,6 +13811,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -13340,6 +13825,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -13411,7 +13897,7 @@ "score": 10, "sequence": 3, "dictionary": "Test Dictionary 2", - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -13460,6 +13946,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -13473,6 +13960,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -13486,6 +13974,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -13499,6 +13988,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -13512,6 +14002,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -13525,6 +14016,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -13632,6 +14124,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -13645,6 +14138,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -13658,6 +14152,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -13671,6 +14166,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -13684,6 +14180,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -13697,6 +14194,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -13763,7 +14261,7 @@ "score": 1, "sequence": 1, "dictionary": "Test Dictionary 2", - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -13794,6 +14292,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -13807,6 +14306,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -13820,6 +14320,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -13833,6 +14334,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -13846,6 +14348,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -13859,6 +14362,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -13872,6 +14376,7 @@ "index": 6, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -13935,6 +14440,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -13948,6 +14454,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -13961,6 +14468,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -13974,6 +14482,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -13987,6 +14496,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -14000,6 +14510,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -14013,6 +14524,7 @@ "index": 6, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -14079,7 +14591,7 @@ "score": 1, "sequence": 2, "dictionary": "Test Dictionary 2", - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -14110,6 +14622,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -14123,6 +14636,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -14136,6 +14650,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -14149,6 +14664,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -14162,6 +14678,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -14175,6 +14692,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -14188,6 +14706,7 @@ "index": 6, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -14260,6 +14779,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -14273,6 +14793,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -14286,6 +14807,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -14299,6 +14821,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -14312,6 +14835,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -14325,6 +14849,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -14338,6 +14863,7 @@ "index": 6, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -14408,7 +14934,7 @@ "score": 10, "sequence": 4, "dictionary": "Test Dictionary 2", - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -14462,6 +14988,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -14475,6 +15002,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -14488,6 +15016,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -14501,6 +15030,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -14514,6 +15044,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -14527,6 +15058,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -14542,6 +15074,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -14621,6 +15154,7 @@ "index": 0, "expressionIndex": 1, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -14634,6 +15168,7 @@ "index": 1, "expressionIndex": 1, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -14647,6 +15182,7 @@ "index": 2, "expressionIndex": 1, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -14660,6 +15196,7 @@ "index": 3, "expressionIndex": 1, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -14673,6 +15210,7 @@ "index": 4, "expressionIndex": 1, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -14686,6 +15224,7 @@ "index": 5, "expressionIndex": 1, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -14701,6 +15240,7 @@ "index": 0, "expressionIndex": 1, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -14850,6 +15390,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -14863,6 +15404,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -14876,6 +15418,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -14889,6 +15432,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -14902,6 +15446,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -14915,6 +15460,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -14928,6 +15474,7 @@ "index": 6, "expressionIndex": 1, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -14941,6 +15488,7 @@ "index": 7, "expressionIndex": 1, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -14954,6 +15502,7 @@ "index": 8, "expressionIndex": 1, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -14967,6 +15516,7 @@ "index": 9, "expressionIndex": 1, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -14980,6 +15530,7 @@ "index": 10, "expressionIndex": 1, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -14993,6 +15544,7 @@ "index": 11, "expressionIndex": 1, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -15010,6 +15562,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -15031,6 +15584,7 @@ "index": 1, "expressionIndex": 1, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -15054,6 +15608,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -15066,6 +15621,7 @@ "index": 1, "expressionIndex": 1, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -15199,7 +15755,7 @@ "score": 10, "sequence": 3, "dictionary": "Test Dictionary 2", - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -15253,6 +15809,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -15266,6 +15823,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -15279,6 +15837,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -15292,6 +15851,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -15305,6 +15865,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -15318,6 +15879,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -15382,6 +15944,7 @@ "index": 0, "expressionIndex": 1, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -15395,6 +15958,7 @@ "index": 1, "expressionIndex": 1, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -15408,6 +15972,7 @@ "index": 2, "expressionIndex": 1, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -15421,6 +15986,7 @@ "index": 3, "expressionIndex": 1, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -15434,6 +16000,7 @@ "index": 4, "expressionIndex": 1, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -15447,6 +16014,7 @@ "index": 5, "expressionIndex": 1, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -15581,6 +16149,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -15594,6 +16163,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -15607,6 +16177,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -15620,6 +16191,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -15633,6 +16205,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -15646,6 +16219,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -15659,6 +16233,7 @@ "index": 6, "expressionIndex": 1, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -15672,6 +16247,7 @@ "index": 7, "expressionIndex": 1, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -15685,6 +16261,7 @@ "index": 8, "expressionIndex": 1, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -15698,6 +16275,7 @@ "index": 9, "expressionIndex": 1, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -15711,6 +16289,7 @@ "index": 10, "expressionIndex": 1, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -15724,6 +16303,7 @@ "index": 11, "expressionIndex": 1, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -15790,7 +16370,7 @@ "score": 1, "sequence": 1, "dictionary": "Test Dictionary 2", - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -15825,6 +16405,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -15838,6 +16419,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -15851,6 +16433,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -15864,6 +16447,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -15877,6 +16461,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -15890,6 +16475,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -15903,6 +16489,7 @@ "index": 6, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -15956,6 +16543,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -15969,6 +16557,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -15982,6 +16571,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -15995,6 +16585,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -16008,6 +16599,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -16021,6 +16613,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -16034,6 +16627,7 @@ "index": 6, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -16099,7 +16693,7 @@ "score": 1, "sequence": 2, "dictionary": "Test Dictionary 2", - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -16134,6 +16728,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -16147,6 +16742,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -16160,6 +16756,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -16173,6 +16770,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -16186,6 +16784,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -16199,6 +16798,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -16212,6 +16812,7 @@ "index": 6, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -16274,6 +16875,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -16287,6 +16889,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -16300,6 +16903,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -16313,6 +16917,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -16326,6 +16931,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -16339,6 +16945,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -16352,6 +16959,7 @@ "index": 6, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -16486,6 +17094,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -16499,6 +17108,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -16512,6 +17122,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -16525,6 +17136,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -16538,6 +17150,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -16551,6 +17164,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -16566,6 +17180,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -16650,6 +17265,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -16663,6 +17279,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -16676,6 +17293,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -16689,6 +17307,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -16702,6 +17321,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -16715,6 +17335,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -16732,6 +17353,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -16755,6 +17377,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -16932,6 +17555,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -16945,6 +17569,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -16958,6 +17583,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -16971,6 +17597,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -16984,6 +17611,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -16997,6 +17625,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -17012,6 +17641,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -17096,6 +17726,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -17109,6 +17740,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -17122,6 +17754,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -17135,6 +17768,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -17148,6 +17782,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -17161,6 +17796,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -17178,6 +17814,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -17201,6 +17838,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -17378,6 +18016,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -17391,6 +18030,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -17404,6 +18044,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -17417,6 +18058,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -17430,6 +18072,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -17443,6 +18086,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -17458,6 +18102,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -17542,6 +18187,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -17555,6 +18201,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -17568,6 +18215,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -17581,6 +18229,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -17594,6 +18243,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -17607,6 +18257,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -17624,6 +18275,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -17647,6 +18299,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -17824,6 +18477,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -17837,6 +18491,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -17850,6 +18505,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -17863,6 +18519,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -17876,6 +18533,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -17889,6 +18547,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -17904,6 +18563,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -17988,6 +18648,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -18001,6 +18662,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -18014,6 +18676,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -18027,6 +18690,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -18040,6 +18704,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -18053,6 +18718,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -18070,6 +18736,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -18093,6 +18760,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -18254,6 +18922,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -18267,6 +18936,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -18280,6 +18950,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -18293,6 +18964,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -18306,6 +18978,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -18319,6 +18992,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -18388,6 +19062,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -18401,6 +19076,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -18414,6 +19090,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -18427,6 +19104,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -18440,6 +19118,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -18453,6 +19132,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -18576,6 +19256,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -18589,6 +19270,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -18602,6 +19284,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -18615,6 +19298,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -18628,6 +19312,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -18641,6 +19326,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -18710,6 +19396,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -18723,6 +19410,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -18736,6 +19424,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -18749,6 +19438,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -18762,6 +19452,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -18775,6 +19466,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -18898,6 +19590,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -18911,6 +19604,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -18924,6 +19618,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -18937,6 +19632,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -18950,6 +19646,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -18963,6 +19660,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -19032,6 +19730,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -19045,6 +19744,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -19058,6 +19758,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -19071,6 +19772,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -19084,6 +19786,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -19097,6 +19800,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -19220,6 +19924,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -19233,6 +19938,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -19246,6 +19952,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -19259,6 +19966,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -19272,6 +19980,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -19285,6 +19994,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -19354,6 +20064,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -19367,6 +20078,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -19380,6 +20092,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -19393,6 +20106,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -19406,6 +20120,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -19419,6 +20134,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -19528,6 +20244,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -19541,6 +20258,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -19554,6 +20272,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -19567,6 +20286,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -19580,6 +20300,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -19593,6 +20314,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -19606,6 +20328,7 @@ "index": 6, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -19662,6 +20385,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -19675,6 +20399,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -19688,6 +20413,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -19701,6 +20427,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -19714,6 +20441,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -19727,6 +20455,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -19740,6 +20469,7 @@ "index": 6, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -19845,6 +20575,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -19858,6 +20589,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -19871,6 +20603,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -19884,6 +20617,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -19897,6 +20631,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -19910,6 +20645,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -19923,6 +20659,7 @@ "index": 6, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -19988,6 +20725,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -20001,6 +20739,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -20014,6 +20753,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -20027,6 +20767,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -20040,6 +20781,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -20053,6 +20795,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -20066,6 +20809,7 @@ "index": 6, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -20185,6 +20929,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -20198,6 +20943,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -20211,6 +20957,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -20224,6 +20971,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -20237,6 +20985,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -20250,6 +20999,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -20265,6 +21015,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -20349,6 +21100,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -20362,6 +21114,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -20375,6 +21128,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -20388,6 +21142,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -20401,6 +21156,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -20414,6 +21170,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -20431,6 +21188,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -20454,6 +21212,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -20610,6 +21369,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -20623,6 +21383,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -20636,6 +21397,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -20649,6 +21411,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -20662,6 +21425,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -20675,6 +21439,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -20690,6 +21455,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -20774,6 +21540,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -20787,6 +21554,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -20800,6 +21568,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -20813,6 +21582,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -20826,6 +21596,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -20839,6 +21610,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -20856,6 +21628,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -20879,6 +21652,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -21035,6 +21809,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -21048,6 +21823,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -21061,6 +21837,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -21074,6 +21851,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -21087,6 +21865,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -21100,6 +21879,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -21115,6 +21895,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -21199,6 +21980,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -21212,6 +21994,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -21225,6 +22008,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -21238,6 +22022,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -21251,6 +22036,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -21264,6 +22050,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -21281,6 +22068,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -21304,6 +22092,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -21460,6 +22249,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -21473,6 +22263,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -21486,6 +22277,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -21499,6 +22291,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -21512,6 +22305,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -21525,6 +22319,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -21540,6 +22335,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -21624,6 +22420,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -21637,6 +22434,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -21650,6 +22448,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -21663,6 +22462,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -21676,6 +22476,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -21689,6 +22490,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -21706,6 +22508,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -21729,6 +22532,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -21890,6 +22694,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -21903,6 +22708,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -21916,6 +22722,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -21929,6 +22736,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -21942,6 +22750,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -21955,6 +22764,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -22024,6 +22834,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -22037,6 +22848,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -22050,6 +22862,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -22063,6 +22876,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -22076,6 +22890,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -22089,6 +22904,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -22212,6 +23028,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -22225,6 +23042,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -22238,6 +23056,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -22251,6 +23070,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -22264,6 +23084,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -22277,6 +23098,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -22346,6 +23168,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -22359,6 +23182,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -22372,6 +23196,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -22385,6 +23210,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -22398,6 +23224,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -22411,6 +23238,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -22534,6 +23362,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -22547,6 +23376,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -22560,6 +23390,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -22573,6 +23404,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -22586,6 +23418,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -22599,6 +23432,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -22668,6 +23502,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -22681,6 +23516,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -22694,6 +23530,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -22707,6 +23544,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -22720,6 +23558,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -22733,6 +23572,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -22856,6 +23696,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -22869,6 +23710,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -22882,6 +23724,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -22895,6 +23738,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -22908,6 +23752,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -22921,6 +23766,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -22990,6 +23836,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -23003,6 +23850,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -23016,6 +23864,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -23029,6 +23878,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -23042,6 +23892,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -23055,6 +23906,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -23164,6 +24016,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -23177,6 +24030,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -23190,6 +24044,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -23203,6 +24058,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -23216,6 +24072,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -23229,6 +24086,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -23242,6 +24100,7 @@ "index": 6, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -23298,6 +24157,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -23311,6 +24171,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -23324,6 +24185,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -23337,6 +24199,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -23350,6 +24213,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -23363,6 +24227,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -23376,6 +24241,7 @@ "index": 6, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -23481,6 +24347,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -23494,6 +24361,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -23507,6 +24375,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -23520,6 +24389,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -23533,6 +24403,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -23546,6 +24417,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -23559,6 +24431,7 @@ "index": 6, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -23624,6 +24497,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -23637,6 +24511,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -23650,6 +24525,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -23663,6 +24539,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -23676,6 +24553,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -23689,6 +24567,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -23702,6 +24581,7 @@ "index": 6, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -23821,6 +24701,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -23834,6 +24715,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -23847,6 +24729,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -23860,6 +24743,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -23873,6 +24757,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -23886,6 +24771,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -23901,6 +24787,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -23985,6 +24872,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -23998,6 +24886,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -24011,6 +24900,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -24024,6 +24914,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -24037,6 +24928,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -24050,6 +24942,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -24067,6 +24960,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -24090,6 +24984,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -24246,6 +25141,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -24259,6 +25155,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -24272,6 +25169,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -24285,6 +25183,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -24298,6 +25197,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -24311,6 +25211,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -24326,6 +25227,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -24410,6 +25312,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -24423,6 +25326,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -24436,6 +25340,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -24449,6 +25354,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -24462,6 +25368,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -24475,6 +25382,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -24492,6 +25400,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -24515,6 +25424,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -24671,6 +25581,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -24684,6 +25595,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -24697,6 +25609,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -24710,6 +25623,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -24723,6 +25637,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -24736,6 +25651,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -24751,6 +25667,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -24835,6 +25752,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -24848,6 +25766,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -24861,6 +25780,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -24874,6 +25794,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -24887,6 +25808,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -24900,6 +25822,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -24917,6 +25840,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -24940,6 +25864,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -25096,6 +26021,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -25109,6 +26035,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -25122,6 +26049,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -25135,6 +26063,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -25148,6 +26077,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -25161,6 +26091,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -25176,6 +26107,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -25260,6 +26192,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -25273,6 +26206,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -25286,6 +26220,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -25299,6 +26234,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -25312,6 +26248,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -25325,6 +26262,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -25342,6 +26280,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -25365,6 +26304,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -25526,6 +26466,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -25539,6 +26480,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -25552,6 +26494,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -25565,6 +26508,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -25578,6 +26522,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -25591,6 +26536,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -25660,6 +26606,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -25673,6 +26620,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -25686,6 +26634,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -25699,6 +26648,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -25712,6 +26662,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -25725,6 +26676,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -25848,6 +26800,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -25861,6 +26814,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -25874,6 +26828,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -25887,6 +26842,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -25900,6 +26856,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -25913,6 +26870,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -25982,6 +26940,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -25995,6 +26954,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -26008,6 +26968,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -26021,6 +26982,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -26034,6 +26996,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -26047,6 +27010,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -26170,6 +27134,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -26183,6 +27148,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -26196,6 +27162,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -26209,6 +27176,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -26222,6 +27190,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -26235,6 +27204,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -26304,6 +27274,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -26317,6 +27288,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -26330,6 +27302,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -26343,6 +27316,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -26356,6 +27330,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -26369,6 +27344,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -26492,6 +27468,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -26505,6 +27482,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -26518,6 +27496,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -26531,6 +27510,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -26544,6 +27524,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -26557,6 +27538,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -26626,6 +27608,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -26639,6 +27622,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -26652,6 +27636,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -26665,6 +27650,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -26678,6 +27664,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -26691,6 +27678,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -26800,6 +27788,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -26813,6 +27802,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -26826,6 +27816,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -26839,6 +27830,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -26852,6 +27844,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -26865,6 +27858,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -26878,6 +27872,7 @@ "index": 6, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -26934,6 +27929,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -26947,6 +27943,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -26960,6 +27957,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -26973,6 +27971,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -26986,6 +27985,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -26999,6 +27999,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -27012,6 +28013,7 @@ "index": 6, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -27117,6 +28119,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -27130,6 +28133,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -27143,6 +28147,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -27156,6 +28161,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -27169,6 +28175,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -27182,6 +28189,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -27195,6 +28203,7 @@ "index": 6, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -27260,6 +28269,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -27273,6 +28283,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -27286,6 +28297,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -27299,6 +28311,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -27312,6 +28325,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -27325,6 +28339,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -27338,6 +28353,7 @@ "index": 6, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -27917,7 +28933,7 @@ "score": 10, "sequence": 4, "dictionary": "Test Dictionary 2", - "dictionaryAlias": "", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -27971,6 +28987,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -27984,6 +29001,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -27997,6 +29015,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -28010,6 +29029,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -28023,6 +29043,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -28036,6 +29057,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -28051,6 +29073,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -28130,6 +29153,7 @@ "index": 0, "expressionIndex": 1, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -28143,6 +29167,7 @@ "index": 1, "expressionIndex": 1, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -28156,6 +29181,7 @@ "index": 2, "expressionIndex": 1, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -28169,6 +29195,7 @@ "index": 3, "expressionIndex": 1, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -28182,6 +29209,7 @@ "index": 4, "expressionIndex": 1, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -28195,6 +29223,7 @@ "index": 5, "expressionIndex": 1, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -28210,6 +29239,7 @@ "index": 0, "expressionIndex": 1, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -28280,7 +29310,7 @@ }, { "sequence": 4, - "dicttionary": "Test Dictionary 2", + "dictionary": "Test Dictionary 2", "dictionaryAlias": "termsDictAlias", "glossaryScopedStyles": ".yomitan-glossary [data-sc-content='glossary'] {\n color: #ffff00;\n}", "dictScopedStyles": ".yomitan-glossary [data-dictionary=\"Test Dictionary 2\"] [data-sc-content='glossary'] {\n color: #ffff00;\n}", @@ -28359,6 +29389,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -28372,6 +29403,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -28385,6 +29417,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -28398,6 +29431,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -28411,6 +29445,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -28424,6 +29459,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -28437,6 +29473,7 @@ "index": 6, "expressionIndex": 1, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -28450,6 +29487,7 @@ "index": 7, "expressionIndex": 1, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -28463,6 +29501,7 @@ "index": 8, "expressionIndex": 1, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -28476,6 +29515,7 @@ "index": 9, "expressionIndex": 1, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -28489,6 +29529,7 @@ "index": 10, "expressionIndex": 1, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -28502,6 +29543,7 @@ "index": 11, "expressionIndex": 1, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -28519,6 +29561,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -28540,6 +29583,7 @@ "index": 1, "expressionIndex": 1, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -28563,6 +29607,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -28575,6 +29620,7 @@ "index": 1, "expressionIndex": 1, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -28762,6 +29808,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -28775,6 +29822,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -28788,6 +29836,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -28801,6 +29850,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -28814,6 +29864,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -28827,6 +29878,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -28891,6 +29943,7 @@ "index": 0, "expressionIndex": 1, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -28904,6 +29957,7 @@ "index": 1, "expressionIndex": 1, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -28917,6 +29971,7 @@ "index": 2, "expressionIndex": 1, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -28930,6 +29985,7 @@ "index": 3, "expressionIndex": 1, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -28943,6 +29999,7 @@ "index": 4, "expressionIndex": 1, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -28956,6 +30013,7 @@ "index": 5, "expressionIndex": 1, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -28987,6 +30045,7 @@ { "sequence": 3, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "glossaryScopedStyles": ".yomitan-glossary [data-sc-content='glossary'] {\n color: #ffff00;\n}", "dictScopedStyles": ".yomitan-glossary [data-dictionary=\"Test Dictionary 2\"] [data-sc-content='glossary'] {\n color: #ffff00;\n}", "glossary": [ @@ -29011,6 +30070,7 @@ { "sequence": 3, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "glossaryScopedStyles": ".yomitan-glossary [data-sc-content='glossary'] {\n color: #ffff00;\n}", "dictScopedStyles": ".yomitan-glossary [data-dictionary=\"Test Dictionary 2\"] [data-sc-content='glossary'] {\n color: #ffff00;\n}", "glossary": [ @@ -29035,6 +30095,7 @@ { "sequence": 3, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "glossaryScopedStyles": ".yomitan-glossary [data-sc-content='glossary'] {\n color: #ffff00;\n}", "dictScopedStyles": ".yomitan-glossary [data-dictionary=\"Test Dictionary 2\"] [data-sc-content='glossary'] {\n color: #ffff00;\n}", "glossary": [ @@ -29059,6 +30120,7 @@ { "sequence": 3, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "glossaryScopedStyles": ".yomitan-glossary [data-sc-content='glossary'] {\n color: #ffff00;\n}", "dictScopedStyles": ".yomitan-glossary [data-dictionary=\"Test Dictionary 2\"] [data-sc-content='glossary'] {\n color: #ffff00;\n}", "glossary": [ @@ -29086,6 +30148,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -29099,6 +30162,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -29112,6 +30176,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -29125,6 +30190,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -29138,6 +30204,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -29151,6 +30218,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -29164,6 +30232,7 @@ "index": 6, "expressionIndex": 1, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -29177,6 +30246,7 @@ "index": 7, "expressionIndex": 1, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -29190,6 +30260,7 @@ "index": 8, "expressionIndex": 1, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -29203,6 +30274,7 @@ "index": 9, "expressionIndex": 1, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -29216,6 +30288,7 @@ "index": 10, "expressionIndex": 1, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -29229,6 +30302,7 @@ "index": 11, "expressionIndex": 1, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -29325,6 +30399,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -29418,6 +30493,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -29475,6 +30551,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -29664,6 +30741,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -29715,6 +30793,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -29734,6 +30813,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -29855,6 +30935,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -29906,6 +30987,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -29925,6 +31007,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -30046,6 +31129,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -30097,6 +31181,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -30116,6 +31201,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -30237,6 +31323,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -30288,6 +31375,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -30307,6 +31395,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -30428,6 +31517,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -30485,6 +31575,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -30499,6 +31590,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -31310,6 +32402,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -31323,6 +32416,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -31336,6 +32430,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -31349,6 +32444,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -31362,6 +32458,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -31375,6 +32472,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -31444,6 +32542,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -31457,6 +32556,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -31470,6 +32570,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -31483,6 +32584,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -31496,6 +32598,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -31509,6 +32612,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -31627,6 +32731,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -31640,6 +32745,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -31653,6 +32759,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -31666,6 +32773,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -31679,6 +32787,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -31692,6 +32801,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -31761,6 +32871,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -31774,6 +32885,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -31787,6 +32899,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -31800,6 +32913,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -31813,6 +32927,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -31826,6 +32941,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -31949,6 +33065,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -31962,6 +33079,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -31975,6 +33093,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -31988,6 +33107,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -32001,6 +33121,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -32014,6 +33135,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -32083,6 +33205,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -32096,6 +33219,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -32109,6 +33233,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -32122,6 +33247,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -32135,6 +33261,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -32148,6 +33275,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -32266,6 +33394,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -32279,6 +33408,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -32292,6 +33422,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -32305,6 +33436,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -32318,6 +33450,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -32331,6 +33464,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -32400,6 +33534,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -32413,6 +33548,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -32426,6 +33562,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -32439,6 +33576,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -32452,6 +33590,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -32465,6 +33604,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -32744,6 +33884,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -32757,6 +33898,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -32770,6 +33912,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -32783,6 +33926,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -32796,6 +33940,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -32809,6 +33954,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -32878,6 +34024,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -32891,6 +34038,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -32904,6 +34052,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -32917,6 +34066,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -32930,6 +34080,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -32943,6 +34094,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -33061,6 +34213,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -33074,6 +34227,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -33087,6 +34241,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -33100,6 +34255,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -33113,6 +34269,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -33126,6 +34283,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -33195,6 +34353,7 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -33208,6 +34367,7 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -33221,6 +34381,7 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -33234,6 +34395,7 @@ "index": 3, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -33247,6 +34409,7 @@ "index": 4, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 @@ -33260,6 +34423,7 @@ "index": 5, "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0, "priority": 0 From 551f80d58faacb75a70df94aeb219a18dd2cb56f Mon Sep 17 00:00:00 2001 From: Khai Truong Date: Tue, 30 Jul 2024 18:34:14 +0700 Subject: [PATCH 30/40] test populate alias after update --- test/options-util.test.js | 1 - 1 file changed, 1 deletion(-) diff --git a/test/options-util.test.js b/test/options-util.test.js index 3a40398bd0..6448d6fb8c 100644 --- a/test/options-util.test.js +++ b/test/options-util.test.js @@ -107,7 +107,6 @@ function createProfileOptionsTestData1() { }, dictionaries: { 'Test Dictionary': { - alias: 'Test Dictionary', priority: 0, enabled: true, allowSecondarySearches: false, From e4771bbe481a7a3c682cc18322542d2ab5d70e85 Mon Sep 17 00:00:00 2001 From: Khai Truong Date: Tue, 30 Jul 2024 18:49:29 +0700 Subject: [PATCH 31/40] clean up --- ext/js/dom/dom-data-binder.js | 5 ++--- types/ext/dom-data-binder.d.ts | 2 +- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/ext/js/dom/dom-data-binder.js b/ext/js/dom/dom-data-binder.js index fa4b08e2ba..c40c6a45c0 100644 --- a/ext/js/dom/dom-data-binder.js +++ b/ext/js/dom/dom-data-binder.js @@ -215,9 +215,8 @@ export class DOMDataBinder { // When contenteditable is made empty or inputted from empty, // the value is reset back to original state // because there is a removal / addition of text node. - // This is a workaround to prevent the value from being reset back. - if (this._isElementContentEditable(element) && element.textContent !== observer.value) { - this._setElementValue(element, element.textContent); + // This is a workaround to prevent the value from being reset back when typing. + if (this._isElementContentEditable(element)) { return; } this._setElementValue(element, observer.value); diff --git a/types/ext/dom-data-binder.d.ts b/types/ext/dom-data-binder.d.ts index 4898625175..2d34949f9f 100644 --- a/types/ext/dom-data-binder.d.ts +++ b/types/ext/dom-data-binder.d.ts @@ -56,7 +56,7 @@ export type SettingChangedEvent = CustomEvent; export type NormalizedElementType = 'textarea' | 'select' | 'text' | 'checkbox' | 'number' | 'contenteditable' | null; -export type EventType = 'change' | 'blur' +export type EventType = 'change' | 'blur'; export type UpdateTaskValue = {all: boolean}; From 550ab45a743a31217f729c652a83554ac69701b4 Mon Sep 17 00:00:00 2001 From: Khai Truong Date: Tue, 30 Jul 2024 20:35:53 +0700 Subject: [PATCH 32/40] alias for frequency handlebars --- ...nki-field-templates-upgrade-v49.handlebars | 36 ++++ .../default-anki-field-templates.handlebars | 2 +- test/data/anki-note-builder-test-results.json | 166 +++++++++--------- ...ld-default-anki-field-templates.handlebars | 4 - test/options-util.test.js | 34 ++++ 5 files changed, 154 insertions(+), 88 deletions(-) diff --git a/ext/data/templates/anki-field-templates-upgrade-v49.handlebars b/ext/data/templates/anki-field-templates-upgrade-v49.handlebars index 44d194cd1c..f95cdd4660 100644 --- a/ext/data/templates/anki-field-templates-upgrade-v49.handlebars +++ b/ext/data/templates/anki-field-templates-upgrade-v49.handlebars @@ -76,4 +76,40 @@ {{#*inline "dictionary-alias"}} {{~definition.dictionaryAlias~}} {{/inline}} +{{>>>>>>>}} + +{{<<<<<<<}} +{{#*inline "frequencies"}} + {{~#if (op ">" definition.frequencies.length 0)~}} +
    + {{~#each definition.frequencies~}} +
  • + {{~#if (op "!==" ../definition.type "kanji")~}} + {{~#if (op "||" (op ">" ../uniqueExpressions.length 1) (op ">" ../uniqueReadings.length 1))~}}( + {{~furigana expression reading~}} + ) {{/if~}} + {{~/if~}} + {{~dictionary}}: {{frequency~}} +
  • + {{~/each~}} +
+ {{~/if~}} +{{/inline}} +{{=======}} +{{#*inline "frequencies"}} + {{~#if (op ">" definition.frequencies.length 0)~}} +
    + {{~#each definition.frequencies~}} +
  • + {{~#if (op "!==" ../definition.type "kanji")~}} + {{~#if (op "||" (op ">" ../uniqueExpressions.length 1) (op ">" ../uniqueReadings.length 1))~}}( + {{~furigana expression reading~}} + ) {{/if~}} + {{~/if~}} + {{~dictionaryAlias}}: {{frequency~}} +
  • + {{~/each~}} +
+ {{~/if~}} +{{/inline}} {{>>>>>>>}} \ No newline at end of file diff --git a/ext/data/templates/default-anki-field-templates.handlebars b/ext/data/templates/default-anki-field-templates.handlebars index 1920c5e822..a065e3848c 100644 --- a/ext/data/templates/default-anki-field-templates.handlebars +++ b/ext/data/templates/default-anki-field-templates.handlebars @@ -369,7 +369,7 @@ {{~furigana expression reading~}} ) {{/if~}} {{~/if~}} - {{~dictionary}}: {{frequency~}} + {{~dictionaryAlias}}: {{frequency~}} {{~/each~}} diff --git a/test/data/anki-note-builder-test-results.json b/test/data/anki-note-builder-test-results.json index 5c9fe9e720..c86ec266ed 100644 --- a/test/data/anki-note-builder-test-results.json +++ b/test/data/anki-note-builder-test-results.json @@ -12,7 +12,7 @@ "dictionary": "Test Dictionary 2", "dictionary-alias": "kanjiDictAlias", "document-title": "title", - "frequencies": "
  • Test Dictionary 2: 1
  • Test Dictionary 2: three
  • Test Dictionary 2: 5
", + "frequencies": "
  • kanjiDictAlias: 1
  • kanjiDictAlias: three
  • kanjiDictAlias: 5
", "frequency-harmonic-rank": "1", "frequency-harmonic-occurrence": "1", "frequency-average-rank": "1", @@ -45,7 +45,7 @@ "dictionary": "Test Dictionary 2", "dictionary-alias": "kanjiDictAlias", "document-title": "title", - "frequencies": "
  • Test Dictionary 2: 2
  • Test Dictionary 2: four (4)
  • Test Dictionary 2: six
", + "frequencies": "
  • kanjiDictAlias: 2
  • kanjiDictAlias: four (4)
  • kanjiDictAlias: six
", "frequency-harmonic-rank": "2", "frequency-harmonic-occurrence": "2", "frequency-average-rank": "2", @@ -85,7 +85,7 @@ "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打", - "frequencies": "
  • Test Dictionary 2: 1
  • Test Dictionary 2: four
  • Test Dictionary 2: five (5)
  • Test Dictionary 2: 8
  • Test Dictionary 2: fourteen
  • Test Dictionary 2: twenty (20)
  • Test Dictionary 2: 26
", + "frequencies": "
  • termsDictAlias: 1
  • termsDictAlias: four
  • termsDictAlias: five (5)
  • termsDictAlias: 8
  • termsDictAlias: fourteen
  • termsDictAlias: twenty (20)
  • termsDictAlias: 26
", "frequency-harmonic-rank": "1", "frequency-harmonic-occurrence": "1", "frequency-average-rank": "1", @@ -127,7 +127,7 @@ "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打", - "frequencies": "
  • Test Dictionary 2: 1
  • Test Dictionary 2: four
  • Test Dictionary 2: five (5)
  • Test Dictionary 2: 9
  • Test Dictionary 2: fifteen
  • Test Dictionary 2: twenty-one (21)
  • Test Dictionary 2: twenty-seven
", + "frequencies": "
  • termsDictAlias: 1
  • termsDictAlias: four
  • termsDictAlias: five (5)
  • termsDictAlias: 9
  • termsDictAlias: fifteen
  • termsDictAlias: twenty-one (21)
  • termsDictAlias: twenty-seven
", "frequency-harmonic-rank": "1", "frequency-harmonic-occurrence": "1", "frequency-average-rank": "1", @@ -174,7 +174,7 @@ "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打つ", - "frequencies": "
  • Test Dictionary 2: 2
  • Test Dictionary 2: 6
  • Test Dictionary 2: 10
  • Test Dictionary 2: sixteen
  • Test Dictionary 2: twenty-two (22)
  • Test Dictionary 2: 28
", + "frequencies": "
  • termsDictAlias: 2
  • termsDictAlias: 6
  • termsDictAlias: 10
  • termsDictAlias: sixteen
  • termsDictAlias: twenty-two (22)
  • termsDictAlias: 28
", "frequency-harmonic-rank": "2", "frequency-harmonic-occurrence": "2", "frequency-average-rank": "2", @@ -216,7 +216,7 @@ "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打つ", - "frequencies": "
  • Test Dictionary 2: 2
  • Test Dictionary 2: 6
  • Test Dictionary 2: 11
  • Test Dictionary 2: seventeen
  • Test Dictionary 2: twenty-three (23)
  • Test Dictionary 2: twenty-nine
", + "frequencies": "
  • termsDictAlias: 2
  • termsDictAlias: 6
  • termsDictAlias: 11
  • termsDictAlias: seventeen
  • termsDictAlias: twenty-three (23)
  • termsDictAlias: twenty-nine
", "frequency-harmonic-rank": "2", "frequency-harmonic-occurrence": "2", "frequency-average-rank": "2", @@ -258,7 +258,7 @@ "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打つ", - "frequencies": "
  • Test Dictionary 2: 2
  • Test Dictionary 2: 6
  • Test Dictionary 2: 10
  • Test Dictionary 2: sixteen
  • Test Dictionary 2: twenty-two (22)
  • Test Dictionary 2: 28
", + "frequencies": "
  • termsDictAlias: 2
  • termsDictAlias: 6
  • termsDictAlias: 10
  • termsDictAlias: sixteen
  • termsDictAlias: twenty-two (22)
  • termsDictAlias: 28
", "frequency-harmonic-rank": "2", "frequency-harmonic-occurrence": "2", "frequency-average-rank": "2", @@ -300,7 +300,7 @@ "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打つ", - "frequencies": "
  • Test Dictionary 2: 2
  • Test Dictionary 2: 6
  • Test Dictionary 2: 11
  • Test Dictionary 2: seventeen
  • Test Dictionary 2: twenty-three (23)
  • Test Dictionary 2: twenty-nine
", + "frequencies": "
  • termsDictAlias: 2
  • termsDictAlias: 6
  • termsDictAlias: 11
  • termsDictAlias: seventeen
  • termsDictAlias: twenty-three (23)
  • termsDictAlias: twenty-nine
", "frequency-harmonic-rank": "2", "frequency-harmonic-occurrence": "2", "frequency-average-rank": "2", @@ -342,7 +342,7 @@ "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打", - "frequencies": "
  • Test Dictionary 2: 1
  • Test Dictionary 2: four
  • Test Dictionary 2: five (5)
  • Test Dictionary 2: 8
  • Test Dictionary 2: fourteen
  • Test Dictionary 2: twenty (20)
  • Test Dictionary 2: 26
", + "frequencies": "
  • termsDictAlias: 1
  • termsDictAlias: four
  • termsDictAlias: five (5)
  • termsDictAlias: 8
  • termsDictAlias: fourteen
  • termsDictAlias: twenty (20)
  • termsDictAlias: 26
", "frequency-harmonic-rank": "1", "frequency-harmonic-occurrence": "1", "frequency-average-rank": "1", @@ -384,7 +384,7 @@ "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打", - "frequencies": "
  • Test Dictionary 2: 1
  • Test Dictionary 2: four
  • Test Dictionary 2: five (5)
  • Test Dictionary 2: 9
  • Test Dictionary 2: fifteen
  • Test Dictionary 2: twenty-one (21)
  • Test Dictionary 2: twenty-seven
", + "frequencies": "
  • termsDictAlias: 1
  • termsDictAlias: four
  • termsDictAlias: five (5)
  • termsDictAlias: 9
  • termsDictAlias: fifteen
  • termsDictAlias: twenty-one (21)
  • termsDictAlias: twenty-seven
", "frequency-harmonic-rank": "1", "frequency-harmonic-occurrence": "1", "frequency-average-rank": "1", @@ -431,7 +431,7 @@ "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打ち込む", - "frequencies": "
  • Test Dictionary 2: 3
  • Test Dictionary 2: seven
  • Test Dictionary 2: 12
  • Test Dictionary 2: eighteen
  • Test Dictionary 2: twenty-four (24)
  • Test Dictionary 2: 30
", + "frequencies": "
  • termsDictAlias: 3
  • termsDictAlias: seven
  • termsDictAlias: 12
  • termsDictAlias: eighteen
  • termsDictAlias: twenty-four (24)
  • termsDictAlias: 30
", "frequency-harmonic-rank": "3", "frequency-harmonic-occurrence": "3", "frequency-average-rank": "3", @@ -473,7 +473,7 @@ "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打ち込む", - "frequencies": "
  • Test Dictionary 2: 3
  • Test Dictionary 2: seven
  • Test Dictionary 2: 13
  • Test Dictionary 2: nineteen
  • Test Dictionary 2: twenty-five (25)
  • Test Dictionary 2: thirty-one
", + "frequencies": "
  • termsDictAlias: 3
  • termsDictAlias: seven
  • termsDictAlias: 13
  • termsDictAlias: nineteen
  • termsDictAlias: twenty-five (25)
  • termsDictAlias: thirty-one
", "frequency-harmonic-rank": "3", "frequency-harmonic-occurrence": "3", "frequency-average-rank": "3", @@ -515,7 +515,7 @@ "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打ち込む", - "frequencies": "
  • Test Dictionary 2: 3
  • Test Dictionary 2: seven
  • Test Dictionary 2: 12
  • Test Dictionary 2: eighteen
  • Test Dictionary 2: twenty-four (24)
  • Test Dictionary 2: 30
", + "frequencies": "
  • termsDictAlias: 3
  • termsDictAlias: seven
  • termsDictAlias: 12
  • termsDictAlias: eighteen
  • termsDictAlias: twenty-four (24)
  • termsDictAlias: 30
", "frequency-harmonic-rank": "3", "frequency-harmonic-occurrence": "3", "frequency-average-rank": "3", @@ -557,7 +557,7 @@ "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打ち込む", - "frequencies": "
  • Test Dictionary 2: 3
  • Test Dictionary 2: seven
  • Test Dictionary 2: 13
  • Test Dictionary 2: nineteen
  • Test Dictionary 2: twenty-five (25)
  • Test Dictionary 2: thirty-one
", + "frequencies": "
  • termsDictAlias: 3
  • termsDictAlias: seven
  • termsDictAlias: 13
  • termsDictAlias: nineteen
  • termsDictAlias: twenty-five (25)
  • termsDictAlias: thirty-one
", "frequency-harmonic-rank": "3", "frequency-harmonic-occurrence": "3", "frequency-average-rank": "3", @@ -599,7 +599,7 @@ "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打つ", - "frequencies": "
  • Test Dictionary 2: 2
  • Test Dictionary 2: 6
  • Test Dictionary 2: 10
  • Test Dictionary 2: sixteen
  • Test Dictionary 2: twenty-two (22)
  • Test Dictionary 2: 28
", + "frequencies": "
  • termsDictAlias: 2
  • termsDictAlias: 6
  • termsDictAlias: 10
  • termsDictAlias: sixteen
  • termsDictAlias: twenty-two (22)
  • termsDictAlias: 28
", "frequency-harmonic-rank": "2", "frequency-harmonic-occurrence": "2", "frequency-average-rank": "2", @@ -641,7 +641,7 @@ "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打つ", - "frequencies": "
  • Test Dictionary 2: 2
  • Test Dictionary 2: 6
  • Test Dictionary 2: 11
  • Test Dictionary 2: seventeen
  • Test Dictionary 2: twenty-three (23)
  • Test Dictionary 2: twenty-nine
", + "frequencies": "
  • termsDictAlias: 2
  • termsDictAlias: 6
  • termsDictAlias: 11
  • termsDictAlias: seventeen
  • termsDictAlias: twenty-three (23)
  • termsDictAlias: twenty-nine
", "frequency-harmonic-rank": "2", "frequency-harmonic-occurrence": "2", "frequency-average-rank": "2", @@ -683,7 +683,7 @@ "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打つ", - "frequencies": "
  • Test Dictionary 2: 2
  • Test Dictionary 2: 6
  • Test Dictionary 2: 10
  • Test Dictionary 2: sixteen
  • Test Dictionary 2: twenty-two (22)
  • Test Dictionary 2: 28
", + "frequencies": "
  • termsDictAlias: 2
  • termsDictAlias: 6
  • termsDictAlias: 10
  • termsDictAlias: sixteen
  • termsDictAlias: twenty-two (22)
  • termsDictAlias: 28
", "frequency-harmonic-rank": "2", "frequency-harmonic-occurrence": "2", "frequency-average-rank": "2", @@ -725,7 +725,7 @@ "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打つ", - "frequencies": "
  • Test Dictionary 2: 2
  • Test Dictionary 2: 6
  • Test Dictionary 2: 11
  • Test Dictionary 2: seventeen
  • Test Dictionary 2: twenty-three (23)
  • Test Dictionary 2: twenty-nine
", + "frequencies": "
  • termsDictAlias: 2
  • termsDictAlias: 6
  • termsDictAlias: 11
  • termsDictAlias: seventeen
  • termsDictAlias: twenty-three (23)
  • termsDictAlias: twenty-nine
", "frequency-harmonic-rank": "2", "frequency-harmonic-occurrence": "2", "frequency-average-rank": "2", @@ -767,7 +767,7 @@ "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打", - "frequencies": "
  • Test Dictionary 2: 1
  • Test Dictionary 2: four
  • Test Dictionary 2: five (5)
  • Test Dictionary 2: 8
  • Test Dictionary 2: fourteen
  • Test Dictionary 2: twenty (20)
  • Test Dictionary 2: 26
", + "frequencies": "
  • termsDictAlias: 1
  • termsDictAlias: four
  • termsDictAlias: five (5)
  • termsDictAlias: 8
  • termsDictAlias: fourteen
  • termsDictAlias: twenty (20)
  • termsDictAlias: 26
", "frequency-harmonic-rank": "1", "frequency-harmonic-occurrence": "1", "frequency-average-rank": "1", @@ -809,7 +809,7 @@ "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打", - "frequencies": "
  • Test Dictionary 2: 1
  • Test Dictionary 2: four
  • Test Dictionary 2: five (5)
  • Test Dictionary 2: 9
  • Test Dictionary 2: fifteen
  • Test Dictionary 2: twenty-one (21)
  • Test Dictionary 2: twenty-seven
", + "frequencies": "
  • termsDictAlias: 1
  • termsDictAlias: four
  • termsDictAlias: five (5)
  • termsDictAlias: 9
  • termsDictAlias: fifteen
  • termsDictAlias: twenty-one (21)
  • termsDictAlias: twenty-seven
", "frequency-harmonic-rank": "1", "frequency-harmonic-occurrence": "1", "frequency-average-rank": "1", @@ -903,7 +903,7 @@ "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打", - "frequencies": "
  • Test Dictionary 2: 1
  • Test Dictionary 2: four
  • Test Dictionary 2: five (5)
  • Test Dictionary 2: 8
  • Test Dictionary 2: fourteen
  • Test Dictionary 2: twenty (20)
  • Test Dictionary 2: 26
", + "frequencies": "
  • termsDictAlias: 1
  • termsDictAlias: four
  • termsDictAlias: five (5)
  • termsDictAlias: 8
  • termsDictAlias: fourteen
  • termsDictAlias: twenty (20)
  • termsDictAlias: 26
", "frequency-harmonic-rank": "1", "frequency-harmonic-occurrence": "1", "frequency-average-rank": "1", @@ -950,7 +950,7 @@ "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打", - "frequencies": "
  • Test Dictionary 2: 1
  • Test Dictionary 2: four
  • Test Dictionary 2: five (5)
  • Test Dictionary 2: 9
  • Test Dictionary 2: fifteen
  • Test Dictionary 2: twenty-one (21)
  • Test Dictionary 2: twenty-seven
", + "frequencies": "
  • termsDictAlias: 1
  • termsDictAlias: four
  • termsDictAlias: five (5)
  • termsDictAlias: 9
  • termsDictAlias: fifteen
  • termsDictAlias: twenty-one (21)
  • termsDictAlias: twenty-seven
", "frequency-harmonic-rank": "1", "frequency-harmonic-occurrence": "1", "frequency-average-rank": "1", @@ -992,7 +992,7 @@ "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打", - "frequencies": "
  • Test Dictionary 2: 1
  • Test Dictionary 2: four
  • Test Dictionary 2: five (5)
  • Test Dictionary 2: 8
  • Test Dictionary 2: fourteen
  • Test Dictionary 2: twenty (20)
  • Test Dictionary 2: 26
", + "frequencies": "
  • termsDictAlias: 1
  • termsDictAlias: four
  • termsDictAlias: five (5)
  • termsDictAlias: 8
  • termsDictAlias: fourteen
  • termsDictAlias: twenty (20)
  • termsDictAlias: 26
", "frequency-harmonic-rank": "1", "frequency-harmonic-occurrence": "1", "frequency-average-rank": "1", @@ -1039,7 +1039,7 @@ "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打つ", - "frequencies": "
  • Test Dictionary 2: 2
  • Test Dictionary 2: 6
  • Test Dictionary 2: 10
  • Test Dictionary 2: sixteen
  • Test Dictionary 2: twenty-two (22)
  • Test Dictionary 2: 28
", + "frequencies": "
  • termsDictAlias: 2
  • termsDictAlias: 6
  • termsDictAlias: 10
  • termsDictAlias: sixteen
  • termsDictAlias: twenty-two (22)
  • termsDictAlias: 28
", "frequency-harmonic-rank": "2", "frequency-harmonic-occurrence": "2", "frequency-average-rank": "2", @@ -1081,7 +1081,7 @@ "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打つ", - "frequencies": "
  • Test Dictionary 2: 2
  • Test Dictionary 2: 6
  • Test Dictionary 2: 10
  • Test Dictionary 2: sixteen
  • Test Dictionary 2: twenty-two (22)
  • Test Dictionary 2: 28
", + "frequencies": "
  • termsDictAlias: 2
  • termsDictAlias: 6
  • termsDictAlias: 10
  • termsDictAlias: sixteen
  • termsDictAlias: twenty-two (22)
  • termsDictAlias: 28
", "frequency-harmonic-rank": "2", "frequency-harmonic-occurrence": "2", "frequency-average-rank": "2", @@ -1128,7 +1128,7 @@ "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打つ", - "frequencies": "
  • Test Dictionary 2: 2
  • Test Dictionary 2: 6
  • Test Dictionary 2: 11
  • Test Dictionary 2: seventeen
  • Test Dictionary 2: twenty-three (23)
  • Test Dictionary 2: twenty-nine
", + "frequencies": "
  • termsDictAlias: 2
  • termsDictAlias: 6
  • termsDictAlias: 11
  • termsDictAlias: seventeen
  • termsDictAlias: twenty-three (23)
  • termsDictAlias: twenty-nine
", "frequency-harmonic-rank": "2", "frequency-harmonic-occurrence": "2", "frequency-average-rank": "2", @@ -1170,7 +1170,7 @@ "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打つ", - "frequencies": "
  • Test Dictionary 2: 2
  • Test Dictionary 2: 6
  • Test Dictionary 2: 11
  • Test Dictionary 2: seventeen
  • Test Dictionary 2: twenty-three (23)
  • Test Dictionary 2: twenty-nine
", + "frequencies": "
  • termsDictAlias: 2
  • termsDictAlias: 6
  • termsDictAlias: 11
  • termsDictAlias: seventeen
  • termsDictAlias: twenty-three (23)
  • termsDictAlias: twenty-nine
", "frequency-harmonic-rank": "2", "frequency-harmonic-occurrence": "2", "frequency-average-rank": "2", @@ -1217,7 +1217,7 @@ "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打ち込む", - "frequencies": "
  • Test Dictionary 2: 3
  • Test Dictionary 2: seven
  • Test Dictionary 2: 12
  • Test Dictionary 2: eighteen
  • Test Dictionary 2: twenty-four (24)
  • Test Dictionary 2: 30
", + "frequencies": "
  • termsDictAlias: 3
  • termsDictAlias: seven
  • termsDictAlias: 12
  • termsDictAlias: eighteen
  • termsDictAlias: twenty-four (24)
  • termsDictAlias: 30
", "frequency-harmonic-rank": "3", "frequency-harmonic-occurrence": "3", "frequency-average-rank": "3", @@ -1259,7 +1259,7 @@ "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打ち込む", - "frequencies": "
  • Test Dictionary 2: 3
  • Test Dictionary 2: seven
  • Test Dictionary 2: 12
  • Test Dictionary 2: eighteen
  • Test Dictionary 2: twenty-four (24)
  • Test Dictionary 2: 30
", + "frequencies": "
  • termsDictAlias: 3
  • termsDictAlias: seven
  • termsDictAlias: 12
  • termsDictAlias: eighteen
  • termsDictAlias: twenty-four (24)
  • termsDictAlias: 30
", "frequency-harmonic-rank": "3", "frequency-harmonic-occurrence": "3", "frequency-average-rank": "3", @@ -1301,7 +1301,7 @@ "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打つ", - "frequencies": "
  • Test Dictionary 2: 2
  • Test Dictionary 2: 6
  • Test Dictionary 2: 10
  • Test Dictionary 2: sixteen
  • Test Dictionary 2: twenty-two (22)
  • Test Dictionary 2: 28
", + "frequencies": "
  • termsDictAlias: 2
  • termsDictAlias: 6
  • termsDictAlias: 10
  • termsDictAlias: sixteen
  • termsDictAlias: twenty-two (22)
  • termsDictAlias: 28
", "frequency-harmonic-rank": "2", "frequency-harmonic-occurrence": "2", "frequency-average-rank": "2", @@ -1343,7 +1343,7 @@ "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打つ", - "frequencies": "
  • Test Dictionary 2: 2
  • Test Dictionary 2: 6
  • Test Dictionary 2: 10
  • Test Dictionary 2: sixteen
  • Test Dictionary 2: twenty-two (22)
  • Test Dictionary 2: 28
", + "frequencies": "
  • termsDictAlias: 2
  • termsDictAlias: 6
  • termsDictAlias: 10
  • termsDictAlias: sixteen
  • termsDictAlias: twenty-two (22)
  • termsDictAlias: 28
", "frequency-harmonic-rank": "2", "frequency-harmonic-occurrence": "2", "frequency-average-rank": "2", @@ -1390,7 +1390,7 @@ "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打ち込む", - "frequencies": "
  • Test Dictionary 2: 3
  • Test Dictionary 2: seven
  • Test Dictionary 2: 13
  • Test Dictionary 2: nineteen
  • Test Dictionary 2: twenty-five (25)
  • Test Dictionary 2: thirty-one
", + "frequencies": "
  • termsDictAlias: 3
  • termsDictAlias: seven
  • termsDictAlias: 13
  • termsDictAlias: nineteen
  • termsDictAlias: twenty-five (25)
  • termsDictAlias: thirty-one
", "frequency-harmonic-rank": "3", "frequency-harmonic-occurrence": "3", "frequency-average-rank": "3", @@ -1432,7 +1432,7 @@ "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打ち込む", - "frequencies": "
  • Test Dictionary 2: 3
  • Test Dictionary 2: seven
  • Test Dictionary 2: 13
  • Test Dictionary 2: nineteen
  • Test Dictionary 2: twenty-five (25)
  • Test Dictionary 2: thirty-one
", + "frequencies": "
  • termsDictAlias: 3
  • termsDictAlias: seven
  • termsDictAlias: 13
  • termsDictAlias: nineteen
  • termsDictAlias: twenty-five (25)
  • termsDictAlias: thirty-one
", "frequency-harmonic-rank": "3", "frequency-harmonic-occurrence": "3", "frequency-average-rank": "3", @@ -1474,7 +1474,7 @@ "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打つ", - "frequencies": "
  • Test Dictionary 2: 2
  • Test Dictionary 2: 6
  • Test Dictionary 2: 11
  • Test Dictionary 2: seventeen
  • Test Dictionary 2: twenty-three (23)
  • Test Dictionary 2: twenty-nine
", + "frequencies": "
  • termsDictAlias: 2
  • termsDictAlias: 6
  • termsDictAlias: 11
  • termsDictAlias: seventeen
  • termsDictAlias: twenty-three (23)
  • termsDictAlias: twenty-nine
", "frequency-harmonic-rank": "2", "frequency-harmonic-occurrence": "2", "frequency-average-rank": "2", @@ -1516,7 +1516,7 @@ "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打つ", - "frequencies": "
  • Test Dictionary 2: 2
  • Test Dictionary 2: 6
  • Test Dictionary 2: 11
  • Test Dictionary 2: seventeen
  • Test Dictionary 2: twenty-three (23)
  • Test Dictionary 2: twenty-nine
", + "frequencies": "
  • termsDictAlias: 2
  • termsDictAlias: 6
  • termsDictAlias: 11
  • termsDictAlias: seventeen
  • termsDictAlias: twenty-three (23)
  • termsDictAlias: twenty-nine
", "frequency-harmonic-rank": "2", "frequency-harmonic-occurrence": "2", "frequency-average-rank": "2", @@ -1622,7 +1622,7 @@ "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打ち込む", - "frequencies": "
  • Test Dictionary 2: 3
  • Test Dictionary 2: seven
  • Test Dictionary 2: 12
  • Test Dictionary 2: eighteen
  • Test Dictionary 2: twenty-four (24)
  • Test Dictionary 2: 30
", + "frequencies": "
  • termsDictAlias: 3
  • termsDictAlias: seven
  • termsDictAlias: 12
  • termsDictAlias: eighteen
  • termsDictAlias: twenty-four (24)
  • termsDictAlias: 30
", "frequency-harmonic-rank": "3", "frequency-harmonic-occurrence": "3", "frequency-average-rank": "3", @@ -1664,7 +1664,7 @@ "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打ち込む", - "frequencies": "
  • Test Dictionary 2: 3
  • Test Dictionary 2: seven
  • Test Dictionary 2: 13
  • Test Dictionary 2: nineteen
  • Test Dictionary 2: twenty-five (25)
  • Test Dictionary 2: thirty-one
", + "frequencies": "
  • termsDictAlias: 3
  • termsDictAlias: seven
  • termsDictAlias: 13
  • termsDictAlias: nineteen
  • termsDictAlias: twenty-five (25)
  • termsDictAlias: thirty-one
", "frequency-harmonic-rank": "3", "frequency-harmonic-occurrence": "3", "frequency-average-rank": "3", @@ -1706,7 +1706,7 @@ "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打つ", - "frequencies": "
  • Test Dictionary 2: 2
  • Test Dictionary 2: 6
  • Test Dictionary 2: 10
  • Test Dictionary 2: sixteen
  • Test Dictionary 2: twenty-two (22)
  • Test Dictionary 2: 28
", + "frequencies": "
  • termsDictAlias: 2
  • termsDictAlias: 6
  • termsDictAlias: 10
  • termsDictAlias: sixteen
  • termsDictAlias: twenty-two (22)
  • termsDictAlias: 28
", "frequency-harmonic-rank": "2", "frequency-harmonic-occurrence": "2", "frequency-average-rank": "2", @@ -1748,7 +1748,7 @@ "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打つ", - "frequencies": "
  • Test Dictionary 2: 2
  • Test Dictionary 2: 6
  • Test Dictionary 2: 11
  • Test Dictionary 2: seventeen
  • Test Dictionary 2: twenty-three (23)
  • Test Dictionary 2: twenty-nine
", + "frequencies": "
  • termsDictAlias: 2
  • termsDictAlias: 6
  • termsDictAlias: 11
  • termsDictAlias: seventeen
  • termsDictAlias: twenty-three (23)
  • termsDictAlias: twenty-nine
", "frequency-harmonic-rank": "2", "frequency-harmonic-occurrence": "2", "frequency-average-rank": "2", @@ -1790,7 +1790,7 @@ "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打", - "frequencies": "
  • Test Dictionary 2: 1
  • Test Dictionary 2: four
  • Test Dictionary 2: five (5)
  • Test Dictionary 2: 8
  • Test Dictionary 2: fourteen
  • Test Dictionary 2: twenty (20)
  • Test Dictionary 2: 26
", + "frequencies": "
  • termsDictAlias: 1
  • termsDictAlias: four
  • termsDictAlias: five (5)
  • termsDictAlias: 8
  • termsDictAlias: fourteen
  • termsDictAlias: twenty (20)
  • termsDictAlias: 26
", "frequency-harmonic-rank": "1", "frequency-harmonic-occurrence": "1", "frequency-average-rank": "1", @@ -1832,7 +1832,7 @@ "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打", - "frequencies": "
  • Test Dictionary 2: 1
  • Test Dictionary 2: four
  • Test Dictionary 2: five (5)
  • Test Dictionary 2: 9
  • Test Dictionary 2: fifteen
  • Test Dictionary 2: twenty-one (21)
  • Test Dictionary 2: twenty-seven
", + "frequencies": "
  • termsDictAlias: 1
  • termsDictAlias: four
  • termsDictAlias: five (5)
  • termsDictAlias: 9
  • termsDictAlias: fifteen
  • termsDictAlias: twenty-one (21)
  • termsDictAlias: twenty-seven
", "frequency-harmonic-rank": "1", "frequency-harmonic-occurrence": "1", "frequency-average-rank": "1", @@ -1879,7 +1879,7 @@ "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打ち込む", - "frequencies": "
  • (む) Test Dictionary 2: 3
  • (む) Test Dictionary 2: seven
  • (む) Test Dictionary 2: 12
  • (む) Test Dictionary 2: eighteen
  • (む) Test Dictionary 2: twenty-four (24)
  • (む) Test Dictionary 2: 30
  • (む) Test Dictionary 2: 3
  • (む) Test Dictionary 2: seven
  • (む) Test Dictionary 2: 13
  • (む) Test Dictionary 2: nineteen
  • (む) Test Dictionary 2: twenty-five (25)
  • (む) Test Dictionary 2: thirty-one
", + "frequencies": "
  • (む) termsDictAlias: 3
  • (む) termsDictAlias: seven
  • (む) termsDictAlias: 12
  • (む) termsDictAlias: eighteen
  • (む) termsDictAlias: twenty-four (24)
  • (む) termsDictAlias: 30
  • (む) termsDictAlias: 3
  • (む) termsDictAlias: seven
  • (む) termsDictAlias: 13
  • (む) termsDictAlias: nineteen
  • (む) termsDictAlias: twenty-five (25)
  • (む) termsDictAlias: thirty-one
", "frequency-harmonic-rank": "3", "frequency-harmonic-occurrence": "3", "frequency-average-rank": "3", @@ -1921,7 +1921,7 @@ "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打つ", - "frequencies": "
  • (つ) Test Dictionary 2: 2
  • (つ) Test Dictionary 2: 6
  • (つ) Test Dictionary 2: 10
  • (つ) Test Dictionary 2: sixteen
  • (つ) Test Dictionary 2: twenty-two (22)
  • (つ) Test Dictionary 2: 28
  • (つ) Test Dictionary 2: 2
  • (つ) Test Dictionary 2: 6
  • (つ) Test Dictionary 2: 11
  • (つ) Test Dictionary 2: seventeen
  • (つ) Test Dictionary 2: twenty-three (23)
  • (つ) Test Dictionary 2: twenty-nine
", + "frequencies": "
  • (つ) termsDictAlias: 2
  • (つ) termsDictAlias: 6
  • (つ) termsDictAlias: 10
  • (つ) termsDictAlias: sixteen
  • (つ) termsDictAlias: twenty-two (22)
  • (つ) termsDictAlias: 28
  • (つ) termsDictAlias: 2
  • (つ) termsDictAlias: 6
  • (つ) termsDictAlias: 11
  • (つ) termsDictAlias: seventeen
  • (つ) termsDictAlias: twenty-three (23)
  • (つ) termsDictAlias: twenty-nine
", "frequency-harmonic-rank": "2", "frequency-harmonic-occurrence": "2", "frequency-average-rank": "2", @@ -1963,7 +1963,7 @@ "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打", - "frequencies": "
  • Test Dictionary 2: 1
  • Test Dictionary 2: four
  • Test Dictionary 2: five (5)
  • Test Dictionary 2: 8
  • Test Dictionary 2: fourteen
  • Test Dictionary 2: twenty (20)
  • Test Dictionary 2: 26
", + "frequencies": "
  • termsDictAlias: 1
  • termsDictAlias: four
  • termsDictAlias: five (5)
  • termsDictAlias: 8
  • termsDictAlias: fourteen
  • termsDictAlias: twenty (20)
  • termsDictAlias: 26
", "frequency-harmonic-rank": "1", "frequency-harmonic-occurrence": "1", "frequency-average-rank": "1", @@ -2005,7 +2005,7 @@ "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打", - "frequencies": "
  • Test Dictionary 2: 1
  • Test Dictionary 2: four
  • Test Dictionary 2: five (5)
  • Test Dictionary 2: 9
  • Test Dictionary 2: fifteen
  • Test Dictionary 2: twenty-one (21)
  • Test Dictionary 2: twenty-seven
", + "frequencies": "
  • termsDictAlias: 1
  • termsDictAlias: four
  • termsDictAlias: five (5)
  • termsDictAlias: 9
  • termsDictAlias: fifteen
  • termsDictAlias: twenty-one (21)
  • termsDictAlias: twenty-seven
", "frequency-harmonic-rank": "1", "frequency-harmonic-occurrence": "1", "frequency-average-rank": "1", @@ -2052,7 +2052,7 @@ "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打ち込む", - "frequencies": "
  • Test Dictionary 2: 3
  • Test Dictionary 2: seven
  • Test Dictionary 2: 12
  • Test Dictionary 2: eighteen
  • Test Dictionary 2: twenty-four (24)
  • Test Dictionary 2: 30
", + "frequencies": "
  • termsDictAlias: 3
  • termsDictAlias: seven
  • termsDictAlias: 12
  • termsDictAlias: eighteen
  • termsDictAlias: twenty-four (24)
  • termsDictAlias: 30
", "frequency-harmonic-rank": "3", "frequency-harmonic-occurrence": "3", "frequency-average-rank": "3", @@ -2094,7 +2094,7 @@ "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打ち込む", - "frequencies": "
  • Test Dictionary 2: 3
  • Test Dictionary 2: seven
  • Test Dictionary 2: 13
  • Test Dictionary 2: nineteen
  • Test Dictionary 2: twenty-five (25)
  • Test Dictionary 2: thirty-one
", + "frequencies": "
  • termsDictAlias: 3
  • termsDictAlias: seven
  • termsDictAlias: 13
  • termsDictAlias: nineteen
  • termsDictAlias: twenty-five (25)
  • termsDictAlias: thirty-one
", "frequency-harmonic-rank": "3", "frequency-harmonic-occurrence": "3", "frequency-average-rank": "3", @@ -2136,7 +2136,7 @@ "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打ち込む", - "frequencies": "
  • Test Dictionary 2: 3
  • Test Dictionary 2: seven
  • Test Dictionary 2: 12
  • Test Dictionary 2: eighteen
  • Test Dictionary 2: twenty-four (24)
  • Test Dictionary 2: 30
", + "frequencies": "
  • termsDictAlias: 3
  • termsDictAlias: seven
  • termsDictAlias: 12
  • termsDictAlias: eighteen
  • termsDictAlias: twenty-four (24)
  • termsDictAlias: 30
", "frequency-harmonic-rank": "3", "frequency-harmonic-occurrence": "3", "frequency-average-rank": "3", @@ -2178,7 +2178,7 @@ "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打ち込む", - "frequencies": "
  • Test Dictionary 2: 3
  • Test Dictionary 2: seven
  • Test Dictionary 2: 13
  • Test Dictionary 2: nineteen
  • Test Dictionary 2: twenty-five (25)
  • Test Dictionary 2: thirty-one
", + "frequencies": "
  • termsDictAlias: 3
  • termsDictAlias: seven
  • termsDictAlias: 13
  • termsDictAlias: nineteen
  • termsDictAlias: twenty-five (25)
  • termsDictAlias: thirty-one
", "frequency-harmonic-rank": "3", "frequency-harmonic-occurrence": "3", "frequency-average-rank": "3", @@ -2220,7 +2220,7 @@ "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打つ", - "frequencies": "
  • Test Dictionary 2: 2
  • Test Dictionary 2: 6
  • Test Dictionary 2: 10
  • Test Dictionary 2: sixteen
  • Test Dictionary 2: twenty-two (22)
  • Test Dictionary 2: 28
", + "frequencies": "
  • termsDictAlias: 2
  • termsDictAlias: 6
  • termsDictAlias: 10
  • termsDictAlias: sixteen
  • termsDictAlias: twenty-two (22)
  • termsDictAlias: 28
", "frequency-harmonic-rank": "2", "frequency-harmonic-occurrence": "2", "frequency-average-rank": "2", @@ -2262,7 +2262,7 @@ "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打つ", - "frequencies": "
  • Test Dictionary 2: 2
  • Test Dictionary 2: 6
  • Test Dictionary 2: 11
  • Test Dictionary 2: seventeen
  • Test Dictionary 2: twenty-three (23)
  • Test Dictionary 2: twenty-nine
", + "frequencies": "
  • termsDictAlias: 2
  • termsDictAlias: 6
  • termsDictAlias: 11
  • termsDictAlias: seventeen
  • termsDictAlias: twenty-three (23)
  • termsDictAlias: twenty-nine
", "frequency-harmonic-rank": "2", "frequency-harmonic-occurrence": "2", "frequency-average-rank": "2", @@ -2304,7 +2304,7 @@ "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打つ", - "frequencies": "
  • Test Dictionary 2: 2
  • Test Dictionary 2: 6
  • Test Dictionary 2: 10
  • Test Dictionary 2: sixteen
  • Test Dictionary 2: twenty-two (22)
  • Test Dictionary 2: 28
", + "frequencies": "
  • termsDictAlias: 2
  • termsDictAlias: 6
  • termsDictAlias: 10
  • termsDictAlias: sixteen
  • termsDictAlias: twenty-two (22)
  • termsDictAlias: 28
", "frequency-harmonic-rank": "2", "frequency-harmonic-occurrence": "2", "frequency-average-rank": "2", @@ -2346,7 +2346,7 @@ "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打つ", - "frequencies": "
  • Test Dictionary 2: 2
  • Test Dictionary 2: 6
  • Test Dictionary 2: 11
  • Test Dictionary 2: seventeen
  • Test Dictionary 2: twenty-three (23)
  • Test Dictionary 2: twenty-nine
", + "frequencies": "
  • termsDictAlias: 2
  • termsDictAlias: 6
  • termsDictAlias: 11
  • termsDictAlias: seventeen
  • termsDictAlias: twenty-three (23)
  • termsDictAlias: twenty-nine
", "frequency-harmonic-rank": "2", "frequency-harmonic-occurrence": "2", "frequency-average-rank": "2", @@ -2388,7 +2388,7 @@ "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打", - "frequencies": "
  • Test Dictionary 2: 1
  • Test Dictionary 2: four
  • Test Dictionary 2: five (5)
  • Test Dictionary 2: 8
  • Test Dictionary 2: fourteen
  • Test Dictionary 2: twenty (20)
  • Test Dictionary 2: 26
", + "frequencies": "
  • termsDictAlias: 1
  • termsDictAlias: four
  • termsDictAlias: five (5)
  • termsDictAlias: 8
  • termsDictAlias: fourteen
  • termsDictAlias: twenty (20)
  • termsDictAlias: 26
", "frequency-harmonic-rank": "1", "frequency-harmonic-occurrence": "1", "frequency-average-rank": "1", @@ -2430,7 +2430,7 @@ "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打", - "frequencies": "
  • Test Dictionary 2: 1
  • Test Dictionary 2: four
  • Test Dictionary 2: five (5)
  • Test Dictionary 2: 9
  • Test Dictionary 2: fifteen
  • Test Dictionary 2: twenty-one (21)
  • Test Dictionary 2: twenty-seven
", + "frequencies": "
  • termsDictAlias: 1
  • termsDictAlias: four
  • termsDictAlias: five (5)
  • termsDictAlias: 9
  • termsDictAlias: fifteen
  • termsDictAlias: twenty-one (21)
  • termsDictAlias: twenty-seven
", "frequency-harmonic-rank": "1", "frequency-harmonic-occurrence": "1", "frequency-average-rank": "1", @@ -2477,7 +2477,7 @@ "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打ち込む", - "frequencies": "
  • Test Dictionary 2: 3
  • Test Dictionary 2: seven
  • Test Dictionary 2: 12
  • Test Dictionary 2: eighteen
  • Test Dictionary 2: twenty-four (24)
  • Test Dictionary 2: 30
", + "frequencies": "
  • termsDictAlias: 3
  • termsDictAlias: seven
  • termsDictAlias: 12
  • termsDictAlias: eighteen
  • termsDictAlias: twenty-four (24)
  • termsDictAlias: 30
", "frequency-harmonic-rank": "3", "frequency-harmonic-occurrence": "3", "frequency-average-rank": "3", @@ -2519,7 +2519,7 @@ "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打ち込む", - "frequencies": "
  • Test Dictionary 2: 3
  • Test Dictionary 2: seven
  • Test Dictionary 2: 13
  • Test Dictionary 2: nineteen
  • Test Dictionary 2: twenty-five (25)
  • Test Dictionary 2: thirty-one
", + "frequencies": "
  • termsDictAlias: 3
  • termsDictAlias: seven
  • termsDictAlias: 13
  • termsDictAlias: nineteen
  • termsDictAlias: twenty-five (25)
  • termsDictAlias: thirty-one
", "frequency-harmonic-rank": "3", "frequency-harmonic-occurrence": "3", "frequency-average-rank": "3", @@ -2561,7 +2561,7 @@ "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打ち込む", - "frequencies": "
  • Test Dictionary 2: 3
  • Test Dictionary 2: seven
  • Test Dictionary 2: 12
  • Test Dictionary 2: eighteen
  • Test Dictionary 2: twenty-four (24)
  • Test Dictionary 2: 30
", + "frequencies": "
  • termsDictAlias: 3
  • termsDictAlias: seven
  • termsDictAlias: 12
  • termsDictAlias: eighteen
  • termsDictAlias: twenty-four (24)
  • termsDictAlias: 30
", "frequency-harmonic-rank": "3", "frequency-harmonic-occurrence": "3", "frequency-average-rank": "3", @@ -2603,7 +2603,7 @@ "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打ち込む", - "frequencies": "
  • Test Dictionary 2: 3
  • Test Dictionary 2: seven
  • Test Dictionary 2: 13
  • Test Dictionary 2: nineteen
  • Test Dictionary 2: twenty-five (25)
  • Test Dictionary 2: thirty-one
", + "frequencies": "
  • termsDictAlias: 3
  • termsDictAlias: seven
  • termsDictAlias: 13
  • termsDictAlias: nineteen
  • termsDictAlias: twenty-five (25)
  • termsDictAlias: thirty-one
", "frequency-harmonic-rank": "3", "frequency-harmonic-occurrence": "3", "frequency-average-rank": "3", @@ -2645,7 +2645,7 @@ "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打つ", - "frequencies": "
  • Test Dictionary 2: 2
  • Test Dictionary 2: 6
  • Test Dictionary 2: 10
  • Test Dictionary 2: sixteen
  • Test Dictionary 2: twenty-two (22)
  • Test Dictionary 2: 28
", + "frequencies": "
  • termsDictAlias: 2
  • termsDictAlias: 6
  • termsDictAlias: 10
  • termsDictAlias: sixteen
  • termsDictAlias: twenty-two (22)
  • termsDictAlias: 28
", "frequency-harmonic-rank": "2", "frequency-harmonic-occurrence": "2", "frequency-average-rank": "2", @@ -2687,7 +2687,7 @@ "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打つ", - "frequencies": "
  • Test Dictionary 2: 2
  • Test Dictionary 2: 6
  • Test Dictionary 2: 11
  • Test Dictionary 2: seventeen
  • Test Dictionary 2: twenty-three (23)
  • Test Dictionary 2: twenty-nine
", + "frequencies": "
  • termsDictAlias: 2
  • termsDictAlias: 6
  • termsDictAlias: 11
  • termsDictAlias: seventeen
  • termsDictAlias: twenty-three (23)
  • termsDictAlias: twenty-nine
", "frequency-harmonic-rank": "2", "frequency-harmonic-occurrence": "2", "frequency-average-rank": "2", @@ -2729,7 +2729,7 @@ "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打つ", - "frequencies": "
  • Test Dictionary 2: 2
  • Test Dictionary 2: 6
  • Test Dictionary 2: 10
  • Test Dictionary 2: sixteen
  • Test Dictionary 2: twenty-two (22)
  • Test Dictionary 2: 28
", + "frequencies": "
  • termsDictAlias: 2
  • termsDictAlias: 6
  • termsDictAlias: 10
  • termsDictAlias: sixteen
  • termsDictAlias: twenty-two (22)
  • termsDictAlias: 28
", "frequency-harmonic-rank": "2", "frequency-harmonic-occurrence": "2", "frequency-average-rank": "2", @@ -2771,7 +2771,7 @@ "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打つ", - "frequencies": "
  • Test Dictionary 2: 2
  • Test Dictionary 2: 6
  • Test Dictionary 2: 11
  • Test Dictionary 2: seventeen
  • Test Dictionary 2: twenty-three (23)
  • Test Dictionary 2: twenty-nine
", + "frequencies": "
  • termsDictAlias: 2
  • termsDictAlias: 6
  • termsDictAlias: 11
  • termsDictAlias: seventeen
  • termsDictAlias: twenty-three (23)
  • termsDictAlias: twenty-nine
", "frequency-harmonic-rank": "2", "frequency-harmonic-occurrence": "2", "frequency-average-rank": "2", @@ -2813,7 +2813,7 @@ "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打", - "frequencies": "
  • Test Dictionary 2: 1
  • Test Dictionary 2: four
  • Test Dictionary 2: five (5)
  • Test Dictionary 2: 8
  • Test Dictionary 2: fourteen
  • Test Dictionary 2: twenty (20)
  • Test Dictionary 2: 26
", + "frequencies": "
  • termsDictAlias: 1
  • termsDictAlias: four
  • termsDictAlias: five (5)
  • termsDictAlias: 8
  • termsDictAlias: fourteen
  • termsDictAlias: twenty (20)
  • termsDictAlias: 26
", "frequency-harmonic-rank": "1", "frequency-harmonic-occurrence": "1", "frequency-average-rank": "1", @@ -2855,7 +2855,7 @@ "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打", - "frequencies": "
  • Test Dictionary 2: 1
  • Test Dictionary 2: four
  • Test Dictionary 2: five (5)
  • Test Dictionary 2: 9
  • Test Dictionary 2: fifteen
  • Test Dictionary 2: twenty-one (21)
  • Test Dictionary 2: twenty-seven
", + "frequencies": "
  • termsDictAlias: 1
  • termsDictAlias: four
  • termsDictAlias: five (5)
  • termsDictAlias: 9
  • termsDictAlias: fifteen
  • termsDictAlias: twenty-one (21)
  • termsDictAlias: twenty-seven
", "frequency-harmonic-rank": "1", "frequency-harmonic-occurrence": "1", "frequency-average-rank": "1", @@ -2902,7 +2902,7 @@ "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打ち込む", - "frequencies": "
  • Test Dictionary 2: 3
  • Test Dictionary 2: seven
  • Test Dictionary 2: 12
  • Test Dictionary 2: eighteen
  • Test Dictionary 2: twenty-four (24)
  • Test Dictionary 2: 30
", + "frequencies": "
  • termsDictAlias: 3
  • termsDictAlias: seven
  • termsDictAlias: 12
  • termsDictAlias: eighteen
  • termsDictAlias: twenty-four (24)
  • termsDictAlias: 30
", "frequency-harmonic-rank": "3", "frequency-harmonic-occurrence": "3", "frequency-average-rank": "3", @@ -2944,7 +2944,7 @@ "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打ち込む", - "frequencies": "
  • Test Dictionary 2: 3
  • Test Dictionary 2: seven
  • Test Dictionary 2: 13
  • Test Dictionary 2: nineteen
  • Test Dictionary 2: twenty-five (25)
  • Test Dictionary 2: thirty-one
", + "frequencies": "
  • termsDictAlias: 3
  • termsDictAlias: seven
  • termsDictAlias: 13
  • termsDictAlias: nineteen
  • termsDictAlias: twenty-five (25)
  • termsDictAlias: thirty-one
", "frequency-harmonic-rank": "3", "frequency-harmonic-occurrence": "3", "frequency-average-rank": "3", @@ -2986,7 +2986,7 @@ "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打ち込む", - "frequencies": "
  • Test Dictionary 2: 3
  • Test Dictionary 2: seven
  • Test Dictionary 2: 12
  • Test Dictionary 2: eighteen
  • Test Dictionary 2: twenty-four (24)
  • Test Dictionary 2: 30
", + "frequencies": "
  • termsDictAlias: 3
  • termsDictAlias: seven
  • termsDictAlias: 12
  • termsDictAlias: eighteen
  • termsDictAlias: twenty-four (24)
  • termsDictAlias: 30
", "frequency-harmonic-rank": "3", "frequency-harmonic-occurrence": "3", "frequency-average-rank": "3", @@ -3028,7 +3028,7 @@ "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打ち込む", - "frequencies": "
  • Test Dictionary 2: 3
  • Test Dictionary 2: seven
  • Test Dictionary 2: 13
  • Test Dictionary 2: nineteen
  • Test Dictionary 2: twenty-five (25)
  • Test Dictionary 2: thirty-one
", + "frequencies": "
  • termsDictAlias: 3
  • termsDictAlias: seven
  • termsDictAlias: 13
  • termsDictAlias: nineteen
  • termsDictAlias: twenty-five (25)
  • termsDictAlias: thirty-one
", "frequency-harmonic-rank": "3", "frequency-harmonic-occurrence": "3", "frequency-average-rank": "3", @@ -3070,7 +3070,7 @@ "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打つ", - "frequencies": "
  • Test Dictionary 2: 2
  • Test Dictionary 2: 6
  • Test Dictionary 2: 10
  • Test Dictionary 2: sixteen
  • Test Dictionary 2: twenty-two (22)
  • Test Dictionary 2: 28
", + "frequencies": "
  • termsDictAlias: 2
  • termsDictAlias: 6
  • termsDictAlias: 10
  • termsDictAlias: sixteen
  • termsDictAlias: twenty-two (22)
  • termsDictAlias: 28
", "frequency-harmonic-rank": "2", "frequency-harmonic-occurrence": "2", "frequency-average-rank": "2", @@ -3112,7 +3112,7 @@ "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打つ", - "frequencies": "
  • Test Dictionary 2: 2
  • Test Dictionary 2: 6
  • Test Dictionary 2: 11
  • Test Dictionary 2: seventeen
  • Test Dictionary 2: twenty-three (23)
  • Test Dictionary 2: twenty-nine
", + "frequencies": "
  • termsDictAlias: 2
  • termsDictAlias: 6
  • termsDictAlias: 11
  • termsDictAlias: seventeen
  • termsDictAlias: twenty-three (23)
  • termsDictAlias: twenty-nine
", "frequency-harmonic-rank": "2", "frequency-harmonic-occurrence": "2", "frequency-average-rank": "2", @@ -3154,7 +3154,7 @@ "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打つ", - "frequencies": "
  • Test Dictionary 2: 2
  • Test Dictionary 2: 6
  • Test Dictionary 2: 10
  • Test Dictionary 2: sixteen
  • Test Dictionary 2: twenty-two (22)
  • Test Dictionary 2: 28
", + "frequencies": "
  • termsDictAlias: 2
  • termsDictAlias: 6
  • termsDictAlias: 10
  • termsDictAlias: sixteen
  • termsDictAlias: twenty-two (22)
  • termsDictAlias: 28
", "frequency-harmonic-rank": "2", "frequency-harmonic-occurrence": "2", "frequency-average-rank": "2", @@ -3196,7 +3196,7 @@ "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打つ", - "frequencies": "
  • Test Dictionary 2: 2
  • Test Dictionary 2: 6
  • Test Dictionary 2: 11
  • Test Dictionary 2: seventeen
  • Test Dictionary 2: twenty-three (23)
  • Test Dictionary 2: twenty-nine
", + "frequencies": "
  • termsDictAlias: 2
  • termsDictAlias: 6
  • termsDictAlias: 11
  • termsDictAlias: seventeen
  • termsDictAlias: twenty-three (23)
  • termsDictAlias: twenty-nine
", "frequency-harmonic-rank": "2", "frequency-harmonic-occurrence": "2", "frequency-average-rank": "2", @@ -3238,7 +3238,7 @@ "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打", - "frequencies": "
  • Test Dictionary 2: 1
  • Test Dictionary 2: four
  • Test Dictionary 2: five (5)
  • Test Dictionary 2: 8
  • Test Dictionary 2: fourteen
  • Test Dictionary 2: twenty (20)
  • Test Dictionary 2: 26
", + "frequencies": "
  • termsDictAlias: 1
  • termsDictAlias: four
  • termsDictAlias: five (5)
  • termsDictAlias: 8
  • termsDictAlias: fourteen
  • termsDictAlias: twenty (20)
  • termsDictAlias: 26
", "frequency-harmonic-rank": "1", "frequency-harmonic-occurrence": "1", "frequency-average-rank": "1", @@ -3280,7 +3280,7 @@ "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打", - "frequencies": "
  • Test Dictionary 2: 1
  • Test Dictionary 2: four
  • Test Dictionary 2: five (5)
  • Test Dictionary 2: 9
  • Test Dictionary 2: fifteen
  • Test Dictionary 2: twenty-one (21)
  • Test Dictionary 2: twenty-seven
", + "frequencies": "
  • termsDictAlias: 1
  • termsDictAlias: four
  • termsDictAlias: five (5)
  • termsDictAlias: 9
  • termsDictAlias: fifteen
  • termsDictAlias: twenty-one (21)
  • termsDictAlias: twenty-seven
", "frequency-harmonic-rank": "1", "frequency-harmonic-occurrence": "1", "frequency-average-rank": "1", @@ -3468,7 +3468,7 @@ "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打ち込む", - "frequencies": "
  • (む) Test Dictionary 2: 3
  • (む) Test Dictionary 2: seven
  • (む) Test Dictionary 2: 12
  • (む) Test Dictionary 2: eighteen
  • (む) Test Dictionary 2: twenty-four (24)
  • (む) Test Dictionary 2: 30
  • (む) Test Dictionary 2: 3
  • (む) Test Dictionary 2: seven
  • (む) Test Dictionary 2: 13
  • (む) Test Dictionary 2: nineteen
  • (む) Test Dictionary 2: twenty-five (25)
  • (む) Test Dictionary 2: thirty-one
", + "frequencies": "
  • (む) termsDictAlias: 3
  • (む) termsDictAlias: seven
  • (む) termsDictAlias: 12
  • (む) termsDictAlias: eighteen
  • (む) termsDictAlias: twenty-four (24)
  • (む) termsDictAlias: 30
  • (む) termsDictAlias: 3
  • (む) termsDictAlias: seven
  • (む) termsDictAlias: 13
  • (む) termsDictAlias: nineteen
  • (む) termsDictAlias: twenty-five (25)
  • (む) termsDictAlias: thirty-one
", "frequency-harmonic-rank": "3", "frequency-harmonic-occurrence": "3", "frequency-average-rank": "3", @@ -3510,7 +3510,7 @@ "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打つ", - "frequencies": "
  • (つ) Test Dictionary 2: 2
  • (つ) Test Dictionary 2: 6
  • (つ) Test Dictionary 2: 10
  • (つ) Test Dictionary 2: sixteen
  • (つ) Test Dictionary 2: twenty-two (22)
  • (つ) Test Dictionary 2: 28
  • (つ) Test Dictionary 2: 2
  • (つ) Test Dictionary 2: 6
  • (つ) Test Dictionary 2: 11
  • (つ) Test Dictionary 2: seventeen
  • (つ) Test Dictionary 2: twenty-three (23)
  • (つ) Test Dictionary 2: twenty-nine
", + "frequencies": "
  • (つ) termsDictAlias: 2
  • (つ) termsDictAlias: 6
  • (つ) termsDictAlias: 10
  • (つ) termsDictAlias: sixteen
  • (つ) termsDictAlias: twenty-two (22)
  • (つ) termsDictAlias: 28
  • (つ) termsDictAlias: 2
  • (つ) termsDictAlias: 6
  • (つ) termsDictAlias: 11
  • (つ) termsDictAlias: seventeen
  • (つ) termsDictAlias: twenty-three (23)
  • (つ) termsDictAlias: twenty-nine
", "frequency-harmonic-rank": "2", "frequency-harmonic-occurrence": "2", "frequency-average-rank": "2", @@ -4074,7 +4074,7 @@ "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打つ", - "frequencies": "
  • Test Dictionary 2: 2
  • Test Dictionary 2: 6
  • Test Dictionary 2: 10
  • Test Dictionary 2: sixteen
  • Test Dictionary 2: twenty-two (22)
  • Test Dictionary 2: 28
", + "frequencies": "
  • termsDictAlias: 2
  • termsDictAlias: 6
  • termsDictAlias: 10
  • termsDictAlias: sixteen
  • termsDictAlias: twenty-two (22)
  • termsDictAlias: 28
", "frequency-harmonic-rank": "2", "frequency-harmonic-occurrence": "2", "frequency-average-rank": "2", @@ -4116,7 +4116,7 @@ "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打つ", - "frequencies": "
  • Test Dictionary 2: 2
  • Test Dictionary 2: 6
  • Test Dictionary 2: 10
  • Test Dictionary 2: sixteen
  • Test Dictionary 2: twenty-two (22)
  • Test Dictionary 2: 28
", + "frequencies": "
  • termsDictAlias: 2
  • termsDictAlias: 6
  • termsDictAlias: 10
  • termsDictAlias: sixteen
  • termsDictAlias: twenty-two (22)
  • termsDictAlias: 28
", "frequency-harmonic-rank": "2", "frequency-harmonic-occurrence": "2", "frequency-average-rank": "2", @@ -4163,7 +4163,7 @@ "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打つ", - "frequencies": "
  • Test Dictionary 2: 2
  • Test Dictionary 2: 6
  • Test Dictionary 2: 10
  • Test Dictionary 2: sixteen
  • Test Dictionary 2: twenty-two (22)
  • Test Dictionary 2: 28
", + "frequencies": "
  • termsDictAlias: 2
  • termsDictAlias: 6
  • termsDictAlias: 10
  • termsDictAlias: sixteen
  • termsDictAlias: twenty-two (22)
  • termsDictAlias: 28
", "frequency-harmonic-rank": "2", "frequency-harmonic-occurrence": "2", "frequency-average-rank": "2", @@ -4205,7 +4205,7 @@ "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打つ", - "frequencies": "
  • Test Dictionary 2: 2
  • Test Dictionary 2: 6
  • Test Dictionary 2: 10
  • Test Dictionary 2: sixteen
  • Test Dictionary 2: twenty-two (22)
  • Test Dictionary 2: 28
", + "frequencies": "
  • termsDictAlias: 2
  • termsDictAlias: 6
  • termsDictAlias: 10
  • termsDictAlias: sixteen
  • termsDictAlias: twenty-two (22)
  • termsDictAlias: 28
", "frequency-harmonic-rank": "2", "frequency-harmonic-occurrence": "2", "frequency-average-rank": "2", @@ -4299,7 +4299,7 @@ "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打つ", - "frequencies": "
  • Test Dictionary 2: 2
  • Test Dictionary 2: 6
  • Test Dictionary 2: 10
  • Test Dictionary 2: sixteen
  • Test Dictionary 2: twenty-two (22)
  • Test Dictionary 2: 28
", + "frequencies": "
  • termsDictAlias: 2
  • termsDictAlias: 6
  • termsDictAlias: 10
  • termsDictAlias: sixteen
  • termsDictAlias: twenty-two (22)
  • termsDictAlias: 28
", "frequency-harmonic-rank": "2", "frequency-harmonic-occurrence": "2", "frequency-average-rank": "2", @@ -4341,7 +4341,7 @@ "dictionary-alias": "termsDictAlias", "document-title": "title", "expression": "打つ", - "frequencies": "
  • Test Dictionary 2: 2
  • Test Dictionary 2: 6
  • Test Dictionary 2: 10
  • Test Dictionary 2: sixteen
  • Test Dictionary 2: twenty-two (22)
  • Test Dictionary 2: 28
", + "frequencies": "
  • termsDictAlias: 2
  • termsDictAlias: 6
  • termsDictAlias: 10
  • termsDictAlias: sixteen
  • termsDictAlias: twenty-two (22)
  • termsDictAlias: 28
", "frequency-harmonic-rank": "2", "frequency-harmonic-occurrence": "2", "frequency-average-rank": "2", diff --git a/test/data/templates/old-default-anki-field-templates.handlebars b/test/data/templates/old-default-anki-field-templates.handlebars index 88a67d2a77..42deae2394 100644 --- a/test/data/templates/old-default-anki-field-templates.handlebars +++ b/test/data/templates/old-default-anki-field-templates.handlebars @@ -28,10 +28,6 @@ {{~definition.dictionary~}} {{/inline}} -{{#*inline "dictionary-alias"}} - {{~definition.dictionaryAlias~}} -{{/inline}} - {{#*inline "expression"}} {{~#if merge~}} {{~#if modeTermKana~}} diff --git a/test/options-util.test.js b/test/options-util.test.js index 6448d6fb8c..22444290e2 100644 --- a/test/options-util.test.js +++ b/test/options-util.test.js @@ -1875,6 +1875,23 @@ describe('OptionsUtil', () => { {{#*inline "dictionary"}} {{~definition.dictionary~}} {{/inline}} + +{{#*inline "frequencies"}} + {{~#if (op ">" definition.frequencies.length 0)~}} +
    + {{~#each definition.frequencies~}} +
  • + {{~#if (op "!==" ../definition.type "kanji")~}} + {{~#if (op "||" (op ">" ../uniqueExpressions.length 1) (op ">" ../uniqueReadings.length 1))~}}( + {{~furigana expression reading~}} + ) {{/if~}} + {{~/if~}} + {{~dictionary}}: {{frequency~}} +
  • + {{~/each~}} +
+ {{~/if~}} +{{/inline}} `.trimStart(), expected: ` @@ -1917,6 +1934,23 @@ describe('OptionsUtil', () => { {{#*inline "dictionary-alias"}} {{~definition.dictionaryAlias~}} {{/inline}} + +{{#*inline "frequencies"}} + {{~#if (op ">" definition.frequencies.length 0)~}} +
    + {{~#each definition.frequencies~}} +
  • + {{~#if (op "!==" ../definition.type "kanji")~}} + {{~#if (op "||" (op ">" ../uniqueExpressions.length 1) (op ">" ../uniqueReadings.length 1))~}}( + {{~furigana expression reading~}} + ) {{/if~}} + {{~/if~}} + {{~dictionaryAlias}}: {{frequency~}} +
  • + {{~/each~}} +
+ {{~/if~}} +{{/inline}} `.trimStart(), }, ]; From 9cb30eba12af36fe7ba46a16e06849898c0f81ec Mon Sep 17 00:00:00 2001 From: Khai Truong Date: Tue, 30 Jul 2024 20:49:28 +0700 Subject: [PATCH 33/40] Alias for pronunciation dict --- ext/js/dictionary/dictionary-data-util.js | 7 +++++-- ext/js/display/display-generator.js | 5 +++-- types/ext/dictionary-data-util.d.ts | 1 + 3 files changed, 9 insertions(+), 4 deletions(-) diff --git a/ext/js/dictionary/dictionary-data-util.js b/ext/js/dictionary/dictionary-data-util.js index eea6bad96d..6b65913d80 100644 --- a/ext/js/dictionary/dictionary-data-util.js +++ b/ext/js/dictionary/dictionary-data-util.js @@ -147,6 +147,7 @@ export function getGroupedPronunciations(dictionaryEntry) { const allTerms = new Set(); const allReadings = new Set(); + const aliasMap = new Map(); for (const {term, reading} of headwords) { allTerms.add(term); allReadings.add(reading); @@ -154,12 +155,13 @@ export function getGroupedPronunciations(dictionaryEntry) { /** @type {Map} */ const groupedPronunciationsMap = new Map(); - for (const {headwordIndex, dictionary, pronunciations} of termPronunciations) { + for (const {headwordIndex, dictionary, dictionaryAlias, pronunciations} of termPronunciations) { const {term, reading} = headwords[headwordIndex]; let dictionaryGroupedPronunciationList = groupedPronunciationsMap.get(dictionary); if (typeof dictionaryGroupedPronunciationList === 'undefined') { dictionaryGroupedPronunciationList = []; groupedPronunciationsMap.set(dictionary, dictionaryGroupedPronunciationList); + aliasMap.set(dictionary, dictionaryAlias); } for (const pronunciation of pronunciations) { let groupedPronunciation = findExistingGroupedPronunciation(reading, pronunciation, dictionaryGroupedPronunciationList); @@ -181,6 +183,7 @@ export function getGroupedPronunciations(dictionaryEntry) { for (const [dictionary, dictionaryGroupedPronunciationList] of groupedPronunciationsMap.entries()) { /** @type {import('dictionary-data-util').GroupedPronunciation[]} */ const pronunciations2 = []; + const dictionaryAlias = aliasMap.get(dictionary) ?? dictionary; for (const groupedPronunciation of dictionaryGroupedPronunciationList) { const {pronunciation, terms, reading} = groupedPronunciation; const exclusiveTerms = !areSetsEqual(terms, allTerms) ? getSetIntersection(terms, allTerms) : []; @@ -197,7 +200,7 @@ export function getGroupedPronunciations(dictionaryEntry) { }); } - results2.push({dictionary, pronunciations: pronunciations2}); + results2.push({dictionary, dictionaryAlias, pronunciations: pronunciations2}); } return results2; } diff --git a/ext/js/display/display-generator.js b/ext/js/display/display-generator.js index 70579d3143..4eec0d248e 100644 --- a/ext/js/display/display-generator.js +++ b/ext/js/display/display-generator.js @@ -663,7 +663,7 @@ export class DisplayGenerator { * @returns {HTMLElement} */ _createGroupedPronunciation(details) { - const {dictionary, pronunciations} = details; + const {dictionary, dictionaryAlias, pronunciations} = details; const node = this._instantiate('pronunciation-group'); node.dataset.dictionary = dictionary; @@ -671,7 +671,7 @@ export class DisplayGenerator { node.dataset.pronunciationsCount = `${pronunciations.length}`; const n1 = this._querySelector(node, '.pronunciation-group-tag-list'); - const tag = this._createTag(this._createTagData(dictionary, 'pronunciation-dictionary')); + const tag = this._createTag(this._createTagData(dictionaryAlias, 'pronunciation-dictionary')); n1.appendChild(tag); let hasTags = false; @@ -686,6 +686,7 @@ export class DisplayGenerator { n.dataset.hasTags = `${hasTags}`; this._appendMultiple(n, this._createPronunciation.bind(this), pronunciations); + tag.dataset.details = dictionary; return node; } diff --git a/types/ext/dictionary-data-util.d.ts b/types/ext/dictionary-data-util.d.ts index e27807efe9..0636db9b89 100644 --- a/types/ext/dictionary-data-util.d.ts +++ b/types/ext/dictionary-data-util.d.ts @@ -80,6 +80,7 @@ export type GroupedPronunciation = { export type DictionaryGroupedPronunciations = { dictionary: string; + dictionaryAlias: string; pronunciations: GroupedPronunciation[]; }; From ff43607c6c570f385ff1d2f599f6657dc227eb3c Mon Sep 17 00:00:00 2001 From: Khai Truong Date: Tue, 30 Jul 2024 20:52:12 +0700 Subject: [PATCH 34/40] lint --- ext/js/dictionary/dictionary-data-util.js | 1 + 1 file changed, 1 insertion(+) diff --git a/ext/js/dictionary/dictionary-data-util.js b/ext/js/dictionary/dictionary-data-util.js index 6b65913d80..296f4ed95e 100644 --- a/ext/js/dictionary/dictionary-data-util.js +++ b/ext/js/dictionary/dictionary-data-util.js @@ -147,6 +147,7 @@ export function getGroupedPronunciations(dictionaryEntry) { const allTerms = new Set(); const allReadings = new Set(); + /** @type {Map} */ const aliasMap = new Map(); for (const {term, reading} of headwords) { allTerms.add(term); From 4910fb093437fedde8ec9d2ff9423f7520b174f6 Mon Sep 17 00:00:00 2001 From: Khai Truong Date: Tue, 30 Jul 2024 20:53:23 +0700 Subject: [PATCH 35/40] refactor --- ext/js/display/display-generator.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/js/display/display-generator.js b/ext/js/display/display-generator.js index 4eec0d248e..4497e9f5a2 100644 --- a/ext/js/display/display-generator.js +++ b/ext/js/display/display-generator.js @@ -672,6 +672,7 @@ export class DisplayGenerator { const n1 = this._querySelector(node, '.pronunciation-group-tag-list'); const tag = this._createTag(this._createTagData(dictionaryAlias, 'pronunciation-dictionary')); + tag.dataset.details = dictionary; n1.appendChild(tag); let hasTags = false; @@ -686,7 +687,6 @@ export class DisplayGenerator { n.dataset.hasTags = `${hasTags}`; this._appendMultiple(n, this._createPronunciation.bind(this), pronunciations); - tag.dataset.details = dictionary; return node; } From 5325bce1ae8f465628dd6de1f1b53fdd784bd6d8 Mon Sep 17 00:00:00 2001 From: Khai Truong Date: Tue, 30 Jul 2024 21:15:23 +0700 Subject: [PATCH 36/40] trim alias && save on enter --- .../pages/settings/dictionary-controller.js | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) diff --git a/ext/js/pages/settings/dictionary-controller.js b/ext/js/pages/settings/dictionary-controller.js index b5b20e2a5f..b524c308d6 100644 --- a/ext/js/pages/settings/dictionary-controller.js +++ b/ext/js/pages/settings/dictionary-controller.js @@ -87,6 +87,7 @@ class DictionaryEntry { this._priorityInput.dataset.setting = `dictionaries[${index}].priority`; this._enabledCheckbox.dataset.setting = `dictionaries[${index}].enabled`; this._eventListeners.addEventListener(this._aliasNode, 'blur', this._onAliasBlur.bind(this), false); + this._eventListeners.addEventListener(this._aliasNode, 'keydown', this._onAliasKeyDown.bind(this), false); this._eventListeners.addEventListener(this._enabledCheckbox, 'settingChanged', this._onEnabledChanged.bind(this), false); this._eventListeners.addEventListener(this._menuButton, 'menuOpen', this._onMenuOpen.bind(this), false); this._eventListeners.addEventListener(this._menuButton, 'menuClose', this._onMenuClose.bind(this), false); @@ -185,8 +186,22 @@ class DictionaryEntry { * */ _onAliasBlur() { - if (!this._aliasNode.textContent) { - this._aliasNode.textContent = this.dictionaryTitle; + let newAlias = (this._aliasNode.textContent ?? '').trim() + if (!newAlias) { + newAlias = this.dictionaryTitle; + } + this._aliasNode.textContent = newAlias; + } + + /** + * @param {KeyboardEvent} e + */ + _onAliasKeyDown(e) { + // if enter then blur + const {code, key} = e; + if (code === 'Enter' || key === 'Enter' || code === 'NumpadEnter') { + e.preventDefault(); + this._aliasNode.blur(); } } From f457ff3ed1264ba84ea86a9933060936bb5ec4d6 Mon Sep 17 00:00:00 2001 From: Khai Truong Date: Wed, 31 Jul 2024 00:11:57 +0700 Subject: [PATCH 37/40] move edit alias to kebab menu --- ext/css/settings.css | 4 + ext/js/dom/dom-data-binder.js | 39 +-------- .../pages/settings/dictionary-controller.js | 82 +++++++++++++------ ext/settings.html | 15 ++++ ext/templates-settings.html | 3 +- ext/welcome.html | 15 ++++ types/ext/dom-data-binder.d.ts | 6 +- 7 files changed, 100 insertions(+), 64 deletions(-) diff --git a/ext/css/settings.css b/ext/css/settings.css index 2e97a6d07d..7e6c4bc158 100644 --- a/ext/css/settings.css +++ b/ext/css/settings.css @@ -2404,6 +2404,10 @@ input[type=number].dictionary-priority { overflow: auto; } +#dictionary-alias-input { + width: 100%; +} + #dictionary-move-up>span.icon-button-inner, #dictionary-move-down>span.icon-button-inner { width: 26px; diff --git a/ext/js/dom/dom-data-binder.js b/ext/js/dom/dom-data-binder.js index c40c6a45c0..4ca3aded97 100644 --- a/ext/js/dom/dom-data-binder.js +++ b/ext/js/dom/dom-data-binder.js @@ -175,7 +175,7 @@ export class DOMDataBinder { const metadata = this._createElementMetadata(element); if (typeof metadata === 'undefined') { return void 0; } const type = this._getNormalizedElementType(element); - const eventType = this._getElementEventType(element); + const eventType = 'change'; /** @type {import('dom-data-binder').ElementObserver} */ const observer = { element, @@ -212,13 +212,6 @@ export class DOMDataBinder { if (!observer.hasValue) { return; } - // When contenteditable is made empty or inputted from empty, - // the value is reset back to original state - // because there is a removal / addition of text node. - // This is a workaround to prevent the value from being reset back when typing. - if (this._isElementContentEditable(element)) { - return; - } this._setElementValue(element, observer.value); } @@ -249,7 +242,7 @@ export class DOMDataBinder { case 'select': /** @type {HTMLInputElement|HTMLTextAreaElement|HTMLSelectElement} */ (element).value = typeof value === 'string' ? value : `${value}`; break; - case 'contenteditable': + case 'element': element.textContent = typeof value === 'string' ? value : `${value}`; break; } @@ -287,22 +280,9 @@ export class DOMDataBinder { return /** @type {HTMLTextAreaElement} */ (element).value; case 'select': return /** @type {HTMLSelectElement} */ (element).value; - case 'contenteditable': + case 'element': return element.textContent; } - return null; - } - - - /** - * @param {Element} element - * @returns {import('dom-data-binder').EventType} - */ - _getElementEventType(element) { - if (this._isElementContentEditable(element)) { - return 'blur'; - } - return 'change'; } /** @@ -310,9 +290,6 @@ export class DOMDataBinder { * @returns {import('dom-data-binder').NormalizedElementType} */ _getNormalizedElementType(element) { - if (this._isElementContentEditable(element)) { - return 'contenteditable'; - } switch (element.nodeName.toUpperCase()) { case 'INPUT': { @@ -332,14 +309,6 @@ export class DOMDataBinder { case 'SELECT': return 'select'; } - return null; - } - - /** - * @param {Element} element - * @returns {boolean} - */ - _isElementContentEditable(element) { - return element instanceof HTMLElement && element.isContentEditable; + return 'element'; } } diff --git a/ext/js/pages/settings/dictionary-controller.js b/ext/js/pages/settings/dictionary-controller.js index b524c308d6..4788bff64a 100644 --- a/ext/js/pages/settings/dictionary-controller.js +++ b/ext/js/pages/settings/dictionary-controller.js @@ -86,8 +86,6 @@ class DictionaryEntry { this._outdatedButton.hidden = (version >= 3); this._priorityInput.dataset.setting = `dictionaries[${index}].priority`; this._enabledCheckbox.dataset.setting = `dictionaries[${index}].enabled`; - this._eventListeners.addEventListener(this._aliasNode, 'blur', this._onAliasBlur.bind(this), false); - this._eventListeners.addEventListener(this._aliasNode, 'keydown', this._onAliasKeyDown.bind(this), false); this._eventListeners.addEventListener(this._enabledCheckbox, 'settingChanged', this._onEnabledChanged.bind(this), false); this._eventListeners.addEventListener(this._menuButton, 'menuOpen', this._onMenuOpen.bind(this), false); this._eventListeners.addEventListener(this._menuButton, 'menuClose', this._onMenuClose.bind(this), false); @@ -179,29 +177,9 @@ class DictionaryEntry { case 'moveTo': this._showMoveToModal(); break; - } - } - - /** - * - */ - _onAliasBlur() { - let newAlias = (this._aliasNode.textContent ?? '').trim() - if (!newAlias) { - newAlias = this.dictionaryTitle; - } - this._aliasNode.textContent = newAlias; - } - - /** - * @param {KeyboardEvent} e - */ - _onAliasKeyDown(e) { - // if enter then blur - const {code, key} = e; - if (code === 'Enter' || key === 'Enter' || code === 'NumpadEnter') { - e.preventDefault(); - this._aliasNode.blur(); + case 'setAlias': + this._showSetAliasModal(); + break; } } @@ -369,6 +347,23 @@ class DictionaryEntry { modal.setVisible(true); } + + /** */ + _showSetAliasModal() { + const {title} = this._dictionaryInfo; + const modal = this._dictionaryController.modalController.getModal('dictionary-set-alias'); + if (modal === null) { return; } + /** @type {HTMLInputElement} */ + const input = querySelectorNotNull(modal.node, '#dictionary-alias-input'); + /** @type {HTMLElement} */ + const titleNode = querySelectorNotNull(modal.node, '.dictionary-title'); + + modal.node.dataset.index = `${this._index}`; + titleNode.textContent = title; + input.value = this._aliasNode.textContent || title; + + modal.setVisible(true); + } } class DictionaryExtraInfo { @@ -528,6 +523,11 @@ export class DictionaryController { /** @type {HTMLButtonElement} */ const dictionaryMoveButton = querySelectorNotNull(document, '#dictionary-move-button'); + /** @type {HTMLButtonElement} */ + const dictiontaryResetAliasButton = querySelectorNotNull(document, '#dictionary-reset-alias-button'); + /** @type {HTMLButtonElement} */ + const dictionarySetAliasButton = querySelectorNotNull(document, '#dictionary-set-alias-button'); + this._settingsController.application.on('databaseUpdated', this._onDatabaseUpdated.bind(this)); this._settingsController.on('optionsChanged', this._onOptionsChanged.bind(this)); this._allCheckbox.addEventListener('change', this._onAllCheckboxChange.bind(this), false); @@ -535,6 +535,10 @@ export class DictionaryController { dictionaryUpdateButton.addEventListener('click', this._onDictionaryConfirmUpdate.bind(this), false); dictionaryMoveButton.addEventListener('click', this._onDictionaryMoveButtonClick.bind(this), false); + + dictionarySetAliasButton.addEventListener('click', this._onDictionarySetAliasButtonClick.bind(this), false); + dictiontaryResetAliasButton.addEventListener('click', this._onDictionaryResetAliasButtonClick.bind(this), false); + if (this._checkUpdatesButton !== null) { this._checkUpdatesButton.addEventListener('click', this._onCheckUpdatesButtonClick.bind(this), false); } @@ -890,6 +894,34 @@ export class DictionaryController { void this.moveDictionaryOptions(indexNumber, target); } + /** */ + _onDictionaryResetAliasButtonClick() { + const modal = /** @type {import('./modal.js').Modal} */ (this._modalController.getModal('dictionary-set-alias')); + const index = modal.node.dataset.index ?? ''; + const indexNumber = Number.parseInt(index, 10); + if (Number.isNaN(indexNumber)) { return; } + + /** @type {HTMLInputElement} */ + const input = querySelectorNotNull(modal.node, '#dictionary-alias-input'); + input.value = this._dictionaryEntries[indexNumber].dictionaryTitle; + } + + /** */ + _onDictionarySetAliasButtonClick() { + const modal = /** @type {import('./modal.js').Modal} */ (this._modalController.getModal('dictionary-set-alias')); + const index = modal.node.dataset.index ?? ''; + const indexNumber = Number.parseInt(index, 10); + if (Number.isNaN(indexNumber)) { return; } + + /** @type {HTMLInputElement} */ + const input = querySelectorNotNull(modal.node, '#dictionary-alias-input'); + const inputValue = input.value.trim(); + if (!inputValue) return; + const aliasNode = this._dictionaryEntries[indexNumber]._aliasNode; + aliasNode.textContent = inputValue; + aliasNode.dispatchEvent(new Event('change', {bubbles: true})); + } + /** * @param {import('dictionary-importer').Summary[]} dictionaries */ diff --git a/ext/settings.html b/ext/settings.html index 33e12ab7fe..c858b374c3 100644 --- a/ext/settings.html +++ b/ext/settings.html @@ -2820,6 +2820,21 @@
or click here to upload
+ + + + -