1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
|
[
["打", "freq", 1],
["打つ", "freq", 2],
["打ち込む", "freq", 3],
["打", "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",
{
"reading": "うちこむ",
"pitches": [
{"position": 0},
{"position": 3}
]
}
],
[
"打ち込む",
"pitch",
{
"reading": "ぶちこむ",
"pitches": [
{"position": 0},
{"position": 3}
]
}
],
[
"お手前",
"pitch",
{
"reading": "おてまえ",
"pitches": [
{"position": 2, "tags": ["P1"]},
{"position": 2, "tags": ["P2"]},
{"position": 0, "tags": ["P2"]}
]
}
],
[
"番号",
"pitch",
{
"reading": "ばんごう",
"pitches": [
{"position": 3, "nasal": 3}
]
}
],
[
"中腰",
"pitch",
{
"reading": "ちゅうごし",
"pitches": [
{"position": 0, "nasal": 3}
]
}
],
[
"所業",
"pitch",
{
"reading": "しょぎょう",
"pitches": [
{"position": 0, "nasal": 2}
]
}
],
[
"土木工事",
"pitch",
{
"reading": "どぼくこうじ",
"pitches": [
{"position": 4, "devoice": 3}
]
}
]
]
|