aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortoasted-nutbread <toasted-nutbread@users.noreply.github.com>2021-03-07 17:55:51 -0500
committerGitHub <noreply@github.com>2021-03-07 17:55:51 -0500
commit19f6bf5a3a669cda311e5a3f162131d8a9823aef (patch)
treeb9e57be07764a782fa914a1faa877b2670d0e850
parent7793e14e57639426cb9ca64c82004151f9eaba05 (diff)
Refactor furigana segment data (#1502)
* Remove redundant language assignment * Segment furigana from DisplayGenerator * Remove furiganaSegments from translator data * Add backwards compatibility for furiganaSegments * Update tests
-rw-r--r--ext/display-templates.html2
-rw-r--r--ext/js/data/anki-note-data.js48
-rw-r--r--ext/js/display/display-generator.js13
-rw-r--r--ext/js/language/translator.js21
-rw-r--r--ext/js/templates/template-renderer-frame-main.js2
-rw-r--r--test/data/test-translator-data.json2996
6 files changed, 61 insertions, 3021 deletions
diff --git a/ext/display-templates.html b/ext/display-templates.html
index 949d4b56..20978d65 100644
--- a/ext/display-templates.html
+++ b/ext/display-templates.html
@@ -31,7 +31,7 @@
<div class="debug-info"><a class="debug-log-link">Log debug info to console</a></div>
</div></template>
<template id="expression-template" data-remove-whitespace-text="true"><div class="expression">
- <div class="expression-text-container" lang="ja">
+ <div class="expression-text-container">
<span class="expression-text-outer source-text">
<span class="expression-current-indicator"></span>
<span class="expression-text"></span>
diff --git a/ext/js/data/anki-note-data.js b/ext/js/data/anki-note-data.js
index a7d0f9f6..529bad18 100644
--- a/ext/js/data/anki-note-data.js
+++ b/ext/js/data/anki-note-data.js
@@ -24,7 +24,7 @@
* The public properties and data should be backwards compatible.
*/
class AnkiNoteData {
- constructor({
+ constructor(japaneseUtil, marker, {
definition,
resultOutputMode,
mode,
@@ -32,7 +32,8 @@ class AnkiNoteData {
compactTags,
context,
injectedMedia=null
- }, marker) {
+ }) {
+ this._japaneseUtil = japaneseUtil;
this._definition = definition;
this._resultOutputMode = resultOutputMode;
this._mode = mode;
@@ -47,6 +48,7 @@ class AnkiNoteData {
this._uniqueReadings = null;
this._publicContext = null;
this._cloze = null;
+ this._furiganaSegmentsCache = null;
this._prepareDefinition(definition, injectedMedia, context);
}
@@ -236,5 +238,47 @@ class AnkiNoteData {
enumerable: true,
get: this._getClozeCached.bind(this)
});
+
+ for (const definition2 of this._getAllDefinitions(definition)) {
+ if (definition2.type === 'term') {
+ this._defineFuriganaSegments(definition2);
+ }
+ for (const expression of definition2.expressions) {
+ this._defineFuriganaSegments(expression);
+ }
+ }
+ }
+
+ _defineFuriganaSegments(object) {
+ Object.defineProperty(object, 'furiganaSegments', {
+ configurable: true,
+ enumerable: true,
+ get: this._getFuriganaSegments.bind(this, object)
+ });
+ }
+
+ _getFuriganaSegments(object) {
+ if (this._furiganaSegmentsCache !== null) {
+ const cachedResult = this._furiganaSegmentsCache.get(object);
+ if (typeof cachedResult !== 'undefined') { return cachedResult; }
+ } else {
+ this._furiganaSegmentsCache = new Map();
+ }
+
+ const {expression, reading} = object;
+ const result = this._japaneseUtil.distributeFurigana(expression, reading);
+ this._furiganaSegmentsCache.set(object, result);
+ return result;
+ }
+
+ _getAllDefinitions(definition) {
+ const definitions = [definition];
+ for (let i = 0; i < definitions.length; ++i) {
+ const childDefinitions = definitions[i].definitions;
+ if (Array.isArray(childDefinitions)) {
+ definitions.push(...childDefinitions);
+ }
+ }
+ return definitions;
}
}
diff --git a/ext/js/display/display-generator.js b/ext/js/display/display-generator.js
index d8ae566e..c0945781 100644
--- a/ext/js/display/display-generator.js
+++ b/ext/js/display/display-generator.js
@@ -190,11 +190,9 @@ class DisplayGenerator {
disambiguationContainer.dataset[attribute] = value;
}
for (const {expression, reading} of disambiguation) {
- const segments = this._japaneseUtil.distributeFurigana(expression, reading);
const disambiguationItem = document.createElement('span');
disambiguationItem.className = 'tag-details-disambiguation';
- disambiguationItem.lang = 'ja';
- this._appendFurigana(disambiguationItem, segments, (container, text) => {
+ this._appendFurigana(disambiguationItem, expression, reading, (container, text) => {
container.appendChild(document.createTextNode(text));
});
disambiguationContainer.appendChild(disambiguationItem);
@@ -232,7 +230,7 @@ class DisplayGenerator {
// Private
_createTermExpression(details) {
- const {termFrequency, furiganaSegments, expression, reading, termTags, pitches} = details;
+ const {termFrequency, expression, reading, termTags, pitches} = details;
const searchQueries = [];
if (expression) { searchQueries.push(expression); }
@@ -253,7 +251,7 @@ class DisplayGenerator {
this._setTextContent(node.querySelector('.expression-reading'), reading);
- this._appendFurigana(expressionContainer, furiganaSegments, this._appendKanjiLinks.bind(this));
+ this._appendFurigana(expressionContainer, expression, reading, this._appendKanjiLinks.bind(this));
this._appendMultiple(tagContainer, this._createTag.bind(this), termTags);
this._appendMultiple(tagContainer, this._createSearchTag.bind(this), searchQueries);
@@ -651,7 +649,6 @@ class DisplayGenerator {
}
_appendKanjiLinks(container, text) {
- container.lang = 'ja';
const jp = this._japaneseUtil;
let part = '';
for (const c of text) {
@@ -692,7 +689,9 @@ class DisplayGenerator {
return count;
}
- _appendFurigana(container, segments, addText) {
+ _appendFurigana(container, expression, reading, addText) {
+ container.lang = 'ja';
+ const segments = this._japaneseUtil.distributeFurigana(expression, reading);
for (const {text, furigana} of segments) {
if (furigana) {
const ruby = document.createElement('ruby');
diff --git a/ext/js/language/translator.js b/ext/js/language/translator.js
index 18668306..5aa8ee9c 100644
--- a/ext/js/language/translator.js
+++ b/ext/js/language/translator.js
@@ -1080,8 +1080,7 @@ class Translator {
this._sortTags(definitionTagsExpanded);
this._sortTags(termTagsExpanded);
- const furiganaSegments = this._japaneseUtil.distributeFurigana(expression, reading);
- const termDetailsList = [this._createTermDetails(sourceTerm, expression, reading, furiganaSegments, termTagsExpanded)];
+ const termDetailsList = [this._createTermDetails(sourceTerm, expression, reading, termTagsExpanded)];
const sourceTermExactMatchCount = (sourceTerm === expression ? 1 : 0);
return {
@@ -1100,7 +1099,6 @@ class Translator {
expression,
reading,
expressions: termDetailsList,
- furiganaSegments,
glossary,
definitionTags: definitionTagsExpanded,
termTags: termTagsExpanded,
@@ -1118,12 +1116,12 @@ class Translator {
* @returns A single 'termGrouped' definition.
*/
_createGroupedTermDefinition(definitions) {
- const {reasons, source, rawSource, sourceTerm, expressions: [{expression, reading, furiganaSegments}]} = definitions[0];
+ const {reasons, source, rawSource, sourceTerm, expressions: [{expression, reading}]} = definitions[0];
const score = this._getMaxDefinitionScore(definitions);
const dictionaryOrder = this._getBestDictionaryOrder(definitions);
const dictionaryNames = this._getUniqueDictionaryNames(definitions);
const termTags = this._getUniqueTermTags(definitions);
- const termDetailsList = [this._createTermDetails(sourceTerm, expression, reading, furiganaSegments, termTags)];
+ const termDetailsList = [this._createTermDetails(sourceTerm, expression, reading, termTags)];
const sourceTermExactMatchCount = (sourceTerm === expression ? 1 : 0);
return {
type: 'termGrouped',
@@ -1141,7 +1139,6 @@ class Translator {
expression,
reading,
expressions: termDetailsList,
- furiganaSegments, // Contains duplicate data
// glossary
// definitionTags
termTags,
@@ -1173,7 +1170,6 @@ class Translator {
expression: expressions,
reading: readings,
expressions: termDetailsList,
- // furiganaSegments
// glossary
// definitionTags
// termTags
@@ -1221,7 +1217,6 @@ class Translator {
expression: [...expressions],
reading: [...readings],
expressions: termDetailsList,
- // furiganaSegments
glossary: [...glossary],
definitionTags,
// termTags
@@ -1240,7 +1235,7 @@ class Translator {
*/
_createTermDetailsList(definitions) {
const termInfoMap = new Map();
- for (const {expression, reading, sourceTerm, furiganaSegments, termTags} of definitions) {
+ for (const {expression, reading, sourceTerm, termTags} of definitions) {
let readingMap = termInfoMap.get(expression);
if (typeof readingMap === 'undefined') {
readingMap = new Map();
@@ -1251,7 +1246,6 @@ class Translator {
if (typeof termInfo === 'undefined') {
termInfo = {
sourceTerm,
- furiganaSegments,
termTagsMap: new Map()
};
readingMap.set(reading, termInfo);
@@ -1267,22 +1261,21 @@ class Translator {
const termDetailsList = [];
for (const [expression, readingMap] of termInfoMap.entries()) {
- for (const [reading, {termTagsMap, sourceTerm, furiganaSegments}] of readingMap.entries()) {
+ for (const [reading, {termTagsMap, sourceTerm}] of readingMap.entries()) {
const termTags = [...termTagsMap.values()];
this._sortTags(termTags);
- termDetailsList.push(this._createTermDetails(sourceTerm, expression, reading, furiganaSegments, termTags));
+ termDetailsList.push(this._createTermDetails(sourceTerm, expression, reading, termTags));
}
}
return termDetailsList;
}
- _createTermDetails(sourceTerm, expression, reading, furiganaSegments, termTags) {
+ _createTermDetails(sourceTerm, expression, reading, termTags) {
const termFrequency = this._scoreToTermFrequency(this._getTermTagsScoreSum(termTags));
return {
sourceTerm,
expression,
reading,
- furiganaSegments, // Contains duplicate data
termTags,
termFrequency,
frequencies: [],
diff --git a/ext/js/templates/template-renderer-frame-main.js b/ext/js/templates/template-renderer-frame-main.js
index a3892002..bfa18c82 100644
--- a/ext/js/templates/template-renderer-frame-main.js
+++ b/ext/js/templates/template-renderer-frame-main.js
@@ -26,7 +26,7 @@
const japaneseUtil = new JapaneseUtil(null);
const templateRenderer = new TemplateRenderer(japaneseUtil);
templateRenderer.registerDataType('ankiNote', {
- modifier: ({data, marker}) => new AnkiNoteData(data, marker).createPublic()
+ modifier: ({data, marker}) => new AnkiNoteData(japaneseUtil, marker, data).createPublic()
});
const templateRendererFrameApi = new TemplateRendererFrameApi(templateRenderer);
templateRendererFrameApi.prepare();
diff --git a/test/data/test-translator-data.json b/test/data/test-translator-data.json
index cb2920c7..0a94ff63 100644
--- a/test/data/test-translator-data.json
+++ b/test/data/test-translator-data.json
@@ -319,12 +319,6 @@
"sourceTerm": "打",
"expression": "打",
"reading": "だ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "だ"
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -386,12 +380,6 @@
"pitches": []
}
],
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "だ"
- }
- ],
"glossary": [
"definition1",
"definition2"
@@ -501,12 +489,6 @@
"sourceTerm": "打",
"expression": "打",
"reading": "ダース",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ダース"
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -568,12 +550,6 @@
"pitches": []
}
],
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ダース"
- }
- ],
"glossary": [
"definition3",
"definition4"
@@ -695,16 +671,6 @@
"sourceTerm": "打つ",
"expression": "打つ",
"reading": "うつ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "う"
- },
- {
- "text": "つ",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -766,16 +732,6 @@
"pitches": []
}
],
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "う"
- },
- {
- "text": "つ",
- "furigana": ""
- }
- ],
"glossary": [
"definition5",
"definition6"
@@ -885,16 +841,6 @@
"sourceTerm": "打つ",
"expression": "打つ",
"reading": "ぶつ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ぶ"
- },
- {
- "text": "つ",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -956,16 +902,6 @@
"pitches": []
}
],
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ぶ"
- },
- {
- "text": "つ",
- "furigana": ""
- }
- ],
"glossary": [
"definition9",
"definition10"
@@ -1075,16 +1011,6 @@
"sourceTerm": "打つ",
"expression": "打つ",
"reading": "うつ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "う"
- },
- {
- "text": "つ",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -1146,16 +1072,6 @@
"pitches": []
}
],
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "う"
- },
- {
- "text": "つ",
- "furigana": ""
- }
- ],
"glossary": [
"definition7",
"definition8"
@@ -1265,16 +1181,6 @@
"sourceTerm": "打つ",
"expression": "打つ",
"reading": "ぶつ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ぶ"
- },
- {
- "text": "つ",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -1336,16 +1242,6 @@
"pitches": []
}
],
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ぶ"
- },
- {
- "text": "つ",
- "furigana": ""
- }
- ],
"glossary": [
"definition11",
"definition12"
@@ -1455,12 +1351,6 @@
"sourceTerm": "打",
"expression": "打",
"reading": "だ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "だ"
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -1522,12 +1412,6 @@
"pitches": []
}
],
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "だ"
- }
- ],
"glossary": [
"definition1",
"definition2"
@@ -1637,12 +1521,6 @@
"sourceTerm": "打",
"expression": "打",
"reading": "ダース",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ダース"
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -1704,12 +1582,6 @@
"pitches": []
}
],
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ダース"
- }
- ],
"glossary": [
"definition3",
"definition4"
@@ -1831,24 +1703,6 @@
"sourceTerm": "打ち込む",
"expression": "打ち込む",
"reading": "うちこむ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "う"
- },
- {
- "text": "ち",
- "furigana": ""
- },
- {
- "text": "込",
- "furigana": "こ"
- },
- {
- "text": "む",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -1932,24 +1786,6 @@
]
}
],
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "う"
- },
- {
- "text": "ち",
- "furigana": ""
- },
- {
- "text": "込",
- "furigana": "こ"
- },
- {
- "text": "む",
- "furigana": ""
- }
- ],
"glossary": [
"definition13",
"definition14"
@@ -2081,24 +1917,6 @@
"sourceTerm": "打ち込む",
"expression": "打ち込む",
"reading": "ぶちこむ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ぶ"
- },
- {
- "text": "ち",
- "furigana": ""
- },
- {
- "text": "込",
- "furigana": "こ"
- },
- {
- "text": "む",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -2182,24 +2000,6 @@
]
}
],
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ぶ"
- },
- {
- "text": "ち",
- "furigana": ""
- },
- {
- "text": "込",
- "furigana": "こ"
- },
- {
- "text": "む",
- "furigana": ""
- }
- ],
"glossary": [
"definition17",
"definition18"
@@ -2331,24 +2131,6 @@
"sourceTerm": "打ち込む",
"expression": "打ち込む",
"reading": "うちこむ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "う"
- },
- {
- "text": "ち",
- "furigana": ""
- },
- {
- "text": "込",
- "furigana": "こ"
- },
- {
- "text": "む",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag5",
@@ -2432,24 +2214,6 @@
]
}
],
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "う"
- },
- {
- "text": "ち",
- "furigana": ""
- },
- {
- "text": "込",
- "furigana": "こ"
- },
- {
- "text": "む",
- "furigana": ""
- }
- ],
"glossary": [
"definition15",
"definition16"
@@ -2581,24 +2345,6 @@
"sourceTerm": "打ち込む",
"expression": "打ち込む",
"reading": "ぶちこむ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ぶ"
- },
- {
- "text": "ち",
- "furigana": ""
- },
- {
- "text": "込",
- "furigana": "こ"
- },
- {
- "text": "む",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -2682,24 +2428,6 @@
]
}
],
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ぶ"
- },
- {
- "text": "ち",
- "furigana": ""
- },
- {
- "text": "込",
- "furigana": "こ"
- },
- {
- "text": "む",
- "furigana": ""
- }
- ],
"glossary": [
"definition19",
"definition20"
@@ -2833,16 +2561,6 @@
"sourceTerm": "打つ",
"expression": "打つ",
"reading": "うつ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "う"
- },
- {
- "text": "つ",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -2904,16 +2622,6 @@
"pitches": []
}
],
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "う"
- },
- {
- "text": "つ",
- "furigana": ""
- }
- ],
"glossary": [
"definition5",
"definition6"
@@ -3025,16 +2733,6 @@
"sourceTerm": "打つ",
"expression": "打つ",
"reading": "ぶつ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ぶ"
- },
- {
- "text": "つ",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -3096,16 +2794,6 @@
"pitches": []
}
],
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ぶ"
- },
- {
- "text": "つ",
- "furigana": ""
- }
- ],
"glossary": [
"definition9",
"definition10"
@@ -3217,16 +2905,6 @@
"sourceTerm": "打つ",
"expression": "打つ",
"reading": "うつ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "う"
- },
- {
- "text": "つ",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -3288,16 +2966,6 @@
"pitches": []
}
],
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "う"
- },
- {
- "text": "つ",
- "furigana": ""
- }
- ],
"glossary": [
"definition7",
"definition8"
@@ -3409,16 +3077,6 @@
"sourceTerm": "打つ",
"expression": "打つ",
"reading": "ぶつ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ぶ"
- },
- {
- "text": "つ",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -3480,16 +3138,6 @@
"pitches": []
}
],
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ぶ"
- },
- {
- "text": "つ",
- "furigana": ""
- }
- ],
"glossary": [
"definition11",
"definition12"
@@ -3599,12 +3247,6 @@
"sourceTerm": "打",
"expression": "打",
"reading": "だ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "だ"
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -3666,12 +3308,6 @@
"pitches": []
}
],
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "だ"
- }
- ],
"glossary": [
"definition1",
"definition2"
@@ -3781,12 +3417,6 @@
"sourceTerm": "打",
"expression": "打",
"reading": "ダース",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ダース"
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -3848,12 +3478,6 @@
"pitches": []
}
],
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ダース"
- }
- ],
"glossary": [
"definition3",
"definition4"
@@ -3975,12 +3599,6 @@
"sourceTerm": "画像",
"expression": "画像",
"reading": "がぞう",
- "furiganaSegments": [
- {
- "text": "画像",
- "furigana": "がぞう"
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -4015,12 +3633,6 @@
"pitches": []
}
],
- "furiganaSegments": [
- {
- "text": "画像",
- "furigana": "がぞう"
- }
- ],
"glossary": [
"definition21",
{
@@ -4124,12 +3736,6 @@
"sourceTerm": "だ",
"expression": "打",
"reading": "だ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "だ"
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -4191,12 +3797,6 @@
"pitches": []
}
],
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "だ"
- }
- ],
"glossary": [
"definition1",
"definition2"
@@ -4318,12 +3918,6 @@
"sourceTerm": "ダース",
"expression": "打",
"reading": "ダース",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ダース"
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -4385,12 +3979,6 @@
"pitches": []
}
],
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ダース"
- }
- ],
"glossary": [
"definition3",
"definition4"
@@ -4512,16 +4100,6 @@
"sourceTerm": "うつ",
"expression": "打つ",
"reading": "うつ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "う"
- },
- {
- "text": "つ",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -4583,16 +4161,6 @@
"pitches": []
}
],
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "う"
- },
- {
- "text": "つ",
- "furigana": ""
- }
- ],
"glossary": [
"definition5",
"definition6"
@@ -4702,16 +4270,6 @@
"sourceTerm": "うつ",
"expression": "打つ",
"reading": "うつ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "う"
- },
- {
- "text": "つ",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -4773,16 +4331,6 @@
"pitches": []
}
],
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "う"
- },
- {
- "text": "つ",
- "furigana": ""
- }
- ],
"glossary": [
"definition7",
"definition8"
@@ -4904,16 +4452,6 @@
"sourceTerm": "ぶつ",
"expression": "打つ",
"reading": "ぶつ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ぶ"
- },
- {
- "text": "つ",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -4975,16 +4513,6 @@
"pitches": []
}
],
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ぶ"
- },
- {
- "text": "つ",
- "furigana": ""
- }
- ],
"glossary": [
"definition9",
"definition10"
@@ -5094,16 +4622,6 @@
"sourceTerm": "ぶつ",
"expression": "打つ",
"reading": "ぶつ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ぶ"
- },
- {
- "text": "つ",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -5165,16 +4683,6 @@
"pitches": []
}
],
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ぶ"
- },
- {
- "text": "つ",
- "furigana": ""
- }
- ],
"glossary": [
"definition11",
"definition12"
@@ -5296,24 +4804,6 @@
"sourceTerm": "うちこむ",
"expression": "打ち込む",
"reading": "うちこむ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "う"
- },
- {
- "text": "ち",
- "furigana": ""
- },
- {
- "text": "込",
- "furigana": "こ"
- },
- {
- "text": "む",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -5397,24 +4887,6 @@
]
}
],
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "う"
- },
- {
- "text": "ち",
- "furigana": ""
- },
- {
- "text": "込",
- "furigana": "こ"
- },
- {
- "text": "む",
- "furigana": ""
- }
- ],
"glossary": [
"definition13",
"definition14"
@@ -5546,24 +5018,6 @@
"sourceTerm": "うちこむ",
"expression": "打ち込む",
"reading": "うちこむ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "う"
- },
- {
- "text": "ち",
- "furigana": ""
- },
- {
- "text": "込",
- "furigana": "こ"
- },
- {
- "text": "む",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag5",
@@ -5647,24 +5101,6 @@
]
}
],
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "う"
- },
- {
- "text": "ち",
- "furigana": ""
- },
- {
- "text": "込",
- "furigana": "こ"
- },
- {
- "text": "む",
- "furigana": ""
- }
- ],
"glossary": [
"definition15",
"definition16"
@@ -5798,16 +5234,6 @@
"sourceTerm": "うつ",
"expression": "打つ",
"reading": "うつ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "う"
- },
- {
- "text": "つ",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -5869,16 +5295,6 @@
"pitches": []
}
],
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "う"
- },
- {
- "text": "つ",
- "furigana": ""
- }
- ],
"glossary": [
"definition5",
"definition6"
@@ -5990,16 +5406,6 @@
"sourceTerm": "うつ",
"expression": "打つ",
"reading": "うつ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "う"
- },
- {
- "text": "つ",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -6061,16 +5467,6 @@
"pitches": []
}
],
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "う"
- },
- {
- "text": "つ",
- "furigana": ""
- }
- ],
"glossary": [
"definition7",
"definition8"
@@ -6192,24 +5588,6 @@
"sourceTerm": "ぶちこむ",
"expression": "打ち込む",
"reading": "ぶちこむ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ぶ"
- },
- {
- "text": "ち",
- "furigana": ""
- },
- {
- "text": "込",
- "furigana": "こ"
- },
- {
- "text": "む",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -6293,24 +5671,6 @@
]
}
],
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ぶ"
- },
- {
- "text": "ち",
- "furigana": ""
- },
- {
- "text": "込",
- "furigana": "こ"
- },
- {
- "text": "む",
- "furigana": ""
- }
- ],
"glossary": [
"definition17",
"definition18"
@@ -6442,24 +5802,6 @@
"sourceTerm": "ぶちこむ",
"expression": "打ち込む",
"reading": "ぶちこむ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ぶ"
- },
- {
- "text": "ち",
- "furigana": ""
- },
- {
- "text": "込",
- "furigana": "こ"
- },
- {
- "text": "む",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -6543,24 +5885,6 @@
]
}
],
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ぶ"
- },
- {
- "text": "ち",
- "furigana": ""
- },
- {
- "text": "込",
- "furigana": "こ"
- },
- {
- "text": "む",
- "furigana": ""
- }
- ],
"glossary": [
"definition19",
"definition20"
@@ -6694,16 +6018,6 @@
"sourceTerm": "ぶつ",
"expression": "打つ",
"reading": "ぶつ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ぶ"
- },
- {
- "text": "つ",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -6765,16 +6079,6 @@
"pitches": []
}
],
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ぶ"
- },
- {
- "text": "つ",
- "furigana": ""
- }
- ],
"glossary": [
"definition9",
"definition10"
@@ -6886,16 +6190,6 @@
"sourceTerm": "ぶつ",
"expression": "打つ",
"reading": "ぶつ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ぶ"
- },
- {
- "text": "つ",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -6957,16 +6251,6 @@
"pitches": []
}
],
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ぶ"
- },
- {
- "text": "つ",
- "furigana": ""
- }
- ],
"glossary": [
"definition11",
"definition12"
@@ -7088,12 +6372,6 @@
"sourceTerm": "がぞう",
"expression": "画像",
"reading": "がぞう",
- "furiganaSegments": [
- {
- "text": "画像",
- "furigana": "がぞう"
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -7128,12 +6406,6 @@
"pitches": []
}
],
- "furiganaSegments": [
- {
- "text": "画像",
- "furigana": "がぞう"
- }
- ],
"glossary": [
"definition21",
{
@@ -7259,24 +6531,6 @@
"sourceTerm": "打ち込む",
"expression": "打ち込む",
"reading": "うちこむ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "う"
- },
- {
- "text": "ち",
- "furigana": ""
- },
- {
- "text": "込",
- "furigana": "こ"
- },
- {
- "text": "む",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -7311,24 +6565,6 @@
"pitches": []
}
],
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "う"
- },
- {
- "text": "ち",
- "furigana": ""
- },
- {
- "text": "込",
- "furigana": "こ"
- },
- {
- "text": "む",
- "furigana": ""
- }
- ],
"glossary": [
"definition13",
"definition14"
@@ -7411,24 +6647,6 @@
"sourceTerm": "打ち込む",
"expression": "打ち込む",
"reading": "ぶちこむ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ぶ"
- },
- {
- "text": "ち",
- "furigana": ""
- },
- {
- "text": "込",
- "furigana": "こ"
- },
- {
- "text": "む",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -7463,24 +6681,6 @@
"pitches": []
}
],
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ぶ"
- },
- {
- "text": "ち",
- "furigana": ""
- },
- {
- "text": "込",
- "furigana": "こ"
- },
- {
- "text": "む",
- "furigana": ""
- }
- ],
"glossary": [
"definition17",
"definition18"
@@ -7563,24 +6763,6 @@
"sourceTerm": "打ち込む",
"expression": "打ち込む",
"reading": "うちこむ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "う"
- },
- {
- "text": "ち",
- "furigana": ""
- },
- {
- "text": "込",
- "furigana": "こ"
- },
- {
- "text": "む",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag5",
@@ -7615,24 +6797,6 @@
"pitches": []
}
],
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "う"
- },
- {
- "text": "ち",
- "furigana": ""
- },
- {
- "text": "込",
- "furigana": "こ"
- },
- {
- "text": "む",
- "furigana": ""
- }
- ],
"glossary": [
"definition15",
"definition16"
@@ -7715,24 +6879,6 @@
"sourceTerm": "打ち込む",
"expression": "打ち込む",
"reading": "ぶちこむ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ぶ"
- },
- {
- "text": "ち",
- "furigana": ""
- },
- {
- "text": "込",
- "furigana": "こ"
- },
- {
- "text": "む",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -7767,24 +6913,6 @@
"pitches": []
}
],
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ぶ"
- },
- {
- "text": "ち",
- "furigana": ""
- },
- {
- "text": "込",
- "furigana": "こ"
- },
- {
- "text": "む",
- "furigana": ""
- }
- ],
"glossary": [
"definition19",
"definition20"
@@ -7869,16 +6997,6 @@
"sourceTerm": "打つ",
"expression": "打つ",
"reading": "うつ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "う"
- },
- {
- "text": "つ",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -7913,16 +7031,6 @@
"pitches": []
}
],
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "う"
- },
- {
- "text": "つ",
- "furigana": ""
- }
- ],
"glossary": [
"definition5",
"definition6"
@@ -8007,16 +7115,6 @@
"sourceTerm": "打つ",
"expression": "打つ",
"reading": "ぶつ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ぶ"
- },
- {
- "text": "つ",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -8051,16 +7149,6 @@
"pitches": []
}
],
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ぶ"
- },
- {
- "text": "つ",
- "furigana": ""
- }
- ],
"glossary": [
"definition9",
"definition10"
@@ -8145,16 +7233,6 @@
"sourceTerm": "打つ",
"expression": "打つ",
"reading": "うつ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "う"
- },
- {
- "text": "つ",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -8189,16 +7267,6 @@
"pitches": []
}
],
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "う"
- },
- {
- "text": "つ",
- "furigana": ""
- }
- ],
"glossary": [
"definition7",
"definition8"
@@ -8283,16 +7351,6 @@
"sourceTerm": "打つ",
"expression": "打つ",
"reading": "ぶつ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ぶ"
- },
- {
- "text": "つ",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -8327,16 +7385,6 @@
"pitches": []
}
],
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ぶ"
- },
- {
- "text": "つ",
- "furigana": ""
- }
- ],
"glossary": [
"definition11",
"definition12"
@@ -8419,12 +7467,6 @@
"sourceTerm": "打",
"expression": "打",
"reading": "だ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "だ"
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -8459,12 +7501,6 @@
"pitches": []
}
],
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "だ"
- }
- ],
"glossary": [
"definition1",
"definition2"
@@ -8547,12 +7583,6 @@
"sourceTerm": "打",
"expression": "打",
"reading": "ダース",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ダース"
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -8587,12 +7617,6 @@
"pitches": []
}
],
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ダース"
- }
- ],
"glossary": [
"definition3",
"definition4"
@@ -8684,24 +7708,6 @@
"sourceTerm": "打ち込む",
"expression": "打ち込む",
"reading": "うちこむ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "う"
- },
- {
- "text": "ち",
- "furigana": ""
- },
- {
- "text": "込",
- "furigana": "こ"
- },
- {
- "text": "む",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -8803,24 +7809,6 @@
]
}
],
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "う"
- },
- {
- "text": "ち",
- "furigana": ""
- },
- {
- "text": "込",
- "furigana": "こ"
- },
- {
- "text": "む",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -8894,24 +7882,6 @@
"sourceTerm": "打ち込む",
"expression": "打ち込む",
"reading": "うちこむ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "う"
- },
- {
- "text": "ち",
- "furigana": ""
- },
- {
- "text": "込",
- "furigana": "こ"
- },
- {
- "text": "む",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -8995,24 +7965,6 @@
]
}
],
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "う"
- },
- {
- "text": "ち",
- "furigana": ""
- },
- {
- "text": "込",
- "furigana": "こ"
- },
- {
- "text": "む",
- "furigana": ""
- }
- ],
"glossary": [
"definition13",
"definition14"
@@ -9144,24 +8096,6 @@
"sourceTerm": "打ち込む",
"expression": "打ち込む",
"reading": "うちこむ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "う"
- },
- {
- "text": "ち",
- "furigana": ""
- },
- {
- "text": "込",
- "furigana": "こ"
- },
- {
- "text": "む",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag5",
@@ -9245,24 +8179,6 @@
]
}
],
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "う"
- },
- {
- "text": "ち",
- "furigana": ""
- },
- {
- "text": "込",
- "furigana": "こ"
- },
- {
- "text": "む",
- "furigana": ""
- }
- ],
"glossary": [
"definition15",
"definition16"
@@ -9445,24 +8361,6 @@
"sourceTerm": "打ち込む",
"expression": "打ち込む",
"reading": "ぶちこむ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ぶ"
- },
- {
- "text": "ち",
- "furigana": ""
- },
- {
- "text": "込",
- "furigana": "こ"
- },
- {
- "text": "む",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -9546,24 +8444,6 @@
]
}
],
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ぶ"
- },
- {
- "text": "ち",
- "furigana": ""
- },
- {
- "text": "込",
- "furigana": "こ"
- },
- {
- "text": "む",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -9619,24 +8499,6 @@
"sourceTerm": "打ち込む",
"expression": "打ち込む",
"reading": "ぶちこむ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ぶ"
- },
- {
- "text": "ち",
- "furigana": ""
- },
- {
- "text": "込",
- "furigana": "こ"
- },
- {
- "text": "む",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -9720,24 +8582,6 @@
]
}
],
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ぶ"
- },
- {
- "text": "ち",
- "furigana": ""
- },
- {
- "text": "込",
- "furigana": "こ"
- },
- {
- "text": "む",
- "furigana": ""
- }
- ],
"glossary": [
"definition17",
"definition18"
@@ -9869,24 +8713,6 @@
"sourceTerm": "打ち込む",
"expression": "打ち込む",
"reading": "ぶちこむ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ぶ"
- },
- {
- "text": "ち",
- "furigana": ""
- },
- {
- "text": "込",
- "furigana": "こ"
- },
- {
- "text": "む",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -9970,24 +8796,6 @@
]
}
],
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ぶ"
- },
- {
- "text": "ち",
- "furigana": ""
- },
- {
- "text": "込",
- "furigana": "こ"
- },
- {
- "text": "む",
- "furigana": ""
- }
- ],
"glossary": [
"definition19",
"definition20"
@@ -10172,16 +8980,6 @@
"sourceTerm": "打つ",
"expression": "打つ",
"reading": "うつ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "う"
- },
- {
- "text": "つ",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -10243,16 +9041,6 @@
"pitches": []
}
],
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "う"
- },
- {
- "text": "つ",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -10310,16 +9098,6 @@
"sourceTerm": "打つ",
"expression": "打つ",
"reading": "うつ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "う"
- },
- {
- "text": "つ",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -10381,16 +9159,6 @@
"pitches": []
}
],
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "う"
- },
- {
- "text": "つ",
- "furigana": ""
- }
- ],
"glossary": [
"definition5",
"definition6"
@@ -10502,16 +9270,6 @@
"sourceTerm": "打つ",
"expression": "打つ",
"reading": "うつ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "う"
- },
- {
- "text": "つ",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -10573,16 +9331,6 @@
"pitches": []
}
],
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "う"
- },
- {
- "text": "つ",
- "furigana": ""
- }
- ],
"glossary": [
"definition7",
"definition8"
@@ -10723,16 +9471,6 @@
"sourceTerm": "打つ",
"expression": "打つ",
"reading": "ぶつ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ぶ"
- },
- {
- "text": "つ",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -10794,16 +9532,6 @@
"pitches": []
}
],
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ぶ"
- },
- {
- "text": "つ",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -10861,16 +9589,6 @@
"sourceTerm": "打つ",
"expression": "打つ",
"reading": "ぶつ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ぶ"
- },
- {
- "text": "つ",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -10932,16 +9650,6 @@
"pitches": []
}
],
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ぶ"
- },
- {
- "text": "つ",
- "furigana": ""
- }
- ],
"glossary": [
"definition9",
"definition10"
@@ -11053,16 +9761,6 @@
"sourceTerm": "打つ",
"expression": "打つ",
"reading": "ぶつ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ぶ"
- },
- {
- "text": "つ",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -11124,16 +9822,6 @@
"pitches": []
}
],
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ぶ"
- },
- {
- "text": "つ",
- "furigana": ""
- }
- ],
"glossary": [
"definition11",
"definition12"
@@ -11272,12 +9960,6 @@
"sourceTerm": "打",
"expression": "打",
"reading": "だ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "だ"
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -11339,12 +10021,6 @@
"pitches": []
}
],
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "だ"
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -11400,12 +10076,6 @@
"sourceTerm": "打",
"expression": "打",
"reading": "だ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "だ"
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -11467,12 +10137,6 @@
"pitches": []
}
],
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "だ"
- }
- ],
"glossary": [
"definition1",
"definition2"
@@ -11611,12 +10275,6 @@
"sourceTerm": "打",
"expression": "打",
"reading": "ダース",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ダース"
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -11678,12 +10336,6 @@
"pitches": []
}
],
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ダース"
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -11739,12 +10391,6 @@
"sourceTerm": "打",
"expression": "打",
"reading": "ダース",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ダース"
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -11806,12 +10452,6 @@
"pitches": []
}
],
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ダース"
- }
- ],
"glossary": [
"definition3",
"definition4"
@@ -11966,24 +10606,6 @@
"sourceTerm": "打ち込む",
"expression": "打ち込む",
"reading": "うちこむ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "う"
- },
- {
- "text": "ち",
- "furigana": ""
- },
- {
- "text": "込",
- "furigana": "こ"
- },
- {
- "text": "む",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -12088,24 +10710,6 @@
"sourceTerm": "打ち込む",
"expression": "打ち込む",
"reading": "ぶちこむ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ぶ"
- },
- {
- "text": "ち",
- "furigana": ""
- },
- {
- "text": "込",
- "furigana": "こ"
- },
- {
- "text": "む",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -12215,24 +10819,6 @@
"sourceTerm": "打ち込む",
"expression": "打ち込む",
"reading": "うちこむ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "う"
- },
- {
- "text": "ち",
- "furigana": ""
- },
- {
- "text": "込",
- "furigana": "こ"
- },
- {
- "text": "む",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -12366,24 +10952,6 @@
"sourceTerm": "打ち込む",
"expression": "打ち込む",
"reading": "うちこむ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "う"
- },
- {
- "text": "ち",
- "furigana": ""
- },
- {
- "text": "込",
- "furigana": "こ"
- },
- {
- "text": "む",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -12467,24 +11035,6 @@
]
}
],
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "う"
- },
- {
- "text": "ち",
- "furigana": ""
- },
- {
- "text": "込",
- "furigana": "こ"
- },
- {
- "text": "む",
- "furigana": ""
- }
- ],
"glossary": [
"definition13",
"definition14"
@@ -12673,24 +11223,6 @@
"sourceTerm": "打ち込む",
"expression": "打ち込む",
"reading": "ぶちこむ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ぶ"
- },
- {
- "text": "ち",
- "furigana": ""
- },
- {
- "text": "込",
- "furigana": "こ"
- },
- {
- "text": "む",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -12824,24 +11356,6 @@
"sourceTerm": "打ち込む",
"expression": "打ち込む",
"reading": "ぶちこむ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ぶ"
- },
- {
- "text": "ち",
- "furigana": ""
- },
- {
- "text": "込",
- "furigana": "こ"
- },
- {
- "text": "む",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -12925,24 +11439,6 @@
]
}
],
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ぶ"
- },
- {
- "text": "ち",
- "furigana": ""
- },
- {
- "text": "込",
- "furigana": "こ"
- },
- {
- "text": "む",
- "furigana": ""
- }
- ],
"glossary": [
"definition17",
"definition18"
@@ -13131,24 +11627,6 @@
"sourceTerm": "打ち込む",
"expression": "打ち込む",
"reading": "うちこむ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "う"
- },
- {
- "text": "ち",
- "furigana": ""
- },
- {
- "text": "込",
- "furigana": "こ"
- },
- {
- "text": "む",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag5",
@@ -13282,24 +11760,6 @@
"sourceTerm": "打ち込む",
"expression": "打ち込む",
"reading": "うちこむ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "う"
- },
- {
- "text": "ち",
- "furigana": ""
- },
- {
- "text": "込",
- "furigana": "こ"
- },
- {
- "text": "む",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag5",
@@ -13383,24 +11843,6 @@
]
}
],
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "う"
- },
- {
- "text": "ち",
- "furigana": ""
- },
- {
- "text": "込",
- "furigana": "こ"
- },
- {
- "text": "む",
- "furigana": ""
- }
- ],
"glossary": [
"definition15",
"definition16"
@@ -13589,24 +12031,6 @@
"sourceTerm": "打ち込む",
"expression": "打ち込む",
"reading": "ぶちこむ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ぶ"
- },
- {
- "text": "ち",
- "furigana": ""
- },
- {
- "text": "込",
- "furigana": "こ"
- },
- {
- "text": "む",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -13740,24 +12164,6 @@
"sourceTerm": "打ち込む",
"expression": "打ち込む",
"reading": "ぶちこむ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ぶ"
- },
- {
- "text": "ち",
- "furigana": ""
- },
- {
- "text": "込",
- "furigana": "こ"
- },
- {
- "text": "む",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -13841,24 +12247,6 @@
]
}
],
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ぶ"
- },
- {
- "text": "ち",
- "furigana": ""
- },
- {
- "text": "込",
- "furigana": "こ"
- },
- {
- "text": "む",
- "furigana": ""
- }
- ],
"glossary": [
"definition19",
"definition20"
@@ -14151,16 +12539,6 @@
"sourceTerm": "打つ",
"expression": "打つ",
"reading": "うつ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "う"
- },
- {
- "text": "つ",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -14225,16 +12603,6 @@
"sourceTerm": "打つ",
"expression": "打つ",
"reading": "ぶつ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ぶ"
- },
- {
- "text": "つ",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -14322,16 +12690,6 @@
"sourceTerm": "打つ",
"expression": "打つ",
"reading": "うつ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "う"
- },
- {
- "text": "つ",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -14445,16 +12803,6 @@
"sourceTerm": "打つ",
"expression": "打つ",
"reading": "うつ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "う"
- },
- {
- "text": "つ",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -14516,16 +12864,6 @@
"pitches": []
}
],
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "う"
- },
- {
- "text": "つ",
- "furigana": ""
- }
- ],
"glossary": [
"definition5",
"definition6"
@@ -14670,16 +13008,6 @@
"sourceTerm": "打つ",
"expression": "打つ",
"reading": "ぶつ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ぶ"
- },
- {
- "text": "つ",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -14793,16 +13121,6 @@
"sourceTerm": "打つ",
"expression": "打つ",
"reading": "ぶつ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ぶ"
- },
- {
- "text": "つ",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -14864,16 +13182,6 @@
"pitches": []
}
],
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ぶ"
- },
- {
- "text": "つ",
- "furigana": ""
- }
- ],
"glossary": [
"definition9",
"definition10"
@@ -15018,16 +13326,6 @@
"sourceTerm": "打つ",
"expression": "打つ",
"reading": "うつ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "う"
- },
- {
- "text": "つ",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -15141,16 +13439,6 @@
"sourceTerm": "打つ",
"expression": "打つ",
"reading": "うつ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "う"
- },
- {
- "text": "つ",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -15212,16 +13500,6 @@
"pitches": []
}
],
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "う"
- },
- {
- "text": "つ",
- "furigana": ""
- }
- ],
"glossary": [
"definition7",
"definition8"
@@ -15366,16 +13644,6 @@
"sourceTerm": "打つ",
"expression": "打つ",
"reading": "ぶつ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ぶ"
- },
- {
- "text": "つ",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -15489,16 +13757,6 @@
"sourceTerm": "打つ",
"expression": "打つ",
"reading": "ぶつ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ぶ"
- },
- {
- "text": "つ",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -15560,16 +13818,6 @@
"pitches": []
}
],
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ぶ"
- },
- {
- "text": "つ",
- "furigana": ""
- }
- ],
"glossary": [
"definition11",
"definition12"
@@ -15772,12 +14020,6 @@
"sourceTerm": "打",
"expression": "打",
"reading": "だ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "だ"
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -15865,12 +14107,6 @@
"sourceTerm": "打",
"expression": "打",
"reading": "だ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "だ"
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -15982,12 +14218,6 @@
"sourceTerm": "打",
"expression": "打",
"reading": "だ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "だ"
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -16049,12 +14279,6 @@
"pitches": []
}
],
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "だ"
- }
- ],
"glossary": [
"definition1",
"definition2"
@@ -16229,12 +14453,6 @@
"sourceTerm": "打",
"expression": "打",
"reading": "ダース",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ダース"
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -16322,12 +14540,6 @@
"sourceTerm": "打",
"expression": "打",
"reading": "ダース",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ダース"
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -16439,12 +14651,6 @@
"sourceTerm": "打",
"expression": "打",
"reading": "ダース",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ダース"
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -16506,12 +14712,6 @@
"pitches": []
}
],
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ダース"
- }
- ],
"glossary": [
"definition3",
"definition4"
@@ -16702,24 +14902,6 @@
"sourceTerm": "打ち込む",
"expression": "打ち込む",
"reading": "うちこむ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "う"
- },
- {
- "text": "ち",
- "furigana": ""
- },
- {
- "text": "込",
- "furigana": "こ"
- },
- {
- "text": "む",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -16803,24 +14985,6 @@
]
}
],
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "う"
- },
- {
- "text": "ち",
- "furigana": ""
- },
- {
- "text": "込",
- "furigana": "こ"
- },
- {
- "text": "む",
- "furigana": ""
- }
- ],
"glossary": [
"definition13",
"definition14"
@@ -16956,24 +15120,6 @@
"sourceTerm": "打ち込む",
"expression": "打ち込む",
"reading": "ぶちこむ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ぶ"
- },
- {
- "text": "ち",
- "furigana": ""
- },
- {
- "text": "込",
- "furigana": "こ"
- },
- {
- "text": "む",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -17057,24 +15203,6 @@
]
}
],
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ぶ"
- },
- {
- "text": "ち",
- "furigana": ""
- },
- {
- "text": "込",
- "furigana": "こ"
- },
- {
- "text": "む",
- "furigana": ""
- }
- ],
"glossary": [
"definition17",
"definition18"
@@ -17210,24 +15338,6 @@
"sourceTerm": "打ち込む",
"expression": "打ち込む",
"reading": "うちこむ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "う"
- },
- {
- "text": "ち",
- "furigana": ""
- },
- {
- "text": "込",
- "furigana": "こ"
- },
- {
- "text": "む",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag5",
@@ -17311,24 +15421,6 @@
]
}
],
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "う"
- },
- {
- "text": "ち",
- "furigana": ""
- },
- {
- "text": "込",
- "furigana": "こ"
- },
- {
- "text": "む",
- "furigana": ""
- }
- ],
"glossary": [
"definition15",
"definition16"
@@ -17464,24 +15556,6 @@
"sourceTerm": "打ち込む",
"expression": "打ち込む",
"reading": "ぶちこむ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ぶ"
- },
- {
- "text": "ち",
- "furigana": ""
- },
- {
- "text": "込",
- "furigana": "こ"
- },
- {
- "text": "む",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -17565,24 +15639,6 @@
]
}
],
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ぶ"
- },
- {
- "text": "ち",
- "furigana": ""
- },
- {
- "text": "込",
- "furigana": "こ"
- },
- {
- "text": "む",
- "furigana": ""
- }
- ],
"glossary": [
"definition19",
"definition20"
@@ -17716,16 +15772,6 @@
"sourceTerm": "打つ",
"expression": "打つ",
"reading": "うつ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "う"
- },
- {
- "text": "つ",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -17787,16 +15833,6 @@
"pitches": []
}
],
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "う"
- },
- {
- "text": "つ",
- "furigana": ""
- }
- ],
"glossary": [
"definition5",
"definition6"
@@ -17908,16 +15944,6 @@
"sourceTerm": "打つ",
"expression": "打つ",
"reading": "ぶつ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ぶ"
- },
- {
- "text": "つ",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -17979,16 +16005,6 @@
"pitches": []
}
],
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ぶ"
- },
- {
- "text": "つ",
- "furigana": ""
- }
- ],
"glossary": [
"definition9",
"definition10"
@@ -18100,16 +16116,6 @@
"sourceTerm": "打つ",
"expression": "打つ",
"reading": "うつ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "う"
- },
- {
- "text": "つ",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -18171,16 +16177,6 @@
"pitches": []
}
],
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "う"
- },
- {
- "text": "つ",
- "furigana": ""
- }
- ],
"glossary": [
"definition7",
"definition8"
@@ -18292,16 +16288,6 @@
"sourceTerm": "打つ",
"expression": "打つ",
"reading": "ぶつ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ぶ"
- },
- {
- "text": "つ",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -18363,16 +16349,6 @@
"pitches": []
}
],
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ぶ"
- },
- {
- "text": "つ",
- "furigana": ""
- }
- ],
"glossary": [
"definition11",
"definition12"
@@ -18482,12 +16458,6 @@
"sourceTerm": "打",
"expression": "打",
"reading": "だ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "だ"
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -18549,12 +16519,6 @@
"pitches": []
}
],
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "だ"
- }
- ],
"glossary": [
"definition1",
"definition2"
@@ -18664,12 +16628,6 @@
"sourceTerm": "打",
"expression": "打",
"reading": "ダース",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ダース"
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -18731,12 +16689,6 @@
"pitches": []
}
],
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ダース"
- }
- ],
"glossary": [
"definition3",
"definition4"
@@ -18873,24 +16825,6 @@
"sourceTerm": "打ち込む",
"expression": "打ち込む",
"reading": "うちこむ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "う"
- },
- {
- "text": "ち",
- "furigana": ""
- },
- {
- "text": "込",
- "furigana": "こ"
- },
- {
- "text": "む",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -18974,24 +16908,6 @@
]
}
],
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "う"
- },
- {
- "text": "ち",
- "furigana": ""
- },
- {
- "text": "込",
- "furigana": "こ"
- },
- {
- "text": "む",
- "furigana": ""
- }
- ],
"glossary": [
"definition13",
"definition14"
@@ -19123,24 +17039,6 @@
"sourceTerm": "打ち込む",
"expression": "打ち込む",
"reading": "ぶちこむ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ぶ"
- },
- {
- "text": "ち",
- "furigana": ""
- },
- {
- "text": "込",
- "furigana": "こ"
- },
- {
- "text": "む",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -19224,24 +17122,6 @@
]
}
],
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ぶ"
- },
- {
- "text": "ち",
- "furigana": ""
- },
- {
- "text": "込",
- "furigana": "こ"
- },
- {
- "text": "む",
- "furigana": ""
- }
- ],
"glossary": [
"definition17",
"definition18"
@@ -19373,24 +17253,6 @@
"sourceTerm": "打ち込む",
"expression": "打ち込む",
"reading": "うちこむ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "う"
- },
- {
- "text": "ち",
- "furigana": ""
- },
- {
- "text": "込",
- "furigana": "こ"
- },
- {
- "text": "む",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag5",
@@ -19474,24 +17336,6 @@
]
}
],
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "う"
- },
- {
- "text": "ち",
- "furigana": ""
- },
- {
- "text": "込",
- "furigana": "こ"
- },
- {
- "text": "む",
- "furigana": ""
- }
- ],
"glossary": [
"definition15",
"definition16"
@@ -19623,24 +17467,6 @@
"sourceTerm": "打ち込む",
"expression": "打ち込む",
"reading": "ぶちこむ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ぶ"
- },
- {
- "text": "ち",
- "furigana": ""
- },
- {
- "text": "込",
- "furigana": "こ"
- },
- {
- "text": "む",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -19724,24 +17550,6 @@
]
}
],
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ぶ"
- },
- {
- "text": "ち",
- "furigana": ""
- },
- {
- "text": "込",
- "furigana": "こ"
- },
- {
- "text": "む",
- "furigana": ""
- }
- ],
"glossary": [
"definition19",
"definition20"
@@ -19875,16 +17683,6 @@
"sourceTerm": "打つ",
"expression": "打つ",
"reading": "うつ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "う"
- },
- {
- "text": "つ",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -19946,16 +17744,6 @@
"pitches": []
}
],
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "う"
- },
- {
- "text": "つ",
- "furigana": ""
- }
- ],
"glossary": [
"definition5",
"definition6"
@@ -20067,16 +17855,6 @@
"sourceTerm": "打つ",
"expression": "打つ",
"reading": "ぶつ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ぶ"
- },
- {
- "text": "つ",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -20138,16 +17916,6 @@
"pitches": []
}
],
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ぶ"
- },
- {
- "text": "つ",
- "furigana": ""
- }
- ],
"glossary": [
"definition9",
"definition10"
@@ -20259,16 +18027,6 @@
"sourceTerm": "打つ",
"expression": "打つ",
"reading": "うつ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "う"
- },
- {
- "text": "つ",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -20330,16 +18088,6 @@
"pitches": []
}
],
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "う"
- },
- {
- "text": "つ",
- "furigana": ""
- }
- ],
"glossary": [
"definition7",
"definition8"
@@ -20451,16 +18199,6 @@
"sourceTerm": "打つ",
"expression": "打つ",
"reading": "ぶつ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ぶ"
- },
- {
- "text": "つ",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -20522,16 +18260,6 @@
"pitches": []
}
],
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ぶ"
- },
- {
- "text": "つ",
- "furigana": ""
- }
- ],
"glossary": [
"definition11",
"definition12"
@@ -20641,12 +18369,6 @@
"sourceTerm": "打",
"expression": "打",
"reading": "だ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "だ"
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -20708,12 +18430,6 @@
"pitches": []
}
],
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "だ"
- }
- ],
"glossary": [
"definition1",
"definition2"
@@ -20823,12 +18539,6 @@
"sourceTerm": "打",
"expression": "打",
"reading": "ダース",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ダース"
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -20890,12 +18600,6 @@
"pitches": []
}
],
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ダース"
- }
- ],
"glossary": [
"definition3",
"definition4"
@@ -21032,24 +18736,6 @@
"sourceTerm": "打ち込む",
"expression": "打ち込む",
"reading": "うちこむ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "う"
- },
- {
- "text": "ち",
- "furigana": ""
- },
- {
- "text": "込",
- "furigana": "こ"
- },
- {
- "text": "む",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -21133,24 +18819,6 @@
]
}
],
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "う"
- },
- {
- "text": "ち",
- "furigana": ""
- },
- {
- "text": "込",
- "furigana": "こ"
- },
- {
- "text": "む",
- "furigana": ""
- }
- ],
"glossary": [
"definition13",
"definition14"
@@ -21282,24 +18950,6 @@
"sourceTerm": "打ち込む",
"expression": "打ち込む",
"reading": "ぶちこむ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ぶ"
- },
- {
- "text": "ち",
- "furigana": ""
- },
- {
- "text": "込",
- "furigana": "こ"
- },
- {
- "text": "む",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -21383,24 +19033,6 @@
]
}
],
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ぶ"
- },
- {
- "text": "ち",
- "furigana": ""
- },
- {
- "text": "込",
- "furigana": "こ"
- },
- {
- "text": "む",
- "furigana": ""
- }
- ],
"glossary": [
"definition17",
"definition18"
@@ -21532,24 +19164,6 @@
"sourceTerm": "打ち込む",
"expression": "打ち込む",
"reading": "うちこむ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "う"
- },
- {
- "text": "ち",
- "furigana": ""
- },
- {
- "text": "込",
- "furigana": "こ"
- },
- {
- "text": "む",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag5",
@@ -21633,24 +19247,6 @@
]
}
],
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "う"
- },
- {
- "text": "ち",
- "furigana": ""
- },
- {
- "text": "込",
- "furigana": "こ"
- },
- {
- "text": "む",
- "furigana": ""
- }
- ],
"glossary": [
"definition15",
"definition16"
@@ -21782,24 +19378,6 @@
"sourceTerm": "打ち込む",
"expression": "打ち込む",
"reading": "ぶちこむ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ぶ"
- },
- {
- "text": "ち",
- "furigana": ""
- },
- {
- "text": "込",
- "furigana": "こ"
- },
- {
- "text": "む",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -21883,24 +19461,6 @@
]
}
],
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ぶ"
- },
- {
- "text": "ち",
- "furigana": ""
- },
- {
- "text": "込",
- "furigana": "こ"
- },
- {
- "text": "む",
- "furigana": ""
- }
- ],
"glossary": [
"definition19",
"definition20"
@@ -22034,16 +19594,6 @@
"sourceTerm": "打つ",
"expression": "打つ",
"reading": "うつ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "う"
- },
- {
- "text": "つ",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -22105,16 +19655,6 @@
"pitches": []
}
],
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "う"
- },
- {
- "text": "つ",
- "furigana": ""
- }
- ],
"glossary": [
"definition5",
"definition6"
@@ -22226,16 +19766,6 @@
"sourceTerm": "打つ",
"expression": "打つ",
"reading": "ぶつ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ぶ"
- },
- {
- "text": "つ",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -22297,16 +19827,6 @@
"pitches": []
}
],
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ぶ"
- },
- {
- "text": "つ",
- "furigana": ""
- }
- ],
"glossary": [
"definition9",
"definition10"
@@ -22418,16 +19938,6 @@
"sourceTerm": "打つ",
"expression": "打つ",
"reading": "うつ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "う"
- },
- {
- "text": "つ",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -22489,16 +19999,6 @@
"pitches": []
}
],
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "う"
- },
- {
- "text": "つ",
- "furigana": ""
- }
- ],
"glossary": [
"definition7",
"definition8"
@@ -22610,16 +20110,6 @@
"sourceTerm": "打つ",
"expression": "打つ",
"reading": "ぶつ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ぶ"
- },
- {
- "text": "つ",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -22681,16 +20171,6 @@
"pitches": []
}
],
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ぶ"
- },
- {
- "text": "つ",
- "furigana": ""
- }
- ],
"glossary": [
"definition11",
"definition12"
@@ -22800,12 +20280,6 @@
"sourceTerm": "打",
"expression": "打",
"reading": "だ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "だ"
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -22867,12 +20341,6 @@
"pitches": []
}
],
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "だ"
- }
- ],
"glossary": [
"definition1",
"definition2"
@@ -22982,12 +20450,6 @@
"sourceTerm": "打",
"expression": "打",
"reading": "ダース",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ダース"
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -23049,12 +20511,6 @@
"pitches": []
}
],
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ダース"
- }
- ],
"glossary": [
"definition3",
"definition4"
@@ -23193,16 +20649,6 @@
"sourceTerm": "よむ",
"expression": "読む",
"reading": "よむ",
- "furiganaSegments": [
- {
- "text": "読",
- "furigana": "よ"
- },
- {
- "text": "む",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "vt",
@@ -23219,16 +20665,6 @@
"pitches": []
}
],
- "furiganaSegments": [
- {
- "text": "読",
- "furigana": "よ"
- },
- {
- "text": "む",
- "furigana": ""
- }
- ],
"glossary": [
"to read"
],
@@ -23310,32 +20746,12 @@
"sourceTerm": "つよみ",
"expression": "強み",
"reading": "つよみ",
- "furiganaSegments": [
- {
- "text": "強",
- "furigana": "つよ"
- },
- {
- "text": "み",
- "furigana": ""
- }
- ],
"termTags": [],
"termFrequency": "normal",
"frequencies": [],
"pitches": []
}
],
- "furiganaSegments": [
- {
- "text": "強",
- "furigana": "つよ"
- },
- {
- "text": "み",
- "furigana": ""
- }
- ],
"glossary": [
"strong point"
],
@@ -23409,16 +20825,6 @@
"sourceTerm": "よむ",
"expression": "読む",
"reading": "よむ",
- "furiganaSegments": [
- {
- "text": "読",
- "furigana": "よ"
- },
- {
- "text": "む",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "vt",
@@ -23435,16 +20841,6 @@
"pitches": []
}
],
- "furiganaSegments": [
- {
- "text": "読",
- "furigana": "よ"
- },
- {
- "text": "む",
- "furigana": ""
- }
- ],
"glossary": [
"to read"
],
@@ -23512,24 +20908,6 @@
"sourceTerm": "うちこむ",
"expression": "打ち込む",
"reading": "うちこむ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "う"
- },
- {
- "text": "ち",
- "furigana": ""
- },
- {
- "text": "込",
- "furigana": "こ"
- },
- {
- "text": "む",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -23634,24 +21012,6 @@
"sourceTerm": "うちこむ",
"expression": "打ち込む",
"reading": "ぶちこむ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ぶ"
- },
- {
- "text": "ち",
- "furigana": ""
- },
- {
- "text": "込",
- "furigana": "こ"
- },
- {
- "text": "む",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -23761,24 +21121,6 @@
"sourceTerm": "うちこむ",
"expression": "打ち込む",
"reading": "うちこむ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "う"
- },
- {
- "text": "ち",
- "furigana": ""
- },
- {
- "text": "込",
- "furigana": "こ"
- },
- {
- "text": "む",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -23912,24 +21254,6 @@
"sourceTerm": "うちこむ",
"expression": "打ち込む",
"reading": "うちこむ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "う"
- },
- {
- "text": "ち",
- "furigana": ""
- },
- {
- "text": "込",
- "furigana": "こ"
- },
- {
- "text": "む",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -24013,24 +21337,6 @@
]
}
],
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "う"
- },
- {
- "text": "ち",
- "furigana": ""
- },
- {
- "text": "込",
- "furigana": "こ"
- },
- {
- "text": "む",
- "furigana": ""
- }
- ],
"glossary": [
"definition13",
"definition14"
@@ -24219,24 +21525,6 @@
"sourceTerm": "うちこむ",
"expression": "打ち込む",
"reading": "ぶちこむ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ぶ"
- },
- {
- "text": "ち",
- "furigana": ""
- },
- {
- "text": "込",
- "furigana": "こ"
- },
- {
- "text": "む",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -24370,24 +21658,6 @@
"sourceTerm": "うちこむ",
"expression": "打ち込む",
"reading": "ぶちこむ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ぶ"
- },
- {
- "text": "ち",
- "furigana": ""
- },
- {
- "text": "込",
- "furigana": "こ"
- },
- {
- "text": "む",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -24471,24 +21741,6 @@
]
}
],
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ぶ"
- },
- {
- "text": "ち",
- "furigana": ""
- },
- {
- "text": "込",
- "furigana": "こ"
- },
- {
- "text": "む",
- "furigana": ""
- }
- ],
"glossary": [
"definition17",
"definition18"
@@ -24677,24 +21929,6 @@
"sourceTerm": "うちこむ",
"expression": "打ち込む",
"reading": "うちこむ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "う"
- },
- {
- "text": "ち",
- "furigana": ""
- },
- {
- "text": "込",
- "furigana": "こ"
- },
- {
- "text": "む",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag5",
@@ -24828,24 +22062,6 @@
"sourceTerm": "うちこむ",
"expression": "打ち込む",
"reading": "うちこむ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "う"
- },
- {
- "text": "ち",
- "furigana": ""
- },
- {
- "text": "込",
- "furigana": "こ"
- },
- {
- "text": "む",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag5",
@@ -24929,24 +22145,6 @@
]
}
],
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "う"
- },
- {
- "text": "ち",
- "furigana": ""
- },
- {
- "text": "込",
- "furigana": "こ"
- },
- {
- "text": "む",
- "furigana": ""
- }
- ],
"glossary": [
"definition15",
"definition16"
@@ -25135,24 +22333,6 @@
"sourceTerm": "うちこむ",
"expression": "打ち込む",
"reading": "ぶちこむ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ぶ"
- },
- {
- "text": "ち",
- "furigana": ""
- },
- {
- "text": "込",
- "furigana": "こ"
- },
- {
- "text": "む",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -25286,24 +22466,6 @@
"sourceTerm": "うちこむ",
"expression": "打ち込む",
"reading": "ぶちこむ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ぶ"
- },
- {
- "text": "ち",
- "furigana": ""
- },
- {
- "text": "込",
- "furigana": "こ"
- },
- {
- "text": "む",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -25387,24 +22549,6 @@
]
}
],
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ぶ"
- },
- {
- "text": "ち",
- "furigana": ""
- },
- {
- "text": "込",
- "furigana": "こ"
- },
- {
- "text": "む",
- "furigana": ""
- }
- ],
"glossary": [
"definition19",
"definition20"
@@ -25697,16 +22841,6 @@
"sourceTerm": "うつ",
"expression": "打つ",
"reading": "うつ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "う"
- },
- {
- "text": "つ",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -25771,16 +22905,6 @@
"sourceTerm": "うつ",
"expression": "打つ",
"reading": "ぶつ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ぶ"
- },
- {
- "text": "つ",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -25868,16 +22992,6 @@
"sourceTerm": "うつ",
"expression": "打つ",
"reading": "うつ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "う"
- },
- {
- "text": "つ",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -25991,16 +23105,6 @@
"sourceTerm": "うつ",
"expression": "打つ",
"reading": "うつ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "う"
- },
- {
- "text": "つ",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -26062,16 +23166,6 @@
"pitches": []
}
],
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "う"
- },
- {
- "text": "つ",
- "furigana": ""
- }
- ],
"glossary": [
"definition5",
"definition6"
@@ -26216,16 +23310,6 @@
"sourceTerm": "うつ",
"expression": "打つ",
"reading": "ぶつ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ぶ"
- },
- {
- "text": "つ",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -26337,16 +23421,6 @@
"sourceTerm": "うつ",
"expression": "打つ",
"reading": "ぶつ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ぶ"
- },
- {
- "text": "つ",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -26408,16 +23482,6 @@
"pitches": []
}
],
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ぶ"
- },
- {
- "text": "つ",
- "furigana": ""
- }
- ],
"glossary": [
"definition9",
"definition10"
@@ -26562,16 +23626,6 @@
"sourceTerm": "うつ",
"expression": "打つ",
"reading": "うつ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "う"
- },
- {
- "text": "つ",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -26685,16 +23739,6 @@
"sourceTerm": "うつ",
"expression": "打つ",
"reading": "うつ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "う"
- },
- {
- "text": "つ",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -26756,16 +23800,6 @@
"pitches": []
}
],
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "う"
- },
- {
- "text": "つ",
- "furigana": ""
- }
- ],
"glossary": [
"definition7",
"definition8"
@@ -26910,16 +23944,6 @@
"sourceTerm": "うつ",
"expression": "打つ",
"reading": "ぶつ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ぶ"
- },
- {
- "text": "つ",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -27031,16 +24055,6 @@
"sourceTerm": "うつ",
"expression": "打つ",
"reading": "ぶつ",
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ぶ"
- },
- {
- "text": "つ",
- "furigana": ""
- }
- ],
"termTags": [
{
"name": "tag3",
@@ -27102,16 +24116,6 @@
"pitches": []
}
],
- "furiganaSegments": [
- {
- "text": "打",
- "furigana": "ぶ"
- },
- {
- "text": "つ",
- "furigana": ""
- }
- ],
"glossary": [
"definition11",
"definition12"