zakuro 0.0.1 → 0.1.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.editorconfig +4 -0
- data/.gitignore +7 -1
- data/.rubocop.yml +3 -0
- data/Gemfile +2 -0
- data/Makefile +2 -0
- data/README.md +126 -33
- data/Rakefile +1 -1
- data/doc/gengou.md +315 -0
- data/doc/operation.md +25 -0
- data/doc/operation/csv/month.csv +202 -0
- data/doc/operation/operation.xlsx +0 -0
- data/doc/operation/transfer.rb +77 -0
- data/lib/zakuro/condition.rb +19 -15
- data/lib/zakuro/cycle/abstract_remainder.rb +3 -4
- data/lib/zakuro/era/japan/gengou.rb +106 -0
- data/lib/zakuro/era/japan/gengou/parser.rb +167 -0
- data/lib/zakuro/era/japan/gengou/type.rb +178 -0
- data/lib/zakuro/era/japan/gengou/validator.rb +236 -0
- data/lib/zakuro/era/japan/reki.rb +91 -0
- data/lib/zakuro/era/japan/yaml/set-001-until-south.yaml +1121 -0
- data/lib/zakuro/era/japan/yaml/set-002-from-north.yaml +485 -0
- data/lib/zakuro/era/japan/yaml/set-003-modern.yaml +28 -0
- data/lib/zakuro/era/western.rb +11 -1
- data/lib/zakuro/operation/month/parser.rb +373 -0
- data/lib/zakuro/operation/month/type.rb +453 -0
- data/lib/zakuro/operation/month/validator.rb +802 -0
- data/lib/zakuro/operation/operation.rb +66 -0
- data/lib/zakuro/operation/yaml/month.yaml +6452 -0
- data/lib/zakuro/output/error.rb +2 -0
- data/lib/zakuro/output/logger.rb +2 -0
- data/lib/zakuro/output/response.rb +21 -19
- data/lib/zakuro/result/core.rb +52 -0
- data/lib/zakuro/result/data.rb +187 -0
- data/lib/zakuro/result/operation.rb +114 -0
- data/lib/zakuro/result/result.rb +37 -0
- data/lib/zakuro/{output → tools}/stringifier.rb +16 -9
- data/lib/zakuro/tools/typeof.rb +33 -0
- data/lib/zakuro/version.rb +1 -1
- data/lib/zakuro/version/senmyou/README.md +3 -1
- data/lib/zakuro/version/senmyou/base/era.rb +3 -1
- data/lib/zakuro/version/senmyou/base/multi_gengou.rb +98 -0
- data/lib/zakuro/version/senmyou/base/multi_gengou_roller.rb +217 -0
- data/lib/zakuro/version/senmyou/base/remainder.rb +4 -4
- data/lib/zakuro/version/senmyou/base/solar_term.rb +82 -0
- data/lib/zakuro/version/senmyou/base/year.rb +52 -6
- data/lib/zakuro/version/senmyou/monthly/first_day.rb +44 -0
- data/lib/zakuro/version/senmyou/monthly/initialized_month.rb +119 -0
- data/lib/zakuro/version/senmyou/monthly/lunar_phase.rb +3 -3
- data/lib/zakuro/version/senmyou/monthly/month.rb +136 -67
- data/lib/zakuro/version/senmyou/monthly/month_label.rb +87 -0
- data/lib/zakuro/version/senmyou/monthly/operated_month.rb +196 -0
- data/lib/zakuro/version/senmyou/{summary/annual_data.rb → range/annual_range.rb} +34 -61
- data/lib/zakuro/version/senmyou/range/full_range.rb +194 -0
- data/lib/zakuro/version/senmyou/range/operated_range.rb +126 -0
- data/lib/zakuro/version/senmyou/range/operated_solar_terms.rb +181 -0
- data/lib/zakuro/version/senmyou/range/western_date_allocation.rb +68 -0
- data/lib/zakuro/version/senmyou/range/year_boundary.rb +138 -0
- data/lib/zakuro/version/senmyou/senmyou.rb +2 -2
- data/lib/zakuro/version/senmyou/specifier/single_day_specifier.rb +102 -0
- data/lib/zakuro/version/senmyou/stella/lunar_orbit.rb +2 -2
- data/lib/zakuro/version/senmyou/stella/solar_average.rb +105 -128
- data/lib/zakuro/version/senmyou/stella/solar_location.rb +213 -0
- data/lib/zakuro/version/senmyou/stella/solar_orbit.rb +4 -189
- data/lib/zakuro/version/senmyou/summary/single.rb +125 -0
- data/lib/zakuro/version_factory.rb +1 -1
- metadata +46 -15
- data/lib/zakuro/era/gengou/set-001-until-south.yaml +0 -375
- data/lib/zakuro/era/gengou/set-002-from-north.yaml +0 -166
- data/lib/zakuro/era/gengou/set-003-modern.yaml +0 -12
- data/lib/zakuro/era/japan.rb +0 -630
- data/lib/zakuro/output/result.rb +0 -219
- data/lib/zakuro/version/senmyou/base/gengou.rb +0 -210
- data/lib/zakuro/version/senmyou/summary/gengou_data.rb +0 -294
@@ -0,0 +1,236 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require_relative '../../western'
|
4
|
+
require_relative './type'
|
5
|
+
require 'yaml'
|
6
|
+
|
7
|
+
# :nodoc:
|
8
|
+
module Zakuro
|
9
|
+
#
|
10
|
+
# Japan 和暦
|
11
|
+
#
|
12
|
+
module Japan
|
13
|
+
#
|
14
|
+
# Validator yaml解析
|
15
|
+
#
|
16
|
+
module Validator
|
17
|
+
# :reek:TooManyInstanceVariables { max_instance_variables: 5 }
|
18
|
+
|
19
|
+
#
|
20
|
+
# Set 元号セット情報の検証/展開
|
21
|
+
#
|
22
|
+
class Set
|
23
|
+
# @return [String] 元号セットID
|
24
|
+
attr_reader :id
|
25
|
+
# @return [String] 元号セット名
|
26
|
+
attr_reader :name
|
27
|
+
# @return [String] 終了日
|
28
|
+
attr_reader :end_date
|
29
|
+
# @return [Array<Hash<String, String>>] 元号情報
|
30
|
+
attr_reader :list
|
31
|
+
|
32
|
+
#
|
33
|
+
# 初期化
|
34
|
+
#
|
35
|
+
# @param [Hash<String, Object>] hash 元号セット情報
|
36
|
+
#
|
37
|
+
def initialize(hash:)
|
38
|
+
@id = hash['id']
|
39
|
+
@name = hash['name']
|
40
|
+
@end_date = hash['end_date']
|
41
|
+
@list = hash['list']
|
42
|
+
end
|
43
|
+
|
44
|
+
# :reek:TooManyStatements { max_statements: 6 }
|
45
|
+
|
46
|
+
#
|
47
|
+
# 検証する
|
48
|
+
#
|
49
|
+
# @return [Array<String>] 不正メッセージ
|
50
|
+
#
|
51
|
+
def validate
|
52
|
+
failed = []
|
53
|
+
failed.push("invalid id. #{id}") unless id?
|
54
|
+
|
55
|
+
failed.push("invalid name. #{name}") unless name?
|
56
|
+
|
57
|
+
failed.push("invalid end_date. #{end_date}") unless western_date?
|
58
|
+
|
59
|
+
failed |= validate_list
|
60
|
+
failed
|
61
|
+
end
|
62
|
+
|
63
|
+
#
|
64
|
+
# IDを検証する
|
65
|
+
#
|
66
|
+
# @return [True] 正しい
|
67
|
+
# @return [False] 正しくない
|
68
|
+
#
|
69
|
+
def id?
|
70
|
+
return false unless @id
|
71
|
+
|
72
|
+
@id.is_a?(Integer)
|
73
|
+
end
|
74
|
+
|
75
|
+
#
|
76
|
+
# 元号セット名を検証する
|
77
|
+
#
|
78
|
+
# @return [True] 正しい
|
79
|
+
# @return [False] 正しくない
|
80
|
+
#
|
81
|
+
def name?
|
82
|
+
return false unless @name
|
83
|
+
|
84
|
+
@name.is_a?(String)
|
85
|
+
end
|
86
|
+
|
87
|
+
#
|
88
|
+
# 日付文字列を検証する
|
89
|
+
#
|
90
|
+
# @return [True] 正しい
|
91
|
+
# @return [False] 正しくない
|
92
|
+
#
|
93
|
+
def western_date?
|
94
|
+
Western::Calendar.valid_date_string(str: @end_date)
|
95
|
+
end
|
96
|
+
|
97
|
+
#
|
98
|
+
# 元号情報を検証する
|
99
|
+
#
|
100
|
+
# @return [True] 正しい
|
101
|
+
# @return [False] 正しくない
|
102
|
+
#
|
103
|
+
def list?
|
104
|
+
return false unless @list
|
105
|
+
|
106
|
+
@list.is_a?(Array)
|
107
|
+
end
|
108
|
+
|
109
|
+
#
|
110
|
+
# 元号情報を検証する
|
111
|
+
#
|
112
|
+
# @return [True] 正しい
|
113
|
+
# @return [False] 正しくない
|
114
|
+
#
|
115
|
+
def validate_list
|
116
|
+
return ["invalid list. #{@list.class}"] unless list?
|
117
|
+
|
118
|
+
failed = []
|
119
|
+
list.each_with_index do |li, index|
|
120
|
+
failed |= Gengou.new(hash: li, index: index).validate
|
121
|
+
end
|
122
|
+
failed
|
123
|
+
end
|
124
|
+
end
|
125
|
+
|
126
|
+
# :reek:TooManyInstanceVariables { max_instance_variables: 5 }
|
127
|
+
|
128
|
+
#
|
129
|
+
# Gengou 元号情報
|
130
|
+
#
|
131
|
+
class Gengou
|
132
|
+
# @return [Integer] 要素位置
|
133
|
+
attr_reader :index
|
134
|
+
# @return [String] 元号名
|
135
|
+
attr_reader :name
|
136
|
+
# @return [String] 開始日
|
137
|
+
attr_reader :start_date
|
138
|
+
# @return [String] 元旦
|
139
|
+
attr_reader :new_year_date
|
140
|
+
# @return [String] 開始年
|
141
|
+
attr_reader :start_year
|
142
|
+
|
143
|
+
#
|
144
|
+
# 初期化
|
145
|
+
#
|
146
|
+
# @param [Hash<String, Strin>] hash 元号情報
|
147
|
+
# @param [Integer] index (元号セット内での)元号の要素位置
|
148
|
+
#
|
149
|
+
def initialize(hash:, index:)
|
150
|
+
@index = index
|
151
|
+
@name = hash['name']
|
152
|
+
@start_date = hash['start_date']
|
153
|
+
@new_year_date = hash['new_year_date']
|
154
|
+
@start_year = hash['start_year']
|
155
|
+
end
|
156
|
+
|
157
|
+
# :reek:TooManyStatements { max_statements: 7 }
|
158
|
+
|
159
|
+
#
|
160
|
+
# 検証する
|
161
|
+
#
|
162
|
+
# @return [Array<String>] 不正メッセージ
|
163
|
+
#
|
164
|
+
def validate
|
165
|
+
prefix = "list[#{index}]. "
|
166
|
+
failed = []
|
167
|
+
|
168
|
+
failed.push(prefix + "invalid name. #{@name}") unless name?
|
169
|
+
|
170
|
+
failed.push(prefix + "invalid start_date. #{@start_date}") unless start_date?
|
171
|
+
|
172
|
+
failed.push(prefix + "invalid start_year. #{@start_year}") unless year?
|
173
|
+
|
174
|
+
failed.push(prefix + "invalid new_year_date. #{@new_year_date}") unless new_year_date?
|
175
|
+
|
176
|
+
failed
|
177
|
+
end
|
178
|
+
|
179
|
+
#
|
180
|
+
# 元号名を検証する
|
181
|
+
#
|
182
|
+
# @return [True] 正しい
|
183
|
+
# @return [False] 正しくない
|
184
|
+
#
|
185
|
+
def name?
|
186
|
+
return false unless @name
|
187
|
+
|
188
|
+
@name.is_a?(String)
|
189
|
+
end
|
190
|
+
|
191
|
+
#
|
192
|
+
# 開始日文字列を検証する
|
193
|
+
#
|
194
|
+
# @return [True] 正しい
|
195
|
+
# @return [False] 正しくない
|
196
|
+
#
|
197
|
+
def start_date?
|
198
|
+
Western::Calendar.valid_date_string(str: @start_date)
|
199
|
+
end
|
200
|
+
|
201
|
+
#
|
202
|
+
# 元旦文字列を検証する
|
203
|
+
#
|
204
|
+
# @return [True] 正しい
|
205
|
+
# @return [False] 正しくない
|
206
|
+
#
|
207
|
+
def new_year_date?
|
208
|
+
Western::Calendar.valid_date_string(str: @new_year_date)
|
209
|
+
end
|
210
|
+
|
211
|
+
#
|
212
|
+
# 元号年を検証する
|
213
|
+
#
|
214
|
+
# @return [True] 正しい
|
215
|
+
# @return [False] 正しくない
|
216
|
+
#
|
217
|
+
def year?
|
218
|
+
return true unless @start_year
|
219
|
+
|
220
|
+
@start_year.is_a?(Integer)
|
221
|
+
end
|
222
|
+
end
|
223
|
+
|
224
|
+
#
|
225
|
+
# 検証する
|
226
|
+
#
|
227
|
+
# @param [Hash<String, Object>] yaml_hash yaml取得結果
|
228
|
+
#
|
229
|
+
# @return [Array<String>] 不正メッセージ
|
230
|
+
#
|
231
|
+
def self.run(yaml_hash:)
|
232
|
+
Set.new(hash: yaml_hash).validate
|
233
|
+
end
|
234
|
+
end
|
235
|
+
end
|
236
|
+
end
|
@@ -0,0 +1,91 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require_relative '../western'
|
4
|
+
|
5
|
+
# :nodoc:
|
6
|
+
module Zakuro
|
7
|
+
#
|
8
|
+
# Japan 和暦
|
9
|
+
#
|
10
|
+
module Japan
|
11
|
+
#
|
12
|
+
# Reki 暦
|
13
|
+
#
|
14
|
+
module Reki
|
15
|
+
#
|
16
|
+
# Range 暦(範囲)
|
17
|
+
#
|
18
|
+
class Range
|
19
|
+
# @return [String] 暦のクラス名
|
20
|
+
# version 以下を参照
|
21
|
+
attr_reader :class_name
|
22
|
+
# @return [Western::Calendar] 暦の開始日
|
23
|
+
attr_reader :start_date
|
24
|
+
|
25
|
+
#
|
26
|
+
# 初期化
|
27
|
+
#
|
28
|
+
# @param [String] class_name 暦のクラス名
|
29
|
+
# @param [Western::Calendar] start_date 暦の開始日
|
30
|
+
#
|
31
|
+
def initialize(class_name:, start_date:)
|
32
|
+
@class_name = class_name
|
33
|
+
@start_date = start_date
|
34
|
+
end
|
35
|
+
end
|
36
|
+
|
37
|
+
LIST = [
|
38
|
+
Range.new(
|
39
|
+
class_name: 'Zakuro::Genka::Gateway',
|
40
|
+
start_date: Western::Calendar.new(year: 445, month: 1, day: 24)
|
41
|
+
),
|
42
|
+
Range.new(
|
43
|
+
class_name: 'Zakuro::Gihou::Gateway',
|
44
|
+
start_date: Western::Calendar.new(year: 698, month: 2, day: 16)
|
45
|
+
),
|
46
|
+
Range.new(
|
47
|
+
class_name: 'Zakuro::Taien::Gateway',
|
48
|
+
start_date: Western::Calendar.new(year: 764, month: 2, day: 7)
|
49
|
+
),
|
50
|
+
Range.new(
|
51
|
+
class_name: 'Zakuro::Senmyou::Gateway',
|
52
|
+
start_date: Western::Calendar.new(year: 862, month: 2, day: 3)
|
53
|
+
),
|
54
|
+
Range.new(
|
55
|
+
class_name: 'Zakuro::Joukyou::Gateway',
|
56
|
+
start_date: Western::Calendar.new(year: 1685, month: 2, day: 4)
|
57
|
+
),
|
58
|
+
Range.new(
|
59
|
+
class_name: 'Zakuro::Houryaku::Gateway',
|
60
|
+
start_date: Western::Calendar.new(year: 1755, month: 2, day: 11)
|
61
|
+
),
|
62
|
+
Range.new(
|
63
|
+
class_name: 'Zakuro::Kansei::Gateway',
|
64
|
+
start_date: Western::Calendar.new(year: 1798, month: 2, day: 16)
|
65
|
+
),
|
66
|
+
Range.new(
|
67
|
+
class_name: 'Zakuro::Tenpou::Gateway',
|
68
|
+
start_date: Western::Calendar.new(year: 1844, month: 2, day: 18)
|
69
|
+
),
|
70
|
+
Range.new(
|
71
|
+
class_name: 'Zakuro::Gregorio::Gateway',
|
72
|
+
start_date: Western::Calendar.new(year: 1872, month: 12, day: 9)
|
73
|
+
)
|
74
|
+
].freeze
|
75
|
+
|
76
|
+
#
|
77
|
+
# 指定した日付から対象の暦を引き当てる
|
78
|
+
#
|
79
|
+
# @param [Western::Calendar] date 日付
|
80
|
+
#
|
81
|
+
# @return [String] 暦のクラス名
|
82
|
+
#
|
83
|
+
def self.class_name(date: Western::Calendar.new)
|
84
|
+
LIST.reverse_each do |range|
|
85
|
+
return range.class_name if date >= range.start_date
|
86
|
+
end
|
87
|
+
raise ArgumentError, "invalid date: #{date.format}"
|
88
|
+
end
|
89
|
+
end
|
90
|
+
end
|
91
|
+
end
|
@@ -0,0 +1,1121 @@
|
|
1
|
+
id: 1
|
2
|
+
name: "南北朝前+南朝"
|
3
|
+
# 元中9年閏10月4日
|
4
|
+
end_date: "1392-11-18"
|
5
|
+
list:
|
6
|
+
- name: "允恭"
|
7
|
+
# 34年1月1日
|
8
|
+
start_year: 34
|
9
|
+
start_date: "445-1-24"
|
10
|
+
new_year_date: "445-1-24"
|
11
|
+
note: ""
|
12
|
+
- name: "安康"
|
13
|
+
# 1年1月1日
|
14
|
+
start_year: 1
|
15
|
+
start_date: "454-2-14"
|
16
|
+
new_year_date: "454-2-14"
|
17
|
+
note: ""
|
18
|
+
- name: "雄略"
|
19
|
+
# 1年1月1日
|
20
|
+
start_year: 1
|
21
|
+
start_date: "457-2-10"
|
22
|
+
new_year_date: "457-2-10"
|
23
|
+
note: ""
|
24
|
+
- name: "清寧"
|
25
|
+
# 1年1月1日
|
26
|
+
start_year: 1
|
27
|
+
start_date: "480-1-28"
|
28
|
+
new_year_date: "480-1-28"
|
29
|
+
note: ""
|
30
|
+
- name: "顕宗"
|
31
|
+
# 1年1月1日
|
32
|
+
start_year: 1
|
33
|
+
start_date: "485-2-1"
|
34
|
+
new_year_date: "485-2-1"
|
35
|
+
note: ""
|
36
|
+
- name: "仁賢"
|
37
|
+
# 1年1月1日
|
38
|
+
start_year: 1
|
39
|
+
start_date: "488-1-29"
|
40
|
+
new_year_date: "488-1-29"
|
41
|
+
note: ""
|
42
|
+
- name: "武烈"
|
43
|
+
# 1年1月1日
|
44
|
+
start_year: 1
|
45
|
+
start_date: "499-1-28"
|
46
|
+
new_year_date: "499-1-28"
|
47
|
+
note: ""
|
48
|
+
- name: "継体"
|
49
|
+
# 1年1月1日
|
50
|
+
start_year: 1
|
51
|
+
start_date: "507-1-29"
|
52
|
+
new_year_date: "507-1-29"
|
53
|
+
note: ""
|
54
|
+
- name: "安閑"
|
55
|
+
# 1年1月1日
|
56
|
+
start_year: 1
|
57
|
+
start_date: "534-1-30"
|
58
|
+
new_year_date: "534-1-30"
|
59
|
+
note: ""
|
60
|
+
- name: "宣化"
|
61
|
+
# 1年1月1日
|
62
|
+
start_year: 1
|
63
|
+
start_date: "536-2-8"
|
64
|
+
new_year_date: "536-2-8"
|
65
|
+
note: ""
|
66
|
+
- name: "欽明"
|
67
|
+
# 1年1月1日
|
68
|
+
start_year: 1
|
69
|
+
start_date: "540-1-25"
|
70
|
+
new_year_date: "540-1-25"
|
71
|
+
note: ""
|
72
|
+
- name: "敏達"
|
73
|
+
# 1年1月1日
|
74
|
+
start_year: 1
|
75
|
+
start_date: "572-1-31"
|
76
|
+
new_year_date: "572-1-31"
|
77
|
+
note: ""
|
78
|
+
- name: "用明"
|
79
|
+
# 1年1月1日
|
80
|
+
start_year: 1
|
81
|
+
start_date: "586-1-25"
|
82
|
+
new_year_date: "586-1-25"
|
83
|
+
note: ""
|
84
|
+
- name: "崇峻"
|
85
|
+
# 1年1月1日
|
86
|
+
start_year: 1
|
87
|
+
start_date: "588-2-3"
|
88
|
+
new_year_date: "588-2-3"
|
89
|
+
note: ""
|
90
|
+
- name: "推古"
|
91
|
+
# 1年1月1日
|
92
|
+
start_year: 1
|
93
|
+
start_date: "593-2-7"
|
94
|
+
new_year_date: "593-2-7"
|
95
|
+
note: ""
|
96
|
+
- name: "舒明"
|
97
|
+
# 1年1月1日
|
98
|
+
start_year: 1
|
99
|
+
start_date: "629-1-30"
|
100
|
+
new_year_date: "629-1-30"
|
101
|
+
note: ""
|
102
|
+
- name: "皇極"
|
103
|
+
# 1年1月1日
|
104
|
+
start_year: 1
|
105
|
+
start_date: "642-2-5"
|
106
|
+
new_year_date: "642-2-5"
|
107
|
+
note: ""
|
108
|
+
- name: "大化"
|
109
|
+
# 1年6月19日
|
110
|
+
start_year: 1
|
111
|
+
start_date: "645-7-17"
|
112
|
+
new_year_date: "645-2-2"
|
113
|
+
note: ""
|
114
|
+
- name: "白雉"
|
115
|
+
# 1年2月15日
|
116
|
+
start_year: 1
|
117
|
+
start_date: "650-3-22"
|
118
|
+
new_year_date: "650-2-7"
|
119
|
+
note: ""
|
120
|
+
- name: "斉明"
|
121
|
+
# 1年1月1日
|
122
|
+
start_year: 1
|
123
|
+
start_date: "655-2-12"
|
124
|
+
new_year_date: "655-2-12"
|
125
|
+
note: ""
|
126
|
+
- name: "天智"
|
127
|
+
# 1年1月1日
|
128
|
+
start_year: 1
|
129
|
+
start_date: "662-1-25"
|
130
|
+
new_year_date: "662-1-25"
|
131
|
+
note: ""
|
132
|
+
- name: "天武"
|
133
|
+
# 1年1月1日
|
134
|
+
start_year: 1
|
135
|
+
start_date: "672-2-4"
|
136
|
+
new_year_date: "672-2-4"
|
137
|
+
note: ""
|
138
|
+
- name: "朱鳥"
|
139
|
+
# 1年7月20日
|
140
|
+
start_year: 1
|
141
|
+
start_date: "686-8-14"
|
142
|
+
new_year_date: "686-1-30"
|
143
|
+
note: ""
|
144
|
+
- name: "持統"
|
145
|
+
# 1年1月1日
|
146
|
+
start_year: 1
|
147
|
+
start_date: "687-2-18"
|
148
|
+
new_year_date: "687-2-18"
|
149
|
+
note: ""
|
150
|
+
- name: "文武"
|
151
|
+
# 1年1月1日
|
152
|
+
start_year: 1
|
153
|
+
start_date: "697-1-28"
|
154
|
+
new_year_date: "697-1-28"
|
155
|
+
note: ""
|
156
|
+
- name: "大宝"
|
157
|
+
# 1年3月21日
|
158
|
+
start_year: 1
|
159
|
+
start_date: "701-5-3"
|
160
|
+
new_year_date: "701-2-13"
|
161
|
+
note: ""
|
162
|
+
- name: "慶雲"
|
163
|
+
# 1年5月10日
|
164
|
+
start_year: 1
|
165
|
+
start_date: "704-6-16"
|
166
|
+
new_year_date: "704-2-10"
|
167
|
+
note: ""
|
168
|
+
- name: "和銅"
|
169
|
+
# 1年1月11日
|
170
|
+
start_year: 1
|
171
|
+
start_date: "708-2-7"
|
172
|
+
new_year_date: "708-1-28"
|
173
|
+
note: ""
|
174
|
+
- name: "霊亀"
|
175
|
+
# 1年9月2日
|
176
|
+
start_year: 1
|
177
|
+
start_date: "715-10-3"
|
178
|
+
new_year_date: "715-2-9"
|
179
|
+
note: ""
|
180
|
+
- name: "養老"
|
181
|
+
# 1年11月17日
|
182
|
+
start_year: 1
|
183
|
+
start_date: "717-12-24"
|
184
|
+
new_year_date: "717-2-16"
|
185
|
+
note: ""
|
186
|
+
- name: "神亀"
|
187
|
+
# 1年2月4日
|
188
|
+
start_year: 1
|
189
|
+
start_date: "724-3-3"
|
190
|
+
new_year_date: "724-1-31"
|
191
|
+
note: ""
|
192
|
+
- name: "天平"
|
193
|
+
# 1年8月5日
|
194
|
+
start_year: 1
|
195
|
+
start_date: "729-9-2"
|
196
|
+
new_year_date: "729-2-3"
|
197
|
+
note: ""
|
198
|
+
- name: "天平感宝"
|
199
|
+
# 1年4月14日
|
200
|
+
start_year: 1
|
201
|
+
start_date: "749-5-4"
|
202
|
+
new_year_date: "749-1-23"
|
203
|
+
note: ""
|
204
|
+
- name: "天平勝宝"
|
205
|
+
# 1年7月2日
|
206
|
+
start_year: 1
|
207
|
+
start_date: "749-8-19"
|
208
|
+
new_year_date: "749-1-23"
|
209
|
+
note: ""
|
210
|
+
- name: "天平宝字"
|
211
|
+
# 1年8月18日
|
212
|
+
start_year: 1
|
213
|
+
start_date: "757-9-6"
|
214
|
+
new_year_date: "749-1-23"
|
215
|
+
note: ""
|
216
|
+
- name: "天平神護"
|
217
|
+
# 1年1月7日
|
218
|
+
start_year: 1
|
219
|
+
start_date: "765-2-1"
|
220
|
+
new_year_date: "765-1-26"
|
221
|
+
note: ""
|
222
|
+
- name: "神護景雲"
|
223
|
+
# 1年8月16日
|
224
|
+
start_year: 1
|
225
|
+
start_date: "767-9-13"
|
226
|
+
new_year_date: "767-2-4"
|
227
|
+
note: ""
|
228
|
+
- name: "宝亀"
|
229
|
+
# 1年10月1日
|
230
|
+
start_year: 1
|
231
|
+
start_date: "770-10-23"
|
232
|
+
new_year_date: "770-2-1"
|
233
|
+
note: ""
|
234
|
+
- name: "天応"
|
235
|
+
# 1年1月1日
|
236
|
+
start_year: 1
|
237
|
+
start_date: "781-1-30"
|
238
|
+
new_year_date: "781-1-29"
|
239
|
+
note: "続日本紀(計算:781-1-29)"
|
240
|
+
- name: "延暦"
|
241
|
+
# 1年8月19日
|
242
|
+
start_year: 1
|
243
|
+
start_date: "782-9-30"
|
244
|
+
new_year_date: "782-1-18"
|
245
|
+
note: ""
|
246
|
+
- name: "大同"
|
247
|
+
# 1年5月18日
|
248
|
+
start_year: 1
|
249
|
+
start_date: "806-6-8"
|
250
|
+
new_year_date: "806-1-23"
|
251
|
+
note: ""
|
252
|
+
- name: "弘仁"
|
253
|
+
# 1年9月19日
|
254
|
+
start_year: 1
|
255
|
+
start_date: "810-10-20"
|
256
|
+
new_year_date: "810-2-8"
|
257
|
+
note: ""
|
258
|
+
- name: "天長"
|
259
|
+
# 1年1月5日
|
260
|
+
start_year: 1
|
261
|
+
start_date: "824-2-8"
|
262
|
+
new_year_date: "824-2-4"
|
263
|
+
note: ""
|
264
|
+
- name: "承和"
|
265
|
+
# 1年1月3日
|
266
|
+
start_year: 1
|
267
|
+
start_date: "834-2-14"
|
268
|
+
new_year_date: "834-2-12"
|
269
|
+
note: ""
|
270
|
+
- name: "嘉祥"
|
271
|
+
# 1年6月13日
|
272
|
+
start_year: 1
|
273
|
+
start_date: "848-7-16"
|
274
|
+
new_year_date: "848-2-9"
|
275
|
+
note: ""
|
276
|
+
- name: "仁寿"
|
277
|
+
# 1年4月28日
|
278
|
+
start_year: 1
|
279
|
+
start_date: "851-6-1"
|
280
|
+
new_year_date: "851-2-5"
|
281
|
+
note: ""
|
282
|
+
- name: "斎衡"
|
283
|
+
# 1年11月30日
|
284
|
+
start_year: 1
|
285
|
+
start_date: "854-12-23"
|
286
|
+
new_year_date: "854-2-1"
|
287
|
+
note: ""
|
288
|
+
- name: "天安"
|
289
|
+
# 1年2月21日
|
290
|
+
start_year: 1
|
291
|
+
start_date: "857-3-20"
|
292
|
+
new_year_date: "857-1-29"
|
293
|
+
note: ""
|
294
|
+
- name: "貞観"
|
295
|
+
# 1年4月15日
|
296
|
+
start_year: 1
|
297
|
+
start_date: "859-5-20"
|
298
|
+
new_year_date: "859-2-7"
|
299
|
+
note: ""
|
300
|
+
- name: "元慶"
|
301
|
+
# 1年4月16日
|
302
|
+
start_year: 1
|
303
|
+
start_date: "877-6-1"
|
304
|
+
new_year_date: "877-1-18"
|
305
|
+
note: ""
|
306
|
+
- name: "仁和"
|
307
|
+
# 1年2月21日
|
308
|
+
start_year: 1
|
309
|
+
start_date: "885-3-11"
|
310
|
+
new_year_date: "885-1-20"
|
311
|
+
note: ""
|
312
|
+
- name: "寛平"
|
313
|
+
# 1年4月27日
|
314
|
+
start_year: 1
|
315
|
+
start_date: "889-5-30"
|
316
|
+
new_year_date: "889-2-4"
|
317
|
+
note: ""
|
318
|
+
- name: "昌泰"
|
319
|
+
# 1年4月26日
|
320
|
+
start_year: 1
|
321
|
+
start_date: "898-5-20"
|
322
|
+
new_year_date: "898-1-26"
|
323
|
+
note: ""
|
324
|
+
- name: "延喜"
|
325
|
+
# 1年7月15日
|
326
|
+
start_year: 1
|
327
|
+
start_date: "901-8-31"
|
328
|
+
new_year_date: "901-1-23"
|
329
|
+
note: ""
|
330
|
+
- name: "延長"
|
331
|
+
# 1年閏4月11日
|
332
|
+
start_year: 1
|
333
|
+
start_date: "923-5-29"
|
334
|
+
new_year_date: "923-1-20"
|
335
|
+
note: ""
|
336
|
+
- name: "承平"
|
337
|
+
# 1年4月26日
|
338
|
+
start_year: 1
|
339
|
+
start_date: "931-5-16"
|
340
|
+
new_year_date: "931-1-22"
|
341
|
+
note: ""
|
342
|
+
- name: "天慶"
|
343
|
+
# 1年5月22日
|
344
|
+
start_year: 1
|
345
|
+
start_date: "938-6-22"
|
346
|
+
new_year_date: "938-2-3"
|
347
|
+
note: ""
|
348
|
+
- name: "天暦"
|
349
|
+
# 1年4月22日
|
350
|
+
start_year: 1
|
351
|
+
start_date: "947-5-15"
|
352
|
+
new_year_date: "947-1-25"
|
353
|
+
note: ""
|
354
|
+
- name: "天徳"
|
355
|
+
# 1年10月27日
|
356
|
+
start_year: 1
|
357
|
+
start_date: "957-11-21"
|
358
|
+
new_year_date: "957-2-3"
|
359
|
+
note: ""
|
360
|
+
- name: "応和"
|
361
|
+
# 1年2月16日
|
362
|
+
start_year: 1
|
363
|
+
start_date: "961-3-5"
|
364
|
+
new_year_date: "961-1-20"
|
365
|
+
note: ""
|
366
|
+
- name: "康保"
|
367
|
+
# 1年7月10日
|
368
|
+
start_year: 1
|
369
|
+
start_date: "964-8-19"
|
370
|
+
new_year_date: "964-2-16"
|
371
|
+
note: ""
|
372
|
+
- name: "安和"
|
373
|
+
# 1年8月13日
|
374
|
+
start_year: 1
|
375
|
+
start_date: "968-9-8"
|
376
|
+
new_year_date: "968-2-2"
|
377
|
+
note: ""
|
378
|
+
- name: "天禄"
|
379
|
+
# 1年3月25日
|
380
|
+
start_year: 1
|
381
|
+
start_date: "970-5-3"
|
382
|
+
new_year_date: "970-2-9"
|
383
|
+
note: ""
|
384
|
+
- name: "天延"
|
385
|
+
# 1年12月20日
|
386
|
+
start_year: 1
|
387
|
+
start_date: "974-1-16"
|
388
|
+
new_year_date: "973-2-6"
|
389
|
+
note: ""
|
390
|
+
- name: "貞元"
|
391
|
+
# 1年7月13日
|
392
|
+
start_year: 1
|
393
|
+
start_date: "976-8-11"
|
394
|
+
new_year_date: "976-2-3"
|
395
|
+
note: ""
|
396
|
+
- name: "天元"
|
397
|
+
# 1年11月29日
|
398
|
+
start_year: 1
|
399
|
+
start_date: "978-12-31"
|
400
|
+
new_year_date: "978-2-10"
|
401
|
+
note: ""
|
402
|
+
- name: "永観"
|
403
|
+
# 1年4月15日
|
404
|
+
start_year: 1
|
405
|
+
start_date: "983-5-29"
|
406
|
+
new_year_date: "983-2-16"
|
407
|
+
note: ""
|
408
|
+
- name: "寛和"
|
409
|
+
# 1年4月27日
|
410
|
+
start_year: 1
|
411
|
+
start_date: "985-5-19"
|
412
|
+
new_year_date: "985-1-24"
|
413
|
+
note: ""
|
414
|
+
- name: "永延"
|
415
|
+
# 1年4月5日
|
416
|
+
start_year: 1
|
417
|
+
start_date: "987-5-5"
|
418
|
+
new_year_date: "987-2-1"
|
419
|
+
note: ""
|
420
|
+
- name: "永祚"
|
421
|
+
# 1年8月8日
|
422
|
+
start_year: 1
|
423
|
+
start_date: "989-9-10"
|
424
|
+
new_year_date: "989-2-9"
|
425
|
+
note: ""
|
426
|
+
- name: "正暦"
|
427
|
+
# 1年11月7日
|
428
|
+
start_year: 1
|
429
|
+
start_date: "990-11-26"
|
430
|
+
new_year_date: "990-1-30"
|
431
|
+
note: ""
|
432
|
+
- name: "長徳"
|
433
|
+
# 1年2月22日
|
434
|
+
start_year: 1
|
435
|
+
start_date: "995-3-25"
|
436
|
+
new_year_date: "995-2-3"
|
437
|
+
note: ""
|
438
|
+
- name: "長保"
|
439
|
+
# 1年1月13日
|
440
|
+
start_year: 1
|
441
|
+
start_date: "999-2-1"
|
442
|
+
new_year_date: "999-1-20"
|
443
|
+
note: ""
|
444
|
+
- name: "寛弘"
|
445
|
+
# 1年7月20日
|
446
|
+
start_year: 1
|
447
|
+
start_date: "1004-8-8"
|
448
|
+
new_year_date: "1004-1-25"
|
449
|
+
note: ""
|
450
|
+
- name: "長和"
|
451
|
+
# 1年12月25日
|
452
|
+
start_year: 1
|
453
|
+
start_date: "1013-2-8"
|
454
|
+
new_year_date: "1012-1-26"
|
455
|
+
note: ""
|
456
|
+
- name: "寛仁"
|
457
|
+
# 1年4月23日
|
458
|
+
start_year: 1
|
459
|
+
start_date: "1017-5-21"
|
460
|
+
new_year_date: "1017-1-31"
|
461
|
+
note: ""
|
462
|
+
- name: "治安"
|
463
|
+
# 1年2月2日
|
464
|
+
start_year: 1
|
465
|
+
start_date: "1021-3-17"
|
466
|
+
new_year_date: "1021-2-15"
|
467
|
+
note: ""
|
468
|
+
- name: "万寿"
|
469
|
+
# 1年7月13日
|
470
|
+
start_year: 1
|
471
|
+
start_date: "1024-8-19"
|
472
|
+
new_year_date: "1024-2-13"
|
473
|
+
note: ""
|
474
|
+
- name: "長元"
|
475
|
+
# 1年7月25日
|
476
|
+
start_year: 1
|
477
|
+
start_date: "1028-8-18"
|
478
|
+
new_year_date: "1028-1-30"
|
479
|
+
note: ""
|
480
|
+
- name: "長暦"
|
481
|
+
# 1年4月21日
|
482
|
+
start_year: 1
|
483
|
+
start_date: "1037-5-9"
|
484
|
+
new_year_date: "1037-1-19"
|
485
|
+
note: ""
|
486
|
+
- name: "長久"
|
487
|
+
# 1年11月10日
|
488
|
+
start_year: 1
|
489
|
+
start_date: "1040-12-16"
|
490
|
+
new_year_date: "1040-2-15"
|
491
|
+
note: ""
|
492
|
+
- name: "寛徳"
|
493
|
+
# 1年11月24日
|
494
|
+
start_year: 1
|
495
|
+
start_date: "1044-12-16"
|
496
|
+
new_year_date: "1044-2-2"
|
497
|
+
note: ""
|
498
|
+
- name: "永承"
|
499
|
+
# 1年4月14日
|
500
|
+
start_year: 1
|
501
|
+
start_date: "1046-5-22"
|
502
|
+
new_year_date: "1046-2-9"
|
503
|
+
note: ""
|
504
|
+
- name: "天喜"
|
505
|
+
# 1年1月11日
|
506
|
+
start_year: 1
|
507
|
+
start_date: "1053-2-2"
|
508
|
+
new_year_date: "1053-1-23"
|
509
|
+
note: ""
|
510
|
+
- name: "康平"
|
511
|
+
# 1年8月29日
|
512
|
+
start_year: 1
|
513
|
+
start_date: "1058-9-19"
|
514
|
+
new_year_date: "1058-1-27"
|
515
|
+
note: ""
|
516
|
+
- name: "治暦"
|
517
|
+
# 1年8月2日
|
518
|
+
start_year: 1
|
519
|
+
start_date: "1065-9-4"
|
520
|
+
new_year_date: "1065-2-8"
|
521
|
+
note: ""
|
522
|
+
- name: "延久"
|
523
|
+
# 1年4月13日
|
524
|
+
start_year: 1
|
525
|
+
start_date: "1069-5-6"
|
526
|
+
new_year_date: "1069-1-26"
|
527
|
+
note: ""
|
528
|
+
- name: "承保"
|
529
|
+
# 1年8月23日
|
530
|
+
start_year: 1
|
531
|
+
start_date: "1074-9-16"
|
532
|
+
new_year_date: "1074-1-30"
|
533
|
+
note: ""
|
534
|
+
- name: "承暦"
|
535
|
+
# 1年11月17日
|
536
|
+
start_year: 1
|
537
|
+
start_date: "1077-12-5"
|
538
|
+
new_year_date: "1077-1-27"
|
539
|
+
note: ""
|
540
|
+
- name: "永保"
|
541
|
+
# 1年2月10日
|
542
|
+
start_year: 1
|
543
|
+
start_date: "1081-3-22"
|
544
|
+
new_year_date: "1081-2-12"
|
545
|
+
note: ""
|
546
|
+
- name: "応徳"
|
547
|
+
# 1年2月7日
|
548
|
+
start_year: 1
|
549
|
+
start_date: "1084-3-15"
|
550
|
+
new_year_date: "1084-2-9"
|
551
|
+
note: ""
|
552
|
+
- name: "寛治"
|
553
|
+
# 1年4月7日
|
554
|
+
start_year: 1
|
555
|
+
start_date: "1087-5-11"
|
556
|
+
new_year_date: "1087-2-6"
|
557
|
+
note: ""
|
558
|
+
- name: "嘉保"
|
559
|
+
# 1年12月15日
|
560
|
+
start_year: 1
|
561
|
+
start_date: "1095-1-23"
|
562
|
+
new_year_date: "1094-1-19"
|
563
|
+
note: ""
|
564
|
+
- name: "永長"
|
565
|
+
# 1年12月17日
|
566
|
+
start_year: 1
|
567
|
+
start_date: "1097-1-3"
|
568
|
+
new_year_date: "1096-1-28"
|
569
|
+
note: ""
|
570
|
+
- name: "承徳"
|
571
|
+
# 1年11月21日
|
572
|
+
start_year: 1
|
573
|
+
start_date: "1097-12-27"
|
574
|
+
new_year_date: "1097-1-16"
|
575
|
+
note: ""
|
576
|
+
- name: "康和"
|
577
|
+
# 1年8月28日
|
578
|
+
start_year: 1
|
579
|
+
start_date: "1099-9-15"
|
580
|
+
new_year_date: "1099-1-24"
|
581
|
+
note: ""
|
582
|
+
- name: "長治"
|
583
|
+
# 1年2月10日
|
584
|
+
start_year: 1
|
585
|
+
start_date: "1104-3-8"
|
586
|
+
new_year_date: "1104-1-30"
|
587
|
+
note: ""
|
588
|
+
- name: "嘉承"
|
589
|
+
# 1年4月9日
|
590
|
+
start_year: 1
|
591
|
+
start_date: "1106-5-13"
|
592
|
+
new_year_date: "1106-2-6"
|
593
|
+
note: ""
|
594
|
+
- name: "天仁"
|
595
|
+
# 1年8月3日
|
596
|
+
start_year: 1
|
597
|
+
start_date: "1108-9-9"
|
598
|
+
new_year_date: "1108-2-14"
|
599
|
+
note: ""
|
600
|
+
- name: "天永"
|
601
|
+
# 1年7月13日
|
602
|
+
start_year: 1
|
603
|
+
start_date: "1110-7-31"
|
604
|
+
new_year_date: "1110-1-22"
|
605
|
+
note: ""
|
606
|
+
- name: "永久"
|
607
|
+
# 1年7月13日
|
608
|
+
start_year: 1
|
609
|
+
start_date: "1113-8-25"
|
610
|
+
new_year_date: "1113-1-20"
|
611
|
+
note: ""
|
612
|
+
- name: "元永"
|
613
|
+
# 1年4月3日
|
614
|
+
start_year: 1
|
615
|
+
start_date: "1118-4-25"
|
616
|
+
new_year_date: "1118-1-24"
|
617
|
+
note: ""
|
618
|
+
- name: "保安"
|
619
|
+
# 1年4月10日
|
620
|
+
start_year: 1
|
621
|
+
start_date: "1120-5-9"
|
622
|
+
new_year_date: "1120-2-1"
|
623
|
+
note: ""
|
624
|
+
- name: "天治"
|
625
|
+
# 1年4月3日
|
626
|
+
start_year: 1
|
627
|
+
start_date: "1124-5-18"
|
628
|
+
new_year_date: "1124-1-19"
|
629
|
+
note: ""
|
630
|
+
- name: "大治"
|
631
|
+
# 1年1月22日
|
632
|
+
start_year: 1
|
633
|
+
start_date: "1126-2-15"
|
634
|
+
new_year_date: "1126-1-25"
|
635
|
+
note: ""
|
636
|
+
- name: "天承"
|
637
|
+
# 1年1月29日
|
638
|
+
start_year: 1
|
639
|
+
start_date: "1131-2-28"
|
640
|
+
new_year_date: "1131-1-31"
|
641
|
+
note: ""
|
642
|
+
- name: "長承"
|
643
|
+
# 1年8月11日
|
644
|
+
start_year: 1
|
645
|
+
start_date: "1132-9-21"
|
646
|
+
new_year_date: "1132-1-20"
|
647
|
+
note: ""
|
648
|
+
- name: "保延"
|
649
|
+
# 1年4月27日
|
650
|
+
start_year: 1
|
651
|
+
start_date: "1135-6-10"
|
652
|
+
new_year_date: "1135-2-15"
|
653
|
+
note: ""
|
654
|
+
- name: "永治"
|
655
|
+
# 1年7月10日
|
656
|
+
start_year: 1
|
657
|
+
start_date: "1141-8-13"
|
658
|
+
new_year_date: "1141-2-9"
|
659
|
+
note: ""
|
660
|
+
- name: "康治"
|
661
|
+
# 1年4月28日
|
662
|
+
start_year: 1
|
663
|
+
start_date: "1142-5-25"
|
664
|
+
new_year_date: "1142-1-29"
|
665
|
+
note: ""
|
666
|
+
- name: "天養"
|
667
|
+
# 1年2月23日
|
668
|
+
start_year: 1
|
669
|
+
start_date: "1144-3-28"
|
670
|
+
new_year_date: "1144-2-6"
|
671
|
+
note: ""
|
672
|
+
- name: "久安"
|
673
|
+
# 1年7月22日
|
674
|
+
start_year: 1
|
675
|
+
start_date: "1145-8-12"
|
676
|
+
new_year_date: "1145-1-25"
|
677
|
+
note: ""
|
678
|
+
- name: "仁平"
|
679
|
+
# 1年1月26日
|
680
|
+
start_year: 1
|
681
|
+
start_date: "1151-2-14"
|
682
|
+
new_year_date: "1151-1-20"
|
683
|
+
note: ""
|
684
|
+
- name: "久寿"
|
685
|
+
# 1年10月28日
|
686
|
+
start_year: 1
|
687
|
+
start_date: "1154-12-4"
|
688
|
+
new_year_date: "1154-2-14"
|
689
|
+
note: ""
|
690
|
+
- name: "保元"
|
691
|
+
# 1年4月27日
|
692
|
+
start_year: 1
|
693
|
+
start_date: "1156-5-18"
|
694
|
+
new_year_date: "1156-1-24"
|
695
|
+
note: ""
|
696
|
+
- name: "平治"
|
697
|
+
# 1年4月20日
|
698
|
+
start_year: 1
|
699
|
+
start_date: "1159-5-9"
|
700
|
+
new_year_date: "1159-1-21"
|
701
|
+
note: ""
|
702
|
+
- name: "永暦"
|
703
|
+
# 1年1月10日
|
704
|
+
start_year: 1
|
705
|
+
start_date: "1160-2-18"
|
706
|
+
new_year_date: "1160-2-9"
|
707
|
+
note: ""
|
708
|
+
- name: "応保"
|
709
|
+
# 1年9月4日
|
710
|
+
start_year: 1
|
711
|
+
start_date: "1161-9-24"
|
712
|
+
new_year_date: "1161-1-28"
|
713
|
+
note: ""
|
714
|
+
- name: "長寛"
|
715
|
+
# 1年3月29日
|
716
|
+
start_year: 1
|
717
|
+
start_date: "1163-5-4"
|
718
|
+
new_year_date: "1163-2-5"
|
719
|
+
note: ""
|
720
|
+
- name: "永万"
|
721
|
+
# 1年6月5日
|
722
|
+
start_year: 1
|
723
|
+
start_date: "1165-7-14"
|
724
|
+
new_year_date: "1165-2-13"
|
725
|
+
note: ""
|
726
|
+
- name: "仁安"
|
727
|
+
# 1年8月27日
|
728
|
+
start_year: 1
|
729
|
+
start_date: "1166-9-23"
|
730
|
+
new_year_date: "1166-2-3"
|
731
|
+
note: ""
|
732
|
+
- name: "嘉応"
|
733
|
+
# 1年4月8日
|
734
|
+
start_year: 1
|
735
|
+
start_date: "1169-5-6"
|
736
|
+
new_year_date: "1169-1-30"
|
737
|
+
note: ""
|
738
|
+
- name: "承安"
|
739
|
+
# 1年4月21日
|
740
|
+
start_year: 1
|
741
|
+
start_date: "1171-5-27"
|
742
|
+
new_year_date: "1171-2-7"
|
743
|
+
note: ""
|
744
|
+
- name: "安元"
|
745
|
+
# 1年7月28日
|
746
|
+
start_year: 1
|
747
|
+
start_date: "1175-8-16"
|
748
|
+
new_year_date: "1175-1-24"
|
749
|
+
note: ""
|
750
|
+
- name: "治承"
|
751
|
+
# 1年8月4日
|
752
|
+
start_year: 1
|
753
|
+
start_date: "1177-8-29"
|
754
|
+
new_year_date: "1177-2-1"
|
755
|
+
note: ""
|
756
|
+
- name: "養和"
|
757
|
+
# 1年7月14日
|
758
|
+
start_year: 1
|
759
|
+
start_date: "1181-8-25"
|
760
|
+
new_year_date: "1181-1-17"
|
761
|
+
note: ""
|
762
|
+
- name: "寿永"
|
763
|
+
# 1年5月27日
|
764
|
+
start_year: 1
|
765
|
+
start_date: "1182-6-29"
|
766
|
+
new_year_date: "1182-2-5"
|
767
|
+
note: ""
|
768
|
+
- name: "元暦"
|
769
|
+
# 1年4月16日
|
770
|
+
start_year: 1
|
771
|
+
start_date: "1184-5-27"
|
772
|
+
new_year_date: "1184-2-14"
|
773
|
+
note: ""
|
774
|
+
- name: "文治"
|
775
|
+
# 1年8月14日
|
776
|
+
start_year: 1
|
777
|
+
start_date: "1185-9-9"
|
778
|
+
new_year_date: "1185-2-2"
|
779
|
+
note: ""
|
780
|
+
- name: "建久"
|
781
|
+
# 1年4月11日
|
782
|
+
start_year: 1
|
783
|
+
start_date: "1190-5-16"
|
784
|
+
new_year_date: "1190-2-7"
|
785
|
+
note: ""
|
786
|
+
- name: "正治"
|
787
|
+
# 1年4月27日
|
788
|
+
start_year: 1
|
789
|
+
start_date: "1199-5-23"
|
790
|
+
new_year_date: "1199-1-28"
|
791
|
+
note: ""
|
792
|
+
- name: "建仁"
|
793
|
+
# 1年2月13日
|
794
|
+
start_year: 1
|
795
|
+
start_date: "1201-3-19"
|
796
|
+
new_year_date: "1201-2-5"
|
797
|
+
note: ""
|
798
|
+
- name: "元久"
|
799
|
+
# 1年2月20日
|
800
|
+
start_year: 1
|
801
|
+
start_date: "1204-3-23"
|
802
|
+
new_year_date: "1204-2-3"
|
803
|
+
note: ""
|
804
|
+
- name: "建永"
|
805
|
+
# 1年4月27日
|
806
|
+
start_year: 1
|
807
|
+
start_date: "1206-6-5"
|
808
|
+
new_year_date: "1206-2-10"
|
809
|
+
note: ""
|
810
|
+
- name: "承元"
|
811
|
+
# 1年10月25日
|
812
|
+
start_year: 1
|
813
|
+
start_date: "1207-11-16"
|
814
|
+
new_year_date: "1207-1-30"
|
815
|
+
note: ""
|
816
|
+
- name: "建暦"
|
817
|
+
# 1年3月9日
|
818
|
+
start_year: 1
|
819
|
+
start_date: "1211-4-23"
|
820
|
+
new_year_date: "1211-1-17"
|
821
|
+
note: ""
|
822
|
+
- name: "建保"
|
823
|
+
# 1年12月6日
|
824
|
+
start_year: 1
|
825
|
+
start_date: "1214-1-18"
|
826
|
+
new_year_date: "1213-1-24"
|
827
|
+
note: ""
|
828
|
+
- name: "承久"
|
829
|
+
# 1年4月12日
|
830
|
+
start_year: 1
|
831
|
+
start_date: "1219-5-27"
|
832
|
+
new_year_date: "1219-1-18"
|
833
|
+
note: ""
|
834
|
+
- name: "貞応"
|
835
|
+
# 1年4月13日
|
836
|
+
start_year: 1
|
837
|
+
start_date: "1222-5-25"
|
838
|
+
new_year_date: "1222-2-13"
|
839
|
+
note: ""
|
840
|
+
- name: "元仁"
|
841
|
+
# 1年11月20日
|
842
|
+
start_year: 1
|
843
|
+
start_date: "1224-12-31"
|
844
|
+
new_year_date: "1224-1-22"
|
845
|
+
note: ""
|
846
|
+
- name: "嘉禄"
|
847
|
+
# 1年4月20日
|
848
|
+
start_year: 1
|
849
|
+
start_date: "1225-5-28"
|
850
|
+
new_year_date: "1225-2-9"
|
851
|
+
note: ""
|
852
|
+
- name: "安貞"
|
853
|
+
# 1年12月10日
|
854
|
+
start_year: 1
|
855
|
+
start_date: "1228-1-18"
|
856
|
+
new_year_date: "1227-1-19"
|
857
|
+
note: ""
|
858
|
+
- name: "寛喜"
|
859
|
+
# 1年3月5日
|
860
|
+
start_year: 1
|
861
|
+
start_date: "1229-3-31"
|
862
|
+
new_year_date: "1229-1-27"
|
863
|
+
note: ""
|
864
|
+
- name: "貞永"
|
865
|
+
# 1年4月2日
|
866
|
+
start_year: 1
|
867
|
+
start_date: "1232-4-23"
|
868
|
+
new_year_date: "1232-1-24"
|
869
|
+
note: ""
|
870
|
+
- name: "天福"
|
871
|
+
# 1年4月15日
|
872
|
+
start_year: 1
|
873
|
+
start_date: "1233-5-25"
|
874
|
+
new_year_date: "1233-2-11"
|
875
|
+
note: ""
|
876
|
+
- name: "文暦"
|
877
|
+
# 1年11月5日
|
878
|
+
start_year: 1
|
879
|
+
start_date: "1234-11-27"
|
880
|
+
new_year_date: "1234-1-31"
|
881
|
+
note: ""
|
882
|
+
- name: "嘉禎"
|
883
|
+
# 1年9月19日
|
884
|
+
start_year: 1
|
885
|
+
start_date: "1235-11-1"
|
886
|
+
new_year_date: "1235-1-21"
|
887
|
+
note: ""
|
888
|
+
- name: "暦仁"
|
889
|
+
# 1年11月23日
|
890
|
+
start_year: 1
|
891
|
+
start_date: "1238-12-30"
|
892
|
+
new_year_date: "1238-1-18"
|
893
|
+
note: ""
|
894
|
+
- name: "延応"
|
895
|
+
# 1年2月7日
|
896
|
+
start_year: 1
|
897
|
+
start_date: "1239-3-13"
|
898
|
+
new_year_date: "1239-2-6"
|
899
|
+
note: ""
|
900
|
+
- name: "仁治"
|
901
|
+
# 1年7月16日
|
902
|
+
start_year: 1
|
903
|
+
start_date: "1240-8-5"
|
904
|
+
new_year_date: "1240-1-26"
|
905
|
+
note: ""
|
906
|
+
- name: "寛元"
|
907
|
+
# 1年2月26日
|
908
|
+
start_year: 1
|
909
|
+
start_date: "1243-3-18"
|
910
|
+
new_year_date: "1243-1-22"
|
911
|
+
note: ""
|
912
|
+
- name: "宝治"
|
913
|
+
# 1年2月28日
|
914
|
+
start_year: 1
|
915
|
+
start_date: "1247-4-5"
|
916
|
+
new_year_date: "1247-2-7"
|
917
|
+
note: ""
|
918
|
+
- name: "建長"
|
919
|
+
# 1年3月18日
|
920
|
+
start_year: 1
|
921
|
+
start_date: "1249-5-2"
|
922
|
+
new_year_date: "1249-2-14"
|
923
|
+
note: ""
|
924
|
+
- name: "康元"
|
925
|
+
# 1年10月5日
|
926
|
+
start_year: 1
|
927
|
+
start_date: "1256-10-24"
|
928
|
+
new_year_date: "1256-1-29"
|
929
|
+
note: ""
|
930
|
+
- name: "正嘉"
|
931
|
+
# 1年3月14日
|
932
|
+
start_year: 1
|
933
|
+
start_date: "1257-3-31"
|
934
|
+
new_year_date: "1257-1-17"
|
935
|
+
note: ""
|
936
|
+
- name: "正元"
|
937
|
+
# 1年3月26日
|
938
|
+
start_year: 1
|
939
|
+
start_date: "1259-4-20"
|
940
|
+
new_year_date: "1259-1-25"
|
941
|
+
note: ""
|
942
|
+
- name: "文応"
|
943
|
+
# 1年4月13日
|
944
|
+
start_year: 1
|
945
|
+
start_date: "1260-5-24"
|
946
|
+
new_year_date: "1260-2-13"
|
947
|
+
note: ""
|
948
|
+
- name: "弘長"
|
949
|
+
# 1年2月20日
|
950
|
+
start_year: 1
|
951
|
+
start_date: "1261-3-22"
|
952
|
+
new_year_date: "1261-2-1"
|
953
|
+
note: ""
|
954
|
+
- name: "文永"
|
955
|
+
# 1年2月28日
|
956
|
+
start_year: 1
|
957
|
+
start_date: "1264-3-27"
|
958
|
+
new_year_date: "1264-1-31"
|
959
|
+
note: ""
|
960
|
+
- name: "建治"
|
961
|
+
# 1年4月25日
|
962
|
+
start_year: 1
|
963
|
+
start_date: "1275-5-22"
|
964
|
+
new_year_date: "1275-1-29"
|
965
|
+
note: ""
|
966
|
+
- name: "弘安"
|
967
|
+
# 1年2月29日
|
968
|
+
start_year: 1
|
969
|
+
start_date: "1278-3-23"
|
970
|
+
new_year_date: "1278-1-25"
|
971
|
+
note: ""
|
972
|
+
- name: "正応"
|
973
|
+
# 1年4月28日
|
974
|
+
start_year: 1
|
975
|
+
start_date: "1288-5-29"
|
976
|
+
new_year_date: "1288-2-4"
|
977
|
+
note: ""
|
978
|
+
- name: "永仁"
|
979
|
+
# 1年8月5日
|
980
|
+
start_year: 1
|
981
|
+
start_date: "1293-9-6"
|
982
|
+
new_year_date: "1293-2-8"
|
983
|
+
note: ""
|
984
|
+
- name: "正安"
|
985
|
+
# 1年4月25日
|
986
|
+
start_year: 1
|
987
|
+
start_date: "1299-5-25"
|
988
|
+
new_year_date: "1299-2-2"
|
989
|
+
note: ""
|
990
|
+
- name: "乾元"
|
991
|
+
# 1年11月21日
|
992
|
+
start_year: 1
|
993
|
+
start_date: "1302-12-10"
|
994
|
+
new_year_date: "1302-1-30"
|
995
|
+
note: ""
|
996
|
+
- name: "嘉元"
|
997
|
+
# 1年8月5日
|
998
|
+
start_year: 1
|
999
|
+
start_date: "1303-9-16"
|
1000
|
+
new_year_date: "1303-1-19"
|
1001
|
+
note: ""
|
1002
|
+
- name: "徳治"
|
1003
|
+
# 1年12月14日
|
1004
|
+
start_year: 1
|
1005
|
+
start_date: "1307-1-18"
|
1006
|
+
new_year_date: "1306-2-14"
|
1007
|
+
note: ""
|
1008
|
+
- name: "延慶"
|
1009
|
+
# 1年10月9日
|
1010
|
+
start_year: 1
|
1011
|
+
start_date: "1308-11-22"
|
1012
|
+
new_year_date: "1308-1-24"
|
1013
|
+
note: ""
|
1014
|
+
- name: "応長"
|
1015
|
+
# 1年4月28日
|
1016
|
+
start_year: 1
|
1017
|
+
start_date: "1311-5-17"
|
1018
|
+
new_year_date: "1311-1-21"
|
1019
|
+
note: ""
|
1020
|
+
- name: "正和"
|
1021
|
+
# 1年3月20日
|
1022
|
+
start_year: 1
|
1023
|
+
start_date: "1312-4-27"
|
1024
|
+
new_year_date: "1312-2-8"
|
1025
|
+
note: ""
|
1026
|
+
- name: "文保"
|
1027
|
+
# 1年2月3日
|
1028
|
+
start_year: 1
|
1029
|
+
start_date: "1317-3-16"
|
1030
|
+
new_year_date: "1317-2-13"
|
1031
|
+
note: ""
|
1032
|
+
- name: "元応"
|
1033
|
+
# 1年4月28日
|
1034
|
+
start_year: 1
|
1035
|
+
start_date: "1319-5-18"
|
1036
|
+
new_year_date: "1319-1-22"
|
1037
|
+
note: ""
|
1038
|
+
- name: "元亨"
|
1039
|
+
# 1年2月23日
|
1040
|
+
start_year: 1
|
1041
|
+
start_date: "1321-3-22"
|
1042
|
+
new_year_date: "1321-1-29"
|
1043
|
+
note: ""
|
1044
|
+
- name: "正中"
|
1045
|
+
# 1年12月9日
|
1046
|
+
start_year: 1
|
1047
|
+
start_date: "1324-12-25"
|
1048
|
+
new_year_date: "1324-1-27"
|
1049
|
+
note: ""
|
1050
|
+
- name: "嘉暦"
|
1051
|
+
# 1年4月26日
|
1052
|
+
start_year: 1
|
1053
|
+
start_date: "1326-5-28"
|
1054
|
+
new_year_date: "1326-2-4"
|
1055
|
+
note: ""
|
1056
|
+
- name: "元徳"
|
1057
|
+
# 1年8月29日
|
1058
|
+
start_year: 1
|
1059
|
+
start_date: "1329-9-22"
|
1060
|
+
new_year_date: "1329-1-31"
|
1061
|
+
note: ""
|
1062
|
+
- name: "元弘"
|
1063
|
+
# 1年8月9日
|
1064
|
+
start_year: 1
|
1065
|
+
start_date: "1331-9-11"
|
1066
|
+
new_year_date: "1331-2-8"
|
1067
|
+
note: ""
|
1068
|
+
- name: "建武"
|
1069
|
+
# 1年1月29日
|
1070
|
+
start_year: 1
|
1071
|
+
start_date: "1334-3-5"
|
1072
|
+
new_year_date: "1334-2-5"
|
1073
|
+
note: ""
|
1074
|
+
- name: "延元"
|
1075
|
+
# 1年2月29日
|
1076
|
+
start_year: 1
|
1077
|
+
start_date: "1336-4-11"
|
1078
|
+
new_year_date: "1336-2-14"
|
1079
|
+
note: ""
|
1080
|
+
- name: "興国"
|
1081
|
+
# 1年4月28日
|
1082
|
+
start_year: 1
|
1083
|
+
start_date: "1340-5-25"
|
1084
|
+
new_year_date: "1340-1-30"
|
1085
|
+
note: ""
|
1086
|
+
- name: "正平"
|
1087
|
+
# 1年12月8日
|
1088
|
+
start_year: 1
|
1089
|
+
start_date: "1347-1-20"
|
1090
|
+
new_year_date: "1346-1-24"
|
1091
|
+
note: ""
|
1092
|
+
- name: "建徳"
|
1093
|
+
# 1年7月24日
|
1094
|
+
start_year: 1
|
1095
|
+
start_date: "1370-8-16"
|
1096
|
+
new_year_date: "1370-1-28"
|
1097
|
+
note: ""
|
1098
|
+
- name: "文中"
|
1099
|
+
# 1年4月?日
|
1100
|
+
start_year: 1
|
1101
|
+
start_date: "1372-5-4"
|
1102
|
+
new_year_date: "1372-2-6"
|
1103
|
+
note: "日が不明のため1日とする"
|
1104
|
+
- name: "天授"
|
1105
|
+
# 1年5月27日
|
1106
|
+
start_year: 1
|
1107
|
+
start_date: "1375-6-26"
|
1108
|
+
new_year_date: "1375-2-2"
|
1109
|
+
note: ""
|
1110
|
+
- name: "弘和"
|
1111
|
+
# 1年2月10日
|
1112
|
+
start_year: 1
|
1113
|
+
start_date: "1381-3-6"
|
1114
|
+
new_year_date: "1381-1-26"
|
1115
|
+
note: ""
|
1116
|
+
- name: "元中"
|
1117
|
+
# 1年4月28日
|
1118
|
+
start_year: 1
|
1119
|
+
start_date: "1384-5-18"
|
1120
|
+
new_year_date: "1384-1-23"
|
1121
|
+
note: ""
|