diff options
| author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2021-10-14 21:26:53 -0400 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-10-14 21:26:53 -0400 | 
| commit | 75aabd983da29023b8423bd44d565202aad6b664 (patch) | |
| tree | 754fbe5457747cd72fcf13767fc3176fc0d8f280 | |
| parent | 11f7591a7f5fcbfc3a3e631eaac0addb228c988a (diff) | |
String frequency support (#1989)
* Restore support for string frequency values
* Add support for {value, displayValue} frequencies
* Update test data
* Improve number parsing of string frequencies
* Improve reading detection
* Expose a displayValue property for frequency information
* Update docs
* Expose displayValue to Anki note data
* Fix translator
* Update display generation
* Update test data
* Update counts
| -rw-r--r-- | docs/interfaces/dictionary-entry.ts | 20 | ||||
| -rw-r--r-- | ext/data/schemas/dictionary-kanji-meta-bank-v3-schema.json | 26 | ||||
| -rw-r--r-- | ext/data/schemas/dictionary-term-meta-bank-v3-schema.json | 28 | ||||
| -rw-r--r-- | ext/display-templates.html | 4 | ||||
| -rw-r--r-- | ext/js/data/sandbox/anki-note-data-creator.js | 12 | ||||
| -rw-r--r-- | ext/js/display/display-generator.js | 44 | ||||
| -rw-r--r-- | ext/js/language/sandbox/dictionary-data-util.js | 14 | ||||
| -rw-r--r-- | ext/js/language/translator.js | 61 | ||||
| -rw-r--r-- | test/data/anki-note-builder-test-results.json | 148 | ||||
| -rw-r--r-- | test/data/dictionaries/valid-dictionary1/kanji_meta_bank_1.json | 6 | ||||
| -rw-r--r-- | test/data/dictionaries/valid-dictionary1/term_meta_bank_1.json | 39 | ||||
| -rw-r--r-- | test/data/translator-test-results-note-data1.json | 8944 | ||||
| -rw-r--r-- | test/data/translator-test-results.json | 4302 | ||||
| -rw-r--r-- | test/test-database.js | 28 | 
14 files changed, 13217 insertions, 459 deletions
diff --git a/docs/interfaces/dictionary-entry.ts b/docs/interfaces/dictionary-entry.ts index 253912d0..2609a42a 100644 --- a/docs/interfaces/dictionary-entry.ts +++ b/docs/interfaces/dictionary-entry.ts @@ -181,7 +181,15 @@ namespace Translation {          /**           * The frequency for the character, as a number of occurrences or an overall rank.           */ -        frequency: number | string; +        frequency: number; +        /** +         * A display value to show to the user. +         */ +        displayValue: string | null; +        /** +         * Whether or not the displayValue string was parsed to determine the frequency value. +         */ +        displayValueParsed: boolean;      }      // Terms @@ -400,7 +408,15 @@ namespace Translation {          /**           * The frequency for the term, as a number of occurrences or an overall rank.           */ -        frequency: number | string; +        frequency: number; +        /** +         * A display value to show to the user. +         */ +        displayValue: string | null; +        /** +         * Whether or not the displayValue string was parsed to determine the frequency value. +         */ +        displayValueParsed: boolean;      }      /** diff --git a/ext/data/schemas/dictionary-kanji-meta-bank-v3-schema.json b/ext/data/schemas/dictionary-kanji-meta-bank-v3-schema.json index 49f7c813..0864c9aa 100644 --- a/ext/data/schemas/dictionary-kanji-meta-bank-v3-schema.json +++ b/ext/data/schemas/dictionary-kanji-meta-bank-v3-schema.json @@ -1,5 +1,29 @@  {      "$schema": "http://json-schema.org/draft-07/schema#", +    "definitions": { +        "frequency": { +            "oneOf": [ +                { +                    "type": ["string", "number"] +                }, +                { +                    "type": "object", +                    "additionalProperties": false, +                    "required": [ +                        "value" +                    ], +                    "properties": { +                        "value": { +                            "type": "number" +                        }, +                        "displayValue": { +                            "type": "string" +                        } +                    } +                } +            ] +        } +    },      "type": "array",      "description": "Custom metadata for kanji characters.",      "additionalItems": { @@ -17,7 +41,7 @@                  "description": "Type of data. \"freq\" corresponds to frequency information."              },              { -                "type": ["number"], +                "$ref": "#/definitions/frequency",                  "description": "Data for the character."              }          ] diff --git a/ext/data/schemas/dictionary-term-meta-bank-v3-schema.json b/ext/data/schemas/dictionary-term-meta-bank-v3-schema.json index 206e7152..96f2e54b 100644 --- a/ext/data/schemas/dictionary-term-meta-bank-v3-schema.json +++ b/ext/data/schemas/dictionary-term-meta-bank-v3-schema.json @@ -1,5 +1,29 @@  {      "$schema": "http://json-schema.org/draft-07/schema#", +    "definitions": { +        "frequency": { +            "oneOf": [ +                { +                    "type": ["string", "number"] +                }, +                { +                    "type": "object", +                    "additionalProperties": false, +                    "required": [ +                        "value" +                    ], +                    "properties": { +                        "value": { +                            "type": "number" +                        }, +                        "displayValue": { +                            "type": "string" +                        } +                    } +                } +            ] +        } +    },      "type": "array",      "description": "Custom metadata for terms.",      "additionalItems": { @@ -28,7 +52,7 @@                      {                          "oneOf": [                              { -                                "type": ["number"], +                                "$ref": "#/definitions/frequency",                                  "description": "Frequency information for the term."                              },                              { @@ -44,7 +68,7 @@                                          "description": "Reading for the term."                                      },                                      "frequency": { -                                        "type": ["number"], +                                        "$ref": "#/definitions/frequency",                                          "description": "Frequency information for the term."                                      }                                  } diff --git a/ext/display-templates.html b/ext/display-templates.html index 534ad704..c181a64e 100644 --- a/ext/display-templates.html +++ b/ext/display-templates.html @@ -71,13 +71,13 @@              <rt class="frequency-disambiguation-reading"></rt>          </ruby></span>          <span class="frequency-separator"></span> -        <span class="frequency-value"></span> +        <span class="frequency-value-list"></span>      </span></span>  </span></span></template>  <template id="kanji-frequency-item-template" data-remove-whitespace-text="true"><span class="frequency-item"><span class="tag tag-has-body frequency-tag" data-category="frequency" data-frequency-type="kanji">      <span class="tag-label"><span class="tag-label-content"></span></span>      <span class="tag-body"><span class="tag-body-content frequency-body"> -        <span class="frequency-value"></span> +        <span class="frequency-value-list"></span>      </span></span>  </span></span></template> diff --git a/ext/js/data/sandbox/anki-note-data-creator.js b/ext/js/data/sandbox/anki-note-data-creator.js index b7abc0c5..8d363134 100644 --- a/ext/js/data/sandbox/anki-note-data-creator.js +++ b/ext/js/data/sandbox/anki-note-data-creator.js @@ -243,7 +243,7 @@ class AnkiNoteDataCreator {      _getKanjiFrequencies(dictionaryEntry) {          const results = []; -        for (const {index, dictionary, dictionaryIndex, dictionaryPriority, character, frequency} of dictionaryEntry.frequencies) { +        for (const {index, dictionary, dictionaryIndex, dictionaryPriority, character, frequency, displayValue, displayValueParsed} of dictionaryEntry.frequencies) {              results.push({                  index,                  dictionary, @@ -252,7 +252,7 @@ class AnkiNoteDataCreator {                      priority: dictionaryPriority                  },                  character, -                frequency +                frequency: displayValueParsed ? displayValue : frequency              });          }          return results; @@ -374,7 +374,7 @@ class AnkiNoteDataCreator {      _getTermFrequencies(dictionaryEntry) {          const results = [];          const {headwords} = dictionaryEntry; -        for (const {headwordIndex, dictionary, dictionaryIndex, dictionaryPriority, hasReading, frequency} of dictionaryEntry.frequencies) { +        for (const {headwordIndex, dictionary, dictionaryIndex, dictionaryPriority, hasReading, frequency, displayValue, displayValueParsed} of dictionaryEntry.frequencies) {              const {term, reading} = headwords[headwordIndex];              results.push({                  index: results.length, @@ -387,7 +387,7 @@ class AnkiNoteDataCreator {                  expression: term,                  reading,                  hasReading, -                frequency +                frequency: displayValueParsed ? displayValue : frequency              });          }          return results; @@ -459,7 +459,7 @@ class AnkiNoteDataCreator {      _getTermExpressionFrequencies(dictionaryEntry, i) {          const results = [];          const {headwords, frequencies} = dictionaryEntry; -        for (const {headwordIndex, dictionary, dictionaryIndex, dictionaryPriority, hasReading, frequency} of frequencies) { +        for (const {headwordIndex, dictionary, dictionaryIndex, dictionaryPriority, hasReading, frequency, displayValue, displayValueParsed} of frequencies) {              if (headwordIndex !== i) { continue; }              const {term, reading} = headwords[headwordIndex];              results.push({ @@ -473,7 +473,7 @@ class AnkiNoteDataCreator {                  expression: term,                  reading,                  hasReading, -                frequency +                frequency: displayValueParsed ? displayValue : frequency              });          }          return results; diff --git a/ext/js/display/display-generator.js b/ext/js/display/display-generator.js index fe899e53..fc377df1 100644 --- a/ext/js/display/display-generator.js +++ b/ext/js/display/display-generator.js @@ -548,18 +548,15 @@ class DisplayGenerator {          this._setTextContent(node.querySelector('.tag-label-content'), dictionary); -        const frequency = values.join(', '); -          this._setTextContent(node.querySelector('.frequency-disambiguation-term'), term, 'ja');          this._setTextContent(node.querySelector('.frequency-disambiguation-reading'), (reading !== null ? reading : ''), 'ja'); -        this._setTextContent(node.querySelector('.frequency-value'), frequency, 'ja'); +        this._populateFrequencyValueList(node.querySelector('.frequency-value-list'), values);          node.dataset.term = term;          node.dataset.reading = reading;          node.dataset.hasReading = `${reading !== null}`;          node.dataset.readingIsSame = `${reading === term}`;          node.dataset.dictionary = dictionary; -        node.dataset.frequency = `${frequency}`;          node.dataset.details = dictionary;          return node; @@ -569,19 +566,50 @@ class DisplayGenerator {          const {character, values} = details;          const node = this._templates.instantiate('kanji-frequency-item'); -        const frequency = values.join(', '); -          this._setTextContent(node.querySelector('.tag-label-content'), dictionary); -        this._setTextContent(node.querySelector('.frequency-value'), frequency, 'ja'); +        this._populateFrequencyValueList(node.querySelector('.frequency-value-list'), values);          node.dataset.character = character;          node.dataset.dictionary = dictionary; -        node.dataset.frequency = `${frequency}`;          node.dataset.details = dictionary;          return node;      } +    _populateFrequencyValueList(node, values) { +        let fullFrequency = ''; +        for (let i = 0, ii = values.length; i < ii; ++i) { +            const {frequency, displayValue} = values[i]; +            const frequencyString = `${frequency}`; +            const text = displayValue !== null ? displayValue : frequency; + +            if (i > 0) { +                const node2 = document.createElement('span'); +                node2.className = 'frequency-value'; +                node2.dataset.frequency = `${frequency}`; +                node2.textContent = ', '; +                node.appendChild(node2); +                fullFrequency += ', '; +            } + +            const node2 = document.createElement('span'); +            node2.className = 'frequency-value'; +            node2.dataset.frequency = frequencyString; +            if (displayValue !== null) { +                node2.dataset.displayValue = `${displayValue}`; +                if (displayValue !== frequencyString) { +                    node2.title = frequencyString; +                } +            } +            this._setTextContent(node2, text, 'ja'); +            node.appendChild(node2); + +            fullFrequency += text; +        } + +        node.dataset.frequency = fullFrequency; +    } +      _appendKanjiLinks(container, text) {          const jp = this._japaneseUtil;          let part = ''; diff --git a/ext/js/language/sandbox/dictionary-data-util.js b/ext/js/language/sandbox/dictionary-data-util.js index 68b15c48..83d94b9b 100644 --- a/ext/js/language/sandbox/dictionary-data-util.js +++ b/ext/js/language/sandbox/dictionary-data-util.js @@ -48,7 +48,7 @@ class DictionaryDataUtil {          const {headwords, frequencies} = dictionaryEntry;          const map1 = new Map(); -        for (const {headwordIndex, dictionary, hasReading, frequency} of frequencies) { +        for (const {headwordIndex, dictionary, hasReading, frequency, displayValue} of frequencies) {              const {term, reading} = headwords[headwordIndex];              let map2 = map1.get(dictionary); @@ -61,18 +61,18 @@ class DictionaryDataUtil {              const key = this._createMapKey([term, readingKey]);              let frequencyData = map2.get(key);              if (typeof frequencyData === 'undefined') { -                frequencyData = {term, reading: readingKey, values: new Set()}; +                frequencyData = {term, reading: readingKey, values: new Map()};                  map2.set(key, frequencyData);              } -            frequencyData.values.add(frequency); +            frequencyData.values.set(this._createMapKey([frequency, displayValue]), {frequency, displayValue});          }          return this._createFrequencyGroupsFromMap(map1);      }      static groupKanjiFrequencies(frequencies) {          const map1 = new Map(); -        for (const {dictionary, character, frequency} of frequencies) { +        for (const {dictionary, character, frequency, displayValue} of frequencies) {              let map2 = map1.get(dictionary);              if (typeof map2 === 'undefined') {                  map2 = new Map(); @@ -81,11 +81,11 @@ class DictionaryDataUtil {              let frequencyData = map2.get(character);              if (typeof frequencyData === 'undefined') { -                frequencyData = {character, values: new Set()}; +                frequencyData = {character, values: new Map()};                  map2.set(character, frequencyData);              } -            frequencyData.values.add(frequency); +            frequencyData.values.set(this._createMapKey([frequency, displayValue]), {frequency, displayValue});          }          return this._createFrequencyGroupsFromMap(map1);      } @@ -222,7 +222,7 @@ class DictionaryDataUtil {          for (const [dictionary, map2] of map.entries()) {              const frequencies = [];              for (const frequencyData of map2.values()) { -                frequencyData.values = [...frequencyData.values]; +                frequencyData.values = [...frequencyData.values.values()];                  frequencies.push(frequencyData);              }              results.push({dictionary, frequencies}); diff --git a/ext/js/language/translator.js b/ext/js/language/translator.js index 056ff3a7..28e1cfcc 100644 --- a/ext/js/language/translator.js +++ b/ext/js/language/translator.js @@ -36,6 +36,7 @@ class Translator {          this._deinflector = null;          this._tagCache = new Map();          this._stringComparer = new Intl.Collator('en-US'); // Invariant locale +        this._numberRegex = /[+-]?(\d+(\.\d*)?|\.\d+)([eE][+-]?\d+)?/;      }      /** @@ -853,12 +854,15 @@ class Translator {                      case 'freq':                          {                              let frequency = data; -                            const hasReading = (data !== null && typeof data === 'object'); +                            const hasReading = (data !== null && typeof data === 'object' && typeof data.reading === 'string');                              if (hasReading) {                                  if (data.reading !== reading) { continue; }                                  frequency = data.frequency;                              }                              for (const {frequencies, headwordIndex} of targets) { +                                let displayValue; +                                let displayValueParsed; +                                ({frequency, displayValue, displayValueParsed} = this._getFrequencyInfo(frequency));                                  frequencies.push(this._createTermFrequency(                                      frequencies.length,                                      headwordIndex, @@ -866,7 +870,9 @@ class Translator {                                      dictionaryIndex,                                      dictionaryPriority,                                      hasReading, -                                    this._convertFrequency(frequency) +                                    frequency, +                                    displayValue, +                                    displayValueParsed                                  ));                              }                          } @@ -914,13 +920,16 @@ class Translator {                  case 'freq':                      {                          const {frequencies} = dictionaryEntries[index]; +                        const {frequency, displayValue, displayValueParsed} = this._getFrequencyInfo(data);                          frequencies.push(this._createKanjiFrequency(                              frequencies.length,                              dictionary,                              dictionaryIndex,                              dictionaryPriority,                              character, -                            this._convertFrequency(data) +                            frequency, +                            displayValue, +                            displayValueParsed                          ));                      }                      break; @@ -971,16 +980,36 @@ class Translator {          });      } -    _convertFrequency(value) { -        switch (typeof value) { -            case 'number': -                return value; -            case 'string': -                value = Number.parseFloat(value); -                return Number.isFinite(value) ? value : 0; -            default: -                return 0; +    _convertStringToNumber(value) { +        const match = this._numberRegex.exec(value); +        if (match === null) { return 0; } +        value = Number.parseFloat(match[0]); +        return Number.isFinite(value) ? value : 0; +    } + +    _getFrequencyInfo(frequency) { +        let displayValue = null; +        let displayValueParsed = false; +        if (typeof frequency === 'object' && frequency !== null) { +            ({value: frequency, displayValue} = frequency); +            if (typeof frequency !== 'number') { frequency = 0; } +            if (typeof displayValue !== 'string') { displayValue = null; } +        } else { +            switch (typeof frequency) { +                case 'number': +                    // No change +                    break; +                case 'string': +                    displayValue = frequency; +                    displayValueParsed = true; +                    frequency = this._convertStringToNumber(frequency); +                    break; +                default: +                    frequency = 0; +                    break; +            }          } +        return {frequency, displayValue, displayValueParsed};      }      // Helpers @@ -1048,8 +1077,8 @@ class Translator {          };      } -    _createKanjiFrequency(index, dictionary, dictionaryIndex, dictionaryPriority, character, frequency) { -        return {index, dictionary, dictionaryIndex, dictionaryPriority, character, frequency}; +    _createKanjiFrequency(index, dictionary, dictionaryIndex, dictionaryPriority, character, frequency, displayValue, displayValueParsed) { +        return {index, dictionary, dictionaryIndex, dictionaryPriority, character, frequency, displayValue, displayValueParsed};      }      _createKanjiDictionaryEntry(character, dictionary, onyomi, kunyomi, tags, stats, definitions) { @@ -1114,8 +1143,8 @@ class Translator {          return {index, headwordIndex, dictionary, dictionaryIndex, dictionaryPriority, pitches};      } -    _createTermFrequency(index, headwordIndex, dictionary, dictionaryIndex, dictionaryPriority, hasReading, frequency) { -        return {index, headwordIndex, dictionary, dictionaryIndex, dictionaryPriority, hasReading, frequency}; +    _createTermFrequency(index, headwordIndex, dictionary, dictionaryIndex, dictionaryPriority, hasReading, frequency, displayValue, displayValueParsed) { +        return {index, headwordIndex, dictionary, dictionaryIndex, dictionaryPriority, hasReading, frequency, displayValue, displayValueParsed};      }      _createTermDictionaryEntry(isPrimary, inflections, score, dictionaryIndex, dictionaryPriority, sourceTermExactMatchCount, maxTransformedTextLength, headwords, definitions) { diff --git a/test/data/anki-note-builder-test-results.json b/test/data/anki-note-builder-test-results.json index 39b5da1b..0038fb35 100644 --- a/test/data/anki-note-builder-test-results.json +++ b/test/data/anki-note-builder-test-results.json @@ -69,7 +69,7 @@          "dictionary": "Test Dictionary 2",          "document-title": "title",          "expression": "打", -        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 1</li><li>Test Dictionary 2: 4</li></ul>", +        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 1</li><li>Test Dictionary 2: four</li><li>Test Dictionary 2: five (5)</li><li>Test Dictionary 2: 8</li><li>Test Dictionary 2: fourteen</li><li>Test Dictionary 2: twenty (20)</li><li>Test Dictionary 2: 26</li></ul>",          "furigana": "<ruby>打<rt>だ</rt></ruby>",          "furigana-plain": "打[だ]",          "glossary": "<div style=\"text-align: left;\"><i>(n, Test Dictionary 2)</i> <ul><li>da definition 1</li><li>da definition 2</li></ul></div>", @@ -99,7 +99,7 @@          "dictionary": "Test Dictionary 2",          "document-title": "title",          "expression": "打", -        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 1</li><li>Test Dictionary 2: 5</li></ul>", +        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 1</li><li>Test Dictionary 2: four</li><li>Test Dictionary 2: five (5)</li><li>Test Dictionary 2: 9</li><li>Test Dictionary 2: fifteen</li><li>Test Dictionary 2: twenty-one (21)</li><li>Test Dictionary 2: 27</li></ul>",          "furigana": "<ruby>打<rt>ダース</rt></ruby>",          "furigana-plain": "打[ダース]",          "glossary": "<div style=\"text-align: left;\"><i>(abbr, n, Test Dictionary 2)</i> <ul><li>daasu definition 1</li><li>daasu definition 2</li></ul></div>", @@ -134,7 +134,7 @@          "dictionary": "Test Dictionary 2",          "document-title": "title",          "expression": "打つ", -        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 2</li><li>Test Dictionary 2: 6</li></ul>", +        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 2</li><li>Test Dictionary 2: 6</li><li>Test Dictionary 2: 10</li><li>Test Dictionary 2: sixteen</li><li>Test Dictionary 2: twenty-two (22)</li><li>Test Dictionary 2: 28</li></ul>",          "furigana": "<ruby>打<rt>う</rt></ruby>つ",          "furigana-plain": "打[う]つ",          "glossary": "<div style=\"text-align: left;\"><i>(vt, Test Dictionary 2)</i> <ul><li>utsu definition 1</li><li>utsu definition 2</li></ul></div>", @@ -164,7 +164,7 @@          "dictionary": "Test Dictionary 2",          "document-title": "title",          "expression": "打つ", -        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 2</li><li>Test Dictionary 2: 7</li></ul>", +        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 2</li><li>Test Dictionary 2: 6</li><li>Test Dictionary 2: 11</li><li>Test Dictionary 2: seventeen</li><li>Test Dictionary 2: twenty-three (23)</li><li>Test Dictionary 2: 29</li></ul>",          "furigana": "<ruby>打<rt>ぶ</rt></ruby>つ",          "furigana-plain": "打[ぶ]つ",          "glossary": "<div style=\"text-align: left;\"><i>(vt, Test Dictionary 2)</i> <ul><li>butsu definition 1</li><li>butsu definition 2</li></ul></div>", @@ -194,7 +194,7 @@          "dictionary": "Test Dictionary 2",          "document-title": "title",          "expression": "打つ", -        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 2</li><li>Test Dictionary 2: 6</li></ul>", +        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 2</li><li>Test Dictionary 2: 6</li><li>Test Dictionary 2: 10</li><li>Test Dictionary 2: 0</li><li>Test Dictionary 2: 22</li><li>Test Dictionary 2: 28</li></ul>",          "furigana": "<ruby>打<rt>う</rt></ruby>つ",          "furigana-plain": "打[う]つ",          "glossary": "<div style=\"text-align: left;\"><i>(vt, Test Dictionary 2)</i> <ul><li>utsu definition 3</li><li>utsu definition 4</li></ul></div>", @@ -224,7 +224,7 @@          "dictionary": "Test Dictionary 2",          "document-title": "title",          "expression": "打つ", -        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 2</li><li>Test Dictionary 2: 7</li></ul>", +        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 2</li><li>Test Dictionary 2: 6</li><li>Test Dictionary 2: 11</li><li>Test Dictionary 2: 0</li><li>Test Dictionary 2: 23</li><li>Test Dictionary 2: 29</li></ul>",          "furigana": "<ruby>打<rt>ぶ</rt></ruby>つ",          "furigana-plain": "打[ぶ]つ",          "glossary": "<div style=\"text-align: left;\"><i>(vt, Test Dictionary 2)</i> <ul><li>butsu definition 3</li><li>butsu definition 4</li></ul></div>", @@ -254,7 +254,7 @@          "dictionary": "Test Dictionary 2",          "document-title": "title",          "expression": "打", -        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 1</li><li>Test Dictionary 2: 4</li></ul>", +        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 1</li><li>Test Dictionary 2: four</li><li>Test Dictionary 2: five (5)</li><li>Test Dictionary 2: 8</li><li>Test Dictionary 2: fourteen</li><li>Test Dictionary 2: twenty (20)</li><li>Test Dictionary 2: 26</li></ul>",          "furigana": "<ruby>打<rt>だ</rt></ruby>",          "furigana-plain": "打[だ]",          "glossary": "<div style=\"text-align: left;\"><i>(n, Test Dictionary 2)</i> <ul><li>da definition 1</li><li>da definition 2</li></ul></div>", @@ -284,7 +284,7 @@          "dictionary": "Test Dictionary 2",          "document-title": "title",          "expression": "打", -        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 1</li><li>Test Dictionary 2: 5</li></ul>", +        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 1</li><li>Test Dictionary 2: four</li><li>Test Dictionary 2: five (5)</li><li>Test Dictionary 2: 9</li><li>Test Dictionary 2: fifteen</li><li>Test Dictionary 2: twenty-one (21)</li><li>Test Dictionary 2: 27</li></ul>",          "furigana": "<ruby>打<rt>ダース</rt></ruby>",          "furigana-plain": "打[ダース]",          "glossary": "<div style=\"text-align: left;\"><i>(abbr, n, Test Dictionary 2)</i> <ul><li>daasu definition 1</li><li>daasu definition 2</li></ul></div>", @@ -319,7 +319,7 @@          "dictionary": "Test Dictionary 2",          "document-title": "title",          "expression": "打ち込む", -        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 3</li><li>Test Dictionary 2: 8</li></ul>", +        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 3</li><li>Test Dictionary 2: 7</li><li>Test Dictionary 2: 12</li><li>Test Dictionary 2: eighteen</li><li>Test Dictionary 2: twenty-four (24)</li><li>Test Dictionary 2: 30</li></ul>",          "furigana": "<ruby>打<rt>う</rt></ruby>ち<ruby>込<rt>こ</rt></ruby>む",          "furigana-plain": "打[う]ち 込[こ]む",          "glossary": "<div style=\"text-align: left;\"><i>(vt, Test Dictionary 2)</i> <ul><li>uchikomu definition 1</li><li>uchikomu definition 2</li></ul></div>", @@ -349,7 +349,7 @@          "dictionary": "Test Dictionary 2",          "document-title": "title",          "expression": "打ち込む", -        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 3</li><li>Test Dictionary 2: 9</li></ul>", +        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 3</li><li>Test Dictionary 2: 7</li><li>Test Dictionary 2: 13</li><li>Test Dictionary 2: nineteen</li><li>Test Dictionary 2: twenty-five (25)</li><li>Test Dictionary 2: 31</li></ul>",          "furigana": "<ruby>打<rt>ぶ</rt></ruby>ち<ruby>込<rt>こ</rt></ruby>む",          "furigana-plain": "打[ぶ]ち 込[こ]む",          "glossary": "<div style=\"text-align: left;\"><i>(vt, Test Dictionary 2)</i> <ul><li>buchikomu definition 1</li><li>buchikomu definition 2</li></ul></div>", @@ -379,7 +379,7 @@          "dictionary": "Test Dictionary 2",          "document-title": "title",          "expression": "打ち込む", -        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 3</li><li>Test Dictionary 2: 8</li></ul>", +        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 3</li><li>Test Dictionary 2: 7</li><li>Test Dictionary 2: 12</li><li>Test Dictionary 2: 0</li><li>Test Dictionary 2: 24</li><li>Test Dictionary 2: 30</li></ul>",          "furigana": "<ruby>打<rt>う</rt></ruby>ち<ruby>込<rt>こ</rt></ruby>む",          "furigana-plain": "打[う]ち 込[こ]む",          "glossary": "<div style=\"text-align: left;\"><i>(vt, Test Dictionary 2)</i> <ul><li>uchikomu definition 3</li><li>uchikomu definition 4</li></ul></div>", @@ -409,7 +409,7 @@          "dictionary": "Test Dictionary 2",          "document-title": "title",          "expression": "打ち込む", -        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 3</li><li>Test Dictionary 2: 9</li></ul>", +        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 3</li><li>Test Dictionary 2: 7</li><li>Test Dictionary 2: 13</li><li>Test Dictionary 2: 0</li><li>Test Dictionary 2: 25</li><li>Test Dictionary 2: 31</li></ul>",          "furigana": "<ruby>打<rt>ぶ</rt></ruby>ち<ruby>込<rt>こ</rt></ruby>む",          "furigana-plain": "打[ぶ]ち 込[こ]む",          "glossary": "<div style=\"text-align: left;\"><i>(vt, Test Dictionary 2)</i> <ul><li>buchikomu definition 3</li><li>buchikomu definition 4</li></ul></div>", @@ -439,7 +439,7 @@          "dictionary": "Test Dictionary 2",          "document-title": "title",          "expression": "打つ", -        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 2</li><li>Test Dictionary 2: 6</li></ul>", +        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 2</li><li>Test Dictionary 2: 6</li><li>Test Dictionary 2: 10</li><li>Test Dictionary 2: sixteen</li><li>Test Dictionary 2: twenty-two (22)</li><li>Test Dictionary 2: 28</li></ul>",          "furigana": "<ruby>打<rt>う</rt></ruby>つ",          "furigana-plain": "打[う]つ",          "glossary": "<div style=\"text-align: left;\"><i>(vt, Test Dictionary 2)</i> <ul><li>utsu definition 1</li><li>utsu definition 2</li></ul></div>", @@ -469,7 +469,7 @@          "dictionary": "Test Dictionary 2",          "document-title": "title",          "expression": "打つ", -        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 2</li><li>Test Dictionary 2: 7</li></ul>", +        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 2</li><li>Test Dictionary 2: 6</li><li>Test Dictionary 2: 11</li><li>Test Dictionary 2: seventeen</li><li>Test Dictionary 2: twenty-three (23)</li><li>Test Dictionary 2: 29</li></ul>",          "furigana": "<ruby>打<rt>ぶ</rt></ruby>つ",          "furigana-plain": "打[ぶ]つ",          "glossary": "<div style=\"text-align: left;\"><i>(vt, Test Dictionary 2)</i> <ul><li>butsu definition 1</li><li>butsu definition 2</li></ul></div>", @@ -499,7 +499,7 @@          "dictionary": "Test Dictionary 2",          "document-title": "title",          "expression": "打つ", -        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 2</li><li>Test Dictionary 2: 6</li></ul>", +        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 2</li><li>Test Dictionary 2: 6</li><li>Test Dictionary 2: 10</li><li>Test Dictionary 2: 0</li><li>Test Dictionary 2: 22</li><li>Test Dictionary 2: 28</li></ul>",          "furigana": "<ruby>打<rt>う</rt></ruby>つ",          "furigana-plain": "打[う]つ",          "glossary": "<div style=\"text-align: left;\"><i>(vt, Test Dictionary 2)</i> <ul><li>utsu definition 3</li><li>utsu definition 4</li></ul></div>", @@ -529,7 +529,7 @@          "dictionary": "Test Dictionary 2",          "document-title": "title",          "expression": "打つ", -        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 2</li><li>Test Dictionary 2: 7</li></ul>", +        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 2</li><li>Test Dictionary 2: 6</li><li>Test Dictionary 2: 11</li><li>Test Dictionary 2: 0</li><li>Test Dictionary 2: 23</li><li>Test Dictionary 2: 29</li></ul>",          "furigana": "<ruby>打<rt>ぶ</rt></ruby>つ",          "furigana-plain": "打[ぶ]つ",          "glossary": "<div style=\"text-align: left;\"><i>(vt, Test Dictionary 2)</i> <ul><li>butsu definition 3</li><li>butsu definition 4</li></ul></div>", @@ -559,7 +559,7 @@          "dictionary": "Test Dictionary 2",          "document-title": "title",          "expression": "打", -        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 1</li><li>Test Dictionary 2: 4</li></ul>", +        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 1</li><li>Test Dictionary 2: four</li><li>Test Dictionary 2: five (5)</li><li>Test Dictionary 2: 8</li><li>Test Dictionary 2: fourteen</li><li>Test Dictionary 2: twenty (20)</li><li>Test Dictionary 2: 26</li></ul>",          "furigana": "<ruby>打<rt>だ</rt></ruby>",          "furigana-plain": "打[だ]",          "glossary": "<div style=\"text-align: left;\"><i>(n, Test Dictionary 2)</i> <ul><li>da definition 1</li><li>da definition 2</li></ul></div>", @@ -589,7 +589,7 @@          "dictionary": "Test Dictionary 2",          "document-title": "title",          "expression": "打", -        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 1</li><li>Test Dictionary 2: 5</li></ul>", +        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 1</li><li>Test Dictionary 2: four</li><li>Test Dictionary 2: five (5)</li><li>Test Dictionary 2: 9</li><li>Test Dictionary 2: fifteen</li><li>Test Dictionary 2: twenty-one (21)</li><li>Test Dictionary 2: 27</li></ul>",          "furigana": "<ruby>打<rt>ダース</rt></ruby>",          "furigana-plain": "打[ダース]",          "glossary": "<div style=\"text-align: left;\"><i>(abbr, n, Test Dictionary 2)</i> <ul><li>daasu definition 1</li><li>daasu definition 2</li></ul></div>", @@ -659,7 +659,7 @@          "dictionary": "Test Dictionary 2",          "document-title": "title",          "expression": "打", -        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 1</li><li>Test Dictionary 2: 4</li></ul>", +        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 1</li><li>Test Dictionary 2: four</li><li>Test Dictionary 2: five (5)</li><li>Test Dictionary 2: 8</li><li>Test Dictionary 2: fourteen</li><li>Test Dictionary 2: twenty (20)</li><li>Test Dictionary 2: 26</li></ul>",          "furigana": "<ruby>打<rt>だ</rt></ruby>",          "furigana-plain": "打[だ]",          "glossary": "<div style=\"text-align: left;\"><i>(n, Test Dictionary 2)</i> <ul><li>da definition 1</li><li>da definition 2</li></ul></div>", @@ -694,7 +694,7 @@          "dictionary": "Test Dictionary 2",          "document-title": "title",          "expression": "打", -        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 1</li><li>Test Dictionary 2: 5</li></ul>", +        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 1</li><li>Test Dictionary 2: four</li><li>Test Dictionary 2: five (5)</li><li>Test Dictionary 2: 9</li><li>Test Dictionary 2: fifteen</li><li>Test Dictionary 2: twenty-one (21)</li><li>Test Dictionary 2: 27</li></ul>",          "furigana": "<ruby>打<rt>ダース</rt></ruby>",          "furigana-plain": "打[ダース]",          "glossary": "<div style=\"text-align: left;\"><i>(abbr, n, Test Dictionary 2)</i> <ul><li>daasu definition 1</li><li>daasu definition 2</li></ul></div>", @@ -729,7 +729,7 @@          "dictionary": "Test Dictionary 2",          "document-title": "title",          "expression": "打つ", -        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 2</li><li>Test Dictionary 2: 6</li></ul>", +        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 2</li><li>Test Dictionary 2: 6</li><li>Test Dictionary 2: 10</li><li>Test Dictionary 2: sixteen</li><li>Test Dictionary 2: twenty-two (22)</li><li>Test Dictionary 2: 28</li></ul>",          "furigana": "<ruby>打<rt>う</rt></ruby>つ",          "furigana-plain": "打[う]つ",          "glossary": "<div style=\"text-align: left;\"><i>(vt, Test Dictionary 2)</i> <ul><li>utsu definition 1</li><li>utsu definition 2</li></ul></div>", @@ -759,7 +759,7 @@          "dictionary": "Test Dictionary 2",          "document-title": "title",          "expression": "打つ", -        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 2</li><li>Test Dictionary 2: 6</li></ul>", +        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 2</li><li>Test Dictionary 2: 6</li><li>Test Dictionary 2: 10</li><li>Test Dictionary 2: 0</li><li>Test Dictionary 2: 22</li><li>Test Dictionary 2: 28</li></ul>",          "furigana": "<ruby>打<rt>う</rt></ruby>つ",          "furigana-plain": "打[う]つ",          "glossary": "<div style=\"text-align: left;\"><i>(vt, Test Dictionary 2)</i> <ul><li>utsu definition 3</li><li>utsu definition 4</li></ul></div>", @@ -794,7 +794,7 @@          "dictionary": "Test Dictionary 2",          "document-title": "title",          "expression": "打つ", -        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 2</li><li>Test Dictionary 2: 7</li></ul>", +        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 2</li><li>Test Dictionary 2: 6</li><li>Test Dictionary 2: 11</li><li>Test Dictionary 2: seventeen</li><li>Test Dictionary 2: twenty-three (23)</li><li>Test Dictionary 2: 29</li></ul>",          "furigana": "<ruby>打<rt>ぶ</rt></ruby>つ",          "furigana-plain": "打[ぶ]つ",          "glossary": "<div style=\"text-align: left;\"><i>(vt, Test Dictionary 2)</i> <ul><li>butsu definition 1</li><li>butsu definition 2</li></ul></div>", @@ -824,7 +824,7 @@          "dictionary": "Test Dictionary 2",          "document-title": "title",          "expression": "打つ", -        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 2</li><li>Test Dictionary 2: 7</li></ul>", +        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 2</li><li>Test Dictionary 2: 6</li><li>Test Dictionary 2: 11</li><li>Test Dictionary 2: 0</li><li>Test Dictionary 2: 23</li><li>Test Dictionary 2: 29</li></ul>",          "furigana": "<ruby>打<rt>ぶ</rt></ruby>つ",          "furigana-plain": "打[ぶ]つ",          "glossary": "<div style=\"text-align: left;\"><i>(vt, Test Dictionary 2)</i> <ul><li>butsu definition 3</li><li>butsu definition 4</li></ul></div>", @@ -859,7 +859,7 @@          "dictionary": "Test Dictionary 2",          "document-title": "title",          "expression": "打ち込む", -        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 3</li><li>Test Dictionary 2: 8</li></ul>", +        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 3</li><li>Test Dictionary 2: 7</li><li>Test Dictionary 2: 12</li><li>Test Dictionary 2: eighteen</li><li>Test Dictionary 2: twenty-four (24)</li><li>Test Dictionary 2: 30</li></ul>",          "furigana": "<ruby>打<rt>う</rt></ruby>ち<ruby>込<rt>こ</rt></ruby>む",          "furigana-plain": "打[う]ち 込[こ]む",          "glossary": "<div style=\"text-align: left;\"><i>(vt, Test Dictionary 2)</i> <ul><li>uchikomu definition 1</li><li>uchikomu definition 2</li></ul></div>", @@ -889,7 +889,7 @@          "dictionary": "Test Dictionary 2",          "document-title": "title",          "expression": "打ち込む", -        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 3</li><li>Test Dictionary 2: 8</li></ul>", +        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 3</li><li>Test Dictionary 2: 7</li><li>Test Dictionary 2: 12</li><li>Test Dictionary 2: 0</li><li>Test Dictionary 2: 24</li><li>Test Dictionary 2: 30</li></ul>",          "furigana": "<ruby>打<rt>う</rt></ruby>ち<ruby>込<rt>こ</rt></ruby>む",          "furigana-plain": "打[う]ち 込[こ]む",          "glossary": "<div style=\"text-align: left;\"><i>(vt, Test Dictionary 2)</i> <ul><li>uchikomu definition 3</li><li>uchikomu definition 4</li></ul></div>", @@ -919,7 +919,7 @@          "dictionary": "Test Dictionary 2",          "document-title": "title",          "expression": "打つ", -        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 2</li><li>Test Dictionary 2: 6</li></ul>", +        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 2</li><li>Test Dictionary 2: 6</li><li>Test Dictionary 2: 10</li><li>Test Dictionary 2: sixteen</li><li>Test Dictionary 2: twenty-two (22)</li><li>Test Dictionary 2: 28</li></ul>",          "furigana": "<ruby>打<rt>う</rt></ruby>つ",          "furigana-plain": "打[う]つ",          "glossary": "<div style=\"text-align: left;\"><i>(vt, Test Dictionary 2)</i> <ul><li>utsu definition 1</li><li>utsu definition 2</li></ul></div>", @@ -949,7 +949,7 @@          "dictionary": "Test Dictionary 2",          "document-title": "title",          "expression": "打つ", -        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 2</li><li>Test Dictionary 2: 6</li></ul>", +        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 2</li><li>Test Dictionary 2: 6</li><li>Test Dictionary 2: 10</li><li>Test Dictionary 2: 0</li><li>Test Dictionary 2: 22</li><li>Test Dictionary 2: 28</li></ul>",          "furigana": "<ruby>打<rt>う</rt></ruby>つ",          "furigana-plain": "打[う]つ",          "glossary": "<div style=\"text-align: left;\"><i>(vt, Test Dictionary 2)</i> <ul><li>utsu definition 3</li><li>utsu definition 4</li></ul></div>", @@ -984,7 +984,7 @@          "dictionary": "Test Dictionary 2",          "document-title": "title",          "expression": "打ち込む", -        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 3</li><li>Test Dictionary 2: 9</li></ul>", +        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 3</li><li>Test Dictionary 2: 7</li><li>Test Dictionary 2: 13</li><li>Test Dictionary 2: nineteen</li><li>Test Dictionary 2: twenty-five (25)</li><li>Test Dictionary 2: 31</li></ul>",          "furigana": "<ruby>打<rt>ぶ</rt></ruby>ち<ruby>込<rt>こ</rt></ruby>む",          "furigana-plain": "打[ぶ]ち 込[こ]む",          "glossary": "<div style=\"text-align: left;\"><i>(vt, Test Dictionary 2)</i> <ul><li>buchikomu definition 1</li><li>buchikomu definition 2</li></ul></div>", @@ -1014,7 +1014,7 @@          "dictionary": "Test Dictionary 2",          "document-title": "title",          "expression": "打ち込む", -        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 3</li><li>Test Dictionary 2: 9</li></ul>", +        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 3</li><li>Test Dictionary 2: 7</li><li>Test Dictionary 2: 13</li><li>Test Dictionary 2: 0</li><li>Test Dictionary 2: 25</li><li>Test Dictionary 2: 31</li></ul>",          "furigana": "<ruby>打<rt>ぶ</rt></ruby>ち<ruby>込<rt>こ</rt></ruby>む",          "furigana-plain": "打[ぶ]ち 込[こ]む",          "glossary": "<div style=\"text-align: left;\"><i>(vt, Test Dictionary 2)</i> <ul><li>buchikomu definition 3</li><li>buchikomu definition 4</li></ul></div>", @@ -1044,7 +1044,7 @@          "dictionary": "Test Dictionary 2",          "document-title": "title",          "expression": "打つ", -        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 2</li><li>Test Dictionary 2: 7</li></ul>", +        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 2</li><li>Test Dictionary 2: 6</li><li>Test Dictionary 2: 11</li><li>Test Dictionary 2: seventeen</li><li>Test Dictionary 2: twenty-three (23)</li><li>Test Dictionary 2: 29</li></ul>",          "furigana": "<ruby>打<rt>ぶ</rt></ruby>つ",          "furigana-plain": "打[ぶ]つ",          "glossary": "<div style=\"text-align: left;\"><i>(vt, Test Dictionary 2)</i> <ul><li>butsu definition 1</li><li>butsu definition 2</li></ul></div>", @@ -1074,7 +1074,7 @@          "dictionary": "Test Dictionary 2",          "document-title": "title",          "expression": "打つ", -        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 2</li><li>Test Dictionary 2: 7</li></ul>", +        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 2</li><li>Test Dictionary 2: 6</li><li>Test Dictionary 2: 11</li><li>Test Dictionary 2: 0</li><li>Test Dictionary 2: 23</li><li>Test Dictionary 2: 29</li></ul>",          "furigana": "<ruby>打<rt>ぶ</rt></ruby>つ",          "furigana-plain": "打[ぶ]つ",          "glossary": "<div style=\"text-align: left;\"><i>(vt, Test Dictionary 2)</i> <ul><li>butsu definition 3</li><li>butsu definition 4</li></ul></div>", @@ -1156,7 +1156,7 @@          "dictionary": "Test Dictionary 2",          "document-title": "title",          "expression": "打ち込む", -        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 3</li><li>Test Dictionary 2: 8</li></ul>", +        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 3</li><li>Test Dictionary 2: 7</li><li>Test Dictionary 2: 12</li><li>Test Dictionary 2: eighteen</li><li>Test Dictionary 2: twenty-four (24)</li><li>Test Dictionary 2: 30</li></ul>",          "furigana": "<ruby>打<rt>う</rt></ruby>ち<ruby>込<rt>こ</rt></ruby>む",          "furigana-plain": "打[う]ち 込[こ]む",          "glossary": "<div style=\"text-align: left;\"><ol><li><i>(vt, Test Dictionary 2)</i> <ul><li>uchikomu definition 1</li><li>uchikomu definition 2</li></ul></li><li><i>(vt, Test Dictionary 2)</i> <ul><li>uchikomu definition 3</li><li>uchikomu definition 4</li></ul></li></ol></div>", @@ -1186,7 +1186,7 @@          "dictionary": "Test Dictionary 2",          "document-title": "title",          "expression": "打ち込む", -        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 3</li><li>Test Dictionary 2: 9</li></ul>", +        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 3</li><li>Test Dictionary 2: 7</li><li>Test Dictionary 2: 13</li><li>Test Dictionary 2: nineteen</li><li>Test Dictionary 2: twenty-five (25)</li><li>Test Dictionary 2: 31</li></ul>",          "furigana": "<ruby>打<rt>ぶ</rt></ruby>ち<ruby>込<rt>こ</rt></ruby>む",          "furigana-plain": "打[ぶ]ち 込[こ]む",          "glossary": "<div style=\"text-align: left;\"><ol><li><i>(vt, Test Dictionary 2)</i> <ul><li>buchikomu definition 1</li><li>buchikomu definition 2</li></ul></li><li><i>(vt, Test Dictionary 2)</i> <ul><li>buchikomu definition 3</li><li>buchikomu definition 4</li></ul></li></ol></div>", @@ -1216,7 +1216,7 @@          "dictionary": "Test Dictionary 2",          "document-title": "title",          "expression": "打つ", -        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 2</li><li>Test Dictionary 2: 6</li></ul>", +        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 2</li><li>Test Dictionary 2: 6</li><li>Test Dictionary 2: 10</li><li>Test Dictionary 2: sixteen</li><li>Test Dictionary 2: twenty-two (22)</li><li>Test Dictionary 2: 28</li></ul>",          "furigana": "<ruby>打<rt>う</rt></ruby>つ",          "furigana-plain": "打[う]つ",          "glossary": "<div style=\"text-align: left;\"><ol><li><i>(vt, Test Dictionary 2)</i> <ul><li>utsu definition 1</li><li>utsu definition 2</li></ul></li><li><i>(vt, Test Dictionary 2)</i> <ul><li>utsu definition 3</li><li>utsu definition 4</li></ul></li></ol></div>", @@ -1246,7 +1246,7 @@          "dictionary": "Test Dictionary 2",          "document-title": "title",          "expression": "打つ", -        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 2</li><li>Test Dictionary 2: 7</li></ul>", +        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 2</li><li>Test Dictionary 2: 6</li><li>Test Dictionary 2: 11</li><li>Test Dictionary 2: seventeen</li><li>Test Dictionary 2: twenty-three (23)</li><li>Test Dictionary 2: 29</li></ul>",          "furigana": "<ruby>打<rt>ぶ</rt></ruby>つ",          "furigana-plain": "打[ぶ]つ",          "glossary": "<div style=\"text-align: left;\"><ol><li><i>(vt, Test Dictionary 2)</i> <ul><li>butsu definition 1</li><li>butsu definition 2</li></ul></li><li><i>(vt, Test Dictionary 2)</i> <ul><li>butsu definition 3</li><li>butsu definition 4</li></ul></li></ol></div>", @@ -1276,7 +1276,7 @@          "dictionary": "Test Dictionary 2",          "document-title": "title",          "expression": "打", -        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 1</li><li>Test Dictionary 2: 4</li></ul>", +        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 1</li><li>Test Dictionary 2: four</li><li>Test Dictionary 2: five (5)</li><li>Test Dictionary 2: 8</li><li>Test Dictionary 2: fourteen</li><li>Test Dictionary 2: twenty (20)</li><li>Test Dictionary 2: 26</li></ul>",          "furigana": "<ruby>打<rt>だ</rt></ruby>",          "furigana-plain": "打[だ]",          "glossary": "<div style=\"text-align: left;\"><i>(n, Test Dictionary 2)</i> <ul><li>da definition 1</li><li>da definition 2</li></ul></div>", @@ -1306,7 +1306,7 @@          "dictionary": "Test Dictionary 2",          "document-title": "title",          "expression": "打", -        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 1</li><li>Test Dictionary 2: 5</li></ul>", +        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 1</li><li>Test Dictionary 2: four</li><li>Test Dictionary 2: five (5)</li><li>Test Dictionary 2: 9</li><li>Test Dictionary 2: fifteen</li><li>Test Dictionary 2: twenty-one (21)</li><li>Test Dictionary 2: 27</li></ul>",          "furigana": "<ruby>打<rt>ダース</rt></ruby>",          "furigana-plain": "打[ダース]",          "glossary": "<div style=\"text-align: left;\"><i>(abbr, n, Test Dictionary 2)</i> <ul><li>daasu definition 1</li><li>daasu definition 2</li></ul></div>", @@ -1341,7 +1341,7 @@          "dictionary": "Test Dictionary 2",          "document-title": "title",          "expression": "打ち込む", -        "frequencies": "<ul style=\"text-align: left;\"><li>(<ruby>打<rt>う</rt></ruby>ち<ruby>込<rt>こ</rt></ruby>む) Test Dictionary 2: 3</li><li>(<ruby>打<rt>う</rt></ruby>ち<ruby>込<rt>こ</rt></ruby>む) Test Dictionary 2: 8</li><li>(<ruby>打<rt>ぶ</rt></ruby>ち<ruby>込<rt>こ</rt></ruby>む) Test Dictionary 2: 3</li><li>(<ruby>打<rt>ぶ</rt></ruby>ち<ruby>込<rt>こ</rt></ruby>む) Test Dictionary 2: 9</li></ul>", +        "frequencies": "<ul style=\"text-align: left;\"><li>(<ruby>打<rt>う</rt></ruby>ち<ruby>込<rt>こ</rt></ruby>む) Test Dictionary 2: 3</li><li>(<ruby>打<rt>う</rt></ruby>ち<ruby>込<rt>こ</rt></ruby>む) Test Dictionary 2: 7</li><li>(<ruby>打<rt>う</rt></ruby>ち<ruby>込<rt>こ</rt></ruby>む) Test Dictionary 2: 12</li><li>(<ruby>打<rt>う</rt></ruby>ち<ruby>込<rt>こ</rt></ruby>む) Test Dictionary 2: eighteen</li><li>(<ruby>打<rt>う</rt></ruby>ち<ruby>込<rt>こ</rt></ruby>む) Test Dictionary 2: twenty-four (24)</li><li>(<ruby>打<rt>う</rt></ruby>ち<ruby>込<rt>こ</rt></ruby>む) Test Dictionary 2: 30</li><li>(<ruby>打<rt>ぶ</rt></ruby>ち<ruby>込<rt>こ</rt></ruby>む) Test Dictionary 2: 3</li><li>(<ruby>打<rt>ぶ</rt></ruby>ち<ruby>込<rt>こ</rt></ruby>む) Test Dictionary 2: 7</li><li>(<ruby>打<rt>ぶ</rt></ruby>ち<ruby>込<rt>こ</rt></ruby>む) Test Dictionary 2: 13</li><li>(<ruby>打<rt>ぶ</rt></ruby>ち<ruby>込<rt>こ</rt></ruby>む) Test Dictionary 2: nineteen</li><li>(<ruby>打<rt>ぶ</rt></ruby>ち<ruby>込<rt>こ</rt></ruby>む) Test Dictionary 2: twenty-five (25)</li><li>(<ruby>打<rt>ぶ</rt></ruby>ち<ruby>込<rt>こ</rt></ruby>む) Test Dictionary 2: 31</li></ul>",          "furigana": "<span class=\"expression-normal\"><ruby>打<rt>う</rt></ruby>ち<ruby>込<rt>こ</rt></ruby>む</span>、<span class=\"expression-normal\"><ruby>打<rt>ぶ</rt></ruby>ち<ruby>込<rt>こ</rt></ruby>む</span>",          "furigana-plain": "<span class=\"expression-normal\">打[う]ち 込[こ]む</span>、<span class=\"expression-normal\">打[ぶ]ち 込[こ]む</span>",          "glossary": "<div style=\"text-align: left;\"><ol><li><i>(vt, Test Dictionary 2)</i> (うちこむ only) <ul><li>uchikomu definition 1</li><li>uchikomu definition 2</li></ul></li><li><i>(vt, Test Dictionary 2)</i> (ぶちこむ only) <ul><li>buchikomu definition 1</li><li>buchikomu definition 2</li></ul></li><li><i>(vt, Test Dictionary 2)</i> (うちこむ only) <ul><li>uchikomu definition 3</li><li>uchikomu definition 4</li></ul></li><li><i>(vt, Test Dictionary 2)</i> (ぶちこむ only) <ul><li>buchikomu definition 3</li><li>buchikomu definition 4</li></ul></li></ol></div>", @@ -1371,7 +1371,7 @@          "dictionary": "Test Dictionary 2",          "document-title": "title",          "expression": "打つ", -        "frequencies": "<ul style=\"text-align: left;\"><li>(<ruby>打<rt>う</rt></ruby>つ) Test Dictionary 2: 2</li><li>(<ruby>打<rt>う</rt></ruby>つ) Test Dictionary 2: 6</li><li>(<ruby>打<rt>ぶ</rt></ruby>つ) Test Dictionary 2: 2</li><li>(<ruby>打<rt>ぶ</rt></ruby>つ) Test Dictionary 2: 7</li></ul>", +        "frequencies": "<ul style=\"text-align: left;\"><li>(<ruby>打<rt>う</rt></ruby>つ) Test Dictionary 2: 2</li><li>(<ruby>打<rt>う</rt></ruby>つ) Test Dictionary 2: 6</li><li>(<ruby>打<rt>う</rt></ruby>つ) Test Dictionary 2: 10</li><li>(<ruby>打<rt>う</rt></ruby>つ) Test Dictionary 2: sixteen</li><li>(<ruby>打<rt>う</rt></ruby>つ) Test Dictionary 2: twenty-two (22)</li><li>(<ruby>打<rt>う</rt></ruby>つ) Test Dictionary 2: 28</li><li>(<ruby>打<rt>ぶ</rt></ruby>つ) Test Dictionary 2: 2</li><li>(<ruby>打<rt>ぶ</rt></ruby>つ) Test Dictionary 2: 6</li><li>(<ruby>打<rt>ぶ</rt></ruby>つ) Test Dictionary 2: 11</li><li>(<ruby>打<rt>ぶ</rt></ruby>つ) Test Dictionary 2: seventeen</li><li>(<ruby>打<rt>ぶ</rt></ruby>つ) Test Dictionary 2: twenty-three (23)</li><li>(<ruby>打<rt>ぶ</rt></ruby>つ) Test Dictionary 2: 29</li></ul>",          "furigana": "<span class=\"expression-normal\"><ruby>打<rt>う</rt></ruby>つ</span>、<span class=\"expression-normal\"><ruby>打<rt>ぶ</rt></ruby>つ</span>",          "furigana-plain": "<span class=\"expression-normal\">打[う]つ</span>、<span class=\"expression-normal\">打[ぶ]つ</span>",          "glossary": "<div style=\"text-align: left;\"><ol><li><i>(vt, Test Dictionary 2)</i> (うつ only) <ul><li>utsu definition 1</li><li>utsu definition 2</li></ul></li><li><i>(vt, Test Dictionary 2)</i> (ぶつ only) <ul><li>butsu definition 1</li><li>butsu definition 2</li></ul></li><li><i>(vt, Test Dictionary 2)</i> (うつ only) <ul><li>utsu definition 3</li><li>utsu definition 4</li></ul></li><li><i>(vt, Test Dictionary 2)</i> (ぶつ only) <ul><li>butsu definition 3</li><li>butsu definition 4</li></ul></li></ol></div>", @@ -1401,7 +1401,7 @@          "dictionary": "Test Dictionary 2",          "document-title": "title",          "expression": "打", -        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 1</li><li>Test Dictionary 2: 4</li></ul>", +        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 1</li><li>Test Dictionary 2: four</li><li>Test Dictionary 2: five (5)</li><li>Test Dictionary 2: 8</li><li>Test Dictionary 2: fourteen</li><li>Test Dictionary 2: twenty (20)</li><li>Test Dictionary 2: 26</li></ul>",          "furigana": "<span class=\"expression-normal\"><ruby>打<rt>だ</rt></ruby></span>",          "furigana-plain": "<span class=\"expression-normal\">打[だ]</span>",          "glossary": "<div style=\"text-align: left;\"><i>(n, Test Dictionary 2)</i> <ul><li>da definition 1</li><li>da definition 2</li></ul></div>", @@ -1431,7 +1431,7 @@          "dictionary": "Test Dictionary 2",          "document-title": "title",          "expression": "打", -        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 1</li><li>Test Dictionary 2: 5</li></ul>", +        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 1</li><li>Test Dictionary 2: four</li><li>Test Dictionary 2: five (5)</li><li>Test Dictionary 2: 9</li><li>Test Dictionary 2: fifteen</li><li>Test Dictionary 2: twenty-one (21)</li><li>Test Dictionary 2: 27</li></ul>",          "furigana": "<span class=\"expression-normal\"><ruby>打<rt>ダース</rt></ruby></span>",          "furigana-plain": "<span class=\"expression-normal\">打[ダース]</span>",          "glossary": "<div style=\"text-align: left;\"><i>(abbr, n, Test Dictionary 2)</i> <ul><li>daasu definition 1</li><li>daasu definition 2</li></ul></div>", @@ -1466,7 +1466,7 @@          "dictionary": "Test Dictionary 2",          "document-title": "title",          "expression": "打ち込む", -        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 3</li><li>Test Dictionary 2: 8</li></ul>", +        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 3</li><li>Test Dictionary 2: 7</li><li>Test Dictionary 2: 12</li><li>Test Dictionary 2: eighteen</li><li>Test Dictionary 2: twenty-four (24)</li><li>Test Dictionary 2: 30</li></ul>",          "furigana": "<ruby>打<rt>う</rt></ruby>ち<ruby>込<rt>こ</rt></ruby>む",          "furigana-plain": "打[う]ち 込[こ]む",          "glossary": "<div style=\"text-align: left;\"><i>(vt, Test Dictionary 2)</i> <ul><li>uchikomu definition 1</li><li>uchikomu definition 2</li></ul></div>", @@ -1496,7 +1496,7 @@          "dictionary": "Test Dictionary 2",          "document-title": "title",          "expression": "打ち込む", -        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 3</li><li>Test Dictionary 2: 9</li></ul>", +        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 3</li><li>Test Dictionary 2: 7</li><li>Test Dictionary 2: 13</li><li>Test Dictionary 2: nineteen</li><li>Test Dictionary 2: twenty-five (25)</li><li>Test Dictionary 2: 31</li></ul>",          "furigana": "<ruby>打<rt>ぶ</rt></ruby>ち<ruby>込<rt>こ</rt></ruby>む",          "furigana-plain": "打[ぶ]ち 込[こ]む",          "glossary": "<div style=\"text-align: left;\"><i>(vt, Test Dictionary 2)</i> <ul><li>buchikomu definition 1</li><li>buchikomu definition 2</li></ul></div>", @@ -1526,7 +1526,7 @@          "dictionary": "Test Dictionary 2",          "document-title": "title",          "expression": "打ち込む", -        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 3</li><li>Test Dictionary 2: 8</li></ul>", +        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 3</li><li>Test Dictionary 2: 7</li><li>Test Dictionary 2: 12</li><li>Test Dictionary 2: 0</li><li>Test Dictionary 2: 24</li><li>Test Dictionary 2: 30</li></ul>",          "furigana": "<ruby>打<rt>う</rt></ruby>ち<ruby>込<rt>こ</rt></ruby>む",          "furigana-plain": "打[う]ち 込[こ]む",          "glossary": "<div style=\"text-align: left;\"><i>(vt, Test Dictionary 2)</i> <ul><li>uchikomu definition 3</li><li>uchikomu definition 4</li></ul></div>", @@ -1556,7 +1556,7 @@          "dictionary": "Test Dictionary 2",          "document-title": "title",          "expression": "打ち込む", -        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 3</li><li>Test Dictionary 2: 9</li></ul>", +        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 3</li><li>Test Dictionary 2: 7</li><li>Test Dictionary 2: 13</li><li>Test Dictionary 2: 0</li><li>Test Dictionary 2: 25</li><li>Test Dictionary 2: 31</li></ul>",          "furigana": "<ruby>打<rt>ぶ</rt></ruby>ち<ruby>込<rt>こ</rt></ruby>む",          "furigana-plain": "打[ぶ]ち 込[こ]む",          "glossary": "<div style=\"text-align: left;\"><i>(vt, Test Dictionary 2)</i> <ul><li>buchikomu definition 3</li><li>buchikomu definition 4</li></ul></div>", @@ -1586,7 +1586,7 @@          "dictionary": "Test Dictionary 2",          "document-title": "title",          "expression": "打つ", -        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 2</li><li>Test Dictionary 2: 6</li></ul>", +        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 2</li><li>Test Dictionary 2: 6</li><li>Test Dictionary 2: 10</li><li>Test Dictionary 2: sixteen</li><li>Test Dictionary 2: twenty-two (22)</li><li>Test Dictionary 2: 28</li></ul>",          "furigana": "<ruby>打<rt>う</rt></ruby>つ",          "furigana-plain": "打[う]つ",          "glossary": "<div style=\"text-align: left;\"><i>(vt, Test Dictionary 2)</i> <ul><li>utsu definition 1</li><li>utsu definition 2</li></ul></div>", @@ -1616,7 +1616,7 @@          "dictionary": "Test Dictionary 2",          "document-title": "title",          "expression": "打つ", -        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 2</li><li>Test Dictionary 2: 7</li></ul>", +        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 2</li><li>Test Dictionary 2: 6</li><li>Test Dictionary 2: 11</li><li>Test Dictionary 2: seventeen</li><li>Test Dictionary 2: twenty-three (23)</li><li>Test Dictionary 2: 29</li></ul>",          "furigana": "<ruby>打<rt>ぶ</rt></ruby>つ",          "furigana-plain": "打[ぶ]つ",          "glossary": "<div style=\"text-align: left;\"><i>(vt, Test Dictionary 2)</i> <ul><li>butsu definition 1</li><li>butsu definition 2</li></ul></div>", @@ -1646,7 +1646,7 @@          "dictionary": "Test Dictionary 2",          "document-title": "title",          "expression": "打つ", -        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 2</li><li>Test Dictionary 2: 6</li></ul>", +        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 2</li><li>Test Dictionary 2: 6</li><li>Test Dictionary 2: 10</li><li>Test Dictionary 2: 0</li><li>Test Dictionary 2: 22</li><li>Test Dictionary 2: 28</li></ul>",          "furigana": "<ruby>打<rt>う</rt></ruby>つ",          "furigana-plain": "打[う]つ",          "glossary": "<div style=\"text-align: left;\"><i>(vt, Test Dictionary 2)</i> <ul><li>utsu definition 3</li><li>utsu definition 4</li></ul></div>", @@ -1676,7 +1676,7 @@          "dictionary": "Test Dictionary 2",          "document-title": "title",          "expression": "打つ", -        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 2</li><li>Test Dictionary 2: 7</li></ul>", +        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 2</li><li>Test Dictionary 2: 6</li><li>Test Dictionary 2: 11</li><li>Test Dictionary 2: 0</li><li>Test Dictionary 2: 23</li><li>Test Dictionary 2: 29</li></ul>",          "furigana": "<ruby>打<rt>ぶ</rt></ruby>つ",          "furigana-plain": "打[ぶ]つ",          "glossary": "<div style=\"text-align: left;\"><i>(vt, Test Dictionary 2)</i> <ul><li>butsu definition 3</li><li>butsu definition 4</li></ul></div>", @@ -1706,7 +1706,7 @@          "dictionary": "Test Dictionary 2",          "document-title": "title",          "expression": "打", -        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 1</li><li>Test Dictionary 2: 4</li></ul>", +        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 1</li><li>Test Dictionary 2: four</li><li>Test Dictionary 2: five (5)</li><li>Test Dictionary 2: 8</li><li>Test Dictionary 2: fourteen</li><li>Test Dictionary 2: twenty (20)</li><li>Test Dictionary 2: 26</li></ul>",          "furigana": "<ruby>打<rt>だ</rt></ruby>",          "furigana-plain": "打[だ]",          "glossary": "<div style=\"text-align: left;\"><i>(n, Test Dictionary 2)</i> <ul><li>da definition 1</li><li>da definition 2</li></ul></div>", @@ -1736,7 +1736,7 @@          "dictionary": "Test Dictionary 2",          "document-title": "title",          "expression": "打", -        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 1</li><li>Test Dictionary 2: 5</li></ul>", +        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 1</li><li>Test Dictionary 2: four</li><li>Test Dictionary 2: five (5)</li><li>Test Dictionary 2: 9</li><li>Test Dictionary 2: fifteen</li><li>Test Dictionary 2: twenty-one (21)</li><li>Test Dictionary 2: 27</li></ul>",          "furigana": "<ruby>打<rt>ダース</rt></ruby>",          "furigana-plain": "打[ダース]",          "glossary": "<div style=\"text-align: left;\"><i>(abbr, n, Test Dictionary 2)</i> <ul><li>daasu definition 1</li><li>daasu definition 2</li></ul></div>", @@ -1771,7 +1771,7 @@          "dictionary": "Test Dictionary 2",          "document-title": "title",          "expression": "打ち込む", -        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 3</li><li>Test Dictionary 2: 8</li></ul>", +        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 3</li><li>Test Dictionary 2: 7</li><li>Test Dictionary 2: 12</li><li>Test Dictionary 2: eighteen</li><li>Test Dictionary 2: twenty-four (24)</li><li>Test Dictionary 2: 30</li></ul>",          "furigana": "<ruby>打<rt>う</rt></ruby>ち<ruby>込<rt>こ</rt></ruby>む",          "furigana-plain": "打[う]ち 込[こ]む",          "glossary": "<div style=\"text-align: left;\"><i>(vt, Test Dictionary 2)</i> <ul><li>uchikomu definition 1</li><li>uchikomu definition 2</li></ul></div>", @@ -1801,7 +1801,7 @@          "dictionary": "Test Dictionary 2",          "document-title": "title",          "expression": "打ち込む", -        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 3</li><li>Test Dictionary 2: 9</li></ul>", +        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 3</li><li>Test Dictionary 2: 7</li><li>Test Dictionary 2: 13</li><li>Test Dictionary 2: nineteen</li><li>Test Dictionary 2: twenty-five (25)</li><li>Test Dictionary 2: 31</li></ul>",          "furigana": "<ruby>打<rt>ぶ</rt></ruby>ち<ruby>込<rt>こ</rt></ruby>む",          "furigana-plain": "打[ぶ]ち 込[こ]む",          "glossary": "<div style=\"text-align: left;\"><i>(vt, Test Dictionary 2)</i> <ul><li>buchikomu definition 1</li><li>buchikomu definition 2</li></ul></div>", @@ -1831,7 +1831,7 @@          "dictionary": "Test Dictionary 2",          "document-title": "title",          "expression": "打ち込む", -        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 3</li><li>Test Dictionary 2: 8</li></ul>", +        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 3</li><li>Test Dictionary 2: 7</li><li>Test Dictionary 2: 12</li><li>Test Dictionary 2: 0</li><li>Test Dictionary 2: 24</li><li>Test Dictionary 2: 30</li></ul>",          "furigana": "<ruby>打<rt>う</rt></ruby>ち<ruby>込<rt>こ</rt></ruby>む",          "furigana-plain": "打[う]ち 込[こ]む",          "glossary": "<div style=\"text-align: left;\"><i>(vt, Test Dictionary 2)</i> <ul><li>uchikomu definition 3</li><li>uchikomu definition 4</li></ul></div>", @@ -1861,7 +1861,7 @@          "dictionary": "Test Dictionary 2",          "document-title": "title",          "expression": "打ち込む", -        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 3</li><li>Test Dictionary 2: 9</li></ul>", +        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 3</li><li>Test Dictionary 2: 7</li><li>Test Dictionary 2: 13</li><li>Test Dictionary 2: 0</li><li>Test Dictionary 2: 25</li><li>Test Dictionary 2: 31</li></ul>",          "furigana": "<ruby>打<rt>ぶ</rt></ruby>ち<ruby>込<rt>こ</rt></ruby>む",          "furigana-plain": "打[ぶ]ち 込[こ]む",          "glossary": "<div style=\"text-align: left;\"><i>(vt, Test Dictionary 2)</i> <ul><li>buchikomu definition 3</li><li>buchikomu definition 4</li></ul></div>", @@ -1891,7 +1891,7 @@          "dictionary": "Test Dictionary 2",          "document-title": "title",          "expression": "打つ", -        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 2</li><li>Test Dictionary 2: 6</li></ul>", +        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 2</li><li>Test Dictionary 2: 6</li><li>Test Dictionary 2: 10</li><li>Test Dictionary 2: sixteen</li><li>Test Dictionary 2: twenty-two (22)</li><li>Test Dictionary 2: 28</li></ul>",          "furigana": "<ruby>打<rt>う</rt></ruby>つ",          "furigana-plain": "打[う]つ",          "glossary": "<div style=\"text-align: left;\"><i>(vt, Test Dictionary 2)</i> <ul><li>utsu definition 1</li><li>utsu definition 2</li></ul></div>", @@ -1921,7 +1921,7 @@          "dictionary": "Test Dictionary 2",          "document-title": "title",          "expression": "打つ", -        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 2</li><li>Test Dictionary 2: 7</li></ul>", +        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 2</li><li>Test Dictionary 2: 6</li><li>Test Dictionary 2: 11</li><li>Test Dictionary 2: seventeen</li><li>Test Dictionary 2: twenty-three (23)</li><li>Test Dictionary 2: 29</li></ul>",          "furigana": "<ruby>打<rt>ぶ</rt></ruby>つ",          "furigana-plain": "打[ぶ]つ",          "glossary": "<div style=\"text-align: left;\"><i>(vt, Test Dictionary 2)</i> <ul><li>butsu definition 1</li><li>butsu definition 2</li></ul></div>", @@ -1951,7 +1951,7 @@          "dictionary": "Test Dictionary 2",          "document-title": "title",          "expression": "打つ", -        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 2</li><li>Test Dictionary 2: 6</li></ul>", +        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 2</li><li>Test Dictionary 2: 6</li><li>Test Dictionary 2: 10</li><li>Test Dictionary 2: 0</li><li>Test Dictionary 2: 22</li><li>Test Dictionary 2: 28</li></ul>",          "furigana": "<ruby>打<rt>う</rt></ruby>つ",          "furigana-plain": "打[う]つ",          "glossary": "<div style=\"text-align: left;\"><i>(vt, Test Dictionary 2)</i> <ul><li>utsu definition 3</li><li>utsu definition 4</li></ul></div>", @@ -1981,7 +1981,7 @@          "dictionary": "Test Dictionary 2",          "document-title": "title",          "expression": "打つ", -        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 2</li><li>Test Dictionary 2: 7</li></ul>", +        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 2</li><li>Test Dictionary 2: 6</li><li>Test Dictionary 2: 11</li><li>Test Dictionary 2: 0</li><li>Test Dictionary 2: 23</li><li>Test Dictionary 2: 29</li></ul>",          "furigana": "<ruby>打<rt>ぶ</rt></ruby>つ",          "furigana-plain": "打[ぶ]つ",          "glossary": "<div style=\"text-align: left;\"><i>(vt, Test Dictionary 2)</i> <ul><li>butsu definition 3</li><li>butsu definition 4</li></ul></div>", @@ -2011,7 +2011,7 @@          "dictionary": "Test Dictionary 2",          "document-title": "title",          "expression": "打", -        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 1</li><li>Test Dictionary 2: 4</li></ul>", +        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 1</li><li>Test Dictionary 2: four</li><li>Test Dictionary 2: five (5)</li><li>Test Dictionary 2: 8</li><li>Test Dictionary 2: fourteen</li><li>Test Dictionary 2: twenty (20)</li><li>Test Dictionary 2: 26</li></ul>",          "furigana": "<ruby>打<rt>だ</rt></ruby>",          "furigana-plain": "打[だ]",          "glossary": "<div style=\"text-align: left;\"><i>(n, Test Dictionary 2)</i> <ul><li>da definition 1</li><li>da definition 2</li></ul></div>", @@ -2041,7 +2041,7 @@          "dictionary": "Test Dictionary 2",          "document-title": "title",          "expression": "打", -        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 1</li><li>Test Dictionary 2: 5</li></ul>", +        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 1</li><li>Test Dictionary 2: four</li><li>Test Dictionary 2: five (5)</li><li>Test Dictionary 2: 9</li><li>Test Dictionary 2: fifteen</li><li>Test Dictionary 2: twenty-one (21)</li><li>Test Dictionary 2: 27</li></ul>",          "furigana": "<ruby>打<rt>ダース</rt></ruby>",          "furigana-plain": "打[ダース]",          "glossary": "<div style=\"text-align: left;\"><i>(abbr, n, Test Dictionary 2)</i> <ul><li>daasu definition 1</li><li>daasu definition 2</li></ul></div>", @@ -2076,7 +2076,7 @@          "dictionary": "Test Dictionary 2",          "document-title": "title",          "expression": "打ち込む", -        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 3</li><li>Test Dictionary 2: 8</li></ul>", +        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 3</li><li>Test Dictionary 2: 7</li><li>Test Dictionary 2: 12</li><li>Test Dictionary 2: eighteen</li><li>Test Dictionary 2: twenty-four (24)</li><li>Test Dictionary 2: 30</li></ul>",          "furigana": "<ruby>打<rt>う</rt></ruby>ち<ruby>込<rt>こ</rt></ruby>む",          "furigana-plain": "打[う]ち 込[こ]む",          "glossary": "<div style=\"text-align: left;\"><i>(vt, Test Dictionary 2)</i> <ul><li>uchikomu definition 1</li><li>uchikomu definition 2</li></ul></div>", @@ -2106,7 +2106,7 @@          "dictionary": "Test Dictionary 2",          "document-title": "title",          "expression": "打ち込む", -        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 3</li><li>Test Dictionary 2: 9</li></ul>", +        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 3</li><li>Test Dictionary 2: 7</li><li>Test Dictionary 2: 13</li><li>Test Dictionary 2: nineteen</li><li>Test Dictionary 2: twenty-five (25)</li><li>Test Dictionary 2: 31</li></ul>",          "furigana": "<ruby>打<rt>ぶ</rt></ruby>ち<ruby>込<rt>こ</rt></ruby>む",          "furigana-plain": "打[ぶ]ち 込[こ]む",          "glossary": "<div style=\"text-align: left;\"><i>(vt, Test Dictionary 2)</i> <ul><li>buchikomu definition 1</li><li>buchikomu definition 2</li></ul></div>", @@ -2136,7 +2136,7 @@          "dictionary": "Test Dictionary 2",          "document-title": "title",          "expression": "打ち込む", -        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 3</li><li>Test Dictionary 2: 8</li></ul>", +        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 3</li><li>Test Dictionary 2: 7</li><li>Test Dictionary 2: 12</li><li>Test Dictionary 2: 0</li><li>Test Dictionary 2: 24</li><li>Test Dictionary 2: 30</li></ul>",          "furigana": "<ruby>打<rt>う</rt></ruby>ち<ruby>込<rt>こ</rt></ruby>む",          "furigana-plain": "打[う]ち 込[こ]む",          "glossary": "<div style=\"text-align: left;\"><i>(vt, Test Dictionary 2)</i> <ul><li>uchikomu definition 3</li><li>uchikomu definition 4</li></ul></div>", @@ -2166,7 +2166,7 @@          "dictionary": "Test Dictionary 2",          "document-title": "title",          "expression": "打ち込む", -        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 3</li><li>Test Dictionary 2: 9</li></ul>", +        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 3</li><li>Test Dictionary 2: 7</li><li>Test Dictionary 2: 13</li><li>Test Dictionary 2: 0</li><li>Test Dictionary 2: 25</li><li>Test Dictionary 2: 31</li></ul>",          "furigana": "<ruby>打<rt>ぶ</rt></ruby>ち<ruby>込<rt>こ</rt></ruby>む",          "furigana-plain": "打[ぶ]ち 込[こ]む",          "glossary": "<div style=\"text-align: left;\"><i>(vt, Test Dictionary 2)</i> <ul><li>buchikomu definition 3</li><li>buchikomu definition 4</li></ul></div>", @@ -2196,7 +2196,7 @@          "dictionary": "Test Dictionary 2",          "document-title": "title",          "expression": "打つ", -        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 2</li><li>Test Dictionary 2: 6</li></ul>", +        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 2</li><li>Test Dictionary 2: 6</li><li>Test Dictionary 2: 10</li><li>Test Dictionary 2: sixteen</li><li>Test Dictionary 2: twenty-two (22)</li><li>Test Dictionary 2: 28</li></ul>",          "furigana": "<ruby>打<rt>う</rt></ruby>つ",          "furigana-plain": "打[う]つ",          "glossary": "<div style=\"text-align: left;\"><i>(vt, Test Dictionary 2)</i> <ul><li>utsu definition 1</li><li>utsu definition 2</li></ul></div>", @@ -2226,7 +2226,7 @@          "dictionary": "Test Dictionary 2",          "document-title": "title",          "expression": "打つ", -        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 2</li><li>Test Dictionary 2: 7</li></ul>", +        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 2</li><li>Test Dictionary 2: 6</li><li>Test Dictionary 2: 11</li><li>Test Dictionary 2: seventeen</li><li>Test Dictionary 2: twenty-three (23)</li><li>Test Dictionary 2: 29</li></ul>",          "furigana": "<ruby>打<rt>ぶ</rt></ruby>つ",          "furigana-plain": "打[ぶ]つ",          "glossary": "<div style=\"text-align: left;\"><i>(vt, Test Dictionary 2)</i> <ul><li>butsu definition 1</li><li>butsu definition 2</li></ul></div>", @@ -2256,7 +2256,7 @@          "dictionary": "Test Dictionary 2",          "document-title": "title",          "expression": "打つ", -        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 2</li><li>Test Dictionary 2: 6</li></ul>", +        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 2</li><li>Test Dictionary 2: 6</li><li>Test Dictionary 2: 10</li><li>Test Dictionary 2: 0</li><li>Test Dictionary 2: 22</li><li>Test Dictionary 2: 28</li></ul>",          "furigana": "<ruby>打<rt>う</rt></ruby>つ",          "furigana-plain": "打[う]つ",          "glossary": "<div style=\"text-align: left;\"><i>(vt, Test Dictionary 2)</i> <ul><li>utsu definition 3</li><li>utsu definition 4</li></ul></div>", @@ -2286,7 +2286,7 @@          "dictionary": "Test Dictionary 2",          "document-title": "title",          "expression": "打つ", -        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 2</li><li>Test Dictionary 2: 7</li></ul>", +        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 2</li><li>Test Dictionary 2: 6</li><li>Test Dictionary 2: 11</li><li>Test Dictionary 2: 0</li><li>Test Dictionary 2: 23</li><li>Test Dictionary 2: 29</li></ul>",          "furigana": "<ruby>打<rt>ぶ</rt></ruby>つ",          "furigana-plain": "打[ぶ]つ",          "glossary": "<div style=\"text-align: left;\"><i>(vt, Test Dictionary 2)</i> <ul><li>butsu definition 3</li><li>butsu definition 4</li></ul></div>", @@ -2316,7 +2316,7 @@          "dictionary": "Test Dictionary 2",          "document-title": "title",          "expression": "打", -        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 1</li><li>Test Dictionary 2: 4</li></ul>", +        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 1</li><li>Test Dictionary 2: four</li><li>Test Dictionary 2: five (5)</li><li>Test Dictionary 2: 8</li><li>Test Dictionary 2: fourteen</li><li>Test Dictionary 2: twenty (20)</li><li>Test Dictionary 2: 26</li></ul>",          "furigana": "<ruby>打<rt>だ</rt></ruby>",          "furigana-plain": "打[だ]",          "glossary": "<div style=\"text-align: left;\"><i>(n, Test Dictionary 2)</i> <ul><li>da definition 1</li><li>da definition 2</li></ul></div>", @@ -2346,7 +2346,7 @@          "dictionary": "Test Dictionary 2",          "document-title": "title",          "expression": "打", -        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 1</li><li>Test Dictionary 2: 5</li></ul>", +        "frequencies": "<ul style=\"text-align: left;\"><li>Test Dictionary 2: 1</li><li>Test Dictionary 2: four</li><li>Test Dictionary 2: five (5)</li><li>Test Dictionary 2: 9</li><li>Test Dictionary 2: fifteen</li><li>Test Dictionary 2: twenty-one (21)</li><li>Test Dictionary 2: 27</li></ul>",          "furigana": "<ruby>打<rt>ダース</rt></ruby>",          "furigana-plain": "打[ダース]",          "glossary": "<div style=\"text-align: left;\"><i>(abbr, n, Test Dictionary 2)</i> <ul><li>daasu definition 1</li><li>daasu definition 2</li></ul></div>", @@ -2486,7 +2486,7 @@          "dictionary": "Test Dictionary 2",          "document-title": "title",          "expression": "打ち込む", -        "frequencies": "<ul style=\"text-align: left;\"><li>(<ruby>打<rt>う</rt></ruby>ち<ruby>込<rt>こ</rt></ruby>む) Test Dictionary 2: 3</li><li>(<ruby>打<rt>う</rt></ruby>ち<ruby>込<rt>こ</rt></ruby>む) Test Dictionary 2: 8</li><li>(<ruby>打<rt>ぶ</rt></ruby>ち<ruby>込<rt>こ</rt></ruby>む) Test Dictionary 2: 3</li><li>(<ruby>打<rt>ぶ</rt></ruby>ち<ruby>込<rt>こ</rt></ruby>む) Test Dictionary 2: 9</li></ul>", +        "frequencies": "<ul style=\"text-align: left;\"><li>(<ruby>打<rt>う</rt></ruby>ち<ruby>込<rt>こ</rt></ruby>む) Test Dictionary 2: 3</li><li>(<ruby>打<rt>う</rt></ruby>ち<ruby>込<rt>こ</rt></ruby>む) Test Dictionary 2: 7</li><li>(<ruby>打<rt>う</rt></ruby>ち<ruby>込<rt>こ</rt></ruby>む) Test Dictionary 2: 12</li><li>(<ruby>打<rt>う</rt></ruby>ち<ruby>込<rt>こ</rt></ruby>む) Test Dictionary 2: eighteen</li><li>(<ruby>打<rt>う</rt></ruby>ち<ruby>込<rt>こ</rt></ruby>む) Test Dictionary 2: twenty-four (24)</li><li>(<ruby>打<rt>う</rt></ruby>ち<ruby>込<rt>こ</rt></ruby>む) Test Dictionary 2: 30</li><li>(<ruby>打<rt>ぶ</rt></ruby>ち<ruby>込<rt>こ</rt></ruby>む) Test Dictionary 2: 3</li><li>(<ruby>打<rt>ぶ</rt></ruby>ち<ruby>込<rt>こ</rt></ruby>む) Test Dictionary 2: 7</li><li>(<ruby>打<rt>ぶ</rt></ruby>ち<ruby>込<rt>こ</rt></ruby>む) Test Dictionary 2: 13</li><li>(<ruby>打<rt>ぶ</rt></ruby>ち<ruby>込<rt>こ</rt></ruby>む) Test Dictionary 2: nineteen</li><li>(<ruby>打<rt>ぶ</rt></ruby>ち<ruby>込<rt>こ</rt></ruby>む) Test Dictionary 2: twenty-five (25)</li><li>(<ruby>打<rt>ぶ</rt></ruby>ち<ruby>込<rt>こ</rt></ruby>む) Test Dictionary 2: 31</li></ul>",          "furigana": "<span class=\"expression-normal\"><ruby>打<rt>う</rt></ruby>ち<ruby>込<rt>こ</rt></ruby>む</span>、<span class=\"expression-normal\"><ruby>打<rt>ぶ</rt></ruby>ち<ruby>込<rt>こ</rt></ruby>む</span>",          "furigana-plain": "<span class=\"expression-normal\">打[う]ち 込[こ]む</span>、<span class=\"expression-normal\">打[ぶ]ち 込[こ]む</span>",          "glossary": "<div style=\"text-align: left;\"><ol><li><i>(vt, Test Dictionary 2)</i> (うちこむ only) <ul><li>uchikomu definition 1</li><li>uchikomu definition 2</li></ul></li><li><i>(vt, Test Dictionary 2)</i> (ぶちこむ only) <ul><li>buchikomu definition 1</li><li>buchikomu definition 2</li></ul></li><li><i>(vt, Test Dictionary 2)</i> (うちこむ only) <ul><li>uchikomu definition 3</li><li>uchikomu definition 4</li></ul></li><li><i>(vt, Test Dictionary 2)</i> (ぶちこむ only) <ul><li>buchikomu definition 3</li><li>buchikomu definition 4</li></ul></li></ol></div>", @@ -2516,7 +2516,7 @@          "dictionary": "Test Dictionary 2",          "document-title": "title",          "expression": "打つ", -        "frequencies": "<ul style=\"text-align: left;\"><li>(<ruby>打<rt>う</rt></ruby>つ) Test Dictionary 2: 2</li><li>(<ruby>打<rt>う</rt></ruby>つ) Test Dictionary 2: 6</li><li>(<ruby>打<rt>ぶ</rt></ruby>つ) Test Dictionary 2: 2</li><li>(<ruby>打<rt>ぶ</rt></ruby>つ) Test Dictionary 2: 7</li></ul>", +        "frequencies": "<ul style=\"text-align: left;\"><li>(<ruby>打<rt>う</rt></ruby>つ) Test Dictionary 2: 2</li><li>(<ruby>打<rt>う</rt></ruby>つ) Test Dictionary 2: 6</li><li>(<ruby>打<rt>う</rt></ruby>つ) Test Dictionary 2: 10</li><li>(<ruby>打<rt>う</rt></ruby>つ) Test Dictionary 2: sixteen</li><li>(<ruby>打<rt>う</rt></ruby>つ) Test Dictionary 2: twenty-two (22)</li><li>(<ruby>打<rt>う</rt></ruby>つ) Test Dictionary 2: 28</li><li>(<ruby>打<rt>ぶ</rt></ruby>つ) Test Dictionary 2: 2</li><li>(<ruby>打<rt>ぶ</rt></ruby>つ) Test Dictionary 2: 6</li><li>(<ruby>打<rt>ぶ</rt></ruby>つ) Test Dictionary 2: 11</li><li>(<ruby>打<rt>ぶ</rt></ruby>つ) Test Dictionary 2: seventeen</li><li>(<ruby>打<rt>ぶ</rt></ruby>つ) Test Dictionary 2: twenty-three (23)</li><li>(<ruby>打<rt>ぶ</rt></ruby>つ) Test Dictionary 2: 29</li></ul>",          "furigana": "<span class=\"expression-normal\"><ruby>打<rt>う</rt></ruby>つ</span>、<span class=\"expression-normal\"><ruby>打<rt>ぶ</rt></ruby>つ</span>",          "furigana-plain": "<span class=\"expression-normal\">打[う]つ</span>、<span class=\"expression-normal\">打[ぶ]つ</span>",          "glossary": "<div style=\"text-align: left;\"><ol><li><i>(vt, Test Dictionary 2)</i> (うつ only) <ul><li>utsu definition 1</li><li>utsu definition 2</li></ul></li><li><i>(vt, Test Dictionary 2)</i> (ぶつ only) <ul><li>butsu definition 1</li><li>butsu definition 2</li></ul></li><li><i>(vt, Test Dictionary 2)</i> (うつ only) <ul><li>utsu definition 3</li><li>utsu definition 4</li></ul></li><li><i>(vt, Test Dictionary 2)</i> (ぶつ only) <ul><li>butsu definition 3</li><li>butsu definition 4</li></ul></li></ol></div>", diff --git a/test/data/dictionaries/valid-dictionary1/kanji_meta_bank_1.json b/test/data/dictionaries/valid-dictionary1/kanji_meta_bank_1.json index 73e75b8a..56b91713 100644 --- a/test/data/dictionaries/valid-dictionary1/kanji_meta_bank_1.json +++ b/test/data/dictionaries/valid-dictionary1/kanji_meta_bank_1.json @@ -1,4 +1,8 @@  [      ["打", "freq", 1], -    ["込", "freq", 2] +    ["込", "freq", 2], +    ["打", "freq", "three"], +    ["込", "freq", "four (4)"], +    ["打", "freq", {"value": 5}], +    ["込", "freq", {"value": 6, "displayValue": "six"}]  ]
\ No newline at end of file diff --git a/test/data/dictionaries/valid-dictionary1/term_meta_bank_1.json b/test/data/dictionaries/valid-dictionary1/term_meta_bank_1.json index 877e5107..069ea16b 100644 --- a/test/data/dictionaries/valid-dictionary1/term_meta_bank_1.json +++ b/test/data/dictionaries/valid-dictionary1/term_meta_bank_1.json @@ -2,12 +2,39 @@      ["打", "freq", 1],      ["打つ", "freq", 2],      ["打ち込む", "freq", 3], -    ["打", "freq", {"reading": "だ", "frequency": 4}], -    ["打", "freq", {"reading": "ダース", "frequency": 5}], -    ["打つ", "freq", {"reading": "うつ", "frequency": 6}], -    ["打つ", "freq", {"reading": "ぶつ", "frequency": 7}], -    ["打ち込む", "freq", {"reading": "うちこむ", "frequency": 8}], -    ["打ち込む", "freq", {"reading": "ぶちこむ", "frequency": 9}], +    ["打", "freq", "four"], +    ["打", "freq", "five (5)"], +    ["打つ", "freq", {"value": 6}], +    ["打ち込む", "freq", {"value": 7, "displayValue": "seven"}], + +    ["打", "freq", {"reading": "だ", "frequency": 8}], +    ["打", "freq", {"reading": "ダース", "frequency": 9}], +    ["打つ", "freq", {"reading": "うつ", "frequency": 10}], +    ["打つ", "freq", {"reading": "ぶつ", "frequency": 11}], +    ["打ち込む", "freq", {"reading": "うちこむ", "frequency": 12}], +    ["打ち込む", "freq", {"reading": "ぶちこむ", "frequency": 13}], + +    ["打", "freq", {"reading": "だ", "frequency": "fourteen"}], +    ["打", "freq", {"reading": "ダース", "frequency": "fifteen"}], +    ["打つ", "freq", {"reading": "うつ", "frequency": "sixteen"}], +    ["打つ", "freq", {"reading": "ぶつ", "frequency": "seventeen"}], +    ["打ち込む", "freq", {"reading": "うちこむ", "frequency": "eighteen"}], +    ["打ち込む", "freq", {"reading": "ぶちこむ", "frequency": "nineteen"}], + +    ["打", "freq", {"reading": "だ", "frequency": "twenty (20)"}], +    ["打", "freq", {"reading": "ダース", "frequency": "twenty-one (21)"}], +    ["打つ", "freq", {"reading": "うつ", "frequency": "twenty-two (22)"}], +    ["打つ", "freq", {"reading": "ぶつ", "frequency": "twenty-three (23)"}], +    ["打ち込む", "freq", {"reading": "うちこむ", "frequency": "twenty-four (24)"}], +    ["打ち込む", "freq", {"reading": "ぶちこむ", "frequency": "twenty-five (25)"}], + +    ["打", "freq", {"reading": "だ", "frequency": {"value": 26}}], +    ["打", "freq", {"reading": "ダース", "frequency": {"value": 27, "displayValue": "twenty-seven"}}], +    ["打つ", "freq", {"reading": "うつ", "frequency": {"value": 28}}], +    ["打つ", "freq", {"reading": "ぶつ", "frequency": {"value": 29, "displayValue": "twenty-nine"}}], +    ["打ち込む", "freq", {"reading": "うちこむ", "frequency": {"value": 30}}], +    ["打ち込む", "freq", {"reading": "ぶちこむ", "frequency": {"value": 31, "displayValue": "thirty-one"}}], +      [          "打ち込む",          "pitch", diff --git a/test/data/translator-test-results-note-data1.json b/test/data/translator-test-results-note-data1.json index ee610265..dfb9cde8 100644 --- a/test/data/translator-test-results-note-data1.json +++ b/test/data/translator-test-results-note-data1.json @@ -109,6 +109,26 @@                },                "character": "打",                "frequency": 1 +            }, +            { +              "index": 1, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "character": "打", +              "frequency": "three" +            }, +            { +              "index": 2, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "character": "打", +              "frequency": 5              }            ],            "url": "url:", @@ -251,6 +271,26 @@                },                "character": "込",                "frequency": 2 +            }, +            { +              "index": 1, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "character": "込", +              "frequency": "four (4)" +            }, +            { +              "index": 2, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "character": "込", +              "frequency": 6              }            ],            "url": "url:", @@ -353,8 +393,73 @@                    },                    "expression": "打",                    "reading": "だ", +                  "hasReading": false, +                  "frequency": "four" +                }, +                { +                  "index": 2, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打", +                  "reading": "だ", +                  "hasReading": false, +                  "frequency": "five (5)" +                }, +                { +                  "index": 3, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打", +                  "reading": "だ",                    "hasReading": true, -                  "frequency": 4 +                  "frequency": 8 +                }, +                { +                  "index": 4, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打", +                  "reading": "だ", +                  "hasReading": true, +                  "frequency": "fourteen" +                }, +                { +                  "index": 5, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打", +                  "reading": "だ", +                  "hasReading": true, +                  "frequency": "twenty (20)" +                }, +                { +                  "index": 6, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打", +                  "reading": "だ", +                  "hasReading": true, +                  "frequency": 26                  }                ],                "pitches": [], @@ -420,8 +525,73 @@                },                "expression": "打",                "reading": "だ", +              "hasReading": false, +              "frequency": "four" +            }, +            { +              "index": 2, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打", +              "reading": "だ", +              "hasReading": false, +              "frequency": "five (5)" +            }, +            { +              "index": 3, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打", +              "reading": "だ", +              "hasReading": true, +              "frequency": 8 +            }, +            { +              "index": 4, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打", +              "reading": "だ", +              "hasReading": true, +              "frequency": "fourteen" +            }, +            { +              "index": 5, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打", +              "reading": "だ", +              "hasReading": true, +              "frequency": "twenty (20)" +            }, +            { +              "index": 6, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打", +              "reading": "だ",                "hasReading": true, -              "frequency": 4 +              "frequency": 26              }            ],            "pitches": [], @@ -527,8 +697,73 @@                    },                    "expression": "打",                    "reading": "ダース", +                  "hasReading": false, +                  "frequency": "four" +                }, +                { +                  "index": 2, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打", +                  "reading": "ダース", +                  "hasReading": false, +                  "frequency": "five (5)" +                }, +                { +                  "index": 3, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打", +                  "reading": "ダース",                    "hasReading": true, -                  "frequency": 5 +                  "frequency": 9 +                }, +                { +                  "index": 4, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打", +                  "reading": "ダース", +                  "hasReading": true, +                  "frequency": "fifteen" +                }, +                { +                  "index": 5, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打", +                  "reading": "ダース", +                  "hasReading": true, +                  "frequency": "twenty-one (21)" +                }, +                { +                  "index": 6, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打", +                  "reading": "ダース", +                  "hasReading": true, +                  "frequency": 27                  }                ],                "pitches": [], @@ -603,8 +838,73 @@                },                "expression": "打",                "reading": "ダース", +              "hasReading": false, +              "frequency": "four" +            }, +            { +              "index": 2, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打", +              "reading": "ダース", +              "hasReading": false, +              "frequency": "five (5)" +            }, +            { +              "index": 3, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打", +              "reading": "ダース",                "hasReading": true, -              "frequency": 5 +              "frequency": 9 +            }, +            { +              "index": 4, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打", +              "reading": "ダース", +              "hasReading": true, +              "frequency": "fifteen" +            }, +            { +              "index": 5, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打", +              "reading": "ダース", +              "hasReading": true, +              "frequency": "twenty-one (21)" +            }, +            { +              "index": 6, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打", +              "reading": "ダース", +              "hasReading": true, +              "frequency": 27              }            ],            "pitches": [], @@ -724,8 +1024,60 @@                    },                    "expression": "打つ",                    "reading": "うつ", -                  "hasReading": true, +                  "hasReading": false,                    "frequency": 6 +                }, +                { +                  "index": 2, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "うつ", +                  "hasReading": true, +                  "frequency": 10 +                }, +                { +                  "index": 3, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "うつ", +                  "hasReading": true, +                  "frequency": "sixteen" +                }, +                { +                  "index": 4, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "うつ", +                  "hasReading": true, +                  "frequency": "twenty-two (22)" +                }, +                { +                  "index": 5, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "うつ", +                  "hasReading": true, +                  "frequency": 28                  }                ],                "pitches": [], @@ -804,8 +1156,60 @@                },                "expression": "打つ",                "reading": "うつ", -              "hasReading": true, +              "hasReading": false,                "frequency": 6 +            }, +            { +              "index": 2, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "うつ", +              "hasReading": true, +              "frequency": 10 +            }, +            { +              "index": 3, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "うつ", +              "hasReading": true, +              "frequency": "sixteen" +            }, +            { +              "index": 4, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "うつ", +              "hasReading": true, +              "frequency": "twenty-two (22)" +            }, +            { +              "index": 5, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "うつ", +              "hasReading": true, +              "frequency": 28              }            ],            "pitches": [], @@ -924,8 +1328,60 @@                    },                    "expression": "打つ",                    "reading": "ぶつ", +                  "hasReading": false, +                  "frequency": 6 +                }, +                { +                  "index": 2, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "ぶつ",                    "hasReading": true, -                  "frequency": 7 +                  "frequency": 11 +                }, +                { +                  "index": 3, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "ぶつ", +                  "hasReading": true, +                  "frequency": "seventeen" +                }, +                { +                  "index": 4, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "ぶつ", +                  "hasReading": true, +                  "frequency": "twenty-three (23)" +                }, +                { +                  "index": 5, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "ぶつ", +                  "hasReading": true, +                  "frequency": 29                  }                ],                "pitches": [], @@ -1004,8 +1460,60 @@                },                "expression": "打つ",                "reading": "ぶつ", +              "hasReading": false, +              "frequency": 6 +            }, +            { +              "index": 2, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "ぶつ",                "hasReading": true, -              "frequency": 7 +              "frequency": 11 +            }, +            { +              "index": 3, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "ぶつ", +              "hasReading": true, +              "frequency": "seventeen" +            }, +            { +              "index": 4, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "ぶつ", +              "hasReading": true, +              "frequency": "twenty-three (23)" +            }, +            { +              "index": 5, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "ぶつ", +              "hasReading": true, +              "frequency": 29              }            ],            "pitches": [], @@ -1124,8 +1632,60 @@                    },                    "expression": "打つ",                    "reading": "うつ", -                  "hasReading": true, +                  "hasReading": false,                    "frequency": 6 +                }, +                { +                  "index": 2, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "うつ", +                  "hasReading": true, +                  "frequency": 10 +                }, +                { +                  "index": 3, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "うつ", +                  "hasReading": true, +                  "frequency": 0 +                }, +                { +                  "index": 4, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "うつ", +                  "hasReading": true, +                  "frequency": 22 +                }, +                { +                  "index": 5, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "うつ", +                  "hasReading": true, +                  "frequency": 28                  }                ],                "pitches": [], @@ -1204,8 +1764,60 @@                },                "expression": "打つ",                "reading": "うつ", -              "hasReading": true, +              "hasReading": false,                "frequency": 6 +            }, +            { +              "index": 2, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "うつ", +              "hasReading": true, +              "frequency": 10 +            }, +            { +              "index": 3, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "うつ", +              "hasReading": true, +              "frequency": 0 +            }, +            { +              "index": 4, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "うつ", +              "hasReading": true, +              "frequency": 22 +            }, +            { +              "index": 5, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "うつ", +              "hasReading": true, +              "frequency": 28              }            ],            "pitches": [], @@ -1324,8 +1936,60 @@                    },                    "expression": "打つ",                    "reading": "ぶつ", +                  "hasReading": false, +                  "frequency": 6 +                }, +                { +                  "index": 2, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "ぶつ",                    "hasReading": true, -                  "frequency": 7 +                  "frequency": 11 +                }, +                { +                  "index": 3, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "ぶつ", +                  "hasReading": true, +                  "frequency": 0 +                }, +                { +                  "index": 4, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "ぶつ", +                  "hasReading": true, +                  "frequency": 23 +                }, +                { +                  "index": 5, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "ぶつ", +                  "hasReading": true, +                  "frequency": 29                  }                ],                "pitches": [], @@ -1404,8 +2068,60 @@                },                "expression": "打つ",                "reading": "ぶつ", +              "hasReading": false, +              "frequency": 6 +            }, +            { +              "index": 2, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "ぶつ",                "hasReading": true, -              "frequency": 7 +              "frequency": 11 +            }, +            { +              "index": 3, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "ぶつ", +              "hasReading": true, +              "frequency": 0 +            }, +            { +              "index": 4, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "ぶつ", +              "hasReading": true, +              "frequency": 23 +            }, +            { +              "index": 5, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "ぶつ", +              "hasReading": true, +              "frequency": 29              }            ],            "pitches": [], @@ -1515,8 +2231,73 @@                    },                    "expression": "打",                    "reading": "だ", +                  "hasReading": false, +                  "frequency": "four" +                }, +                { +                  "index": 2, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打", +                  "reading": "だ", +                  "hasReading": false, +                  "frequency": "five (5)" +                }, +                { +                  "index": 3, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打", +                  "reading": "だ",                    "hasReading": true, -                  "frequency": 4 +                  "frequency": 8 +                }, +                { +                  "index": 4, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打", +                  "reading": "だ", +                  "hasReading": true, +                  "frequency": "fourteen" +                }, +                { +                  "index": 5, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打", +                  "reading": "だ", +                  "hasReading": true, +                  "frequency": "twenty (20)" +                }, +                { +                  "index": 6, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打", +                  "reading": "だ", +                  "hasReading": true, +                  "frequency": 26                  }                ],                "pitches": [], @@ -1582,8 +2363,73 @@                },                "expression": "打",                "reading": "だ", +              "hasReading": false, +              "frequency": "four" +            }, +            { +              "index": 2, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打", +              "reading": "だ", +              "hasReading": false, +              "frequency": "five (5)" +            }, +            { +              "index": 3, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打", +              "reading": "だ",                "hasReading": true, -              "frequency": 4 +              "frequency": 8 +            }, +            { +              "index": 4, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打", +              "reading": "だ", +              "hasReading": true, +              "frequency": "fourteen" +            }, +            { +              "index": 5, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打", +              "reading": "だ", +              "hasReading": true, +              "frequency": "twenty (20)" +            }, +            { +              "index": 6, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打", +              "reading": "だ", +              "hasReading": true, +              "frequency": 26              }            ],            "pitches": [], @@ -1689,8 +2535,73 @@                    },                    "expression": "打",                    "reading": "ダース", +                  "hasReading": false, +                  "frequency": "four" +                }, +                { +                  "index": 2, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打", +                  "reading": "ダース", +                  "hasReading": false, +                  "frequency": "five (5)" +                }, +                { +                  "index": 3, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打", +                  "reading": "ダース",                    "hasReading": true, -                  "frequency": 5 +                  "frequency": 9 +                }, +                { +                  "index": 4, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打", +                  "reading": "ダース", +                  "hasReading": true, +                  "frequency": "fifteen" +                }, +                { +                  "index": 5, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打", +                  "reading": "ダース", +                  "hasReading": true, +                  "frequency": "twenty-one (21)" +                }, +                { +                  "index": 6, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打", +                  "reading": "ダース", +                  "hasReading": true, +                  "frequency": 27                  }                ],                "pitches": [], @@ -1765,8 +2676,73 @@                },                "expression": "打",                "reading": "ダース", +              "hasReading": false, +              "frequency": "four" +            }, +            { +              "index": 2, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打", +              "reading": "ダース", +              "hasReading": false, +              "frequency": "five (5)" +            }, +            { +              "index": 3, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打", +              "reading": "ダース",                "hasReading": true, -              "frequency": 5 +              "frequency": 9 +            }, +            { +              "index": 4, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打", +              "reading": "ダース", +              "hasReading": true, +              "frequency": "fifteen" +            }, +            { +              "index": 5, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打", +              "reading": "ダース", +              "hasReading": true, +              "frequency": "twenty-one (21)" +            }, +            { +              "index": 6, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打", +              "reading": "ダース", +              "hasReading": true, +              "frequency": 27              }            ],            "pitches": [], @@ -1886,8 +2862,60 @@                    },                    "expression": "打ち込む",                    "reading": "うちこむ", +                  "hasReading": false, +                  "frequency": 7 +                }, +                { +                  "index": 2, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打ち込む", +                  "reading": "うちこむ",                    "hasReading": true, -                  "frequency": 8 +                  "frequency": 12 +                }, +                { +                  "index": 3, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打ち込む", +                  "reading": "うちこむ", +                  "hasReading": true, +                  "frequency": "eighteen" +                }, +                { +                  "index": 4, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打ち込む", +                  "reading": "うちこむ", +                  "hasReading": true, +                  "frequency": "twenty-four (24)" +                }, +                { +                  "index": 5, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打ち込む", +                  "reading": "うちこむ", +                  "hasReading": true, +                  "frequency": 30                  }                ],                "pitches": [ @@ -1996,8 +3024,60 @@                },                "expression": "打ち込む",                "reading": "うちこむ", +              "hasReading": false, +              "frequency": 7 +            }, +            { +              "index": 2, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打ち込む", +              "reading": "うちこむ",                "hasReading": true, -              "frequency": 8 +              "frequency": 12 +            }, +            { +              "index": 3, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打ち込む", +              "reading": "うちこむ", +              "hasReading": true, +              "frequency": "eighteen" +            }, +            { +              "index": 4, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打ち込む", +              "reading": "うちこむ", +              "hasReading": true, +              "frequency": "twenty-four (24)" +            }, +            { +              "index": 5, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打ち込む", +              "reading": "うちこむ", +              "hasReading": true, +              "frequency": 30              }            ],            "pitches": [ @@ -2176,8 +3256,60 @@                    },                    "expression": "打ち込む",                    "reading": "ぶちこむ", +                  "hasReading": false, +                  "frequency": 7 +                }, +                { +                  "index": 2, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打ち込む", +                  "reading": "ぶちこむ",                    "hasReading": true, -                  "frequency": 9 +                  "frequency": 13 +                }, +                { +                  "index": 3, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打ち込む", +                  "reading": "ぶちこむ", +                  "hasReading": true, +                  "frequency": "nineteen" +                }, +                { +                  "index": 4, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打ち込む", +                  "reading": "ぶちこむ", +                  "hasReading": true, +                  "frequency": "twenty-five (25)" +                }, +                { +                  "index": 5, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打ち込む", +                  "reading": "ぶちこむ", +                  "hasReading": true, +                  "frequency": 31                  }                ],                "pitches": [ @@ -2286,8 +3418,60 @@                },                "expression": "打ち込む",                "reading": "ぶちこむ", +              "hasReading": false, +              "frequency": 7 +            }, +            { +              "index": 2, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打ち込む", +              "reading": "ぶちこむ",                "hasReading": true, -              "frequency": 9 +              "frequency": 13 +            }, +            { +              "index": 3, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打ち込む", +              "reading": "ぶちこむ", +              "hasReading": true, +              "frequency": "nineteen" +            }, +            { +              "index": 4, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打ち込む", +              "reading": "ぶちこむ", +              "hasReading": true, +              "frequency": "twenty-five (25)" +            }, +            { +              "index": 5, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打ち込む", +              "reading": "ぶちこむ", +              "hasReading": true, +              "frequency": 31              }            ],            "pitches": [ @@ -2466,8 +3650,60 @@                    },                    "expression": "打ち込む",                    "reading": "うちこむ", +                  "hasReading": false, +                  "frequency": 7 +                }, +                { +                  "index": 2, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打ち込む", +                  "reading": "うちこむ",                    "hasReading": true, -                  "frequency": 8 +                  "frequency": 12 +                }, +                { +                  "index": 3, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打ち込む", +                  "reading": "うちこむ", +                  "hasReading": true, +                  "frequency": 0 +                }, +                { +                  "index": 4, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打ち込む", +                  "reading": "うちこむ", +                  "hasReading": true, +                  "frequency": 24 +                }, +                { +                  "index": 5, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打ち込む", +                  "reading": "うちこむ", +                  "hasReading": true, +                  "frequency": 30                  }                ],                "pitches": [ @@ -2576,8 +3812,60 @@                },                "expression": "打ち込む",                "reading": "うちこむ", +              "hasReading": false, +              "frequency": 7 +            }, +            { +              "index": 2, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打ち込む", +              "reading": "うちこむ",                "hasReading": true, -              "frequency": 8 +              "frequency": 12 +            }, +            { +              "index": 3, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打ち込む", +              "reading": "うちこむ", +              "hasReading": true, +              "frequency": 0 +            }, +            { +              "index": 4, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打ち込む", +              "reading": "うちこむ", +              "hasReading": true, +              "frequency": 24 +            }, +            { +              "index": 5, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打ち込む", +              "reading": "うちこむ", +              "hasReading": true, +              "frequency": 30              }            ],            "pitches": [ @@ -2756,8 +4044,60 @@                    },                    "expression": "打ち込む",                    "reading": "ぶちこむ", +                  "hasReading": false, +                  "frequency": 7 +                }, +                { +                  "index": 2, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打ち込む", +                  "reading": "ぶちこむ",                    "hasReading": true, -                  "frequency": 9 +                  "frequency": 13 +                }, +                { +                  "index": 3, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打ち込む", +                  "reading": "ぶちこむ", +                  "hasReading": true, +                  "frequency": 0 +                }, +                { +                  "index": 4, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打ち込む", +                  "reading": "ぶちこむ", +                  "hasReading": true, +                  "frequency": 25 +                }, +                { +                  "index": 5, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打ち込む", +                  "reading": "ぶちこむ", +                  "hasReading": true, +                  "frequency": 31                  }                ],                "pitches": [ @@ -2866,8 +4206,60 @@                },                "expression": "打ち込む",                "reading": "ぶちこむ", +              "hasReading": false, +              "frequency": 7 +            }, +            { +              "index": 2, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打ち込む", +              "reading": "ぶちこむ",                "hasReading": true, -              "frequency": 9 +              "frequency": 13 +            }, +            { +              "index": 3, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打ち込む", +              "reading": "ぶちこむ", +              "hasReading": true, +              "frequency": 0 +            }, +            { +              "index": 4, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打ち込む", +              "reading": "ぶちこむ", +              "hasReading": true, +              "frequency": 25 +            }, +            { +              "index": 5, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打ち込む", +              "reading": "ぶちこむ", +              "hasReading": true, +              "frequency": 31              }            ],            "pitches": [ @@ -3048,8 +4440,60 @@                    },                    "expression": "打つ",                    "reading": "うつ", -                  "hasReading": true, +                  "hasReading": false,                    "frequency": 6 +                }, +                { +                  "index": 2, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "うつ", +                  "hasReading": true, +                  "frequency": 10 +                }, +                { +                  "index": 3, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "うつ", +                  "hasReading": true, +                  "frequency": "sixteen" +                }, +                { +                  "index": 4, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "うつ", +                  "hasReading": true, +                  "frequency": "twenty-two (22)" +                }, +                { +                  "index": 5, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "うつ", +                  "hasReading": true, +                  "frequency": 28                  }                ],                "pitches": [], @@ -3128,8 +4572,60 @@                },                "expression": "打つ",                "reading": "うつ", -              "hasReading": true, +              "hasReading": false,                "frequency": 6 +            }, +            { +              "index": 2, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "うつ", +              "hasReading": true, +              "frequency": 10 +            }, +            { +              "index": 3, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "うつ", +              "hasReading": true, +              "frequency": "sixteen" +            }, +            { +              "index": 4, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "うつ", +              "hasReading": true, +              "frequency": "twenty-two (22)" +            }, +            { +              "index": 5, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "うつ", +              "hasReading": true, +              "frequency": 28              }            ],            "pitches": [], @@ -3250,8 +4746,60 @@                    },                    "expression": "打つ",                    "reading": "ぶつ", +                  "hasReading": false, +                  "frequency": 6 +                }, +                { +                  "index": 2, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "ぶつ",                    "hasReading": true, -                  "frequency": 7 +                  "frequency": 11 +                }, +                { +                  "index": 3, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "ぶつ", +                  "hasReading": true, +                  "frequency": "seventeen" +                }, +                { +                  "index": 4, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "ぶつ", +                  "hasReading": true, +                  "frequency": "twenty-three (23)" +                }, +                { +                  "index": 5, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "ぶつ", +                  "hasReading": true, +                  "frequency": 29                  }                ],                "pitches": [], @@ -3330,8 +4878,60 @@                },                "expression": "打つ",                "reading": "ぶつ", +              "hasReading": false, +              "frequency": 6 +            }, +            { +              "index": 2, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "ぶつ",                "hasReading": true, -              "frequency": 7 +              "frequency": 11 +            }, +            { +              "index": 3, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "ぶつ", +              "hasReading": true, +              "frequency": "seventeen" +            }, +            { +              "index": 4, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "ぶつ", +              "hasReading": true, +              "frequency": "twenty-three (23)" +            }, +            { +              "index": 5, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "ぶつ", +              "hasReading": true, +              "frequency": 29              }            ],            "pitches": [], @@ -3452,8 +5052,60 @@                    },                    "expression": "打つ",                    "reading": "うつ", -                  "hasReading": true, +                  "hasReading": false,                    "frequency": 6 +                }, +                { +                  "index": 2, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "うつ", +                  "hasReading": true, +                  "frequency": 10 +                }, +                { +                  "index": 3, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "うつ", +                  "hasReading": true, +                  "frequency": 0 +                }, +                { +                  "index": 4, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "うつ", +                  "hasReading": true, +                  "frequency": 22 +                }, +                { +                  "index": 5, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "うつ", +                  "hasReading": true, +                  "frequency": 28                  }                ],                "pitches": [], @@ -3532,8 +5184,60 @@                },                "expression": "打つ",                "reading": "うつ", -              "hasReading": true, +              "hasReading": false,                "frequency": 6 +            }, +            { +              "index": 2, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "うつ", +              "hasReading": true, +              "frequency": 10 +            }, +            { +              "index": 3, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "うつ", +              "hasReading": true, +              "frequency": 0 +            }, +            { +              "index": 4, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "うつ", +              "hasReading": true, +              "frequency": 22 +            }, +            { +              "index": 5, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "うつ", +              "hasReading": true, +              "frequency": 28              }            ],            "pitches": [], @@ -3654,8 +5358,60 @@                    },                    "expression": "打つ",                    "reading": "ぶつ", +                  "hasReading": false, +                  "frequency": 6 +                }, +                { +                  "index": 2, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "ぶつ",                    "hasReading": true, -                  "frequency": 7 +                  "frequency": 11 +                }, +                { +                  "index": 3, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "ぶつ", +                  "hasReading": true, +                  "frequency": 0 +                }, +                { +                  "index": 4, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "ぶつ", +                  "hasReading": true, +                  "frequency": 23 +                }, +                { +                  "index": 5, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "ぶつ", +                  "hasReading": true, +                  "frequency": 29                  }                ],                "pitches": [], @@ -3734,8 +5490,60 @@                },                "expression": "打つ",                "reading": "ぶつ", +              "hasReading": false, +              "frequency": 6 +            }, +            { +              "index": 2, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "ぶつ",                "hasReading": true, -              "frequency": 7 +              "frequency": 11 +            }, +            { +              "index": 3, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "ぶつ", +              "hasReading": true, +              "frequency": 0 +            }, +            { +              "index": 4, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "ぶつ", +              "hasReading": true, +              "frequency": 23 +            }, +            { +              "index": 5, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "ぶつ", +              "hasReading": true, +              "frequency": 29              }            ],            "pitches": [], @@ -3845,8 +5653,73 @@                    },                    "expression": "打",                    "reading": "だ", +                  "hasReading": false, +                  "frequency": "four" +                }, +                { +                  "index": 2, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打", +                  "reading": "だ", +                  "hasReading": false, +                  "frequency": "five (5)" +                }, +                { +                  "index": 3, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打", +                  "reading": "だ", +                  "hasReading": true, +                  "frequency": 8 +                }, +                { +                  "index": 4, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打", +                  "reading": "だ", +                  "hasReading": true, +                  "frequency": "fourteen" +                }, +                { +                  "index": 5, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打", +                  "reading": "だ", +                  "hasReading": true, +                  "frequency": "twenty (20)" +                }, +                { +                  "index": 6, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打", +                  "reading": "だ",                    "hasReading": true, -                  "frequency": 4 +                  "frequency": 26                  }                ],                "pitches": [], @@ -3912,8 +5785,73 @@                },                "expression": "打",                "reading": "だ", +              "hasReading": false, +              "frequency": "four" +            }, +            { +              "index": 2, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打", +              "reading": "だ", +              "hasReading": false, +              "frequency": "five (5)" +            }, +            { +              "index": 3, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打", +              "reading": "だ",                "hasReading": true, -              "frequency": 4 +              "frequency": 8 +            }, +            { +              "index": 4, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打", +              "reading": "だ", +              "hasReading": true, +              "frequency": "fourteen" +            }, +            { +              "index": 5, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打", +              "reading": "だ", +              "hasReading": true, +              "frequency": "twenty (20)" +            }, +            { +              "index": 6, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打", +              "reading": "だ", +              "hasReading": true, +              "frequency": 26              }            ],            "pitches": [], @@ -4019,8 +5957,73 @@                    },                    "expression": "打",                    "reading": "ダース", +                  "hasReading": false, +                  "frequency": "four" +                }, +                { +                  "index": 2, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打", +                  "reading": "ダース", +                  "hasReading": false, +                  "frequency": "five (5)" +                }, +                { +                  "index": 3, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打", +                  "reading": "ダース", +                  "hasReading": true, +                  "frequency": 9 +                }, +                { +                  "index": 4, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打", +                  "reading": "ダース", +                  "hasReading": true, +                  "frequency": "fifteen" +                }, +                { +                  "index": 5, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打", +                  "reading": "ダース", +                  "hasReading": true, +                  "frequency": "twenty-one (21)" +                }, +                { +                  "index": 6, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打", +                  "reading": "ダース",                    "hasReading": true, -                  "frequency": 5 +                  "frequency": 27                  }                ],                "pitches": [], @@ -4095,8 +6098,73 @@                },                "expression": "打",                "reading": "ダース", +              "hasReading": false, +              "frequency": "four" +            }, +            { +              "index": 2, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打", +              "reading": "ダース", +              "hasReading": false, +              "frequency": "five (5)" +            }, +            { +              "index": 3, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打", +              "reading": "ダース",                "hasReading": true, -              "frequency": 5 +              "frequency": 9 +            }, +            { +              "index": 4, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打", +              "reading": "ダース", +              "hasReading": true, +              "frequency": "fifteen" +            }, +            { +              "index": 5, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打", +              "reading": "ダース", +              "hasReading": true, +              "frequency": "twenty-one (21)" +            }, +            { +              "index": 6, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打", +              "reading": "ダース", +              "hasReading": true, +              "frequency": 27              }            ],            "pitches": [], @@ -4359,8 +6427,73 @@                    },                    "expression": "打",                    "reading": "だ", +                  "hasReading": false, +                  "frequency": "four" +                }, +                { +                  "index": 2, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打", +                  "reading": "だ", +                  "hasReading": false, +                  "frequency": "five (5)" +                }, +                { +                  "index": 3, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打", +                  "reading": "だ", +                  "hasReading": true, +                  "frequency": 8 +                }, +                { +                  "index": 4, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打", +                  "reading": "だ", +                  "hasReading": true, +                  "frequency": "fourteen" +                }, +                { +                  "index": 5, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打", +                  "reading": "だ", +                  "hasReading": true, +                  "frequency": "twenty (20)" +                }, +                { +                  "index": 6, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打", +                  "reading": "だ",                    "hasReading": true, -                  "frequency": 4 +                  "frequency": 26                  }                ],                "pitches": [], @@ -4426,8 +6559,73 @@                },                "expression": "打",                "reading": "だ", +              "hasReading": false, +              "frequency": "four" +            }, +            { +              "index": 2, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打", +              "reading": "だ", +              "hasReading": false, +              "frequency": "five (5)" +            }, +            { +              "index": 3, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打", +              "reading": "だ", +              "hasReading": true, +              "frequency": 8 +            }, +            { +              "index": 4, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打", +              "reading": "だ",                "hasReading": true, -              "frequency": 4 +              "frequency": "fourteen" +            }, +            { +              "index": 5, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打", +              "reading": "だ", +              "hasReading": true, +              "frequency": "twenty (20)" +            }, +            { +              "index": 6, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打", +              "reading": "だ", +              "hasReading": true, +              "frequency": 26              }            ],            "pitches": [], @@ -4538,8 +6736,73 @@                    },                    "expression": "打",                    "reading": "ダース", +                  "hasReading": false, +                  "frequency": "four" +                }, +                { +                  "index": 2, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打", +                  "reading": "ダース", +                  "hasReading": false, +                  "frequency": "five (5)" +                }, +                { +                  "index": 3, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打", +                  "reading": "ダース",                    "hasReading": true, -                  "frequency": 5 +                  "frequency": 9 +                }, +                { +                  "index": 4, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打", +                  "reading": "ダース", +                  "hasReading": true, +                  "frequency": "fifteen" +                }, +                { +                  "index": 5, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打", +                  "reading": "ダース", +                  "hasReading": true, +                  "frequency": "twenty-one (21)" +                }, +                { +                  "index": 6, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打", +                  "reading": "ダース", +                  "hasReading": true, +                  "frequency": 27                  }                ],                "pitches": [], @@ -4614,8 +6877,73 @@                },                "expression": "打",                "reading": "ダース", +              "hasReading": false, +              "frequency": "four" +            }, +            { +              "index": 2, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打", +              "reading": "ダース", +              "hasReading": false, +              "frequency": "five (5)" +            }, +            { +              "index": 3, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打", +              "reading": "ダース",                "hasReading": true, -              "frequency": 5 +              "frequency": 9 +            }, +            { +              "index": 4, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打", +              "reading": "ダース", +              "hasReading": true, +              "frequency": "fifteen" +            }, +            { +              "index": 5, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打", +              "reading": "ダース", +              "hasReading": true, +              "frequency": "twenty-one (21)" +            }, +            { +              "index": 6, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打", +              "reading": "ダース", +              "hasReading": true, +              "frequency": 27              }            ],            "pitches": [], @@ -4735,8 +7063,60 @@                    },                    "expression": "打つ",                    "reading": "うつ", -                  "hasReading": true, +                  "hasReading": false,                    "frequency": 6 +                }, +                { +                  "index": 2, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "うつ", +                  "hasReading": true, +                  "frequency": 10 +                }, +                { +                  "index": 3, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "うつ", +                  "hasReading": true, +                  "frequency": "sixteen" +                }, +                { +                  "index": 4, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "うつ", +                  "hasReading": true, +                  "frequency": "twenty-two (22)" +                }, +                { +                  "index": 5, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "うつ", +                  "hasReading": true, +                  "frequency": 28                  }                ],                "pitches": [], @@ -4815,8 +7195,60 @@                },                "expression": "打つ",                "reading": "うつ", -              "hasReading": true, +              "hasReading": false,                "frequency": 6 +            }, +            { +              "index": 2, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "うつ", +              "hasReading": true, +              "frequency": 10 +            }, +            { +              "index": 3, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "うつ", +              "hasReading": true, +              "frequency": "sixteen" +            }, +            { +              "index": 4, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "うつ", +              "hasReading": true, +              "frequency": "twenty-two (22)" +            }, +            { +              "index": 5, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "うつ", +              "hasReading": true, +              "frequency": 28              }            ],            "pitches": [], @@ -4935,8 +7367,60 @@                    },                    "expression": "打つ",                    "reading": "うつ", -                  "hasReading": true, +                  "hasReading": false,                    "frequency": 6 +                }, +                { +                  "index": 2, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "うつ", +                  "hasReading": true, +                  "frequency": 10 +                }, +                { +                  "index": 3, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "うつ", +                  "hasReading": true, +                  "frequency": 0 +                }, +                { +                  "index": 4, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "うつ", +                  "hasReading": true, +                  "frequency": 22 +                }, +                { +                  "index": 5, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "うつ", +                  "hasReading": true, +                  "frequency": 28                  }                ],                "pitches": [], @@ -5015,8 +7499,60 @@                },                "expression": "打つ",                "reading": "うつ", -              "hasReading": true, +              "hasReading": false,                "frequency": 6 +            }, +            { +              "index": 2, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "うつ", +              "hasReading": true, +              "frequency": 10 +            }, +            { +              "index": 3, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "うつ", +              "hasReading": true, +              "frequency": 0 +            }, +            { +              "index": 4, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "うつ", +              "hasReading": true, +              "frequency": 22 +            }, +            { +              "index": 5, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "うつ", +              "hasReading": true, +              "frequency": 28              }            ],            "pitches": [], @@ -5140,8 +7676,60 @@                    },                    "expression": "打つ",                    "reading": "ぶつ", +                  "hasReading": false, +                  "frequency": 6 +                }, +                { +                  "index": 2, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "ぶつ",                    "hasReading": true, -                  "frequency": 7 +                  "frequency": 11 +                }, +                { +                  "index": 3, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "ぶつ", +                  "hasReading": true, +                  "frequency": "seventeen" +                }, +                { +                  "index": 4, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "ぶつ", +                  "hasReading": true, +                  "frequency": "twenty-three (23)" +                }, +                { +                  "index": 5, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "ぶつ", +                  "hasReading": true, +                  "frequency": 29                  }                ],                "pitches": [], @@ -5220,8 +7808,60 @@                },                "expression": "打つ",                "reading": "ぶつ", +              "hasReading": false, +              "frequency": 6 +            }, +            { +              "index": 2, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "ぶつ",                "hasReading": true, -              "frequency": 7 +              "frequency": 11 +            }, +            { +              "index": 3, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "ぶつ", +              "hasReading": true, +              "frequency": "seventeen" +            }, +            { +              "index": 4, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "ぶつ", +              "hasReading": true, +              "frequency": "twenty-three (23)" +            }, +            { +              "index": 5, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "ぶつ", +              "hasReading": true, +              "frequency": 29              }            ],            "pitches": [], @@ -5340,8 +7980,60 @@                    },                    "expression": "打つ",                    "reading": "ぶつ", +                  "hasReading": false, +                  "frequency": 6 +                }, +                { +                  "index": 2, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "ぶつ",                    "hasReading": true, -                  "frequency": 7 +                  "frequency": 11 +                }, +                { +                  "index": 3, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "ぶつ", +                  "hasReading": true, +                  "frequency": 0 +                }, +                { +                  "index": 4, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "ぶつ", +                  "hasReading": true, +                  "frequency": 23 +                }, +                { +                  "index": 5, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "ぶつ", +                  "hasReading": true, +                  "frequency": 29                  }                ],                "pitches": [], @@ -5420,8 +8112,60 @@                },                "expression": "打つ",                "reading": "ぶつ", +              "hasReading": false, +              "frequency": 6 +            }, +            { +              "index": 2, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "ぶつ",                "hasReading": true, -              "frequency": 7 +              "frequency": 11 +            }, +            { +              "index": 3, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "ぶつ", +              "hasReading": true, +              "frequency": 0 +            }, +            { +              "index": 4, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "ぶつ", +              "hasReading": true, +              "frequency": 23 +            }, +            { +              "index": 5, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "ぶつ", +              "hasReading": true, +              "frequency": 29              }            ],            "pitches": [], @@ -5545,8 +8289,60 @@                    },                    "expression": "打ち込む",                    "reading": "うちこむ", +                  "hasReading": false, +                  "frequency": 7 +                }, +                { +                  "index": 2, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打ち込む", +                  "reading": "うちこむ",                    "hasReading": true, -                  "frequency": 8 +                  "frequency": 12 +                }, +                { +                  "index": 3, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打ち込む", +                  "reading": "うちこむ", +                  "hasReading": true, +                  "frequency": "eighteen" +                }, +                { +                  "index": 4, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打ち込む", +                  "reading": "うちこむ", +                  "hasReading": true, +                  "frequency": "twenty-four (24)" +                }, +                { +                  "index": 5, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打ち込む", +                  "reading": "うちこむ", +                  "hasReading": true, +                  "frequency": 30                  }                ],                "pitches": [ @@ -5655,8 +8451,60 @@                },                "expression": "打ち込む",                "reading": "うちこむ", +              "hasReading": false, +              "frequency": 7 +            }, +            { +              "index": 2, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打ち込む", +              "reading": "うちこむ",                "hasReading": true, -              "frequency": 8 +              "frequency": 12 +            }, +            { +              "index": 3, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打ち込む", +              "reading": "うちこむ", +              "hasReading": true, +              "frequency": "eighteen" +            }, +            { +              "index": 4, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打ち込む", +              "reading": "うちこむ", +              "hasReading": true, +              "frequency": "twenty-four (24)" +            }, +            { +              "index": 5, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打ち込む", +              "reading": "うちこむ", +              "hasReading": true, +              "frequency": 30              }            ],            "pitches": [ @@ -5835,8 +8683,60 @@                    },                    "expression": "打ち込む",                    "reading": "うちこむ", +                  "hasReading": false, +                  "frequency": 7 +                }, +                { +                  "index": 2, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打ち込む", +                  "reading": "うちこむ",                    "hasReading": true, -                  "frequency": 8 +                  "frequency": 12 +                }, +                { +                  "index": 3, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打ち込む", +                  "reading": "うちこむ", +                  "hasReading": true, +                  "frequency": 0 +                }, +                { +                  "index": 4, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打ち込む", +                  "reading": "うちこむ", +                  "hasReading": true, +                  "frequency": 24 +                }, +                { +                  "index": 5, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打ち込む", +                  "reading": "うちこむ", +                  "hasReading": true, +                  "frequency": 30                  }                ],                "pitches": [ @@ -5945,8 +8845,60 @@                },                "expression": "打ち込む",                "reading": "うちこむ", +              "hasReading": false, +              "frequency": 7 +            }, +            { +              "index": 2, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打ち込む", +              "reading": "うちこむ",                "hasReading": true, -              "frequency": 8 +              "frequency": 12 +            }, +            { +              "index": 3, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打ち込む", +              "reading": "うちこむ", +              "hasReading": true, +              "frequency": 0 +            }, +            { +              "index": 4, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打ち込む", +              "reading": "うちこむ", +              "hasReading": true, +              "frequency": 24 +            }, +            { +              "index": 5, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打ち込む", +              "reading": "うちこむ", +              "hasReading": true, +              "frequency": 30              }            ],            "pitches": [ @@ -6127,8 +9079,60 @@                    },                    "expression": "打つ",                    "reading": "うつ", -                  "hasReading": true, +                  "hasReading": false,                    "frequency": 6 +                }, +                { +                  "index": 2, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "うつ", +                  "hasReading": true, +                  "frequency": 10 +                }, +                { +                  "index": 3, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "うつ", +                  "hasReading": true, +                  "frequency": "sixteen" +                }, +                { +                  "index": 4, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "うつ", +                  "hasReading": true, +                  "frequency": "twenty-two (22)" +                }, +                { +                  "index": 5, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "うつ", +                  "hasReading": true, +                  "frequency": 28                  }                ],                "pitches": [], @@ -6207,8 +9211,60 @@                },                "expression": "打つ",                "reading": "うつ", -              "hasReading": true, +              "hasReading": false,                "frequency": 6 +            }, +            { +              "index": 2, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "うつ", +              "hasReading": true, +              "frequency": 10 +            }, +            { +              "index": 3, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "うつ", +              "hasReading": true, +              "frequency": "sixteen" +            }, +            { +              "index": 4, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "うつ", +              "hasReading": true, +              "frequency": "twenty-two (22)" +            }, +            { +              "index": 5, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "うつ", +              "hasReading": true, +              "frequency": 28              }            ],            "pitches": [], @@ -6329,8 +9385,60 @@                    },                    "expression": "打つ",                    "reading": "うつ", -                  "hasReading": true, +                  "hasReading": false,                    "frequency": 6 +                }, +                { +                  "index": 2, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "うつ", +                  "hasReading": true, +                  "frequency": 10 +                }, +                { +                  "index": 3, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "うつ", +                  "hasReading": true, +                  "frequency": 0 +                }, +                { +                  "index": 4, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "うつ", +                  "hasReading": true, +                  "frequency": 22 +                }, +                { +                  "index": 5, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "うつ", +                  "hasReading": true, +                  "frequency": 28                  }                ],                "pitches": [], @@ -6409,8 +9517,60 @@                },                "expression": "打つ",                "reading": "うつ", -              "hasReading": true, +              "hasReading": false,                "frequency": 6 +            }, +            { +              "index": 2, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "うつ", +              "hasReading": true, +              "frequency": 10 +            }, +            { +              "index": 3, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "うつ", +              "hasReading": true, +              "frequency": 0 +            }, +            { +              "index": 4, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "うつ", +              "hasReading": true, +              "frequency": 22 +            }, +            { +              "index": 5, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "うつ", +              "hasReading": true, +              "frequency": 28              }            ],            "pitches": [], @@ -6534,8 +9694,60 @@                    },                    "expression": "打ち込む",                    "reading": "ぶちこむ", +                  "hasReading": false, +                  "frequency": 7 +                }, +                { +                  "index": 2, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打ち込む", +                  "reading": "ぶちこむ",                    "hasReading": true, -                  "frequency": 9 +                  "frequency": 13 +                }, +                { +                  "index": 3, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打ち込む", +                  "reading": "ぶちこむ", +                  "hasReading": true, +                  "frequency": "nineteen" +                }, +                { +                  "index": 4, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打ち込む", +                  "reading": "ぶちこむ", +                  "hasReading": true, +                  "frequency": "twenty-five (25)" +                }, +                { +                  "index": 5, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打ち込む", +                  "reading": "ぶちこむ", +                  "hasReading": true, +                  "frequency": 31                  }                ],                "pitches": [ @@ -6644,8 +9856,60 @@                },                "expression": "打ち込む",                "reading": "ぶちこむ", +              "hasReading": false, +              "frequency": 7 +            }, +            { +              "index": 2, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打ち込む", +              "reading": "ぶちこむ",                "hasReading": true, -              "frequency": 9 +              "frequency": 13 +            }, +            { +              "index": 3, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打ち込む", +              "reading": "ぶちこむ", +              "hasReading": true, +              "frequency": "nineteen" +            }, +            { +              "index": 4, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打ち込む", +              "reading": "ぶちこむ", +              "hasReading": true, +              "frequency": "twenty-five (25)" +            }, +            { +              "index": 5, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打ち込む", +              "reading": "ぶちこむ", +              "hasReading": true, +              "frequency": 31              }            ],            "pitches": [ @@ -6824,8 +10088,60 @@                    },                    "expression": "打ち込む",                    "reading": "ぶちこむ", +                  "hasReading": false, +                  "frequency": 7 +                }, +                { +                  "index": 2, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打ち込む", +                  "reading": "ぶちこむ",                    "hasReading": true, -                  "frequency": 9 +                  "frequency": 13 +                }, +                { +                  "index": 3, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打ち込む", +                  "reading": "ぶちこむ", +                  "hasReading": true, +                  "frequency": 0 +                }, +                { +                  "index": 4, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打ち込む", +                  "reading": "ぶちこむ", +                  "hasReading": true, +                  "frequency": 25 +                }, +                { +                  "index": 5, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打ち込む", +                  "reading": "ぶちこむ", +                  "hasReading": true, +                  "frequency": 31                  }                ],                "pitches": [ @@ -6934,8 +10250,60 @@                },                "expression": "打ち込む",                "reading": "ぶちこむ", +              "hasReading": false, +              "frequency": 7 +            }, +            { +              "index": 2, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打ち込む", +              "reading": "ぶちこむ",                "hasReading": true, -              "frequency": 9 +              "frequency": 13 +            }, +            { +              "index": 3, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打ち込む", +              "reading": "ぶちこむ", +              "hasReading": true, +              "frequency": 0 +            }, +            { +              "index": 4, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打ち込む", +              "reading": "ぶちこむ", +              "hasReading": true, +              "frequency": 25 +            }, +            { +              "index": 5, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打ち込む", +              "reading": "ぶちこむ", +              "hasReading": true, +              "frequency": 31              }            ],            "pitches": [ @@ -7116,8 +10484,60 @@                    },                    "expression": "打つ",                    "reading": "ぶつ", +                  "hasReading": false, +                  "frequency": 6 +                }, +                { +                  "index": 2, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "ぶつ",                    "hasReading": true, -                  "frequency": 7 +                  "frequency": 11 +                }, +                { +                  "index": 3, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "ぶつ", +                  "hasReading": true, +                  "frequency": "seventeen" +                }, +                { +                  "index": 4, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "ぶつ", +                  "hasReading": true, +                  "frequency": "twenty-three (23)" +                }, +                { +                  "index": 5, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "ぶつ", +                  "hasReading": true, +                  "frequency": 29                  }                ],                "pitches": [], @@ -7196,8 +10616,60 @@                },                "expression": "打つ",                "reading": "ぶつ", +              "hasReading": false, +              "frequency": 6 +            }, +            { +              "index": 2, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "ぶつ",                "hasReading": true, -              "frequency": 7 +              "frequency": 11 +            }, +            { +              "index": 3, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "ぶつ", +              "hasReading": true, +              "frequency": "seventeen" +            }, +            { +              "index": 4, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "ぶつ", +              "hasReading": true, +              "frequency": "twenty-three (23)" +            }, +            { +              "index": 5, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "ぶつ", +              "hasReading": true, +              "frequency": 29              }            ],            "pitches": [], @@ -7318,8 +10790,60 @@                    },                    "expression": "打つ",                    "reading": "ぶつ", +                  "hasReading": false, +                  "frequency": 6 +                }, +                { +                  "index": 2, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "ぶつ",                    "hasReading": true, -                  "frequency": 7 +                  "frequency": 11 +                }, +                { +                  "index": 3, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "ぶつ", +                  "hasReading": true, +                  "frequency": 0 +                }, +                { +                  "index": 4, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "ぶつ", +                  "hasReading": true, +                  "frequency": 23 +                }, +                { +                  "index": 5, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "ぶつ", +                  "hasReading": true, +                  "frequency": 29                  }                ],                "pitches": [], @@ -7398,8 +10922,60 @@                },                "expression": "打つ",                "reading": "ぶつ", +              "hasReading": false, +              "frequency": 6 +            }, +            { +              "index": 2, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "ぶつ",                "hasReading": true, -              "frequency": 7 +              "frequency": 11 +            }, +            { +              "index": 3, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "ぶつ", +              "hasReading": true, +              "frequency": 0 +            }, +            { +              "index": 4, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "ぶつ", +              "hasReading": true, +              "frequency": 23 +            }, +            { +              "index": 5, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "ぶつ", +              "hasReading": true, +              "frequency": 29              }            ],            "pitches": [], @@ -7694,8 +11270,60 @@                    },                    "expression": "打ち込む",                    "reading": "うちこむ", +                  "hasReading": false, +                  "frequency": 7 +                }, +                { +                  "index": 2, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打ち込む", +                  "reading": "うちこむ",                    "hasReading": true, -                  "frequency": 8 +                  "frequency": 12 +                }, +                { +                  "index": 3, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打ち込む", +                  "reading": "うちこむ", +                  "hasReading": true, +                  "frequency": "eighteen" +                }, +                { +                  "index": 4, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打ち込む", +                  "reading": "うちこむ", +                  "hasReading": true, +                  "frequency": "twenty-four (24)" +                }, +                { +                  "index": 5, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打ち込む", +                  "reading": "うちこむ", +                  "hasReading": true, +                  "frequency": 30                  }                ],                "pitches": [ @@ -7838,8 +11466,60 @@                },                "expression": "打ち込む",                "reading": "うちこむ", +              "hasReading": false, +              "frequency": 7 +            }, +            { +              "index": 2, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打ち込む", +              "reading": "うちこむ",                "hasReading": true, -              "frequency": 8 +              "frequency": 12 +            }, +            { +              "index": 3, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打ち込む", +              "reading": "うちこむ", +              "hasReading": true, +              "frequency": "eighteen" +            }, +            { +              "index": 4, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打ち込む", +              "reading": "うちこむ", +              "hasReading": true, +              "frequency": "twenty-four (24)" +            }, +            { +              "index": 5, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打ち込む", +              "reading": "うちこむ", +              "hasReading": true, +              "frequency": 30              }            ],            "pitches": [ @@ -8007,8 +11687,60 @@                    },                    "expression": "打ち込む",                    "reading": "ぶちこむ", +                  "hasReading": false, +                  "frequency": 7 +                }, +                { +                  "index": 2, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打ち込む", +                  "reading": "ぶちこむ",                    "hasReading": true, -                  "frequency": 9 +                  "frequency": 13 +                }, +                { +                  "index": 3, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打ち込む", +                  "reading": "ぶちこむ", +                  "hasReading": true, +                  "frequency": "nineteen" +                }, +                { +                  "index": 4, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打ち込む", +                  "reading": "ぶちこむ", +                  "hasReading": true, +                  "frequency": "twenty-five (25)" +                }, +                { +                  "index": 5, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打ち込む", +                  "reading": "ぶちこむ", +                  "hasReading": true, +                  "frequency": 31                  }                ],                "pitches": [ @@ -8151,8 +11883,60 @@                },                "expression": "打ち込む",                "reading": "ぶちこむ", +              "hasReading": false, +              "frequency": 7 +            }, +            { +              "index": 2, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打ち込む", +              "reading": "ぶちこむ",                "hasReading": true, -              "frequency": 9 +              "frequency": 13 +            }, +            { +              "index": 3, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打ち込む", +              "reading": "ぶちこむ", +              "hasReading": true, +              "frequency": "nineteen" +            }, +            { +              "index": 4, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打ち込む", +              "reading": "ぶちこむ", +              "hasReading": true, +              "frequency": "twenty-five (25)" +            }, +            { +              "index": 5, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打ち込む", +              "reading": "ぶちこむ", +              "hasReading": true, +              "frequency": 31              }            ],            "pitches": [ @@ -8322,8 +12106,60 @@                    },                    "expression": "打つ",                    "reading": "うつ", -                  "hasReading": true, +                  "hasReading": false,                    "frequency": 6 +                }, +                { +                  "index": 2, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "うつ", +                  "hasReading": true, +                  "frequency": 10 +                }, +                { +                  "index": 3, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "うつ", +                  "hasReading": true, +                  "frequency": "sixteen" +                }, +                { +                  "index": 4, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "うつ", +                  "hasReading": true, +                  "frequency": "twenty-two (22)" +                }, +                { +                  "index": 5, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "うつ", +                  "hasReading": true, +                  "frequency": 28                  }                ],                "pitches": [], @@ -8436,8 +12272,60 @@                },                "expression": "打つ",                "reading": "うつ", -              "hasReading": true, +              "hasReading": false,                "frequency": 6 +            }, +            { +              "index": 2, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "うつ", +              "hasReading": true, +              "frequency": 10 +            }, +            { +              "index": 3, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "うつ", +              "hasReading": true, +              "frequency": "sixteen" +            }, +            { +              "index": 4, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "うつ", +              "hasReading": true, +              "frequency": "twenty-two (22)" +            }, +            { +              "index": 5, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "うつ", +              "hasReading": true, +              "frequency": 28              }            ],            "pitches": [], @@ -8555,8 +12443,60 @@                    },                    "expression": "打つ",                    "reading": "ぶつ", +                  "hasReading": false, +                  "frequency": 6 +                }, +                { +                  "index": 2, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "ぶつ",                    "hasReading": true, -                  "frequency": 7 +                  "frequency": 11 +                }, +                { +                  "index": 3, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "ぶつ", +                  "hasReading": true, +                  "frequency": "seventeen" +                }, +                { +                  "index": 4, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "ぶつ", +                  "hasReading": true, +                  "frequency": "twenty-three (23)" +                }, +                { +                  "index": 5, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "ぶつ", +                  "hasReading": true, +                  "frequency": 29                  }                ],                "pitches": [], @@ -8669,8 +12609,60 @@                },                "expression": "打つ",                "reading": "ぶつ", +              "hasReading": false, +              "frequency": 6 +            }, +            { +              "index": 2, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "ぶつ",                "hasReading": true, -              "frequency": 7 +              "frequency": 11 +            }, +            { +              "index": 3, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "ぶつ", +              "hasReading": true, +              "frequency": "seventeen" +            }, +            { +              "index": 4, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "ぶつ", +              "hasReading": true, +              "frequency": "twenty-three (23)" +            }, +            { +              "index": 5, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "ぶつ", +              "hasReading": true, +              "frequency": 29              }            ],            "pitches": [], @@ -8768,8 +12760,73 @@                    },                    "expression": "打",                    "reading": "だ", +                  "hasReading": false, +                  "frequency": "four" +                }, +                { +                  "index": 2, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打", +                  "reading": "だ", +                  "hasReading": false, +                  "frequency": "five (5)" +                }, +                { +                  "index": 3, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打", +                  "reading": "だ", +                  "hasReading": true, +                  "frequency": 8 +                }, +                { +                  "index": 4, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打", +                  "reading": "だ",                    "hasReading": true, -                  "frequency": 4 +                  "frequency": "fourteen" +                }, +                { +                  "index": 5, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打", +                  "reading": "だ", +                  "hasReading": true, +                  "frequency": "twenty (20)" +                }, +                { +                  "index": 6, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打", +                  "reading": "だ", +                  "hasReading": true, +                  "frequency": 26                  }                ],                "pitches": [], @@ -8841,8 +12898,73 @@                },                "expression": "打",                "reading": "だ", +              "hasReading": false, +              "frequency": "four" +            }, +            { +              "index": 2, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打", +              "reading": "だ", +              "hasReading": false, +              "frequency": "five (5)" +            }, +            { +              "index": 3, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打", +              "reading": "だ", +              "hasReading": true, +              "frequency": 8 +            }, +            { +              "index": 4, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打", +              "reading": "だ",                "hasReading": true, -              "frequency": 4 +              "frequency": "fourteen" +            }, +            { +              "index": 5, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打", +              "reading": "だ", +              "hasReading": true, +              "frequency": "twenty (20)" +            }, +            { +              "index": 6, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打", +              "reading": "だ", +              "hasReading": true, +              "frequency": 26              }            ],            "pitches": [], @@ -8940,8 +13062,73 @@                    },                    "expression": "打",                    "reading": "ダース", +                  "hasReading": false, +                  "frequency": "four" +                }, +                { +                  "index": 2, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打", +                  "reading": "ダース", +                  "hasReading": false, +                  "frequency": "five (5)" +                }, +                { +                  "index": 3, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打", +                  "reading": "ダース", +                  "hasReading": true, +                  "frequency": 9 +                }, +                { +                  "index": 4, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打", +                  "reading": "ダース",                    "hasReading": true, -                  "frequency": 5 +                  "frequency": "fifteen" +                }, +                { +                  "index": 5, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打", +                  "reading": "ダース", +                  "hasReading": true, +                  "frequency": "twenty-one (21)" +                }, +                { +                  "index": 6, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打", +                  "reading": "ダース", +                  "hasReading": true, +                  "frequency": 27                  }                ],                "pitches": [], @@ -9022,8 +13209,73 @@                },                "expression": "打",                "reading": "ダース", +              "hasReading": false, +              "frequency": "four" +            }, +            { +              "index": 2, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打", +              "reading": "ダース", +              "hasReading": false, +              "frequency": "five (5)" +            }, +            { +              "index": 3, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打", +              "reading": "ダース",                "hasReading": true, -              "frequency": 5 +              "frequency": 9 +            }, +            { +              "index": 4, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打", +              "reading": "ダース", +              "hasReading": true, +              "frequency": "fifteen" +            }, +            { +              "index": 5, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打", +              "reading": "ダース", +              "hasReading": true, +              "frequency": "twenty-one (21)" +            }, +            { +              "index": 6, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打", +              "reading": "ダース", +              "hasReading": true, +              "frequency": 27              }            ],            "pitches": [], @@ -9148,8 +13400,60 @@                    },                    "expression": "打ち込む",                    "reading": "うちこむ", +                  "hasReading": false, +                  "frequency": 7 +                }, +                { +                  "index": 2, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打ち込む", +                  "reading": "うちこむ",                    "hasReading": true, -                  "frequency": 8 +                  "frequency": 12 +                }, +                { +                  "index": 3, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打ち込む", +                  "reading": "うちこむ", +                  "hasReading": true, +                  "frequency": "eighteen" +                }, +                { +                  "index": 4, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打ち込む", +                  "reading": "うちこむ", +                  "hasReading": true, +                  "frequency": "twenty-four (24)" +                }, +                { +                  "index": 5, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打ち込む", +                  "reading": "うちこむ", +                  "hasReading": true, +                  "frequency": 30                  }                ],                "pitches": [ @@ -9255,8 +13559,60 @@                    },                    "expression": "打ち込む",                    "reading": "ぶちこむ", +                  "hasReading": false, +                  "frequency": 7 +                }, +                { +                  "index": 2, +                  "expressionIndex": 1, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打ち込む", +                  "reading": "ぶちこむ",                    "hasReading": true, -                  "frequency": 9 +                  "frequency": 13 +                }, +                { +                  "index": 3, +                  "expressionIndex": 1, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打ち込む", +                  "reading": "ぶちこむ", +                  "hasReading": true, +                  "frequency": "nineteen" +                }, +                { +                  "index": 4, +                  "expressionIndex": 1, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打ち込む", +                  "reading": "ぶちこむ", +                  "hasReading": true, +                  "frequency": "twenty-five (25)" +                }, +                { +                  "index": 5, +                  "expressionIndex": 1, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打ち込む", +                  "reading": "ぶちこむ", +                  "hasReading": true, +                  "frequency": 31                  }                ],                "pitches": [ @@ -9420,11 +13776,63 @@                },                "expression": "打ち込む",                "reading": "うちこむ", -              "hasReading": true, -              "frequency": 8 +              "hasReading": false, +              "frequency": 7              },              {                "index": 2, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打ち込む", +              "reading": "うちこむ", +              "hasReading": true, +              "frequency": 12 +            }, +            { +              "index": 3, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打ち込む", +              "reading": "うちこむ", +              "hasReading": true, +              "frequency": "eighteen" +            }, +            { +              "index": 4, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打ち込む", +              "reading": "うちこむ", +              "hasReading": true, +              "frequency": "twenty-four (24)" +            }, +            { +              "index": 5, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打ち込む", +              "reading": "うちこむ", +              "hasReading": true, +              "frequency": 30 +            }, +            { +              "index": 6,                "expressionIndex": 1,                "dictionary": "Test Dictionary 2",                "dictionaryOrder": { @@ -9437,7 +13845,20 @@                "frequency": 3              },              { -              "index": 3, +              "index": 7, +              "expressionIndex": 1, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打ち込む", +              "reading": "ぶちこむ", +              "hasReading": false, +              "frequency": 7 +            }, +            { +              "index": 8,                "expressionIndex": 1,                "dictionary": "Test Dictionary 2",                "dictionaryOrder": { @@ -9447,7 +13868,46 @@                "expression": "打ち込む",                "reading": "ぶちこむ",                "hasReading": true, -              "frequency": 9 +              "frequency": 13 +            }, +            { +              "index": 9, +              "expressionIndex": 1, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打ち込む", +              "reading": "ぶちこむ", +              "hasReading": true, +              "frequency": "nineteen" +            }, +            { +              "index": 10, +              "expressionIndex": 1, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打ち込む", +              "reading": "ぶちこむ", +              "hasReading": true, +              "frequency": "twenty-five (25)" +            }, +            { +              "index": 11, +              "expressionIndex": 1, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打ち込む", +              "reading": "ぶちこむ", +              "hasReading": true, +              "frequency": 31              }            ],            "pitches": [ @@ -9675,8 +14135,60 @@                    },                    "expression": "打つ",                    "reading": "うつ", -                  "hasReading": true, +                  "hasReading": false,                    "frequency": 6 +                }, +                { +                  "index": 2, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "うつ", +                  "hasReading": true, +                  "frequency": 10 +                }, +                { +                  "index": 3, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "うつ", +                  "hasReading": true, +                  "frequency": "sixteen" +                }, +                { +                  "index": 4, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "うつ", +                  "hasReading": true, +                  "frequency": "twenty-two (22)" +                }, +                { +                  "index": 5, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "うつ", +                  "hasReading": true, +                  "frequency": 28                  }                ],                "pitches": [], @@ -9752,8 +14264,60 @@                    },                    "expression": "打つ",                    "reading": "ぶつ", +                  "hasReading": false, +                  "frequency": 6 +                }, +                { +                  "index": 2, +                  "expressionIndex": 1, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "ぶつ",                    "hasReading": true, -                  "frequency": 7 +                  "frequency": 11 +                }, +                { +                  "index": 3, +                  "expressionIndex": 1, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "ぶつ", +                  "hasReading": true, +                  "frequency": "seventeen" +                }, +                { +                  "index": 4, +                  "expressionIndex": 1, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "ぶつ", +                  "hasReading": true, +                  "frequency": "twenty-three (23)" +                }, +                { +                  "index": 5, +                  "expressionIndex": 1, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "ぶつ", +                  "hasReading": true, +                  "frequency": 29                  }                ],                "pitches": [], @@ -9887,11 +14451,63 @@                },                "expression": "打つ",                "reading": "うつ", -              "hasReading": true, +              "hasReading": false,                "frequency": 6              },              {                "index": 2, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "うつ", +              "hasReading": true, +              "frequency": 10 +            }, +            { +              "index": 3, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "うつ", +              "hasReading": true, +              "frequency": "sixteen" +            }, +            { +              "index": 4, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "うつ", +              "hasReading": true, +              "frequency": "twenty-two (22)" +            }, +            { +              "index": 5, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "うつ", +              "hasReading": true, +              "frequency": 28 +            }, +            { +              "index": 6,                "expressionIndex": 1,                "dictionary": "Test Dictionary 2",                "dictionaryOrder": { @@ -9904,7 +14520,20 @@                "frequency": 2              },              { -              "index": 3, +              "index": 7, +              "expressionIndex": 1, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "ぶつ", +              "hasReading": false, +              "frequency": 6 +            }, +            { +              "index": 8,                "expressionIndex": 1,                "dictionary": "Test Dictionary 2",                "dictionaryOrder": { @@ -9914,7 +14543,46 @@                "expression": "打つ",                "reading": "ぶつ",                "hasReading": true, -              "frequency": 7 +              "frequency": 11 +            }, +            { +              "index": 9, +              "expressionIndex": 1, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "ぶつ", +              "hasReading": true, +              "frequency": "seventeen" +            }, +            { +              "index": 10, +              "expressionIndex": 1, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "ぶつ", +              "hasReading": true, +              "frequency": "twenty-three (23)" +            }, +            { +              "index": 11, +              "expressionIndex": 1, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "ぶつ", +              "hasReading": true, +              "frequency": 29              }            ],            "pitches": [], @@ -10016,8 +14684,73 @@                    },                    "expression": "打",                    "reading": "だ", +                  "hasReading": false, +                  "frequency": "four" +                }, +                { +                  "index": 2, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打", +                  "reading": "だ", +                  "hasReading": false, +                  "frequency": "five (5)" +                }, +                { +                  "index": 3, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打", +                  "reading": "だ", +                  "hasReading": true, +                  "frequency": 8 +                }, +                { +                  "index": 4, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打", +                  "reading": "だ", +                  "hasReading": true, +                  "frequency": "fourteen" +                }, +                { +                  "index": 5, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打", +                  "reading": "だ", +                  "hasReading": true, +                  "frequency": "twenty (20)" +                }, +                { +                  "index": 6, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打", +                  "reading": "だ",                    "hasReading": true, -                  "frequency": 4 +                  "frequency": 26                  }                ],                "pitches": [], @@ -10079,8 +14812,73 @@                },                "expression": "打",                "reading": "だ", +              "hasReading": false, +              "frequency": "four" +            }, +            { +              "index": 2, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打", +              "reading": "だ", +              "hasReading": false, +              "frequency": "five (5)" +            }, +            { +              "index": 3, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打", +              "reading": "だ", +              "hasReading": true, +              "frequency": 8 +            }, +            { +              "index": 4, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打", +              "reading": "だ", +              "hasReading": true, +              "frequency": "fourteen" +            }, +            { +              "index": 5, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打", +              "reading": "だ",                "hasReading": true, -              "frequency": 4 +              "frequency": "twenty (20)" +            }, +            { +              "index": 6, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打", +              "reading": "だ", +              "hasReading": true, +              "frequency": 26              }            ],            "pitches": [], @@ -10181,8 +14979,73 @@                    },                    "expression": "打",                    "reading": "ダース", +                  "hasReading": false, +                  "frequency": "four" +                }, +                { +                  "index": 2, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打", +                  "reading": "ダース", +                  "hasReading": false, +                  "frequency": "five (5)" +                }, +                { +                  "index": 3, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打", +                  "reading": "ダース", +                  "hasReading": true, +                  "frequency": 9 +                }, +                { +                  "index": 4, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打", +                  "reading": "ダース",                    "hasReading": true, -                  "frequency": 5 +                  "frequency": "fifteen" +                }, +                { +                  "index": 5, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打", +                  "reading": "ダース", +                  "hasReading": true, +                  "frequency": "twenty-one (21)" +                }, +                { +                  "index": 6, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打", +                  "reading": "ダース", +                  "hasReading": true, +                  "frequency": 27                  }                ],                "pitches": [], @@ -10253,8 +15116,73 @@                },                "expression": "打",                "reading": "ダース", +              "hasReading": false, +              "frequency": "four" +            }, +            { +              "index": 2, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打", +              "reading": "ダース", +              "hasReading": false, +              "frequency": "five (5)" +            }, +            { +              "index": 3, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打", +              "reading": "ダース",                "hasReading": true, -              "frequency": 5 +              "frequency": 9 +            }, +            { +              "index": 4, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打", +              "reading": "ダース", +              "hasReading": true, +              "frequency": "fifteen" +            }, +            { +              "index": 5, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打", +              "reading": "ダース", +              "hasReading": true, +              "frequency": "twenty-one (21)" +            }, +            { +              "index": 6, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打", +              "reading": "ダース", +              "hasReading": true, +              "frequency": 27              }            ],            "pitches": [], @@ -10372,8 +15300,60 @@                    },                    "expression": "打ち込む",                    "reading": "うちこむ", +                  "hasReading": false, +                  "frequency": 7 +                }, +                { +                  "index": 2, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打ち込む", +                  "reading": "うちこむ",                    "hasReading": true, -                  "frequency": 8 +                  "frequency": 12 +                }, +                { +                  "index": 3, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打ち込む", +                  "reading": "うちこむ", +                  "hasReading": true, +                  "frequency": "eighteen" +                }, +                { +                  "index": 4, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打ち込む", +                  "reading": "うちこむ", +                  "hasReading": true, +                  "frequency": "twenty-four (24)" +                }, +                { +                  "index": 5, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打ち込む", +                  "reading": "うちこむ", +                  "hasReading": true, +                  "frequency": 30                  }                ],                "pitches": [ @@ -10482,8 +15462,60 @@                },                "expression": "打ち込む",                "reading": "うちこむ", +              "hasReading": false, +              "frequency": 7 +            }, +            { +              "index": 2, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打ち込む", +              "reading": "うちこむ",                "hasReading": true, -              "frequency": 8 +              "frequency": 12 +            }, +            { +              "index": 3, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打ち込む", +              "reading": "うちこむ", +              "hasReading": true, +              "frequency": "eighteen" +            }, +            { +              "index": 4, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打ち込む", +              "reading": "うちこむ", +              "hasReading": true, +              "frequency": "twenty-four (24)" +            }, +            { +              "index": 5, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打ち込む", +              "reading": "うちこむ", +              "hasReading": true, +              "frequency": 30              }            ],            "pitches": [ @@ -10666,8 +15698,60 @@                    },                    "expression": "打ち込む",                    "reading": "ぶちこむ", +                  "hasReading": false, +                  "frequency": 7 +                }, +                { +                  "index": 2, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打ち込む", +                  "reading": "ぶちこむ",                    "hasReading": true, -                  "frequency": 9 +                  "frequency": 13 +                }, +                { +                  "index": 3, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打ち込む", +                  "reading": "ぶちこむ", +                  "hasReading": true, +                  "frequency": "nineteen" +                }, +                { +                  "index": 4, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打ち込む", +                  "reading": "ぶちこむ", +                  "hasReading": true, +                  "frequency": "twenty-five (25)" +                }, +                { +                  "index": 5, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打ち込む", +                  "reading": "ぶちこむ", +                  "hasReading": true, +                  "frequency": 31                  }                ],                "pitches": [ @@ -10776,8 +15860,60 @@                },                "expression": "打ち込む",                "reading": "ぶちこむ", +              "hasReading": false, +              "frequency": 7 +            }, +            { +              "index": 2, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打ち込む", +              "reading": "ぶちこむ",                "hasReading": true, -              "frequency": 9 +              "frequency": 13 +            }, +            { +              "index": 3, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打ち込む", +              "reading": "ぶちこむ", +              "hasReading": true, +              "frequency": "nineteen" +            }, +            { +              "index": 4, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打ち込む", +              "reading": "ぶちこむ", +              "hasReading": true, +              "frequency": "twenty-five (25)" +            }, +            { +              "index": 5, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打ち込む", +              "reading": "ぶちこむ", +              "hasReading": true, +              "frequency": 31              }            ],            "pitches": [ @@ -10960,8 +16096,60 @@                    },                    "expression": "打ち込む",                    "reading": "うちこむ", +                  "hasReading": false, +                  "frequency": 7 +                }, +                { +                  "index": 2, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打ち込む", +                  "reading": "うちこむ",                    "hasReading": true, -                  "frequency": 8 +                  "frequency": 12 +                }, +                { +                  "index": 3, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打ち込む", +                  "reading": "うちこむ", +                  "hasReading": true, +                  "frequency": 0 +                }, +                { +                  "index": 4, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打ち込む", +                  "reading": "うちこむ", +                  "hasReading": true, +                  "frequency": 24 +                }, +                { +                  "index": 5, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打ち込む", +                  "reading": "うちこむ", +                  "hasReading": true, +                  "frequency": 30                  }                ],                "pitches": [ @@ -11070,8 +16258,60 @@                },                "expression": "打ち込む",                "reading": "うちこむ", +              "hasReading": false, +              "frequency": 7 +            }, +            { +              "index": 2, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打ち込む", +              "reading": "うちこむ",                "hasReading": true, -              "frequency": 8 +              "frequency": 12 +            }, +            { +              "index": 3, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打ち込む", +              "reading": "うちこむ", +              "hasReading": true, +              "frequency": 0 +            }, +            { +              "index": 4, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打ち込む", +              "reading": "うちこむ", +              "hasReading": true, +              "frequency": 24 +            }, +            { +              "index": 5, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打ち込む", +              "reading": "うちこむ", +              "hasReading": true, +              "frequency": 30              }            ],            "pitches": [ @@ -11254,8 +16494,60 @@                    },                    "expression": "打ち込む",                    "reading": "ぶちこむ", +                  "hasReading": false, +                  "frequency": 7 +                }, +                { +                  "index": 2, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打ち込む", +                  "reading": "ぶちこむ",                    "hasReading": true, -                  "frequency": 9 +                  "frequency": 13 +                }, +                { +                  "index": 3, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打ち込む", +                  "reading": "ぶちこむ", +                  "hasReading": true, +                  "frequency": 0 +                }, +                { +                  "index": 4, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打ち込む", +                  "reading": "ぶちこむ", +                  "hasReading": true, +                  "frequency": 25 +                }, +                { +                  "index": 5, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打ち込む", +                  "reading": "ぶちこむ", +                  "hasReading": true, +                  "frequency": 31                  }                ],                "pitches": [ @@ -11364,8 +16656,60 @@                },                "expression": "打ち込む",                "reading": "ぶちこむ", +              "hasReading": false, +              "frequency": 7 +            }, +            { +              "index": 2, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打ち込む", +              "reading": "ぶちこむ",                "hasReading": true, -              "frequency": 9 +              "frequency": 13 +            }, +            { +              "index": 3, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打ち込む", +              "reading": "ぶちこむ", +              "hasReading": true, +              "frequency": 0 +            }, +            { +              "index": 4, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打ち込む", +              "reading": "ぶちこむ", +              "hasReading": true, +              "frequency": 25 +            }, +            { +              "index": 5, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打ち込む", +              "reading": "ぶちこむ", +              "hasReading": true, +              "frequency": 31              }            ],            "pitches": [ @@ -11546,8 +16890,60 @@                    },                    "expression": "打つ",                    "reading": "うつ", -                  "hasReading": true, +                  "hasReading": false,                    "frequency": 6 +                }, +                { +                  "index": 2, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "うつ", +                  "hasReading": true, +                  "frequency": 10 +                }, +                { +                  "index": 3, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "うつ", +                  "hasReading": true, +                  "frequency": "sixteen" +                }, +                { +                  "index": 4, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "うつ", +                  "hasReading": true, +                  "frequency": "twenty-two (22)" +                }, +                { +                  "index": 5, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "うつ", +                  "hasReading": true, +                  "frequency": 28                  }                ],                "pitches": [], @@ -11626,8 +17022,60 @@                },                "expression": "打つ",                "reading": "うつ", -              "hasReading": true, +              "hasReading": false,                "frequency": 6 +            }, +            { +              "index": 2, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "うつ", +              "hasReading": true, +              "frequency": 10 +            }, +            { +              "index": 3, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "うつ", +              "hasReading": true, +              "frequency": "sixteen" +            }, +            { +              "index": 4, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "うつ", +              "hasReading": true, +              "frequency": "twenty-two (22)" +            }, +            { +              "index": 5, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "うつ", +              "hasReading": true, +              "frequency": 28              }            ],            "pitches": [], @@ -11748,8 +17196,60 @@                    },                    "expression": "打つ",                    "reading": "ぶつ", +                  "hasReading": false, +                  "frequency": 6 +                }, +                { +                  "index": 2, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "ぶつ",                    "hasReading": true, -                  "frequency": 7 +                  "frequency": 11 +                }, +                { +                  "index": 3, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "ぶつ", +                  "hasReading": true, +                  "frequency": "seventeen" +                }, +                { +                  "index": 4, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "ぶつ", +                  "hasReading": true, +                  "frequency": "twenty-three (23)" +                }, +                { +                  "index": 5, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "ぶつ", +                  "hasReading": true, +                  "frequency": 29                  }                ],                "pitches": [], @@ -11828,8 +17328,60 @@                },                "expression": "打つ",                "reading": "ぶつ", +              "hasReading": false, +              "frequency": 6 +            }, +            { +              "index": 2, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "ぶつ",                "hasReading": true, -              "frequency": 7 +              "frequency": 11 +            }, +            { +              "index": 3, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "ぶつ", +              "hasReading": true, +              "frequency": "seventeen" +            }, +            { +              "index": 4, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "ぶつ", +              "hasReading": true, +              "frequency": "twenty-three (23)" +            }, +            { +              "index": 5, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "ぶつ", +              "hasReading": true, +              "frequency": 29              }            ],            "pitches": [], @@ -11950,8 +17502,60 @@                    },                    "expression": "打つ",                    "reading": "うつ", -                  "hasReading": true, +                  "hasReading": false,                    "frequency": 6 +                }, +                { +                  "index": 2, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "うつ", +                  "hasReading": true, +                  "frequency": 10 +                }, +                { +                  "index": 3, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "うつ", +                  "hasReading": true, +                  "frequency": 0 +                }, +                { +                  "index": 4, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "うつ", +                  "hasReading": true, +                  "frequency": 22 +                }, +                { +                  "index": 5, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "うつ", +                  "hasReading": true, +                  "frequency": 28                  }                ],                "pitches": [], @@ -12030,8 +17634,60 @@                },                "expression": "打つ",                "reading": "うつ", -              "hasReading": true, +              "hasReading": false,                "frequency": 6 +            }, +            { +              "index": 2, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "うつ", +              "hasReading": true, +              "frequency": 10 +            }, +            { +              "index": 3, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "うつ", +              "hasReading": true, +              "frequency": 0 +            }, +            { +              "index": 4, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "うつ", +              "hasReading": true, +              "frequency": 22 +            }, +            { +              "index": 5, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "うつ", +              "hasReading": true, +              "frequency": 28              }            ],            "pitches": [], @@ -12152,8 +17808,60 @@                    },                    "expression": "打つ",                    "reading": "ぶつ", +                  "hasReading": false, +                  "frequency": 6 +                }, +                { +                  "index": 2, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "ぶつ",                    "hasReading": true, -                  "frequency": 7 +                  "frequency": 11 +                }, +                { +                  "index": 3, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "ぶつ", +                  "hasReading": true, +                  "frequency": 0 +                }, +                { +                  "index": 4, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "ぶつ", +                  "hasReading": true, +                  "frequency": 23 +                }, +                { +                  "index": 5, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "ぶつ", +                  "hasReading": true, +                  "frequency": 29                  }                ],                "pitches": [], @@ -12232,8 +17940,60 @@                },                "expression": "打つ",                "reading": "ぶつ", +              "hasReading": false, +              "frequency": 6 +            }, +            { +              "index": 2, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "ぶつ",                "hasReading": true, -              "frequency": 7 +              "frequency": 11 +            }, +            { +              "index": 3, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "ぶつ", +              "hasReading": true, +              "frequency": 0 +            }, +            { +              "index": 4, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "ぶつ", +              "hasReading": true, +              "frequency": 23 +            }, +            { +              "index": 5, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "ぶつ", +              "hasReading": true, +              "frequency": 29              }            ],            "pitches": [], @@ -12343,8 +18103,73 @@                    },                    "expression": "打",                    "reading": "だ", +                  "hasReading": false, +                  "frequency": "four" +                }, +                { +                  "index": 2, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打", +                  "reading": "だ", +                  "hasReading": false, +                  "frequency": "five (5)" +                }, +                { +                  "index": 3, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打", +                  "reading": "だ", +                  "hasReading": true, +                  "frequency": 8 +                }, +                { +                  "index": 4, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打", +                  "reading": "だ",                    "hasReading": true, -                  "frequency": 4 +                  "frequency": "fourteen" +                }, +                { +                  "index": 5, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打", +                  "reading": "だ", +                  "hasReading": true, +                  "frequency": "twenty (20)" +                }, +                { +                  "index": 6, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打", +                  "reading": "だ", +                  "hasReading": true, +                  "frequency": 26                  }                ],                "pitches": [], @@ -12410,8 +18235,73 @@                },                "expression": "打",                "reading": "だ", +              "hasReading": false, +              "frequency": "four" +            }, +            { +              "index": 2, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打", +              "reading": "だ", +              "hasReading": false, +              "frequency": "five (5)" +            }, +            { +              "index": 3, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打", +              "reading": "だ",                "hasReading": true, -              "frequency": 4 +              "frequency": 8 +            }, +            { +              "index": 4, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打", +              "reading": "だ", +              "hasReading": true, +              "frequency": "fourteen" +            }, +            { +              "index": 5, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打", +              "reading": "だ", +              "hasReading": true, +              "frequency": "twenty (20)" +            }, +            { +              "index": 6, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打", +              "reading": "だ", +              "hasReading": true, +              "frequency": 26              }            ],            "pitches": [], @@ -12517,8 +18407,73 @@                    },                    "expression": "打",                    "reading": "ダース", +                  "hasReading": false, +                  "frequency": "four" +                }, +                { +                  "index": 2, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打", +                  "reading": "ダース", +                  "hasReading": false, +                  "frequency": "five (5)" +                }, +                { +                  "index": 3, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打", +                  "reading": "ダース",                    "hasReading": true, -                  "frequency": 5 +                  "frequency": 9 +                }, +                { +                  "index": 4, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打", +                  "reading": "ダース", +                  "hasReading": true, +                  "frequency": "fifteen" +                }, +                { +                  "index": 5, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打", +                  "reading": "ダース", +                  "hasReading": true, +                  "frequency": "twenty-one (21)" +                }, +                { +                  "index": 6, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打", +                  "reading": "ダース", +                  "hasReading": true, +                  "frequency": 27                  }                ],                "pitches": [], @@ -12593,8 +18548,73 @@                },                "expression": "打",                "reading": "ダース", +              "hasReading": false, +              "frequency": "four" +            }, +            { +              "index": 2, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打", +              "reading": "ダース", +              "hasReading": false, +              "frequency": "five (5)" +            }, +            { +              "index": 3, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打", +              "reading": "ダース",                "hasReading": true, -              "frequency": 5 +              "frequency": 9 +            }, +            { +              "index": 4, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打", +              "reading": "ダース", +              "hasReading": true, +              "frequency": "fifteen" +            }, +            { +              "index": 5, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打", +              "reading": "ダース", +              "hasReading": true, +              "frequency": "twenty-one (21)" +            }, +            { +              "index": 6, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打", +              "reading": "ダース", +              "hasReading": true, +              "frequency": 27              }            ],            "pitches": [], @@ -12714,8 +18734,60 @@                    },                    "expression": "打ち込む",                    "reading": "うちこむ", +                  "hasReading": false, +                  "frequency": 7 +                }, +                { +                  "index": 2, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打ち込む", +                  "reading": "うちこむ",                    "hasReading": true, -                  "frequency": 8 +                  "frequency": 12 +                }, +                { +                  "index": 3, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打ち込む", +                  "reading": "うちこむ", +                  "hasReading": true, +                  "frequency": "eighteen" +                }, +                { +                  "index": 4, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打ち込む", +                  "reading": "うちこむ", +                  "hasReading": true, +                  "frequency": "twenty-four (24)" +                }, +                { +                  "index": 5, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打ち込む", +                  "reading": "うちこむ", +                  "hasReading": true, +                  "frequency": 30                  }                ],                "pitches": [ @@ -12824,8 +18896,60 @@                },                "expression": "打ち込む",                "reading": "うちこむ", +              "hasReading": false, +              "frequency": 7 +            }, +            { +              "index": 2, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打ち込む", +              "reading": "うちこむ",                "hasReading": true, -              "frequency": 8 +              "frequency": 12 +            }, +            { +              "index": 3, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打ち込む", +              "reading": "うちこむ", +              "hasReading": true, +              "frequency": "eighteen" +            }, +            { +              "index": 4, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打ち込む", +              "reading": "うちこむ", +              "hasReading": true, +              "frequency": "twenty-four (24)" +            }, +            { +              "index": 5, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打ち込む", +              "reading": "うちこむ", +              "hasReading": true, +              "frequency": 30              }            ],            "pitches": [ @@ -13004,8 +19128,60 @@                    },                    "expression": "打ち込む",                    "reading": "ぶちこむ", +                  "hasReading": false, +                  "frequency": 7 +                }, +                { +                  "index": 2, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打ち込む", +                  "reading": "ぶちこむ",                    "hasReading": true, -                  "frequency": 9 +                  "frequency": 13 +                }, +                { +                  "index": 3, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打ち込む", +                  "reading": "ぶちこむ", +                  "hasReading": true, +                  "frequency": "nineteen" +                }, +                { +                  "index": 4, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打ち込む", +                  "reading": "ぶちこむ", +                  "hasReading": true, +                  "frequency": "twenty-five (25)" +                }, +                { +                  "index": 5, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打ち込む", +                  "reading": "ぶちこむ", +                  "hasReading": true, +                  "frequency": 31                  }                ],                "pitches": [ @@ -13114,8 +19290,60 @@                },                "expression": "打ち込む",                "reading": "ぶちこむ", +              "hasReading": false, +              "frequency": 7 +            }, +            { +              "index": 2, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打ち込む", +              "reading": "ぶちこむ",                "hasReading": true, -              "frequency": 9 +              "frequency": 13 +            }, +            { +              "index": 3, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打ち込む", +              "reading": "ぶちこむ", +              "hasReading": true, +              "frequency": "nineteen" +            }, +            { +              "index": 4, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打ち込む", +              "reading": "ぶちこむ", +              "hasReading": true, +              "frequency": "twenty-five (25)" +            }, +            { +              "index": 5, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打ち込む", +              "reading": "ぶちこむ", +              "hasReading": true, +              "frequency": 31              }            ],            "pitches": [ @@ -13294,8 +19522,60 @@                    },                    "expression": "打ち込む",                    "reading": "うちこむ", +                  "hasReading": false, +                  "frequency": 7 +                }, +                { +                  "index": 2, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打ち込む", +                  "reading": "うちこむ",                    "hasReading": true, -                  "frequency": 8 +                  "frequency": 12 +                }, +                { +                  "index": 3, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打ち込む", +                  "reading": "うちこむ", +                  "hasReading": true, +                  "frequency": 0 +                }, +                { +                  "index": 4, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打ち込む", +                  "reading": "うちこむ", +                  "hasReading": true, +                  "frequency": 24 +                }, +                { +                  "index": 5, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打ち込む", +                  "reading": "うちこむ", +                  "hasReading": true, +                  "frequency": 30                  }                ],                "pitches": [ @@ -13404,8 +19684,60 @@                },                "expression": "打ち込む",                "reading": "うちこむ", +              "hasReading": false, +              "frequency": 7 +            }, +            { +              "index": 2, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打ち込む", +              "reading": "うちこむ",                "hasReading": true, -              "frequency": 8 +              "frequency": 12 +            }, +            { +              "index": 3, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打ち込む", +              "reading": "うちこむ", +              "hasReading": true, +              "frequency": 0 +            }, +            { +              "index": 4, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打ち込む", +              "reading": "うちこむ", +              "hasReading": true, +              "frequency": 24 +            }, +            { +              "index": 5, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打ち込む", +              "reading": "うちこむ", +              "hasReading": true, +              "frequency": 30              }            ],            "pitches": [ @@ -13584,8 +19916,60 @@                    },                    "expression": "打ち込む",                    "reading": "ぶちこむ", +                  "hasReading": false, +                  "frequency": 7 +                }, +                { +                  "index": 2, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打ち込む", +                  "reading": "ぶちこむ",                    "hasReading": true, -                  "frequency": 9 +                  "frequency": 13 +                }, +                { +                  "index": 3, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打ち込む", +                  "reading": "ぶちこむ", +                  "hasReading": true, +                  "frequency": 0 +                }, +                { +                  "index": 4, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打ち込む", +                  "reading": "ぶちこむ", +                  "hasReading": true, +                  "frequency": 25 +                }, +                { +                  "index": 5, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打ち込む", +                  "reading": "ぶちこむ", +                  "hasReading": true, +                  "frequency": 31                  }                ],                "pitches": [ @@ -13694,8 +20078,60 @@                },                "expression": "打ち込む",                "reading": "ぶちこむ", +              "hasReading": false, +              "frequency": 7 +            }, +            { +              "index": 2, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打ち込む", +              "reading": "ぶちこむ",                "hasReading": true, -              "frequency": 9 +              "frequency": 13 +            }, +            { +              "index": 3, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打ち込む", +              "reading": "ぶちこむ", +              "hasReading": true, +              "frequency": 0 +            }, +            { +              "index": 4, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打ち込む", +              "reading": "ぶちこむ", +              "hasReading": true, +              "frequency": 25 +            }, +            { +              "index": 5, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打ち込む", +              "reading": "ぶちこむ", +              "hasReading": true, +              "frequency": 31              }            ],            "pitches": [ @@ -13876,8 +20312,60 @@                    },                    "expression": "打つ",                    "reading": "うつ", -                  "hasReading": true, +                  "hasReading": false,                    "frequency": 6 +                }, +                { +                  "index": 2, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "うつ", +                  "hasReading": true, +                  "frequency": 10 +                }, +                { +                  "index": 3, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "うつ", +                  "hasReading": true, +                  "frequency": "sixteen" +                }, +                { +                  "index": 4, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "うつ", +                  "hasReading": true, +                  "frequency": "twenty-two (22)" +                }, +                { +                  "index": 5, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "うつ", +                  "hasReading": true, +                  "frequency": 28                  }                ],                "pitches": [], @@ -13956,8 +20444,60 @@                },                "expression": "打つ",                "reading": "うつ", -              "hasReading": true, +              "hasReading": false,                "frequency": 6 +            }, +            { +              "index": 2, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "うつ", +              "hasReading": true, +              "frequency": 10 +            }, +            { +              "index": 3, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "うつ", +              "hasReading": true, +              "frequency": "sixteen" +            }, +            { +              "index": 4, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "うつ", +              "hasReading": true, +              "frequency": "twenty-two (22)" +            }, +            { +              "index": 5, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "うつ", +              "hasReading": true, +              "frequency": 28              }            ],            "pitches": [], @@ -14078,8 +20618,60 @@                    },                    "expression": "打つ",                    "reading": "ぶつ", +                  "hasReading": false, +                  "frequency": 6 +                }, +                { +                  "index": 2, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "ぶつ",                    "hasReading": true, -                  "frequency": 7 +                  "frequency": 11 +                }, +                { +                  "index": 3, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "ぶつ", +                  "hasReading": true, +                  "frequency": "seventeen" +                }, +                { +                  "index": 4, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "ぶつ", +                  "hasReading": true, +                  "frequency": "twenty-three (23)" +                }, +                { +                  "index": 5, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "ぶつ", +                  "hasReading": true, +                  "frequency": 29                  }                ],                "pitches": [], @@ -14158,8 +20750,60 @@                },                "expression": "打つ",                "reading": "ぶつ", +              "hasReading": false, +              "frequency": 6 +            }, +            { +              "index": 2, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "ぶつ",                "hasReading": true, -              "frequency": 7 +              "frequency": 11 +            }, +            { +              "index": 3, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "ぶつ", +              "hasReading": true, +              "frequency": "seventeen" +            }, +            { +              "index": 4, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "ぶつ", +              "hasReading": true, +              "frequency": "twenty-three (23)" +            }, +            { +              "index": 5, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "ぶつ", +              "hasReading": true, +              "frequency": 29              }            ],            "pitches": [], @@ -14280,8 +20924,60 @@                    },                    "expression": "打つ",                    "reading": "うつ", -                  "hasReading": true, +                  "hasReading": false,                    "frequency": 6 +                }, +                { +                  "index": 2, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "うつ", +                  "hasReading": true, +                  "frequency": 10 +                }, +                { +                  "index": 3, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "うつ", +                  "hasReading": true, +                  "frequency": 0 +                }, +                { +                  "index": 4, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "うつ", +                  "hasReading": true, +                  "frequency": 22 +                }, +                { +                  "index": 5, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "うつ", +                  "hasReading": true, +                  "frequency": 28                  }                ],                "pitches": [], @@ -14360,8 +21056,60 @@                },                "expression": "打つ",                "reading": "うつ", -              "hasReading": true, +              "hasReading": false,                "frequency": 6 +            }, +            { +              "index": 2, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "うつ", +              "hasReading": true, +              "frequency": 10 +            }, +            { +              "index": 3, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "うつ", +              "hasReading": true, +              "frequency": 0 +            }, +            { +              "index": 4, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "うつ", +              "hasReading": true, +              "frequency": 22 +            }, +            { +              "index": 5, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "うつ", +              "hasReading": true, +              "frequency": 28              }            ],            "pitches": [], @@ -14482,8 +21230,60 @@                    },                    "expression": "打つ",                    "reading": "ぶつ", +                  "hasReading": false, +                  "frequency": 6 +                }, +                { +                  "index": 2, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "ぶつ",                    "hasReading": true, -                  "frequency": 7 +                  "frequency": 11 +                }, +                { +                  "index": 3, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "ぶつ", +                  "hasReading": true, +                  "frequency": 0 +                }, +                { +                  "index": 4, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "ぶつ", +                  "hasReading": true, +                  "frequency": 23 +                }, +                { +                  "index": 5, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "ぶつ", +                  "hasReading": true, +                  "frequency": 29                  }                ],                "pitches": [], @@ -14562,8 +21362,60 @@                },                "expression": "打つ",                "reading": "ぶつ", +              "hasReading": false, +              "frequency": 6 +            }, +            { +              "index": 2, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "ぶつ",                "hasReading": true, -              "frequency": 7 +              "frequency": 11 +            }, +            { +              "index": 3, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "ぶつ", +              "hasReading": true, +              "frequency": 0 +            }, +            { +              "index": 4, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "ぶつ", +              "hasReading": true, +              "frequency": 23 +            }, +            { +              "index": 5, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "ぶつ", +              "hasReading": true, +              "frequency": 29              }            ],            "pitches": [], @@ -14673,8 +21525,73 @@                    },                    "expression": "打",                    "reading": "だ", +                  "hasReading": false, +                  "frequency": "four" +                }, +                { +                  "index": 2, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打", +                  "reading": "だ", +                  "hasReading": false, +                  "frequency": "five (5)" +                }, +                { +                  "index": 3, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打", +                  "reading": "だ", +                  "hasReading": true, +                  "frequency": 8 +                }, +                { +                  "index": 4, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打", +                  "reading": "だ", +                  "hasReading": true, +                  "frequency": "fourteen" +                }, +                { +                  "index": 5, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打", +                  "reading": "だ",                    "hasReading": true, -                  "frequency": 4 +                  "frequency": "twenty (20)" +                }, +                { +                  "index": 6, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打", +                  "reading": "だ", +                  "hasReading": true, +                  "frequency": 26                  }                ],                "pitches": [], @@ -14740,8 +21657,73 @@                },                "expression": "打",                "reading": "だ", +              "hasReading": false, +              "frequency": "four" +            }, +            { +              "index": 2, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打", +              "reading": "だ", +              "hasReading": false, +              "frequency": "five (5)" +            }, +            { +              "index": 3, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打", +              "reading": "だ", +              "hasReading": true, +              "frequency": 8 +            }, +            { +              "index": 4, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打", +              "reading": "だ", +              "hasReading": true, +              "frequency": "fourteen" +            }, +            { +              "index": 5, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打", +              "reading": "だ", +              "hasReading": true, +              "frequency": "twenty (20)" +            }, +            { +              "index": 6, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打", +              "reading": "だ",                "hasReading": true, -              "frequency": 4 +              "frequency": 26              }            ],            "pitches": [], @@ -14847,8 +21829,73 @@                    },                    "expression": "打",                    "reading": "ダース", +                  "hasReading": false, +                  "frequency": "four" +                }, +                { +                  "index": 2, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打", +                  "reading": "ダース", +                  "hasReading": false, +                  "frequency": "five (5)" +                }, +                { +                  "index": 3, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打", +                  "reading": "ダース", +                  "hasReading": true, +                  "frequency": 9 +                }, +                { +                  "index": 4, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打", +                  "reading": "ダース",                    "hasReading": true, -                  "frequency": 5 +                  "frequency": "fifteen" +                }, +                { +                  "index": 5, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打", +                  "reading": "ダース", +                  "hasReading": true, +                  "frequency": "twenty-one (21)" +                }, +                { +                  "index": 6, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打", +                  "reading": "ダース", +                  "hasReading": true, +                  "frequency": 27                  }                ],                "pitches": [], @@ -14923,8 +21970,73 @@                },                "expression": "打",                "reading": "ダース", +              "hasReading": false, +              "frequency": "four" +            }, +            { +              "index": 2, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打", +              "reading": "ダース", +              "hasReading": false, +              "frequency": "five (5)" +            }, +            { +              "index": 3, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打", +              "reading": "ダース",                "hasReading": true, -              "frequency": 5 +              "frequency": 9 +            }, +            { +              "index": 4, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打", +              "reading": "ダース", +              "hasReading": true, +              "frequency": "fifteen" +            }, +            { +              "index": 5, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打", +              "reading": "ダース", +              "hasReading": true, +              "frequency": "twenty-one (21)" +            }, +            { +              "index": 6, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打", +              "reading": "ダース", +              "hasReading": true, +              "frequency": 27              }            ],            "pitches": [], @@ -15044,8 +22156,60 @@                    },                    "expression": "打ち込む",                    "reading": "うちこむ", +                  "hasReading": false, +                  "frequency": 7 +                }, +                { +                  "index": 2, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打ち込む", +                  "reading": "うちこむ",                    "hasReading": true, -                  "frequency": 8 +                  "frequency": 12 +                }, +                { +                  "index": 3, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打ち込む", +                  "reading": "うちこむ", +                  "hasReading": true, +                  "frequency": "eighteen" +                }, +                { +                  "index": 4, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打ち込む", +                  "reading": "うちこむ", +                  "hasReading": true, +                  "frequency": "twenty-four (24)" +                }, +                { +                  "index": 5, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打ち込む", +                  "reading": "うちこむ", +                  "hasReading": true, +                  "frequency": 30                  }                ],                "pitches": [ @@ -15154,8 +22318,60 @@                },                "expression": "打ち込む",                "reading": "うちこむ", +              "hasReading": false, +              "frequency": 7 +            }, +            { +              "index": 2, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打ち込む", +              "reading": "うちこむ",                "hasReading": true, -              "frequency": 8 +              "frequency": 12 +            }, +            { +              "index": 3, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打ち込む", +              "reading": "うちこむ", +              "hasReading": true, +              "frequency": "eighteen" +            }, +            { +              "index": 4, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打ち込む", +              "reading": "うちこむ", +              "hasReading": true, +              "frequency": "twenty-four (24)" +            }, +            { +              "index": 5, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打ち込む", +              "reading": "うちこむ", +              "hasReading": true, +              "frequency": 30              }            ],            "pitches": [ @@ -15334,8 +22550,60 @@                    },                    "expression": "打ち込む",                    "reading": "ぶちこむ", +                  "hasReading": false, +                  "frequency": 7 +                }, +                { +                  "index": 2, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打ち込む", +                  "reading": "ぶちこむ",                    "hasReading": true, -                  "frequency": 9 +                  "frequency": 13 +                }, +                { +                  "index": 3, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打ち込む", +                  "reading": "ぶちこむ", +                  "hasReading": true, +                  "frequency": "nineteen" +                }, +                { +                  "index": 4, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打ち込む", +                  "reading": "ぶちこむ", +                  "hasReading": true, +                  "frequency": "twenty-five (25)" +                }, +                { +                  "index": 5, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打ち込む", +                  "reading": "ぶちこむ", +                  "hasReading": true, +                  "frequency": 31                  }                ],                "pitches": [ @@ -15444,8 +22712,60 @@                },                "expression": "打ち込む",                "reading": "ぶちこむ", +              "hasReading": false, +              "frequency": 7 +            }, +            { +              "index": 2, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打ち込む", +              "reading": "ぶちこむ",                "hasReading": true, -              "frequency": 9 +              "frequency": 13 +            }, +            { +              "index": 3, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打ち込む", +              "reading": "ぶちこむ", +              "hasReading": true, +              "frequency": "nineteen" +            }, +            { +              "index": 4, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打ち込む", +              "reading": "ぶちこむ", +              "hasReading": true, +              "frequency": "twenty-five (25)" +            }, +            { +              "index": 5, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打ち込む", +              "reading": "ぶちこむ", +              "hasReading": true, +              "frequency": 31              }            ],            "pitches": [ @@ -15624,8 +22944,60 @@                    },                    "expression": "打ち込む",                    "reading": "うちこむ", +                  "hasReading": false, +                  "frequency": 7 +                }, +                { +                  "index": 2, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打ち込む", +                  "reading": "うちこむ",                    "hasReading": true, -                  "frequency": 8 +                  "frequency": 12 +                }, +                { +                  "index": 3, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打ち込む", +                  "reading": "うちこむ", +                  "hasReading": true, +                  "frequency": 0 +                }, +                { +                  "index": 4, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打ち込む", +                  "reading": "うちこむ", +                  "hasReading": true, +                  "frequency": 24 +                }, +                { +                  "index": 5, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打ち込む", +                  "reading": "うちこむ", +                  "hasReading": true, +                  "frequency": 30                  }                ],                "pitches": [ @@ -15734,8 +23106,60 @@                },                "expression": "打ち込む",                "reading": "うちこむ", +              "hasReading": false, +              "frequency": 7 +            }, +            { +              "index": 2, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打ち込む", +              "reading": "うちこむ",                "hasReading": true, -              "frequency": 8 +              "frequency": 12 +            }, +            { +              "index": 3, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打ち込む", +              "reading": "うちこむ", +              "hasReading": true, +              "frequency": 0 +            }, +            { +              "index": 4, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打ち込む", +              "reading": "うちこむ", +              "hasReading": true, +              "frequency": 24 +            }, +            { +              "index": 5, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打ち込む", +              "reading": "うちこむ", +              "hasReading": true, +              "frequency": 30              }            ],            "pitches": [ @@ -15914,8 +23338,60 @@                    },                    "expression": "打ち込む",                    "reading": "ぶちこむ", +                  "hasReading": false, +                  "frequency": 7 +                }, +                { +                  "index": 2, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打ち込む", +                  "reading": "ぶちこむ",                    "hasReading": true, -                  "frequency": 9 +                  "frequency": 13 +                }, +                { +                  "index": 3, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打ち込む", +                  "reading": "ぶちこむ", +                  "hasReading": true, +                  "frequency": 0 +                }, +                { +                  "index": 4, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打ち込む", +                  "reading": "ぶちこむ", +                  "hasReading": true, +                  "frequency": 25 +                }, +                { +                  "index": 5, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打ち込む", +                  "reading": "ぶちこむ", +                  "hasReading": true, +                  "frequency": 31                  }                ],                "pitches": [ @@ -16024,8 +23500,60 @@                },                "expression": "打ち込む",                "reading": "ぶちこむ", +              "hasReading": false, +              "frequency": 7 +            }, +            { +              "index": 2, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打ち込む", +              "reading": "ぶちこむ",                "hasReading": true, -              "frequency": 9 +              "frequency": 13 +            }, +            { +              "index": 3, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打ち込む", +              "reading": "ぶちこむ", +              "hasReading": true, +              "frequency": 0 +            }, +            { +              "index": 4, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打ち込む", +              "reading": "ぶちこむ", +              "hasReading": true, +              "frequency": 25 +            }, +            { +              "index": 5, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打ち込む", +              "reading": "ぶちこむ", +              "hasReading": true, +              "frequency": 31              }            ],            "pitches": [ @@ -16206,8 +23734,60 @@                    },                    "expression": "打つ",                    "reading": "うつ", -                  "hasReading": true, +                  "hasReading": false,                    "frequency": 6 +                }, +                { +                  "index": 2, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "うつ", +                  "hasReading": true, +                  "frequency": 10 +                }, +                { +                  "index": 3, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "うつ", +                  "hasReading": true, +                  "frequency": "sixteen" +                }, +                { +                  "index": 4, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "うつ", +                  "hasReading": true, +                  "frequency": "twenty-two (22)" +                }, +                { +                  "index": 5, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "うつ", +                  "hasReading": true, +                  "frequency": 28                  }                ],                "pitches": [], @@ -16286,8 +23866,60 @@                },                "expression": "打つ",                "reading": "うつ", -              "hasReading": true, +              "hasReading": false,                "frequency": 6 +            }, +            { +              "index": 2, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "うつ", +              "hasReading": true, +              "frequency": 10 +            }, +            { +              "index": 3, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "うつ", +              "hasReading": true, +              "frequency": "sixteen" +            }, +            { +              "index": 4, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "うつ", +              "hasReading": true, +              "frequency": "twenty-two (22)" +            }, +            { +              "index": 5, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "うつ", +              "hasReading": true, +              "frequency": 28              }            ],            "pitches": [], @@ -16408,8 +24040,60 @@                    },                    "expression": "打つ",                    "reading": "ぶつ", +                  "hasReading": false, +                  "frequency": 6 +                }, +                { +                  "index": 2, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "ぶつ",                    "hasReading": true, -                  "frequency": 7 +                  "frequency": 11 +                }, +                { +                  "index": 3, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "ぶつ", +                  "hasReading": true, +                  "frequency": "seventeen" +                }, +                { +                  "index": 4, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "ぶつ", +                  "hasReading": true, +                  "frequency": "twenty-three (23)" +                }, +                { +                  "index": 5, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "ぶつ", +                  "hasReading": true, +                  "frequency": 29                  }                ],                "pitches": [], @@ -16488,8 +24172,60 @@                },                "expression": "打つ",                "reading": "ぶつ", +              "hasReading": false, +              "frequency": 6 +            }, +            { +              "index": 2, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "ぶつ",                "hasReading": true, -              "frequency": 7 +              "frequency": 11 +            }, +            { +              "index": 3, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "ぶつ", +              "hasReading": true, +              "frequency": "seventeen" +            }, +            { +              "index": 4, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "ぶつ", +              "hasReading": true, +              "frequency": "twenty-three (23)" +            }, +            { +              "index": 5, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "ぶつ", +              "hasReading": true, +              "frequency": 29              }            ],            "pitches": [], @@ -16610,8 +24346,60 @@                    },                    "expression": "打つ",                    "reading": "うつ", -                  "hasReading": true, +                  "hasReading": false,                    "frequency": 6 +                }, +                { +                  "index": 2, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "うつ", +                  "hasReading": true, +                  "frequency": 10 +                }, +                { +                  "index": 3, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "うつ", +                  "hasReading": true, +                  "frequency": 0 +                }, +                { +                  "index": 4, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "うつ", +                  "hasReading": true, +                  "frequency": 22 +                }, +                { +                  "index": 5, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "うつ", +                  "hasReading": true, +                  "frequency": 28                  }                ],                "pitches": [], @@ -16690,8 +24478,60 @@                },                "expression": "打つ",                "reading": "うつ", -              "hasReading": true, +              "hasReading": false,                "frequency": 6 +            }, +            { +              "index": 2, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "うつ", +              "hasReading": true, +              "frequency": 10 +            }, +            { +              "index": 3, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "うつ", +              "hasReading": true, +              "frequency": 0 +            }, +            { +              "index": 4, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "うつ", +              "hasReading": true, +              "frequency": 22 +            }, +            { +              "index": 5, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "うつ", +              "hasReading": true, +              "frequency": 28              }            ],            "pitches": [], @@ -16812,8 +24652,60 @@                    },                    "expression": "打つ",                    "reading": "ぶつ", +                  "hasReading": false, +                  "frequency": 6 +                }, +                { +                  "index": 2, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "ぶつ",                    "hasReading": true, -                  "frequency": 7 +                  "frequency": 11 +                }, +                { +                  "index": 3, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "ぶつ", +                  "hasReading": true, +                  "frequency": 0 +                }, +                { +                  "index": 4, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "ぶつ", +                  "hasReading": true, +                  "frequency": 23 +                }, +                { +                  "index": 5, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "ぶつ", +                  "hasReading": true, +                  "frequency": 29                  }                ],                "pitches": [], @@ -16892,8 +24784,60 @@                },                "expression": "打つ",                "reading": "ぶつ", +              "hasReading": false, +              "frequency": 6 +            }, +            { +              "index": 2, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "ぶつ",                "hasReading": true, -              "frequency": 7 +              "frequency": 11 +            }, +            { +              "index": 3, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "ぶつ", +              "hasReading": true, +              "frequency": 0 +            }, +            { +              "index": 4, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "ぶつ", +              "hasReading": true, +              "frequency": 23 +            }, +            { +              "index": 5, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "ぶつ", +              "hasReading": true, +              "frequency": 29              }            ],            "pitches": [], @@ -17003,8 +24947,73 @@                    },                    "expression": "打",                    "reading": "だ", +                  "hasReading": false, +                  "frequency": "four" +                }, +                { +                  "index": 2, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打", +                  "reading": "だ", +                  "hasReading": false, +                  "frequency": "five (5)" +                }, +                { +                  "index": 3, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打", +                  "reading": "だ", +                  "hasReading": true, +                  "frequency": 8 +                }, +                { +                  "index": 4, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打", +                  "reading": "だ", +                  "hasReading": true, +                  "frequency": "fourteen" +                }, +                { +                  "index": 5, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打", +                  "reading": "だ",                    "hasReading": true, -                  "frequency": 4 +                  "frequency": "twenty (20)" +                }, +                { +                  "index": 6, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打", +                  "reading": "だ", +                  "hasReading": true, +                  "frequency": 26                  }                ],                "pitches": [], @@ -17070,8 +25079,73 @@                },                "expression": "打",                "reading": "だ", +              "hasReading": false, +              "frequency": "four" +            }, +            { +              "index": 2, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打", +              "reading": "だ", +              "hasReading": false, +              "frequency": "five (5)" +            }, +            { +              "index": 3, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打", +              "reading": "だ", +              "hasReading": true, +              "frequency": 8 +            }, +            { +              "index": 4, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打", +              "reading": "だ", +              "hasReading": true, +              "frequency": "fourteen" +            }, +            { +              "index": 5, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打", +              "reading": "だ", +              "hasReading": true, +              "frequency": "twenty (20)" +            }, +            { +              "index": 6, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打", +              "reading": "だ",                "hasReading": true, -              "frequency": 4 +              "frequency": 26              }            ],            "pitches": [], @@ -17177,8 +25251,73 @@                    },                    "expression": "打",                    "reading": "ダース", +                  "hasReading": false, +                  "frequency": "four" +                }, +                { +                  "index": 2, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打", +                  "reading": "ダース", +                  "hasReading": false, +                  "frequency": "five (5)" +                }, +                { +                  "index": 3, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打", +                  "reading": "ダース",                    "hasReading": true, -                  "frequency": 5 +                  "frequency": 9 +                }, +                { +                  "index": 4, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打", +                  "reading": "ダース", +                  "hasReading": true, +                  "frequency": "fifteen" +                }, +                { +                  "index": 5, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打", +                  "reading": "ダース", +                  "hasReading": true, +                  "frequency": "twenty-one (21)" +                }, +                { +                  "index": 6, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打", +                  "reading": "ダース", +                  "hasReading": true, +                  "frequency": 27                  }                ],                "pitches": [], @@ -17253,8 +25392,73 @@                },                "expression": "打",                "reading": "ダース", +              "hasReading": false, +              "frequency": "four" +            }, +            { +              "index": 2, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打", +              "reading": "ダース", +              "hasReading": false, +              "frequency": "five (5)" +            }, +            { +              "index": 3, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打", +              "reading": "ダース",                "hasReading": true, -              "frequency": 5 +              "frequency": 9 +            }, +            { +              "index": 4, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打", +              "reading": "ダース", +              "hasReading": true, +              "frequency": "fifteen" +            }, +            { +              "index": 5, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打", +              "reading": "ダース", +              "hasReading": true, +              "frequency": "twenty-one (21)" +            }, +            { +              "index": 6, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打", +              "reading": "ダース", +              "hasReading": true, +              "frequency": 27              }            ],            "pitches": [], @@ -17839,8 +26043,60 @@                    },                    "expression": "打ち込む",                    "reading": "うちこむ", +                  "hasReading": false, +                  "frequency": 7 +                }, +                { +                  "index": 2, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打ち込む", +                  "reading": "うちこむ",                    "hasReading": true, -                  "frequency": 8 +                  "frequency": 12 +                }, +                { +                  "index": 3, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打ち込む", +                  "reading": "うちこむ", +                  "hasReading": true, +                  "frequency": "eighteen" +                }, +                { +                  "index": 4, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打ち込む", +                  "reading": "うちこむ", +                  "hasReading": true, +                  "frequency": "twenty-four (24)" +                }, +                { +                  "index": 5, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打ち込む", +                  "reading": "うちこむ", +                  "hasReading": true, +                  "frequency": 30                  }                ],                "pitches": [ @@ -17946,8 +26202,60 @@                    },                    "expression": "打ち込む",                    "reading": "ぶちこむ", +                  "hasReading": false, +                  "frequency": 7 +                }, +                { +                  "index": 2, +                  "expressionIndex": 1, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打ち込む", +                  "reading": "ぶちこむ",                    "hasReading": true, -                  "frequency": 9 +                  "frequency": 13 +                }, +                { +                  "index": 3, +                  "expressionIndex": 1, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打ち込む", +                  "reading": "ぶちこむ", +                  "hasReading": true, +                  "frequency": "nineteen" +                }, +                { +                  "index": 4, +                  "expressionIndex": 1, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打ち込む", +                  "reading": "ぶちこむ", +                  "hasReading": true, +                  "frequency": "twenty-five (25)" +                }, +                { +                  "index": 5, +                  "expressionIndex": 1, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打ち込む", +                  "reading": "ぶちこむ", +                  "hasReading": true, +                  "frequency": 31                  }                ],                "pitches": [ @@ -18111,11 +26419,63 @@                },                "expression": "打ち込む",                "reading": "うちこむ", -              "hasReading": true, -              "frequency": 8 +              "hasReading": false, +              "frequency": 7              },              {                "index": 2, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打ち込む", +              "reading": "うちこむ", +              "hasReading": true, +              "frequency": 12 +            }, +            { +              "index": 3, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打ち込む", +              "reading": "うちこむ", +              "hasReading": true, +              "frequency": "eighteen" +            }, +            { +              "index": 4, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打ち込む", +              "reading": "うちこむ", +              "hasReading": true, +              "frequency": "twenty-four (24)" +            }, +            { +              "index": 5, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打ち込む", +              "reading": "うちこむ", +              "hasReading": true, +              "frequency": 30 +            }, +            { +              "index": 6,                "expressionIndex": 1,                "dictionary": "Test Dictionary 2",                "dictionaryOrder": { @@ -18128,7 +26488,20 @@                "frequency": 3              },              { -              "index": 3, +              "index": 7, +              "expressionIndex": 1, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打ち込む", +              "reading": "ぶちこむ", +              "hasReading": false, +              "frequency": 7 +            }, +            { +              "index": 8,                "expressionIndex": 1,                "dictionary": "Test Dictionary 2",                "dictionaryOrder": { @@ -18138,7 +26511,46 @@                "expression": "打ち込む",                "reading": "ぶちこむ",                "hasReading": true, -              "frequency": 9 +              "frequency": 13 +            }, +            { +              "index": 9, +              "expressionIndex": 1, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打ち込む", +              "reading": "ぶちこむ", +              "hasReading": true, +              "frequency": "nineteen" +            }, +            { +              "index": 10, +              "expressionIndex": 1, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打ち込む", +              "reading": "ぶちこむ", +              "hasReading": true, +              "frequency": "twenty-five (25)" +            }, +            { +              "index": 11, +              "expressionIndex": 1, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打ち込む", +              "reading": "ぶちこむ", +              "hasReading": true, +              "frequency": 31              }            ],            "pitches": [ @@ -18366,8 +26778,60 @@                    },                    "expression": "打つ",                    "reading": "うつ", -                  "hasReading": true, +                  "hasReading": false,                    "frequency": 6 +                }, +                { +                  "index": 2, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "うつ", +                  "hasReading": true, +                  "frequency": 10 +                }, +                { +                  "index": 3, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "うつ", +                  "hasReading": true, +                  "frequency": "sixteen" +                }, +                { +                  "index": 4, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "うつ", +                  "hasReading": true, +                  "frequency": "twenty-two (22)" +                }, +                { +                  "index": 5, +                  "expressionIndex": 0, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "うつ", +                  "hasReading": true, +                  "frequency": 28                  }                ],                "pitches": [], @@ -18443,8 +26907,60 @@                    },                    "expression": "打つ",                    "reading": "ぶつ", +                  "hasReading": false, +                  "frequency": 6 +                }, +                { +                  "index": 2, +                  "expressionIndex": 1, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "ぶつ",                    "hasReading": true, -                  "frequency": 7 +                  "frequency": 11 +                }, +                { +                  "index": 3, +                  "expressionIndex": 1, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "ぶつ", +                  "hasReading": true, +                  "frequency": "seventeen" +                }, +                { +                  "index": 4, +                  "expressionIndex": 1, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "ぶつ", +                  "hasReading": true, +                  "frequency": "twenty-three (23)" +                }, +                { +                  "index": 5, +                  "expressionIndex": 1, +                  "dictionary": "Test Dictionary 2", +                  "dictionaryOrder": { +                    "index": 0, +                    "priority": 0 +                  }, +                  "expression": "打つ", +                  "reading": "ぶつ", +                  "hasReading": true, +                  "frequency": 29                  }                ],                "pitches": [], @@ -18578,11 +27094,63 @@                },                "expression": "打つ",                "reading": "うつ", -              "hasReading": true, +              "hasReading": false,                "frequency": 6              },              {                "index": 2, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "うつ", +              "hasReading": true, +              "frequency": 10 +            }, +            { +              "index": 3, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "うつ", +              "hasReading": true, +              "frequency": "sixteen" +            }, +            { +              "index": 4, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "うつ", +              "hasReading": true, +              "frequency": "twenty-two (22)" +            }, +            { +              "index": 5, +              "expressionIndex": 0, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "うつ", +              "hasReading": true, +              "frequency": 28 +            }, +            { +              "index": 6,                "expressionIndex": 1,                "dictionary": "Test Dictionary 2",                "dictionaryOrder": { @@ -18595,7 +27163,20 @@                "frequency": 2              },              { -              "index": 3, +              "index": 7, +              "expressionIndex": 1, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "ぶつ", +              "hasReading": false, +              "frequency": 6 +            }, +            { +              "index": 8,                "expressionIndex": 1,                "dictionary": "Test Dictionary 2",                "dictionaryOrder": { @@ -18605,7 +27186,46 @@                "expression": "打つ",                "reading": "ぶつ",                "hasReading": true, -              "frequency": 7 +              "frequency": 11 +            }, +            { +              "index": 9, +              "expressionIndex": 1, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "ぶつ", +              "hasReading": true, +              "frequency": "seventeen" +            }, +            { +              "index": 10, +              "expressionIndex": 1, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "ぶつ", +              "hasReading": true, +              "frequency": "twenty-three (23)" +            }, +            { +              "index": 11, +              "expressionIndex": 1, +              "dictionary": "Test Dictionary 2", +              "dictionaryOrder": { +                "index": 0, +                "priority": 0 +              }, +              "expression": "打つ", +              "reading": "ぶつ", +              "hasReading": true, +              "frequency": 29              }            ],            "pitches": [], diff --git a/test/data/translator-test-results.json b/test/data/translator-test-results.json index c3596a85..345b73b7 100644 --- a/test/data/translator-test-results.json +++ b/test/data/translator-test-results.json @@ -112,7 +112,29 @@              "dictionaryIndex": 0,              "dictionaryPriority": 0,              "character": "打", -            "frequency": 1 +            "frequency": 1, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 1, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "character": "打", +            "frequency": 0, +            "displayValue": "three", +            "displayValueParsed": true +          }, +          { +            "index": 2, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "character": "打", +            "frequency": 5, +            "displayValue": null, +            "displayValueParsed": false            }          ]        } @@ -230,7 +252,29 @@              "dictionaryIndex": 0,              "dictionaryPriority": 0,              "character": "込", -            "frequency": 2 +            "frequency": 2, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 1, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "character": "込", +            "frequency": 4, +            "displayValue": "four (4)", +            "displayValueParsed": true +          }, +          { +            "index": 2, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "character": "込", +            "frequency": 6, +            "displayValue": "six", +            "displayValueParsed": false            }          ]        } @@ -333,7 +377,9 @@              "dictionaryIndex": 0,              "dictionaryPriority": 0,              "hasReading": false, -            "frequency": 1 +            "frequency": 1, +            "displayValue": null, +            "displayValueParsed": false            },            {              "index": 1, @@ -341,8 +387,65 @@              "dictionary": "Test Dictionary 2",              "dictionaryIndex": 0,              "dictionaryPriority": 0, +            "hasReading": false, +            "frequency": 0, +            "displayValue": "four", +            "displayValueParsed": true +          }, +          { +            "index": 2, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": false, +            "frequency": 5, +            "displayValue": "five (5)", +            "displayValueParsed": true +          }, +          { +            "index": 3, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 8, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 4, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 0, +            "displayValue": "fourteen", +            "displayValueParsed": true +          }, +          { +            "index": 5, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0,              "hasReading": true, -            "frequency": 4 +            "frequency": 20, +            "displayValue": "twenty (20)", +            "displayValueParsed": true +          }, +          { +            "index": 6, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 26, +            "displayValue": null, +            "displayValueParsed": false            }          ]        }, @@ -448,7 +551,9 @@              "dictionaryIndex": 0,              "dictionaryPriority": 0,              "hasReading": false, -            "frequency": 1 +            "frequency": 1, +            "displayValue": null, +            "displayValueParsed": false            },            {              "index": 1, @@ -456,8 +561,65 @@              "dictionary": "Test Dictionary 2",              "dictionaryIndex": 0,              "dictionaryPriority": 0, +            "hasReading": false, +            "frequency": 0, +            "displayValue": "four", +            "displayValueParsed": true +          }, +          { +            "index": 2, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": false, +            "frequency": 5, +            "displayValue": "five (5)", +            "displayValueParsed": true +          }, +          { +            "index": 3, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 9, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 4, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0,              "hasReading": true, -            "frequency": 5 +            "frequency": 0, +            "displayValue": "fifteen", +            "displayValueParsed": true +          }, +          { +            "index": 5, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 21, +            "displayValue": "twenty-one (21)", +            "displayValueParsed": true +          }, +          { +            "index": 6, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 27, +            "displayValue": "twenty-seven", +            "displayValueParsed": false            }          ]        } @@ -569,7 +731,9 @@              "dictionaryIndex": 0,              "dictionaryPriority": 0,              "hasReading": false, -            "frequency": 2 +            "frequency": 2, +            "displayValue": null, +            "displayValueParsed": false            },            {              "index": 1, @@ -577,8 +741,54 @@              "dictionary": "Test Dictionary 2",              "dictionaryIndex": 0,              "dictionaryPriority": 0, +            "hasReading": false, +            "frequency": 6, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 2, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0,              "hasReading": true, -            "frequency": 6 +            "frequency": 10, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 3, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 0, +            "displayValue": "sixteen", +            "displayValueParsed": true +          }, +          { +            "index": 4, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 22, +            "displayValue": "twenty-two (22)", +            "displayValueParsed": true +          }, +          { +            "index": 5, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 28, +            "displayValue": null, +            "displayValueParsed": false            }          ]        }, @@ -684,7 +894,9 @@              "dictionaryIndex": 0,              "dictionaryPriority": 0,              "hasReading": false, -            "frequency": 2 +            "frequency": 2, +            "displayValue": null, +            "displayValueParsed": false            },            {              "index": 1, @@ -692,8 +904,54 @@              "dictionary": "Test Dictionary 2",              "dictionaryIndex": 0,              "dictionaryPriority": 0, +            "hasReading": false, +            "frequency": 6, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 2, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 11, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 3, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 0, +            "displayValue": "seventeen", +            "displayValueParsed": true +          }, +          { +            "index": 4, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0,              "hasReading": true, -            "frequency": 7 +            "frequency": 23, +            "displayValue": "twenty-three (23)", +            "displayValueParsed": true +          }, +          { +            "index": 5, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 29, +            "displayValue": "twenty-nine", +            "displayValueParsed": false            }          ]        }, @@ -799,7 +1057,9 @@              "dictionaryIndex": 0,              "dictionaryPriority": 0,              "hasReading": false, -            "frequency": 2 +            "frequency": 2, +            "displayValue": null, +            "displayValueParsed": false            },            {              "index": 1, @@ -807,8 +1067,54 @@              "dictionary": "Test Dictionary 2",              "dictionaryIndex": 0,              "dictionaryPriority": 0, +            "hasReading": false, +            "frequency": 6, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 2, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0,              "hasReading": true, -            "frequency": 6 +            "frequency": 10, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 3, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 0, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 4, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 22, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 5, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 28, +            "displayValue": null, +            "displayValueParsed": false            }          ]        }, @@ -914,7 +1220,9 @@              "dictionaryIndex": 0,              "dictionaryPriority": 0,              "hasReading": false, -            "frequency": 2 +            "frequency": 2, +            "displayValue": null, +            "displayValueParsed": false            },            {              "index": 1, @@ -922,8 +1230,54 @@              "dictionary": "Test Dictionary 2",              "dictionaryIndex": 0,              "dictionaryPriority": 0, +            "hasReading": false, +            "frequency": 6, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 2, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 11, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 3, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0,              "hasReading": true, -            "frequency": 7 +            "frequency": 0, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 4, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 23, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 5, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 29, +            "displayValue": null, +            "displayValueParsed": false            }          ]        }, @@ -1016,7 +1370,9 @@              "dictionaryIndex": 0,              "dictionaryPriority": 0,              "hasReading": false, -            "frequency": 1 +            "frequency": 1, +            "displayValue": null, +            "displayValueParsed": false            },            {              "index": 1, @@ -1024,8 +1380,65 @@              "dictionary": "Test Dictionary 2",              "dictionaryIndex": 0,              "dictionaryPriority": 0, +            "hasReading": false, +            "frequency": 0, +            "displayValue": "four", +            "displayValueParsed": true +          }, +          { +            "index": 2, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": false, +            "frequency": 5, +            "displayValue": "five (5)", +            "displayValueParsed": true +          }, +          { +            "index": 3, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 8, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 4, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 0, +            "displayValue": "fourteen", +            "displayValueParsed": true +          }, +          { +            "index": 5, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0,              "hasReading": true, -            "frequency": 4 +            "frequency": 20, +            "displayValue": "twenty (20)", +            "displayValueParsed": true +          }, +          { +            "index": 6, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 26, +            "displayValue": null, +            "displayValueParsed": false            }          ]        }, @@ -1131,7 +1544,9 @@              "dictionaryIndex": 0,              "dictionaryPriority": 0,              "hasReading": false, -            "frequency": 1 +            "frequency": 1, +            "displayValue": null, +            "displayValueParsed": false            },            {              "index": 1, @@ -1139,8 +1554,65 @@              "dictionary": "Test Dictionary 2",              "dictionaryIndex": 0,              "dictionaryPriority": 0, +            "hasReading": false, +            "frequency": 0, +            "displayValue": "four", +            "displayValueParsed": true +          }, +          { +            "index": 2, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": false, +            "frequency": 5, +            "displayValue": "five (5)", +            "displayValueParsed": true +          }, +          { +            "index": 3, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 9, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 4, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 0, +            "displayValue": "fifteen", +            "displayValueParsed": true +          }, +          { +            "index": 5, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 21, +            "displayValue": "twenty-one (21)", +            "displayValueParsed": true +          }, +          { +            "index": 6, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0,              "hasReading": true, -            "frequency": 5 +            "frequency": 27, +            "displayValue": "twenty-seven", +            "displayValueParsed": false            }          ]        } @@ -1274,7 +1746,9 @@              "dictionaryIndex": 0,              "dictionaryPriority": 0,              "hasReading": false, -            "frequency": 3 +            "frequency": 3, +            "displayValue": null, +            "displayValueParsed": false            },            {              "index": 1, @@ -1282,8 +1756,54 @@              "dictionary": "Test Dictionary 2",              "dictionaryIndex": 0,              "dictionaryPriority": 0, +            "hasReading": false, +            "frequency": 7, +            "displayValue": "seven", +            "displayValueParsed": false +          }, +          { +            "index": 2, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 12, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 3, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 0, +            "displayValue": "eighteen", +            "displayValueParsed": true +          }, +          { +            "index": 4, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 24, +            "displayValue": "twenty-four (24)", +            "displayValueParsed": true +          }, +          { +            "index": 5, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0,              "hasReading": true, -            "frequency": 8 +            "frequency": 30, +            "displayValue": null, +            "displayValueParsed": false            }          ]        }, @@ -1411,7 +1931,9 @@              "dictionaryIndex": 0,              "dictionaryPriority": 0,              "hasReading": false, -            "frequency": 3 +            "frequency": 3, +            "displayValue": null, +            "displayValueParsed": false            },            {              "index": 1, @@ -1419,8 +1941,54 @@              "dictionary": "Test Dictionary 2",              "dictionaryIndex": 0,              "dictionaryPriority": 0, +            "hasReading": false, +            "frequency": 7, +            "displayValue": "seven", +            "displayValueParsed": false +          }, +          { +            "index": 2, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 13, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 3, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 0, +            "displayValue": "nineteen", +            "displayValueParsed": true +          }, +          { +            "index": 4, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0,              "hasReading": true, -            "frequency": 9 +            "frequency": 25, +            "displayValue": "twenty-five (25)", +            "displayValueParsed": true +          }, +          { +            "index": 5, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 31, +            "displayValue": "thirty-one", +            "displayValueParsed": false            }          ]        }, @@ -1548,7 +2116,9 @@              "dictionaryIndex": 0,              "dictionaryPriority": 0,              "hasReading": false, -            "frequency": 3 +            "frequency": 3, +            "displayValue": null, +            "displayValueParsed": false            },            {              "index": 1, @@ -1556,8 +2126,54 @@              "dictionary": "Test Dictionary 2",              "dictionaryIndex": 0,              "dictionaryPriority": 0, +            "hasReading": false, +            "frequency": 7, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 2, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0,              "hasReading": true, -            "frequency": 8 +            "frequency": 12, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 3, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 0, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 4, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 24, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 5, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 30, +            "displayValue": null, +            "displayValueParsed": false            }          ]        }, @@ -1685,7 +2301,9 @@              "dictionaryIndex": 0,              "dictionaryPriority": 0,              "hasReading": false, -            "frequency": 3 +            "frequency": 3, +            "displayValue": null, +            "displayValueParsed": false            },            {              "index": 1, @@ -1693,8 +2311,54 @@              "dictionary": "Test Dictionary 2",              "dictionaryIndex": 0,              "dictionaryPriority": 0, +            "hasReading": false, +            "frequency": 7, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 2, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 13, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 3, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0,              "hasReading": true, -            "frequency": 9 +            "frequency": 0, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 4, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 25, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 5, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 31, +            "displayValue": null, +            "displayValueParsed": false            }          ]        }, @@ -1802,7 +2466,9 @@              "dictionaryIndex": 0,              "dictionaryPriority": 0,              "hasReading": false, -            "frequency": 2 +            "frequency": 2, +            "displayValue": null, +            "displayValueParsed": false            },            {              "index": 1, @@ -1810,8 +2476,54 @@              "dictionary": "Test Dictionary 2",              "dictionaryIndex": 0,              "dictionaryPriority": 0, +            "hasReading": false, +            "frequency": 6, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 2, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0,              "hasReading": true, -            "frequency": 6 +            "frequency": 10, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 3, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 0, +            "displayValue": "sixteen", +            "displayValueParsed": true +          }, +          { +            "index": 4, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 22, +            "displayValue": "twenty-two (22)", +            "displayValueParsed": true +          }, +          { +            "index": 5, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 28, +            "displayValue": null, +            "displayValueParsed": false            }          ]        }, @@ -1919,7 +2631,9 @@              "dictionaryIndex": 0,              "dictionaryPriority": 0,              "hasReading": false, -            "frequency": 2 +            "frequency": 2, +            "displayValue": null, +            "displayValueParsed": false            },            {              "index": 1, @@ -1927,8 +2641,54 @@              "dictionary": "Test Dictionary 2",              "dictionaryIndex": 0,              "dictionaryPriority": 0, +            "hasReading": false, +            "frequency": 6, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 2, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 11, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 3, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 0, +            "displayValue": "seventeen", +            "displayValueParsed": true +          }, +          { +            "index": 4, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 23, +            "displayValue": "twenty-three (23)", +            "displayValueParsed": true +          }, +          { +            "index": 5, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0,              "hasReading": true, -            "frequency": 7 +            "frequency": 29, +            "displayValue": "twenty-nine", +            "displayValueParsed": false            }          ]        }, @@ -2036,7 +2796,9 @@              "dictionaryIndex": 0,              "dictionaryPriority": 0,              "hasReading": false, -            "frequency": 2 +            "frequency": 2, +            "displayValue": null, +            "displayValueParsed": false            },            {              "index": 1, @@ -2044,8 +2806,54 @@              "dictionary": "Test Dictionary 2",              "dictionaryIndex": 0,              "dictionaryPriority": 0, +            "hasReading": false, +            "frequency": 6, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 2, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 10, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 3, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 0, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 4, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 22, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 5, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0,              "hasReading": true, -            "frequency": 6 +            "frequency": 28, +            "displayValue": null, +            "displayValueParsed": false            }          ]        }, @@ -2153,7 +2961,9 @@              "dictionaryIndex": 0,              "dictionaryPriority": 0,              "hasReading": false, -            "frequency": 2 +            "frequency": 2, +            "displayValue": null, +            "displayValueParsed": false            },            {              "index": 1, @@ -2161,8 +2971,54 @@              "dictionary": "Test Dictionary 2",              "dictionaryIndex": 0,              "dictionaryPriority": 0, +            "hasReading": false, +            "frequency": 6, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 2, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0,              "hasReading": true, -            "frequency": 7 +            "frequency": 11, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 3, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 0, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 4, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 23, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 5, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 29, +            "displayValue": null, +            "displayValueParsed": false            }          ]        }, @@ -2255,7 +3111,9 @@              "dictionaryIndex": 0,              "dictionaryPriority": 0,              "hasReading": false, -            "frequency": 1 +            "frequency": 1, +            "displayValue": null, +            "displayValueParsed": false            },            {              "index": 1, @@ -2263,8 +3121,65 @@              "dictionary": "Test Dictionary 2",              "dictionaryIndex": 0,              "dictionaryPriority": 0, +            "hasReading": false, +            "frequency": 0, +            "displayValue": "four", +            "displayValueParsed": true +          }, +          { +            "index": 2, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": false, +            "frequency": 5, +            "displayValue": "five (5)", +            "displayValueParsed": true +          }, +          { +            "index": 3, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 8, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 4, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0,              "hasReading": true, -            "frequency": 4 +            "frequency": 0, +            "displayValue": "fourteen", +            "displayValueParsed": true +          }, +          { +            "index": 5, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 20, +            "displayValue": "twenty (20)", +            "displayValueParsed": true +          }, +          { +            "index": 6, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 26, +            "displayValue": null, +            "displayValueParsed": false            }          ]        }, @@ -2370,7 +3285,9 @@              "dictionaryIndex": 0,              "dictionaryPriority": 0,              "hasReading": false, -            "frequency": 1 +            "frequency": 1, +            "displayValue": null, +            "displayValueParsed": false            },            {              "index": 1, @@ -2378,8 +3295,65 @@              "dictionary": "Test Dictionary 2",              "dictionaryIndex": 0,              "dictionaryPriority": 0, +            "hasReading": false, +            "frequency": 0, +            "displayValue": "four", +            "displayValueParsed": true +          }, +          { +            "index": 2, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": false, +            "frequency": 5, +            "displayValue": "five (5)", +            "displayValueParsed": true +          }, +          { +            "index": 3, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 9, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 4, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 0, +            "displayValue": "fifteen", +            "displayValueParsed": true +          }, +          { +            "index": 5, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 21, +            "displayValue": "twenty-one (21)", +            "displayValueParsed": true +          }, +          { +            "index": 6, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0,              "hasReading": true, -            "frequency": 5 +            "frequency": 27, +            "displayValue": "twenty-seven", +            "displayValueParsed": false            }          ]        } @@ -2589,7 +3563,9 @@              "dictionaryIndex": 0,              "dictionaryPriority": 0,              "hasReading": false, -            "frequency": 1 +            "frequency": 1, +            "displayValue": null, +            "displayValueParsed": false            },            {              "index": 1, @@ -2597,8 +3573,65 @@              "dictionary": "Test Dictionary 2",              "dictionaryIndex": 0,              "dictionaryPriority": 0, +            "hasReading": false, +            "frequency": 0, +            "displayValue": "four", +            "displayValueParsed": true +          }, +          { +            "index": 2, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": false, +            "frequency": 5, +            "displayValue": "five (5)", +            "displayValueParsed": true +          }, +          { +            "index": 3, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 8, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 4, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 0, +            "displayValue": "fourteen", +            "displayValueParsed": true +          }, +          { +            "index": 5, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0,              "hasReading": true, -            "frequency": 4 +            "frequency": 20, +            "displayValue": "twenty (20)", +            "displayValueParsed": true +          }, +          { +            "index": 6, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 26, +            "displayValue": null, +            "displayValueParsed": false            }          ]        } @@ -2710,7 +3743,9 @@              "dictionaryIndex": 0,              "dictionaryPriority": 0,              "hasReading": false, -            "frequency": 1 +            "frequency": 1, +            "displayValue": null, +            "displayValueParsed": false            },            {              "index": 1, @@ -2718,8 +3753,65 @@              "dictionary": "Test Dictionary 2",              "dictionaryIndex": 0,              "dictionaryPriority": 0, +            "hasReading": false, +            "frequency": 0, +            "displayValue": "four", +            "displayValueParsed": true +          }, +          { +            "index": 2, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": false, +            "frequency": 5, +            "displayValue": "five (5)", +            "displayValueParsed": true +          }, +          { +            "index": 3, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 9, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 4, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 0, +            "displayValue": "fifteen", +            "displayValueParsed": true +          }, +          { +            "index": 5, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0,              "hasReading": true, -            "frequency": 5 +            "frequency": 21, +            "displayValue": "twenty-one (21)", +            "displayValueParsed": true +          }, +          { +            "index": 6, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 27, +            "displayValue": "twenty-seven", +            "displayValueParsed": false            }          ]        } @@ -2831,7 +3923,9 @@              "dictionaryIndex": 0,              "dictionaryPriority": 0,              "hasReading": false, -            "frequency": 2 +            "frequency": 2, +            "displayValue": null, +            "displayValueParsed": false            },            {              "index": 1, @@ -2839,8 +3933,54 @@              "dictionary": "Test Dictionary 2",              "dictionaryIndex": 0,              "dictionaryPriority": 0, +            "hasReading": false, +            "frequency": 6, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 2, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0,              "hasReading": true, -            "frequency": 6 +            "frequency": 10, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 3, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 0, +            "displayValue": "sixteen", +            "displayValueParsed": true +          }, +          { +            "index": 4, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 22, +            "displayValue": "twenty-two (22)", +            "displayValueParsed": true +          }, +          { +            "index": 5, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 28, +            "displayValue": null, +            "displayValueParsed": false            }          ]        }, @@ -2946,7 +4086,9 @@              "dictionaryIndex": 0,              "dictionaryPriority": 0,              "hasReading": false, -            "frequency": 2 +            "frequency": 2, +            "displayValue": null, +            "displayValueParsed": false            },            {              "index": 1, @@ -2954,8 +4096,54 @@              "dictionary": "Test Dictionary 2",              "dictionaryIndex": 0,              "dictionaryPriority": 0, +            "hasReading": false, +            "frequency": 6, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 2, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 10, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 3, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 0, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 4, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0,              "hasReading": true, -            "frequency": 6 +            "frequency": 22, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 5, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 28, +            "displayValue": null, +            "displayValueParsed": false            }          ]        } @@ -3067,7 +4255,9 @@              "dictionaryIndex": 0,              "dictionaryPriority": 0,              "hasReading": false, -            "frequency": 2 +            "frequency": 2, +            "displayValue": null, +            "displayValueParsed": false            },            {              "index": 1, @@ -3075,8 +4265,54 @@              "dictionary": "Test Dictionary 2",              "dictionaryIndex": 0,              "dictionaryPriority": 0, +            "hasReading": false, +            "frequency": 6, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 2, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 11, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 3, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0,              "hasReading": true, -            "frequency": 7 +            "frequency": 0, +            "displayValue": "seventeen", +            "displayValueParsed": true +          }, +          { +            "index": 4, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 23, +            "displayValue": "twenty-three (23)", +            "displayValueParsed": true +          }, +          { +            "index": 5, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 29, +            "displayValue": "twenty-nine", +            "displayValueParsed": false            }          ]        }, @@ -3182,7 +4418,9 @@              "dictionaryIndex": 0,              "dictionaryPriority": 0,              "hasReading": false, -            "frequency": 2 +            "frequency": 2, +            "displayValue": null, +            "displayValueParsed": false            },            {              "index": 1, @@ -3190,8 +4428,54 @@              "dictionary": "Test Dictionary 2",              "dictionaryIndex": 0,              "dictionaryPriority": 0, +            "hasReading": false, +            "frequency": 6, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 2, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 11, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 3, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0,              "hasReading": true, -            "frequency": 7 +            "frequency": 0, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 4, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 23, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 5, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 29, +            "displayValue": null, +            "displayValueParsed": false            }          ]        } @@ -3325,7 +4609,9 @@              "dictionaryIndex": 0,              "dictionaryPriority": 0,              "hasReading": false, -            "frequency": 3 +            "frequency": 3, +            "displayValue": null, +            "displayValueParsed": false            },            {              "index": 1, @@ -3333,8 +4619,54 @@              "dictionary": "Test Dictionary 2",              "dictionaryIndex": 0,              "dictionaryPriority": 0, +            "hasReading": false, +            "frequency": 7, +            "displayValue": "seven", +            "displayValueParsed": false +          }, +          { +            "index": 2, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 12, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 3, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 0, +            "displayValue": "eighteen", +            "displayValueParsed": true +          }, +          { +            "index": 4, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 24, +            "displayValue": "twenty-four (24)", +            "displayValueParsed": true +          }, +          { +            "index": 5, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0,              "hasReading": true, -            "frequency": 8 +            "frequency": 30, +            "displayValue": null, +            "displayValueParsed": false            }          ]        }, @@ -3462,7 +4794,9 @@              "dictionaryIndex": 0,              "dictionaryPriority": 0,              "hasReading": false, -            "frequency": 3 +            "frequency": 3, +            "displayValue": null, +            "displayValueParsed": false            },            {              "index": 1, @@ -3470,8 +4804,54 @@              "dictionary": "Test Dictionary 2",              "dictionaryIndex": 0,              "dictionaryPriority": 0, +            "hasReading": false, +            "frequency": 7, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 2, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0,              "hasReading": true, -            "frequency": 8 +            "frequency": 12, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 3, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 0, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 4, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 24, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 5, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 30, +            "displayValue": null, +            "displayValueParsed": false            }          ]        }, @@ -3579,7 +4959,9 @@              "dictionaryIndex": 0,              "dictionaryPriority": 0,              "hasReading": false, -            "frequency": 2 +            "frequency": 2, +            "displayValue": null, +            "displayValueParsed": false            },            {              "index": 1, @@ -3587,8 +4969,54 @@              "dictionary": "Test Dictionary 2",              "dictionaryIndex": 0,              "dictionaryPriority": 0, +            "hasReading": false, +            "frequency": 6, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 2, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0,              "hasReading": true, -            "frequency": 6 +            "frequency": 10, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 3, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 0, +            "displayValue": "sixteen", +            "displayValueParsed": true +          }, +          { +            "index": 4, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 22, +            "displayValue": "twenty-two (22)", +            "displayValueParsed": true +          }, +          { +            "index": 5, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 28, +            "displayValue": null, +            "displayValueParsed": false            }          ]        }, @@ -3696,7 +5124,9 @@              "dictionaryIndex": 0,              "dictionaryPriority": 0,              "hasReading": false, -            "frequency": 2 +            "frequency": 2, +            "displayValue": null, +            "displayValueParsed": false            },            {              "index": 1, @@ -3704,8 +5134,54 @@              "dictionary": "Test Dictionary 2",              "dictionaryIndex": 0,              "dictionaryPriority": 0, +            "hasReading": false, +            "frequency": 6, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 2, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 10, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 3, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 0, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 4, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0,              "hasReading": true, -            "frequency": 6 +            "frequency": 22, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 5, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 28, +            "displayValue": null, +            "displayValueParsed": false            }          ]        } @@ -3839,7 +5315,9 @@              "dictionaryIndex": 0,              "dictionaryPriority": 0,              "hasReading": false, -            "frequency": 3 +            "frequency": 3, +            "displayValue": null, +            "displayValueParsed": false            },            {              "index": 1, @@ -3847,8 +5325,54 @@              "dictionary": "Test Dictionary 2",              "dictionaryIndex": 0,              "dictionaryPriority": 0, +            "hasReading": false, +            "frequency": 7, +            "displayValue": "seven", +            "displayValueParsed": false +          }, +          { +            "index": 2, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 13, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 3, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0,              "hasReading": true, -            "frequency": 9 +            "frequency": 0, +            "displayValue": "nineteen", +            "displayValueParsed": true +          }, +          { +            "index": 4, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 25, +            "displayValue": "twenty-five (25)", +            "displayValueParsed": true +          }, +          { +            "index": 5, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 31, +            "displayValue": "thirty-one", +            "displayValueParsed": false            }          ]        }, @@ -3976,7 +5500,9 @@              "dictionaryIndex": 0,              "dictionaryPriority": 0,              "hasReading": false, -            "frequency": 3 +            "frequency": 3, +            "displayValue": null, +            "displayValueParsed": false            },            {              "index": 1, @@ -3984,8 +5510,54 @@              "dictionary": "Test Dictionary 2",              "dictionaryIndex": 0,              "dictionaryPriority": 0, +            "hasReading": false, +            "frequency": 7, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 2, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 13, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 3, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 0, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 4, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 25, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 5, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0,              "hasReading": true, -            "frequency": 9 +            "frequency": 31, +            "displayValue": null, +            "displayValueParsed": false            }          ]        }, @@ -4093,7 +5665,9 @@              "dictionaryIndex": 0,              "dictionaryPriority": 0,              "hasReading": false, -            "frequency": 2 +            "frequency": 2, +            "displayValue": null, +            "displayValueParsed": false            },            {              "index": 1, @@ -4101,8 +5675,54 @@              "dictionary": "Test Dictionary 2",              "dictionaryIndex": 0,              "dictionaryPriority": 0, +            "hasReading": false, +            "frequency": 6, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 2, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0,              "hasReading": true, -            "frequency": 7 +            "frequency": 11, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 3, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 0, +            "displayValue": "seventeen", +            "displayValueParsed": true +          }, +          { +            "index": 4, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 23, +            "displayValue": "twenty-three (23)", +            "displayValueParsed": true +          }, +          { +            "index": 5, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 29, +            "displayValue": "twenty-nine", +            "displayValueParsed": false            }          ]        }, @@ -4210,7 +5830,9 @@              "dictionaryIndex": 0,              "dictionaryPriority": 0,              "hasReading": false, -            "frequency": 2 +            "frequency": 2, +            "displayValue": null, +            "displayValueParsed": false            },            {              "index": 1, @@ -4218,8 +5840,54 @@              "dictionary": "Test Dictionary 2",              "dictionaryIndex": 0,              "dictionaryPriority": 0, +            "hasReading": false, +            "frequency": 6, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 2, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0,              "hasReading": true, -            "frequency": 7 +            "frequency": 11, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 3, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 0, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 4, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 23, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 5, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 29, +            "displayValue": null, +            "displayValueParsed": false            }          ]        } @@ -5086,7 +6754,9 @@              "dictionaryIndex": 0,              "dictionaryPriority": 0,              "hasReading": false, -            "frequency": 3 +            "frequency": 3, +            "displayValue": null, +            "displayValueParsed": false            },            {              "index": 1, @@ -5094,8 +6764,54 @@              "dictionary": "Test Dictionary 2",              "dictionaryIndex": 0,              "dictionaryPriority": 0, +            "hasReading": false, +            "frequency": 7, +            "displayValue": "seven", +            "displayValueParsed": false +          }, +          { +            "index": 2, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 12, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 3, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 0, +            "displayValue": "eighteen", +            "displayValueParsed": true +          }, +          { +            "index": 4, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 24, +            "displayValue": "twenty-four (24)", +            "displayValueParsed": true +          }, +          { +            "index": 5, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0,              "hasReading": true, -            "frequency": 8 +            "frequency": 30, +            "displayValue": null, +            "displayValueParsed": false            }          ]        }, @@ -5271,7 +6987,9 @@              "dictionaryIndex": 0,              "dictionaryPriority": 0,              "hasReading": false, -            "frequency": 3 +            "frequency": 3, +            "displayValue": null, +            "displayValueParsed": false            },            {              "index": 1, @@ -5279,8 +6997,54 @@              "dictionary": "Test Dictionary 2",              "dictionaryIndex": 0,              "dictionaryPriority": 0, +            "hasReading": false, +            "frequency": 7, +            "displayValue": "seven", +            "displayValueParsed": false +          }, +          { +            "index": 2, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0,              "hasReading": true, -            "frequency": 9 +            "frequency": 13, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 3, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 0, +            "displayValue": "nineteen", +            "displayValueParsed": true +          }, +          { +            "index": 4, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 25, +            "displayValue": "twenty-five (25)", +            "displayValueParsed": true +          }, +          { +            "index": 5, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 31, +            "displayValue": "thirty-one", +            "displayValueParsed": false            }          ]        }, @@ -5436,7 +7200,9 @@              "dictionaryIndex": 0,              "dictionaryPriority": 0,              "hasReading": false, -            "frequency": 2 +            "frequency": 2, +            "displayValue": null, +            "displayValueParsed": false            },            {              "index": 1, @@ -5444,8 +7210,54 @@              "dictionary": "Test Dictionary 2",              "dictionaryIndex": 0,              "dictionaryPriority": 0, +            "hasReading": false, +            "frequency": 6, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 2, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0,              "hasReading": true, -            "frequency": 6 +            "frequency": 10, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 3, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 0, +            "displayValue": "sixteen", +            "displayValueParsed": true +          }, +          { +            "index": 4, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 22, +            "displayValue": "twenty-two (22)", +            "displayValueParsed": true +          }, +          { +            "index": 5, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 28, +            "displayValue": null, +            "displayValueParsed": false            }          ]        }, @@ -5601,7 +7413,9 @@              "dictionaryIndex": 0,              "dictionaryPriority": 0,              "hasReading": false, -            "frequency": 2 +            "frequency": 2, +            "displayValue": null, +            "displayValueParsed": false            },            {              "index": 1, @@ -5609,8 +7423,54 @@              "dictionary": "Test Dictionary 2",              "dictionaryIndex": 0,              "dictionaryPriority": 0, +            "hasReading": false, +            "frequency": 6, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 2, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 11, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 3, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 0, +            "displayValue": "seventeen", +            "displayValueParsed": true +          }, +          { +            "index": 4, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 23, +            "displayValue": "twenty-three (23)", +            "displayValueParsed": true +          }, +          { +            "index": 5, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0,              "hasReading": true, -            "frequency": 7 +            "frequency": 29, +            "displayValue": "twenty-nine", +            "displayValueParsed": false            }          ]        }, @@ -5703,7 +7563,9 @@              "dictionaryIndex": 0,              "dictionaryPriority": 0,              "hasReading": false, -            "frequency": 1 +            "frequency": 1, +            "displayValue": null, +            "displayValueParsed": false            },            {              "index": 1, @@ -5711,8 +7573,65 @@              "dictionary": "Test Dictionary 2",              "dictionaryIndex": 0,              "dictionaryPriority": 0, +            "hasReading": false, +            "frequency": 0, +            "displayValue": "four", +            "displayValueParsed": true +          }, +          { +            "index": 2, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": false, +            "frequency": 5, +            "displayValue": "five (5)", +            "displayValueParsed": true +          }, +          { +            "index": 3, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 8, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 4, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 0, +            "displayValue": "fourteen", +            "displayValueParsed": true +          }, +          { +            "index": 5, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 20, +            "displayValue": "twenty (20)", +            "displayValueParsed": true +          }, +          { +            "index": 6, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0,              "hasReading": true, -            "frequency": 4 +            "frequency": 26, +            "displayValue": null, +            "displayValueParsed": false            }          ]        }, @@ -5818,7 +7737,9 @@              "dictionaryIndex": 0,              "dictionaryPriority": 0,              "hasReading": false, -            "frequency": 1 +            "frequency": 1, +            "displayValue": null, +            "displayValueParsed": false            },            {              "index": 1, @@ -5826,8 +7747,65 @@              "dictionary": "Test Dictionary 2",              "dictionaryIndex": 0,              "dictionaryPriority": 0, +            "hasReading": false, +            "frequency": 0, +            "displayValue": "four", +            "displayValueParsed": true +          }, +          { +            "index": 2, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": false, +            "frequency": 5, +            "displayValue": "five (5)", +            "displayValueParsed": true +          }, +          { +            "index": 3, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 9, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 4, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0,              "hasReading": true, -            "frequency": 5 +            "frequency": 0, +            "displayValue": "fifteen", +            "displayValueParsed": true +          }, +          { +            "index": 5, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 21, +            "displayValue": "twenty-one (21)", +            "displayValueParsed": true +          }, +          { +            "index": 6, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 27, +            "displayValue": "twenty-seven", +            "displayValueParsed": false            }          ]        } @@ -6157,7 +8135,9 @@              "dictionaryIndex": 0,              "dictionaryPriority": 0,              "hasReading": false, -            "frequency": 3 +            "frequency": 3, +            "displayValue": null, +            "displayValueParsed": false            },            {              "index": 2, @@ -6165,8 +8145,54 @@              "dictionary": "Test Dictionary 2",              "dictionaryIndex": 0,              "dictionaryPriority": 0, +            "hasReading": false, +            "frequency": 7, +            "displayValue": "seven", +            "displayValueParsed": false +          }, +          { +            "index": 4, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 12, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 6, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 0, +            "displayValue": "eighteen", +            "displayValueParsed": true +          }, +          { +            "index": 8, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0,              "hasReading": true, -            "frequency": 8 +            "frequency": 24, +            "displayValue": "twenty-four (24)", +            "displayValueParsed": true +          }, +          { +            "index": 10, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 30, +            "displayValue": null, +            "displayValueParsed": false            },            {              "index": 1, @@ -6175,7 +8201,9 @@              "dictionaryIndex": 0,              "dictionaryPriority": 0,              "hasReading": false, -            "frequency": 3 +            "frequency": 3, +            "displayValue": null, +            "displayValueParsed": false            },            {              "index": 3, @@ -6183,8 +8211,54 @@              "dictionary": "Test Dictionary 2",              "dictionaryIndex": 0,              "dictionaryPriority": 0, +            "hasReading": false, +            "frequency": 7, +            "displayValue": "seven", +            "displayValueParsed": false +          }, +          { +            "index": 5, +            "headwordIndex": 1, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 13, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 7, +            "headwordIndex": 1, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 0, +            "displayValue": "nineteen", +            "displayValueParsed": true +          }, +          { +            "index": 9, +            "headwordIndex": 1, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 25, +            "displayValue": "twenty-five (25)", +            "displayValueParsed": true +          }, +          { +            "index": 11, +            "headwordIndex": 1, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0,              "hasReading": true, -            "frequency": 9 +            "frequency": 31, +            "displayValue": "thirty-one", +            "displayValueParsed": false            }          ]        }, @@ -6467,7 +8541,9 @@              "dictionaryIndex": 0,              "dictionaryPriority": 0,              "hasReading": false, -            "frequency": 2 +            "frequency": 2, +            "displayValue": null, +            "displayValueParsed": false            },            {              "index": 2, @@ -6475,8 +8551,54 @@              "dictionary": "Test Dictionary 2",              "dictionaryIndex": 0,              "dictionaryPriority": 0, +            "hasReading": false, +            "frequency": 6, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 4, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 10, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 6, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0,              "hasReading": true, -            "frequency": 6 +            "frequency": 0, +            "displayValue": "sixteen", +            "displayValueParsed": true +          }, +          { +            "index": 8, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 22, +            "displayValue": "twenty-two (22)", +            "displayValueParsed": true +          }, +          { +            "index": 10, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 28, +            "displayValue": null, +            "displayValueParsed": false            },            {              "index": 1, @@ -6485,7 +8607,9 @@              "dictionaryIndex": 0,              "dictionaryPriority": 0,              "hasReading": false, -            "frequency": 2 +            "frequency": 2, +            "displayValue": null, +            "displayValueParsed": false            },            {              "index": 3, @@ -6493,8 +8617,54 @@              "dictionary": "Test Dictionary 2",              "dictionaryIndex": 0,              "dictionaryPriority": 0, +            "hasReading": false, +            "frequency": 6, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 5, +            "headwordIndex": 1, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 11, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 7, +            "headwordIndex": 1, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0,              "hasReading": true, -            "frequency": 7 +            "frequency": 0, +            "displayValue": "seventeen", +            "displayValueParsed": true +          }, +          { +            "index": 9, +            "headwordIndex": 1, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 23, +            "displayValue": "twenty-three (23)", +            "displayValueParsed": true +          }, +          { +            "index": 11, +            "headwordIndex": 1, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 29, +            "displayValue": "twenty-nine", +            "displayValueParsed": false            }          ]        }, @@ -6587,7 +8757,9 @@              "dictionaryIndex": 0,              "dictionaryPriority": 0,              "hasReading": false, -            "frequency": 1 +            "frequency": 1, +            "displayValue": null, +            "displayValueParsed": false            },            {              "index": 1, @@ -6595,8 +8767,65 @@              "dictionary": "Test Dictionary 2",              "dictionaryIndex": 0,              "dictionaryPriority": 0, +            "hasReading": false, +            "frequency": 0, +            "displayValue": "four", +            "displayValueParsed": true +          }, +          { +            "index": 2, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": false, +            "frequency": 5, +            "displayValue": "five (5)", +            "displayValueParsed": true +          }, +          { +            "index": 3, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 8, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 4, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 0, +            "displayValue": "fourteen", +            "displayValueParsed": true +          }, +          { +            "index": 5, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0,              "hasReading": true, -            "frequency": 4 +            "frequency": 20, +            "displayValue": "twenty (20)", +            "displayValueParsed": true +          }, +          { +            "index": 6, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 26, +            "displayValue": null, +            "displayValueParsed": false            }          ]        }, @@ -6702,7 +8931,9 @@              "dictionaryIndex": 0,              "dictionaryPriority": 0,              "hasReading": false, -            "frequency": 1 +            "frequency": 1, +            "displayValue": null, +            "displayValueParsed": false            },            {              "index": 1, @@ -6710,8 +8941,65 @@              "dictionary": "Test Dictionary 2",              "dictionaryIndex": 0,              "dictionaryPriority": 0, +            "hasReading": false, +            "frequency": 0, +            "displayValue": "four", +            "displayValueParsed": true +          }, +          { +            "index": 2, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": false, +            "frequency": 5, +            "displayValue": "five (5)", +            "displayValueParsed": true +          }, +          { +            "index": 3, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 9, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 4, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0,              "hasReading": true, -            "frequency": 5 +            "frequency": 0, +            "displayValue": "fifteen", +            "displayValueParsed": true +          }, +          { +            "index": 5, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 21, +            "displayValue": "twenty-one (21)", +            "displayValueParsed": true +          }, +          { +            "index": 6, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 27, +            "displayValue": "twenty-seven", +            "displayValueParsed": false            }          ]        } @@ -6849,7 +9137,9 @@              "dictionaryIndex": 0,              "dictionaryPriority": 0,              "hasReading": false, -            "frequency": 3 +            "frequency": 3, +            "displayValue": null, +            "displayValueParsed": false            },            {              "index": 1, @@ -6857,8 +9147,54 @@              "dictionary": "Test Dictionary 2",              "dictionaryIndex": 0,              "dictionaryPriority": 0, +            "hasReading": false, +            "frequency": 7, +            "displayValue": "seven", +            "displayValueParsed": false +          }, +          { +            "index": 2, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 12, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 3, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 0, +            "displayValue": "eighteen", +            "displayValueParsed": true +          }, +          { +            "index": 4, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0,              "hasReading": true, -            "frequency": 8 +            "frequency": 24, +            "displayValue": "twenty-four (24)", +            "displayValueParsed": true +          }, +          { +            "index": 5, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 30, +            "displayValue": null, +            "displayValueParsed": false            }          ]        }, @@ -6990,7 +9326,9 @@              "dictionaryIndex": 0,              "dictionaryPriority": 0,              "hasReading": false, -            "frequency": 3 +            "frequency": 3, +            "displayValue": null, +            "displayValueParsed": false            },            {              "index": 1, @@ -6998,8 +9336,54 @@              "dictionary": "Test Dictionary 2",              "dictionaryIndex": 0,              "dictionaryPriority": 0, +            "hasReading": false, +            "frequency": 7, +            "displayValue": "seven", +            "displayValueParsed": false +          }, +          { +            "index": 2, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0,              "hasReading": true, -            "frequency": 9 +            "frequency": 13, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 3, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 0, +            "displayValue": "nineteen", +            "displayValueParsed": true +          }, +          { +            "index": 4, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 25, +            "displayValue": "twenty-five (25)", +            "displayValueParsed": true +          }, +          { +            "index": 5, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 31, +            "displayValue": "thirty-one", +            "displayValueParsed": false            }          ]        }, @@ -7131,7 +9515,9 @@              "dictionaryIndex": 0,              "dictionaryPriority": 0,              "hasReading": false, -            "frequency": 3 +            "frequency": 3, +            "displayValue": null, +            "displayValueParsed": false            },            {              "index": 1, @@ -7139,8 +9525,54 @@              "dictionary": "Test Dictionary 2",              "dictionaryIndex": 0,              "dictionaryPriority": 0, +            "hasReading": false, +            "frequency": 7, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 2, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0,              "hasReading": true, -            "frequency": 8 +            "frequency": 12, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 3, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 0, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 4, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 24, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 5, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 30, +            "displayValue": null, +            "displayValueParsed": false            }          ]        }, @@ -7272,7 +9704,9 @@              "dictionaryIndex": 0,              "dictionaryPriority": 0,              "hasReading": false, -            "frequency": 3 +            "frequency": 3, +            "displayValue": null, +            "displayValueParsed": false            },            {              "index": 1, @@ -7280,8 +9714,54 @@              "dictionary": "Test Dictionary 2",              "dictionaryIndex": 0,              "dictionaryPriority": 0, +            "hasReading": false, +            "frequency": 7, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 2, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 13, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 3, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0,              "hasReading": true, -            "frequency": 9 +            "frequency": 0, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 4, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 25, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 5, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 31, +            "displayValue": null, +            "displayValueParsed": false            }          ]        }, @@ -7389,7 +9869,9 @@              "dictionaryIndex": 0,              "dictionaryPriority": 0,              "hasReading": false, -            "frequency": 2 +            "frequency": 2, +            "displayValue": null, +            "displayValueParsed": false            },            {              "index": 1, @@ -7397,8 +9879,54 @@              "dictionary": "Test Dictionary 2",              "dictionaryIndex": 0,              "dictionaryPriority": 0, +            "hasReading": false, +            "frequency": 6, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 2, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 10, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 3, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 0, +            "displayValue": "sixteen", +            "displayValueParsed": true +          }, +          { +            "index": 4, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0,              "hasReading": true, -            "frequency": 6 +            "frequency": 22, +            "displayValue": "twenty-two (22)", +            "displayValueParsed": true +          }, +          { +            "index": 5, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 28, +            "displayValue": null, +            "displayValueParsed": false            }          ]        }, @@ -7506,7 +10034,9 @@              "dictionaryIndex": 0,              "dictionaryPriority": 0,              "hasReading": false, -            "frequency": 2 +            "frequency": 2, +            "displayValue": null, +            "displayValueParsed": false            },            {              "index": 1, @@ -7514,8 +10044,54 @@              "dictionary": "Test Dictionary 2",              "dictionaryIndex": 0,              "dictionaryPriority": 0, +            "hasReading": false, +            "frequency": 6, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 2, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 11, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 3, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 0, +            "displayValue": "seventeen", +            "displayValueParsed": true +          }, +          { +            "index": 4, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 23, +            "displayValue": "twenty-three (23)", +            "displayValueParsed": true +          }, +          { +            "index": 5, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0,              "hasReading": true, -            "frequency": 7 +            "frequency": 29, +            "displayValue": "twenty-nine", +            "displayValueParsed": false            }          ]        }, @@ -7623,7 +10199,9 @@              "dictionaryIndex": 0,              "dictionaryPriority": 0,              "hasReading": false, -            "frequency": 2 +            "frequency": 2, +            "displayValue": null, +            "displayValueParsed": false            },            {              "index": 1, @@ -7631,8 +10209,54 @@              "dictionary": "Test Dictionary 2",              "dictionaryIndex": 0,              "dictionaryPriority": 0, +            "hasReading": false, +            "frequency": 6, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 2, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 10, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 3, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 0, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 4, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0,              "hasReading": true, -            "frequency": 6 +            "frequency": 22, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 5, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 28, +            "displayValue": null, +            "displayValueParsed": false            }          ]        }, @@ -7740,7 +10364,9 @@              "dictionaryIndex": 0,              "dictionaryPriority": 0,              "hasReading": false, -            "frequency": 2 +            "frequency": 2, +            "displayValue": null, +            "displayValueParsed": false            },            {              "index": 1, @@ -7748,8 +10374,54 @@              "dictionary": "Test Dictionary 2",              "dictionaryIndex": 0,              "dictionaryPriority": 0, +            "hasReading": false, +            "frequency": 6, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 2, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0,              "hasReading": true, -            "frequency": 7 +            "frequency": 11, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 3, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 0, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 4, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 23, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 5, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 29, +            "displayValue": null, +            "displayValueParsed": false            }          ]        }, @@ -7842,7 +10514,9 @@              "dictionaryIndex": 0,              "dictionaryPriority": 0,              "hasReading": false, -            "frequency": 1 +            "frequency": 1, +            "displayValue": null, +            "displayValueParsed": false            },            {              "index": 1, @@ -7850,8 +10524,65 @@              "dictionary": "Test Dictionary 2",              "dictionaryIndex": 0,              "dictionaryPriority": 0, +            "hasReading": false, +            "frequency": 0, +            "displayValue": "four", +            "displayValueParsed": true +          }, +          { +            "index": 2, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": false, +            "frequency": 5, +            "displayValue": "five (5)", +            "displayValueParsed": true +          }, +          { +            "index": 3, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 8, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 4, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 0, +            "displayValue": "fourteen", +            "displayValueParsed": true +          }, +          { +            "index": 5, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0,              "hasReading": true, -            "frequency": 4 +            "frequency": 20, +            "displayValue": "twenty (20)", +            "displayValueParsed": true +          }, +          { +            "index": 6, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 26, +            "displayValue": null, +            "displayValueParsed": false            }          ]        }, @@ -7957,7 +10688,9 @@              "dictionaryIndex": 0,              "dictionaryPriority": 0,              "hasReading": false, -            "frequency": 1 +            "frequency": 1, +            "displayValue": null, +            "displayValueParsed": false            },            {              "index": 1, @@ -7965,8 +10698,65 @@              "dictionary": "Test Dictionary 2",              "dictionaryIndex": 0,              "dictionaryPriority": 0, +            "hasReading": false, +            "frequency": 0, +            "displayValue": "four", +            "displayValueParsed": true +          }, +          { +            "index": 2, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": false, +            "frequency": 5, +            "displayValue": "five (5)", +            "displayValueParsed": true +          }, +          { +            "index": 3, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 9, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 4, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0,              "hasReading": true, -            "frequency": 5 +            "frequency": 0, +            "displayValue": "fifteen", +            "displayValueParsed": true +          }, +          { +            "index": 5, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 21, +            "displayValue": "twenty-one (21)", +            "displayValueParsed": true +          }, +          { +            "index": 6, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 27, +            "displayValue": "twenty-seven", +            "displayValueParsed": false            }          ]        } @@ -8100,7 +10890,9 @@              "dictionaryIndex": 0,              "dictionaryPriority": 0,              "hasReading": false, -            "frequency": 3 +            "frequency": 3, +            "displayValue": null, +            "displayValueParsed": false            },            {              "index": 1, @@ -8108,8 +10900,54 @@              "dictionary": "Test Dictionary 2",              "dictionaryIndex": 0,              "dictionaryPriority": 0, +            "hasReading": false, +            "frequency": 7, +            "displayValue": "seven", +            "displayValueParsed": false +          }, +          { +            "index": 2, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 12, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 3, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 0, +            "displayValue": "eighteen", +            "displayValueParsed": true +          }, +          { +            "index": 4, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0,              "hasReading": true, -            "frequency": 8 +            "frequency": 24, +            "displayValue": "twenty-four (24)", +            "displayValueParsed": true +          }, +          { +            "index": 5, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 30, +            "displayValue": null, +            "displayValueParsed": false            }          ]        }, @@ -8237,7 +11075,9 @@              "dictionaryIndex": 0,              "dictionaryPriority": 0,              "hasReading": false, -            "frequency": 3 +            "frequency": 3, +            "displayValue": null, +            "displayValueParsed": false            },            {              "index": 1, @@ -8245,8 +11085,54 @@              "dictionary": "Test Dictionary 2",              "dictionaryIndex": 0,              "dictionaryPriority": 0, +            "hasReading": false, +            "frequency": 7, +            "displayValue": "seven", +            "displayValueParsed": false +          }, +          { +            "index": 2, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0,              "hasReading": true, -            "frequency": 9 +            "frequency": 13, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 3, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 0, +            "displayValue": "nineteen", +            "displayValueParsed": true +          }, +          { +            "index": 4, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 25, +            "displayValue": "twenty-five (25)", +            "displayValueParsed": true +          }, +          { +            "index": 5, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 31, +            "displayValue": "thirty-one", +            "displayValueParsed": false            }          ]        }, @@ -8374,7 +11260,9 @@              "dictionaryIndex": 0,              "dictionaryPriority": 0,              "hasReading": false, -            "frequency": 3 +            "frequency": 3, +            "displayValue": null, +            "displayValueParsed": false            },            {              "index": 1, @@ -8382,8 +11270,54 @@              "dictionary": "Test Dictionary 2",              "dictionaryIndex": 0,              "dictionaryPriority": 0, +            "hasReading": false, +            "frequency": 7, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 2, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 12, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 3, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 0, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 4, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0,              "hasReading": true, -            "frequency": 8 +            "frequency": 24, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 5, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 30, +            "displayValue": null, +            "displayValueParsed": false            }          ]        }, @@ -8511,7 +11445,9 @@              "dictionaryIndex": 0,              "dictionaryPriority": 0,              "hasReading": false, -            "frequency": 3 +            "frequency": 3, +            "displayValue": null, +            "displayValueParsed": false            },            {              "index": 1, @@ -8519,8 +11455,54 @@              "dictionary": "Test Dictionary 2",              "dictionaryIndex": 0,              "dictionaryPriority": 0, +            "hasReading": false, +            "frequency": 7, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 2, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 13, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 3, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0,              "hasReading": true, -            "frequency": 9 +            "frequency": 0, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 4, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 25, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 5, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 31, +            "displayValue": null, +            "displayValueParsed": false            }          ]        }, @@ -8628,7 +11610,9 @@              "dictionaryIndex": 0,              "dictionaryPriority": 0,              "hasReading": false, -            "frequency": 2 +            "frequency": 2, +            "displayValue": null, +            "displayValueParsed": false            },            {              "index": 1, @@ -8636,8 +11620,54 @@              "dictionary": "Test Dictionary 2",              "dictionaryIndex": 0,              "dictionaryPriority": 0, +            "hasReading": false, +            "frequency": 6, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 2, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 10, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 3, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0,              "hasReading": true, -            "frequency": 6 +            "frequency": 0, +            "displayValue": "sixteen", +            "displayValueParsed": true +          }, +          { +            "index": 4, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 22, +            "displayValue": "twenty-two (22)", +            "displayValueParsed": true +          }, +          { +            "index": 5, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 28, +            "displayValue": null, +            "displayValueParsed": false            }          ]        }, @@ -8745,7 +11775,9 @@              "dictionaryIndex": 0,              "dictionaryPriority": 0,              "hasReading": false, -            "frequency": 2 +            "frequency": 2, +            "displayValue": null, +            "displayValueParsed": false            },            {              "index": 1, @@ -8753,8 +11785,54 @@              "dictionary": "Test Dictionary 2",              "dictionaryIndex": 0,              "dictionaryPriority": 0, +            "hasReading": false, +            "frequency": 6, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 2, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 11, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 3, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 0, +            "displayValue": "seventeen", +            "displayValueParsed": true +          }, +          { +            "index": 4, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 23, +            "displayValue": "twenty-three (23)", +            "displayValueParsed": true +          }, +          { +            "index": 5, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0,              "hasReading": true, -            "frequency": 7 +            "frequency": 29, +            "displayValue": "twenty-nine", +            "displayValueParsed": false            }          ]        }, @@ -8862,7 +11940,9 @@              "dictionaryIndex": 0,              "dictionaryPriority": 0,              "hasReading": false, -            "frequency": 2 +            "frequency": 2, +            "displayValue": null, +            "displayValueParsed": false            },            {              "index": 1, @@ -8870,8 +11950,54 @@              "dictionary": "Test Dictionary 2",              "dictionaryIndex": 0,              "dictionaryPriority": 0, +            "hasReading": false, +            "frequency": 6, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 2, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0,              "hasReading": true, -            "frequency": 6 +            "frequency": 10, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 3, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 0, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 4, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 22, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 5, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 28, +            "displayValue": null, +            "displayValueParsed": false            }          ]        }, @@ -8979,7 +12105,9 @@              "dictionaryIndex": 0,              "dictionaryPriority": 0,              "hasReading": false, -            "frequency": 2 +            "frequency": 2, +            "displayValue": null, +            "displayValueParsed": false            },            {              "index": 1, @@ -8987,8 +12115,54 @@              "dictionary": "Test Dictionary 2",              "dictionaryIndex": 0,              "dictionaryPriority": 0, +            "hasReading": false, +            "frequency": 6, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 2, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0,              "hasReading": true, -            "frequency": 7 +            "frequency": 11, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 3, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 0, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 4, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 23, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 5, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 29, +            "displayValue": null, +            "displayValueParsed": false            }          ]        }, @@ -9081,7 +12255,9 @@              "dictionaryIndex": 0,              "dictionaryPriority": 0,              "hasReading": false, -            "frequency": 1 +            "frequency": 1, +            "displayValue": null, +            "displayValueParsed": false            },            {              "index": 1, @@ -9089,8 +12265,65 @@              "dictionary": "Test Dictionary 2",              "dictionaryIndex": 0,              "dictionaryPriority": 0, +            "hasReading": false, +            "frequency": 0, +            "displayValue": "four", +            "displayValueParsed": true +          }, +          { +            "index": 2, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": false, +            "frequency": 5, +            "displayValue": "five (5)", +            "displayValueParsed": true +          }, +          { +            "index": 3, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 8, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 4, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 0, +            "displayValue": "fourteen", +            "displayValueParsed": true +          }, +          { +            "index": 5, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 20, +            "displayValue": "twenty (20)", +            "displayValueParsed": true +          }, +          { +            "index": 6, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0,              "hasReading": true, -            "frequency": 4 +            "frequency": 26, +            "displayValue": null, +            "displayValueParsed": false            }          ]        }, @@ -9196,7 +12429,9 @@              "dictionaryIndex": 0,              "dictionaryPriority": 0,              "hasReading": false, -            "frequency": 1 +            "frequency": 1, +            "displayValue": null, +            "displayValueParsed": false            },            {              "index": 1, @@ -9204,8 +12439,65 @@              "dictionary": "Test Dictionary 2",              "dictionaryIndex": 0,              "dictionaryPriority": 0, +            "hasReading": false, +            "frequency": 0, +            "displayValue": "four", +            "displayValueParsed": true +          }, +          { +            "index": 2, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": false, +            "frequency": 5, +            "displayValue": "five (5)", +            "displayValueParsed": true +          }, +          { +            "index": 3, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0,              "hasReading": true, -            "frequency": 5 +            "frequency": 9, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 4, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 0, +            "displayValue": "fifteen", +            "displayValueParsed": true +          }, +          { +            "index": 5, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 21, +            "displayValue": "twenty-one (21)", +            "displayValueParsed": true +          }, +          { +            "index": 6, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 27, +            "displayValue": "twenty-seven", +            "displayValueParsed": false            }          ]        } @@ -9339,7 +12631,9 @@              "dictionaryIndex": 0,              "dictionaryPriority": 0,              "hasReading": false, -            "frequency": 3 +            "frequency": 3, +            "displayValue": null, +            "displayValueParsed": false            },            {              "index": 1, @@ -9347,8 +12641,54 @@              "dictionary": "Test Dictionary 2",              "dictionaryIndex": 0,              "dictionaryPriority": 0, +            "hasReading": false, +            "frequency": 7, +            "displayValue": "seven", +            "displayValueParsed": false +          }, +          { +            "index": 2, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 12, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 3, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0,              "hasReading": true, -            "frequency": 8 +            "frequency": 0, +            "displayValue": "eighteen", +            "displayValueParsed": true +          }, +          { +            "index": 4, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 24, +            "displayValue": "twenty-four (24)", +            "displayValueParsed": true +          }, +          { +            "index": 5, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 30, +            "displayValue": null, +            "displayValueParsed": false            }          ]        }, @@ -9476,7 +12816,9 @@              "dictionaryIndex": 0,              "dictionaryPriority": 0,              "hasReading": false, -            "frequency": 3 +            "frequency": 3, +            "displayValue": null, +            "displayValueParsed": false            },            {              "index": 1, @@ -9484,8 +12826,54 @@              "dictionary": "Test Dictionary 2",              "dictionaryIndex": 0,              "dictionaryPriority": 0, +            "hasReading": false, +            "frequency": 7, +            "displayValue": "seven", +            "displayValueParsed": false +          }, +          { +            "index": 2, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0,              "hasReading": true, -            "frequency": 9 +            "frequency": 13, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 3, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 0, +            "displayValue": "nineteen", +            "displayValueParsed": true +          }, +          { +            "index": 4, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 25, +            "displayValue": "twenty-five (25)", +            "displayValueParsed": true +          }, +          { +            "index": 5, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 31, +            "displayValue": "thirty-one", +            "displayValueParsed": false            }          ]        }, @@ -9613,7 +13001,9 @@              "dictionaryIndex": 0,              "dictionaryPriority": 0,              "hasReading": false, -            "frequency": 3 +            "frequency": 3, +            "displayValue": null, +            "displayValueParsed": false            },            {              "index": 1, @@ -9621,8 +13011,54 @@              "dictionary": "Test Dictionary 2",              "dictionaryIndex": 0,              "dictionaryPriority": 0, +            "hasReading": false, +            "frequency": 7, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 2, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0,              "hasReading": true, -            "frequency": 8 +            "frequency": 12, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 3, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 0, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 4, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 24, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 5, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 30, +            "displayValue": null, +            "displayValueParsed": false            }          ]        }, @@ -9750,7 +13186,9 @@              "dictionaryIndex": 0,              "dictionaryPriority": 0,              "hasReading": false, -            "frequency": 3 +            "frequency": 3, +            "displayValue": null, +            "displayValueParsed": false            },            {              "index": 1, @@ -9758,8 +13196,54 @@              "dictionary": "Test Dictionary 2",              "dictionaryIndex": 0,              "dictionaryPriority": 0, +            "hasReading": false, +            "frequency": 7, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 2, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0,              "hasReading": true, -            "frequency": 9 +            "frequency": 13, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 3, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 0, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 4, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 25, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 5, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 31, +            "displayValue": null, +            "displayValueParsed": false            }          ]        }, @@ -9867,7 +13351,9 @@              "dictionaryIndex": 0,              "dictionaryPriority": 0,              "hasReading": false, -            "frequency": 2 +            "frequency": 2, +            "displayValue": null, +            "displayValueParsed": false            },            {              "index": 1, @@ -9875,8 +13361,54 @@              "dictionary": "Test Dictionary 2",              "dictionaryIndex": 0,              "dictionaryPriority": 0, +            "hasReading": false, +            "frequency": 6, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 2, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 10, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 3, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0,              "hasReading": true, -            "frequency": 6 +            "frequency": 0, +            "displayValue": "sixteen", +            "displayValueParsed": true +          }, +          { +            "index": 4, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 22, +            "displayValue": "twenty-two (22)", +            "displayValueParsed": true +          }, +          { +            "index": 5, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 28, +            "displayValue": null, +            "displayValueParsed": false            }          ]        }, @@ -9984,7 +13516,9 @@              "dictionaryIndex": 0,              "dictionaryPriority": 0,              "hasReading": false, -            "frequency": 2 +            "frequency": 2, +            "displayValue": null, +            "displayValueParsed": false            },            {              "index": 1, @@ -9992,8 +13526,54 @@              "dictionary": "Test Dictionary 2",              "dictionaryIndex": 0,              "dictionaryPriority": 0, +            "hasReading": false, +            "frequency": 6, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 2, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 11, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 3, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0,              "hasReading": true, -            "frequency": 7 +            "frequency": 0, +            "displayValue": "seventeen", +            "displayValueParsed": true +          }, +          { +            "index": 4, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 23, +            "displayValue": "twenty-three (23)", +            "displayValueParsed": true +          }, +          { +            "index": 5, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 29, +            "displayValue": "twenty-nine", +            "displayValueParsed": false            }          ]        }, @@ -10101,7 +13681,9 @@              "dictionaryIndex": 0,              "dictionaryPriority": 0,              "hasReading": false, -            "frequency": 2 +            "frequency": 2, +            "displayValue": null, +            "displayValueParsed": false            },            {              "index": 1, @@ -10109,8 +13691,54 @@              "dictionary": "Test Dictionary 2",              "dictionaryIndex": 0,              "dictionaryPriority": 0, +            "hasReading": false, +            "frequency": 6, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 2, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0,              "hasReading": true, -            "frequency": 6 +            "frequency": 10, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 3, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 0, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 4, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 22, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 5, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 28, +            "displayValue": null, +            "displayValueParsed": false            }          ]        }, @@ -10218,7 +13846,9 @@              "dictionaryIndex": 0,              "dictionaryPriority": 0,              "hasReading": false, -            "frequency": 2 +            "frequency": 2, +            "displayValue": null, +            "displayValueParsed": false            },            {              "index": 1, @@ -10226,8 +13856,54 @@              "dictionary": "Test Dictionary 2",              "dictionaryIndex": 0,              "dictionaryPriority": 0, +            "hasReading": false, +            "frequency": 6, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 2, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0,              "hasReading": true, -            "frequency": 7 +            "frequency": 11, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 3, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 0, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 4, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 23, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 5, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 29, +            "displayValue": null, +            "displayValueParsed": false            }          ]        }, @@ -10320,7 +13996,9 @@              "dictionaryIndex": 0,              "dictionaryPriority": 0,              "hasReading": false, -            "frequency": 1 +            "frequency": 1, +            "displayValue": null, +            "displayValueParsed": false            },            {              "index": 1, @@ -10328,8 +14006,65 @@              "dictionary": "Test Dictionary 2",              "dictionaryIndex": 0,              "dictionaryPriority": 0, +            "hasReading": false, +            "frequency": 0, +            "displayValue": "four", +            "displayValueParsed": true +          }, +          { +            "index": 2, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": false, +            "frequency": 5, +            "displayValue": "five (5)", +            "displayValueParsed": true +          }, +          { +            "index": 3, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 8, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 4, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0,              "hasReading": true, -            "frequency": 4 +            "frequency": 0, +            "displayValue": "fourteen", +            "displayValueParsed": true +          }, +          { +            "index": 5, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 20, +            "displayValue": "twenty (20)", +            "displayValueParsed": true +          }, +          { +            "index": 6, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 26, +            "displayValue": null, +            "displayValueParsed": false            }          ]        }, @@ -10435,7 +14170,9 @@              "dictionaryIndex": 0,              "dictionaryPriority": 0,              "hasReading": false, -            "frequency": 1 +            "frequency": 1, +            "displayValue": null, +            "displayValueParsed": false            },            {              "index": 1, @@ -10443,8 +14180,65 @@              "dictionary": "Test Dictionary 2",              "dictionaryIndex": 0,              "dictionaryPriority": 0, +            "hasReading": false, +            "frequency": 0, +            "displayValue": "four", +            "displayValueParsed": true +          }, +          { +            "index": 2, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": false, +            "frequency": 5, +            "displayValue": "five (5)", +            "displayValueParsed": true +          }, +          { +            "index": 3, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 9, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 4, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0,              "hasReading": true, -            "frequency": 5 +            "frequency": 0, +            "displayValue": "fifteen", +            "displayValueParsed": true +          }, +          { +            "index": 5, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 21, +            "displayValue": "twenty-one (21)", +            "displayValueParsed": true +          }, +          { +            "index": 6, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 27, +            "displayValue": "twenty-seven", +            "displayValueParsed": false            }          ]        } @@ -11081,7 +14875,9 @@              "dictionaryIndex": 0,              "dictionaryPriority": 0,              "hasReading": false, -            "frequency": 3 +            "frequency": 3, +            "displayValue": null, +            "displayValueParsed": false            },            {              "index": 2, @@ -11089,8 +14885,54 @@              "dictionary": "Test Dictionary 2",              "dictionaryIndex": 0,              "dictionaryPriority": 0, +            "hasReading": false, +            "frequency": 7, +            "displayValue": "seven", +            "displayValueParsed": false +          }, +          { +            "index": 4, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 12, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 6, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 0, +            "displayValue": "eighteen", +            "displayValueParsed": true +          }, +          { +            "index": 8, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0,              "hasReading": true, -            "frequency": 8 +            "frequency": 24, +            "displayValue": "twenty-four (24)", +            "displayValueParsed": true +          }, +          { +            "index": 10, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 30, +            "displayValue": null, +            "displayValueParsed": false            },            {              "index": 1, @@ -11099,7 +14941,9 @@              "dictionaryIndex": 0,              "dictionaryPriority": 0,              "hasReading": false, -            "frequency": 3 +            "frequency": 3, +            "displayValue": null, +            "displayValueParsed": false            },            {              "index": 3, @@ -11107,8 +14951,54 @@              "dictionary": "Test Dictionary 2",              "dictionaryIndex": 0,              "dictionaryPriority": 0, +            "hasReading": false, +            "frequency": 7, +            "displayValue": "seven", +            "displayValueParsed": false +          }, +          { +            "index": 5, +            "headwordIndex": 1, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0,              "hasReading": true, -            "frequency": 9 +            "frequency": 13, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 7, +            "headwordIndex": 1, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 0, +            "displayValue": "nineteen", +            "displayValueParsed": true +          }, +          { +            "index": 9, +            "headwordIndex": 1, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 25, +            "displayValue": "twenty-five (25)", +            "displayValueParsed": true +          }, +          { +            "index": 11, +            "headwordIndex": 1, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 31, +            "displayValue": "thirty-one", +            "displayValueParsed": false            }          ]        }, @@ -11391,7 +15281,9 @@              "dictionaryIndex": 0,              "dictionaryPriority": 0,              "hasReading": false, -            "frequency": 2 +            "frequency": 2, +            "displayValue": null, +            "displayValueParsed": false            },            {              "index": 2, @@ -11399,8 +15291,54 @@              "dictionary": "Test Dictionary 2",              "dictionaryIndex": 0,              "dictionaryPriority": 0, +            "hasReading": false, +            "frequency": 6, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 4, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0,              "hasReading": true, -            "frequency": 6 +            "frequency": 10, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 6, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 0, +            "displayValue": "sixteen", +            "displayValueParsed": true +          }, +          { +            "index": 8, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 22, +            "displayValue": "twenty-two (22)", +            "displayValueParsed": true +          }, +          { +            "index": 10, +            "headwordIndex": 0, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 28, +            "displayValue": null, +            "displayValueParsed": false            },            {              "index": 1, @@ -11409,7 +15347,9 @@              "dictionaryIndex": 0,              "dictionaryPriority": 0,              "hasReading": false, -            "frequency": 2 +            "frequency": 2, +            "displayValue": null, +            "displayValueParsed": false            },            {              "index": 3, @@ -11417,8 +15357,54 @@              "dictionary": "Test Dictionary 2",              "dictionaryIndex": 0,              "dictionaryPriority": 0, +            "hasReading": false, +            "frequency": 6, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 5, +            "headwordIndex": 1, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 11, +            "displayValue": null, +            "displayValueParsed": false +          }, +          { +            "index": 7, +            "headwordIndex": 1, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 0, +            "displayValue": "seventeen", +            "displayValueParsed": true +          }, +          { +            "index": 9, +            "headwordIndex": 1, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0, +            "hasReading": true, +            "frequency": 23, +            "displayValue": "twenty-three (23)", +            "displayValueParsed": true +          }, +          { +            "index": 11, +            "headwordIndex": 1, +            "dictionary": "Test Dictionary 2", +            "dictionaryIndex": 0, +            "dictionaryPriority": 0,              "hasReading": true, -            "frequency": 7 +            "frequency": 29, +            "displayValue": "twenty-nine", +            "displayValueParsed": false            }          ]        } diff --git a/test/test-database.js b/test/test-database.js index c24dedbd..20eb6fe0 100644 --- a/test/test-database.js +++ b/test/test-database.js @@ -151,10 +151,10 @@ async function testDatabase1() {              prefixWildcardsSupported: true,              counts: {                  kanji: {total: 2}, -                kanjiMeta: {total: 2, freq: 2}, +                kanjiMeta: {total: 6, freq: 6},                  media: {total: 4},                  tagMeta: {total: 15}, -                termMeta: {total: 16, freq: 9, pitch: 7}, +                termMeta: {total: 38, freq: 31, pitch: 7},                  terms: {total: 20}              }          }; @@ -182,8 +182,8 @@ async function testDatabase1() {              true          );          vm.assert.deepStrictEqual(counts, { -            counts: [{kanji: 2, kanjiMeta: 2, terms: 20, termMeta: 16, tagMeta: 15, media: 4}], -            total: {kanji: 2, kanjiMeta: 2, terms: 20, termMeta: 16, tagMeta: 15, media: 4} +            counts: [{kanji: 2, kanjiMeta: 6, terms: 20, termMeta: 38, tagMeta: 15, media: 4}], +            total: {kanji: 2, kanjiMeta: 6, terms: 20, termMeta: 38, tagMeta: 15, media: 4}          });          // Test find* functions @@ -569,9 +569,9 @@ async function testFindTermMetaBulk1(database, titles) {                  }              ],              expectedResults: { -                total: 3, +                total: 11,                  modes: [ -                    ['freq', 3] +                    ['freq', 11]                  ]              }          }, @@ -582,9 +582,9 @@ async function testFindTermMetaBulk1(database, titles) {                  }              ],              expectedResults: { -                total: 3, +                total: 10,                  modes: [ -                    ['freq', 3] +                    ['freq', 10]                  ]              }          }, @@ -595,9 +595,9 @@ async function testFindTermMetaBulk1(database, titles) {                  }              ],              expectedResults: { -                total: 5, +                total: 12,                  modes: [ -                    ['freq', 3], +                    ['freq', 10],                      ['pitch', 2]                  ]              } @@ -687,9 +687,9 @@ async function testFindKanjiMetaBulk1(database, titles) {                  }              ],              expectedResults: { -                total: 1, +                total: 3,                  modes: [ -                    ['freq', 1] +                    ['freq', 3]                  ]              }          }, @@ -700,9 +700,9 @@ async function testFindKanjiMetaBulk1(database, titles) {                  }              ],              expectedResults: { -                total: 1, +                total: 3,                  modes: [ -                    ['freq', 1] +                    ['freq', 3]                  ]              }          },  |