jpostcode_rs 0.1.4

Japanese postal code lookup library in Rust, powered by jpostcode-data
Documentation
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
{
  "0000": {
    "postcode": "7320000",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "広島市東区",
    "city_kana": "ヒロシマシヒガシク",
    "town": "",
    "town_kana": "",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0001": {
    "postcode": "7320001",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "広島市東区",
    "city_kana": "ヒロシマシヒガシク",
    "town": "戸坂惣田",
    "town_kana": "ヘサカソウダ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0002": {
    "postcode": "7320002",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "広島市東区",
    "city_kana": "ヒロシマシヒガシク",
    "town": "戸坂山根",
    "town_kana": "ヘサカヤマネ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0003": {
    "postcode": "7320003",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "広島市東区",
    "city_kana": "ヒロシマシヒガシク",
    "town": "戸坂中町",
    "town_kana": "ヘサカナカマチ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0004": {
    "postcode": "7320004",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "広島市東区",
    "city_kana": "ヒロシマシヒガシク",
    "town": "戸坂山崎町",
    "town_kana": "ヘサカヤマサキチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0005": {
    "postcode": "7320005",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "広島市東区",
    "city_kana": "ヒロシマシヒガシク",
    "town": "戸坂桜東町",
    "town_kana": "ヘサカサクラヒガシマチ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0006": {
    "postcode": "7320006",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "広島市東区",
    "city_kana": "ヒロシマシヒガシク",
    "town": "戸坂桜西町",
    "town_kana": "ヘサカサクラニシマチ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0007": {
    "postcode": "7320007",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "広島市東区",
    "city_kana": "ヒロシマシヒガシク",
    "town": "戸坂桜上町",
    "town_kana": "ヘサカサクラウエマチ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0008": {
    "postcode": "7320008",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "広島市東区",
    "city_kana": "ヒロシマシヒガシク",
    "town": "戸坂くるめ木",
    "town_kana": "ヘサカクルメギ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0009": {
    "postcode": "7320009",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "広島市東区",
    "city_kana": "ヒロシマシヒガシク",
    "town": "戸坂千足",
    "town_kana": "ヘサカセンゾク",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0011": {
    "postcode": "7320011",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "広島市東区",
    "city_kana": "ヒロシマシヒガシク",
    "town": "戸坂町",
    "town_kana": "ヘサカチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0012": {
    "postcode": "7320012",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "広島市東区",
    "city_kana": "ヒロシマシヒガシク",
    "town": "戸坂新町",
    "town_kana": "ヘサカシンマチ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0013": {
    "postcode": "7320013",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "広島市東区",
    "city_kana": "ヒロシマシヒガシク",
    "town": "戸坂南",
    "town_kana": "ヘサカミナミ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0014": {
    "postcode": "7320014",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "広島市東区",
    "city_kana": "ヒロシマシヒガシク",
    "town": "戸坂大上",
    "town_kana": "ヘサカオオアゲ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0015": {
    "postcode": "7320015",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "広島市東区",
    "city_kana": "ヒロシマシヒガシク",
    "town": "戸坂城山町",
    "town_kana": "ヘサカシロヤマチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0016": {
    "postcode": "7320016",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "広島市東区",
    "city_kana": "ヒロシマシヒガシク",
    "town": "戸坂出江",
    "town_kana": "ヘサカイヅエ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0017": {
    "postcode": "7320017",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "広島市東区",
    "city_kana": "ヒロシマシヒガシク",
    "town": "戸坂数甲",
    "town_kana": "ヘサカカズコウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0018": {
    "postcode": "7320018",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "広島市東区",
    "city_kana": "ヒロシマシヒガシク",
    "town": "戸坂長尾台",
    "town_kana": "ヘサカナガオダイ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0021": {
    "postcode": "7320021",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "広島市東区",
    "city_kana": "ヒロシマシヒガシク",
    "town": "中山新町",
    "town_kana": "ナカヤマシンマチ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0022": {
    "postcode": "7320022",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "広島市東区",
    "city_kana": "ヒロシマシヒガシク",
    "town": "中山鏡が丘",
    "town_kana": "ナカヤマカガミガオカ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0023": {
    "postcode": "7320023",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "広島市東区",
    "city_kana": "ヒロシマシヒガシク",
    "town": "中山東",
    "town_kana": "ナカヤマヒガシ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0024": {
    "postcode": "7320024",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "広島市東区",
    "city_kana": "ヒロシマシヒガシク",
    "town": "中山南",
    "town_kana": "ナカヤマミナミ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0025": {
    "postcode": "7320025",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "広島市東区",
    "city_kana": "ヒロシマシヒガシク",
    "town": "中山西",
    "town_kana": "ナカヤマニシ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0026": {
    "postcode": "7320026",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "広島市東区",
    "city_kana": "ヒロシマシヒガシク",
    "town": "中山中町",
    "town_kana": "ナカヤマナカマチ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0027": {
    "postcode": "7320027",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "広島市東区",
    "city_kana": "ヒロシマシヒガシク",
    "town": "中山上",
    "town_kana": "ナカヤマカミ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0028": {
    "postcode": "7320028",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "広島市東区",
    "city_kana": "ヒロシマシヒガシク",
    "town": "中山北町",
    "town_kana": "ナカヤマキタマチ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0029": {
    "postcode": "7320029",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "広島市東区",
    "city_kana": "ヒロシマシヒガシク",
    "town": "福田",
    "town_kana": "フクダ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0031": {
    "postcode": "7320031",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "広島市東区",
    "city_kana": "ヒロシマシヒガシク",
    "town": "馬木",
    "town_kana": "ウマキ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0032": {
    "postcode": "7320032",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "広島市東区",
    "city_kana": "ヒロシマシヒガシク",
    "town": "上温品",
    "town_kana": "カミヌクシナ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0033": {
    "postcode": "7320033",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "広島市東区",
    "city_kana": "ヒロシマシヒガシク",
    "town": "温品",
    "town_kana": "ヌクシナ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0034": {
    "postcode": "7320034",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "広島市東区",
    "city_kana": "ヒロシマシヒガシク",
    "town": "温品町",
    "town_kana": "ヌクシナチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0035": {
    "postcode": "7320035",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "広島市東区",
    "city_kana": "ヒロシマシヒガシク",
    "town": "馬木町",
    "town_kana": "ウマキチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0036": {
    "postcode": "7320036",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "広島市東区",
    "city_kana": "ヒロシマシヒガシク",
    "town": "福田町",
    "town_kana": "フクダチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0041": {
    "postcode": "7320041",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "広島市東区",
    "city_kana": "ヒロシマシヒガシク",
    "town": "矢賀町",
    "town_kana": "ヤガマチ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0042": {
    "postcode": "7320042",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "広島市東区",
    "city_kana": "ヒロシマシヒガシク",
    "town": "矢賀",
    "town_kana": "ヤガ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0043": {
    "postcode": "7320043",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "広島市東区",
    "city_kana": "ヒロシマシヒガシク",
    "town": "東山町",
    "town_kana": "ヒガシヤマチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0044": {
    "postcode": "7320044",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "広島市東区",
    "city_kana": "ヒロシマシヒガシク",
    "town": "矢賀新町",
    "town_kana": "ヤガシンマチ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0045": {
    "postcode": "7320045",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "広島市東区",
    "city_kana": "ヒロシマシヒガシク",
    "town": "",
    "town_kana": "アケボノ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0046": {
    "postcode": "7320046",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "広島市東区",
    "city_kana": "ヒロシマシヒガシク",
    "town": "尾長東",
    "town_kana": "オナガヒガシ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0047": {
    "postcode": "7320047",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "広島市東区",
    "city_kana": "ヒロシマシヒガシク",
    "town": "尾長西",
    "town_kana": "オナガニシ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0048": {
    "postcode": "7320048",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "広島市東区",
    "city_kana": "ヒロシマシヒガシク",
    "town": "山根町",
    "town_kana": "ヤマネチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0049": {
    "postcode": "7320049",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "広島市東区",
    "city_kana": "ヒロシマシヒガシク",
    "town": "尾長町",
    "town_kana": "オナガマチ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0051": {
    "postcode": "7320051",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "広島市東区",
    "city_kana": "ヒロシマシヒガシク",
    "town": "光が丘",
    "town_kana": "ヒカリガオカ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0052": {
    "postcode": "7320052",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "広島市東区",
    "city_kana": "ヒロシマシヒガシク",
    "town": "光町",
    "town_kana": "ヒカリマチ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0053": {
    "postcode": "7320053",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "広島市東区",
    "city_kana": "ヒロシマシヒガシク",
    "town": "若草町",
    "town_kana": "ワカクサチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0054": {
    "postcode": "7320054",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "広島市東区",
    "city_kana": "ヒロシマシヒガシク",
    "town": "愛宕町",
    "town_kana": "アタゴマチ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0055": {
    "postcode": "7320055",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "広島市東区",
    "city_kana": "ヒロシマシヒガシク",
    "town": "東蟹屋町",
    "town_kana": "ヒガシカニヤチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0056": {
    "postcode": "7320056",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "広島市東区",
    "city_kana": "ヒロシマシヒガシク",
    "town": "上大須賀町",
    "town_kana": "カミオオスガチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0057": {
    "postcode": "7320057",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "広島市東区",
    "city_kana": "ヒロシマシヒガシク",
    "town": "二葉の里",
    "town_kana": "フタバノサト",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0061": {
    "postcode": "7320061",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "広島市東区",
    "city_kana": "ヒロシマシヒガシク",
    "town": "牛田山",
    "town_kana": "ウシタヤマ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0062": {
    "postcode": "7320062",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "広島市東区",
    "city_kana": "ヒロシマシヒガシク",
    "town": "牛田早稲田",
    "town_kana": "ウシタワセダ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0063": {
    "postcode": "7320063",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "広島市東区",
    "city_kana": "ヒロシマシヒガシク",
    "town": "牛田東",
    "town_kana": "ウシタヒガシ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0064": {
    "postcode": "7320064",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "広島市東区",
    "city_kana": "ヒロシマシヒガシク",
    "town": "牛田南",
    "town_kana": "ウシタミナミ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0065": {
    "postcode": "7320065",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "広島市東区",
    "city_kana": "ヒロシマシヒガシク",
    "town": "牛田中",
    "town_kana": "ウシタナカ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0066": {
    "postcode": "7320066",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "広島市東区",
    "city_kana": "ヒロシマシヒガシク",
    "town": "牛田本町",
    "town_kana": "ウシタホンマチ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0067": {
    "postcode": "7320067",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "広島市東区",
    "city_kana": "ヒロシマシヒガシク",
    "town": "牛田旭",
    "town_kana": "ウシタアサヒ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0068": {
    "postcode": "7320068",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "広島市東区",
    "city_kana": "ヒロシマシヒガシク",
    "town": "牛田新町",
    "town_kana": "ウシタシンマチ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0801": {
    "postcode": "7320801",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "広島市南区",
    "city_kana": "ヒロシマシミナミク",
    "town": "東駅町",
    "town_kana": "ヒガシエキマチ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0802": {
    "postcode": "7320802",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "広島市南区",
    "city_kana": "ヒロシマシミナミク",
    "town": "大州",
    "town_kana": "オオズ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0803": {
    "postcode": "7320803",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "広島市南区",
    "city_kana": "ヒロシマシミナミク",
    "town": "南蟹屋",
    "town_kana": "ミナミカニヤ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0804": {
    "postcode": "7320804",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "広島市南区",
    "city_kana": "ヒロシマシミナミク",
    "town": "西蟹屋",
    "town_kana": "ニシカニヤ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0805": {
    "postcode": "7320805",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "広島市南区",
    "city_kana": "ヒロシマシミナミク",
    "town": "東荒神町",
    "town_kana": "ヒガシコウジンマチ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0806": {
    "postcode": "7320806",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "広島市南区",
    "city_kana": "ヒロシマシミナミク",
    "town": "西荒神町",
    "town_kana": "ニシコウジンマチ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0807": {
    "postcode": "7320807",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "広島市南区",
    "city_kana": "ヒロシマシミナミク",
    "town": "荒神町",
    "town_kana": "コウジンマチ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0811": {
    "postcode": "7320811",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "広島市南区",
    "city_kana": "ヒロシマシミナミク",
    "town": "段原",
    "town_kana": "ダンバラ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0814": {
    "postcode": "7320814",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "広島市南区",
    "city_kana": "ヒロシマシミナミク",
    "town": "段原南",
    "town_kana": "ダンバラミナミ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0815": {
    "postcode": "7320815",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "広島市南区",
    "city_kana": "ヒロシマシミナミク",
    "town": "比治山公園",
    "town_kana": "ヒジヤマコウエン",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0816": {
    "postcode": "7320816",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "広島市南区",
    "city_kana": "ヒロシマシミナミク",
    "town": "比治山本町",
    "town_kana": "ヒジヤマホンマチ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0817": {
    "postcode": "7320817",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "広島市南区",
    "city_kana": "ヒロシマシミナミク",
    "town": "比治山町",
    "town_kana": "ヒジヤマチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0818": {
    "postcode": "7320818",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "広島市南区",
    "city_kana": "ヒロシマシミナミク",
    "town": "段原日出",
    "town_kana": "ダンバラヒノデ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0819": {
    "postcode": "7320819",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "広島市南区",
    "city_kana": "ヒロシマシミナミク",
    "town": "段原山崎",
    "town_kana": "ダンバラヤマサキ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0821": {
    "postcode": "7320821",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "広島市南区",
    "city_kana": "ヒロシマシミナミク",
    "town": "大須賀町",
    "town_kana": "オオスガチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0822": {
    "postcode": "7320822",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "広島市南区",
    "city_kana": "ヒロシマシミナミク",
    "town": "松原町",
    "town_kana": "マツバラチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0823": {
    "postcode": "7320823",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "広島市南区",
    "city_kana": "ヒロシマシミナミク",
    "town": "猿猴橋町",
    "town_kana": "エンコウバシチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0824": {
    "postcode": "7320824",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "広島市南区",
    "city_kana": "ヒロシマシミナミク",
    "town": "的場町",
    "town_kana": "マトバチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0825": {
    "postcode": "7320825",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "広島市南区",
    "city_kana": "ヒロシマシミナミク",
    "town": "金屋町",
    "town_kana": "キンヤチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0826": {
    "postcode": "7320826",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "広島市南区",
    "city_kana": "ヒロシマシミナミク",
    "town": "松川町",
    "town_kana": "マツカワチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0827": {
    "postcode": "7320827",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "広島市南区",
    "city_kana": "ヒロシマシミナミク",
    "town": "稲荷町",
    "town_kana": "イナリマチ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0828": {
    "postcode": "7320828",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "広島市南区",
    "city_kana": "ヒロシマシミナミク",
    "town": "京橋町",
    "town_kana": "キョウバシチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "8501": {
    "postcode": "7328501",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "広島市南区",
    "city_kana": "ヒロシマシミナミク",
    "town": "南蟹屋",
    "town_kana": "ミナミカニヤ",
    "street": "2丁目3番1号",
    "office_name": "株式会社 広島東洋カープ",
    "office_name_kana": "カブシキガイシヤ ヒロシマトウヨウカ-プ"
  },
  "8503": {
    "postcode": "7328503",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "広島市東区",
    "city_kana": "ヒロシマシヒガシク",
    "town": "温品",
    "town_kana": "ヌクシナ",
    "street": "1丁目3−1",
    "office_name": "株式会社 ヒロテック 温品工場",
    "office_name_kana": "カブシキガイシヤ ヒロテツク ヌクシナコウジヨウ"
  },
  "8504": {
    "postcode": "7328504",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "広島市東区",
    "city_kana": "ヒロシマシヒガシク",
    "town": "二葉の里",
    "town_kana": "フタバノサト",
    "street": "1−1−46",
    "office_name": "生活協同組合連合会 コープ中国四国事業連合",
    "office_name_kana": "セイカツキヨウドウクミアイレンゴウカイ コ-プチユウゴクシコクジギヨウレンゴウ"
  },
  "8505": {
    "postcode": "7328505",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "広島市東区",
    "city_kana": "ヒロシマシヒガシク",
    "town": "",
    "town_kana": "アケボノ",
    "street": "4丁目1−28",
    "office_name": "全労済広島県本部",
    "office_name_kana": "ゼンロウサイヒロシマケンホンブ"
  },
  "8507": {
    "postcode": "7328507",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "広島市東区",
    "city_kana": "ヒロシマシヒガシク",
    "town": "光町",
    "town_kana": "ヒカリマチ",
    "street": "2丁目8−32",
    "office_name": "広島県 学校生活協同組合",
    "office_name_kana": "ヒロシマケン ガツコウセイカツキヨウドウクミアイ"
  },
  "8508": {
    "postcode": "7328508",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "広島市東区",
    "city_kana": "ヒロシマシヒガシク",
    "town": "光町",
    "town_kana": "ヒカリマチ",
    "street": "1丁目15−39",
    "office_name": "創価学会 広島池田平和記念会館",
    "office_name_kana": "ソウカガツカイ ヒロシマイケダヘイワキネンカイカン"
  },
  "8509": {
    "postcode": "7328509",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "広島市東区",
    "city_kana": "ヒロシマシヒガシク",
    "town": "牛田新町",
    "town_kana": "ウシタシンマチ",
    "street": "4丁目1−1",
    "office_name": "比治山大学・比治山大学短期大学部",
    "office_name_kana": "ヒジヤマダイガク・ヒジヤマダイガクタンキダイガクブ"
  },
  "8510": {
    "postcode": "7328510",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "広島市東区",
    "city_kana": "ヒロシマシヒガシク",
    "town": "東蟹屋町",
    "town_kana": "ヒガシカニヤチョウ",
    "street": "9番38号",
    "office_name": "広島市東区役所",
    "office_name_kana": "ヒロシマシヒガシクヤクシヨ"
  },
  "8511": {
    "postcode": "7328511",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "広島市南区",
    "city_kana": "ヒロシマシミナミク",
    "town": "松原町",
    "town_kana": "マツバラチョウ",
    "street": "9−1",
    "office_name": "株式会社 福屋 広島駅前店",
    "office_name_kana": "カブシキガイシヤ フクヤ ヒロシマエキマエテン"
  },
  "8512": {
    "postcode": "7328512",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "広島市東区",
    "city_kana": "ヒロシマシヒガシク",
    "town": "光町",
    "town_kana": "ヒカリマチ",
    "street": "1丁目10−19",
    "office_name": "全国健康保険協会 広島支部",
    "office_name_kana": "ゼンコクケンコウホケンキヨウカイ ヒロシマシブ"
  },
  "8555": {
    "postcode": "7328555",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "広島市東区",
    "city_kana": "ヒロシマシヒガシク",
    "town": "二葉の里",
    "town_kana": "フタバノサト",
    "street": "3丁目3−1",
    "office_name": "株式会社 イズミ",
    "office_name_kana": "カブシキガイシヤ イズミ"
  },
  "8564": {
    "postcode": "7328564",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "広島市南区",
    "city_kana": "ヒロシマシミナミク",
    "town": "大州",
    "town_kana": "オオズ",
    "street": "4丁目4−32",
    "office_name": "中国電機製造 株式会社",
    "office_name_kana": "チユウゴクデンキセイゾウ カブシキガイシヤ"
  },
  "8565": {
    "postcode": "7328565",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "広島市南区",
    "city_kana": "ヒロシマシミナミク",
    "town": "金屋町",
    "town_kana": "キンヤチョウ",
    "street": "9−8",
    "office_name": "株式会社 京屋",
    "office_name_kana": "カブシキガイシヤ キヨウヤ"
  },
  "8566": {
    "postcode": "7328566",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "広島市南区",
    "city_kana": "ヒロシマシミナミク",
    "town": "稲荷町",
    "town_kana": "イナリマチ",
    "street": "1番14号",
    "office_name": "中国労働金庫",
    "office_name_kana": "チユウゴクロウドウキンコ"
  },
  "8570": {
    "postcode": "7328570",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "広島市東区",
    "city_kana": "ヒロシマシヒガシク",
    "town": "二葉の里",
    "town_kana": "フタバノサト",
    "street": "3丁目3−1",
    "office_name": "株式会社 ゆめカード",
    "office_name_kana": "カブシキガイシヤ ユメカ-ド"
  },
  "8575": {
    "postcode": "7328575",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "広島市東区",
    "city_kana": "ヒロシマシヒガシク",
    "town": "二葉の里",
    "town_kana": "フタバノサト",
    "street": "3丁目5番4号",
    "office_name": "広島テレビ放送 株式会社",
    "office_name_kana": "ヒロシマテレビホウソウ カブシキカイシヤ"
  },
  "8580": {
    "postcode": "7328580",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "広島市東区",
    "city_kana": "ヒロシマシヒガシク",
    "town": "二葉の里",
    "town_kana": "フタバノサト",
    "street": "3丁目3番1号",
    "office_name": "株式会社 ユアーズ",
    "office_name_kana": "カブシキカイシヤ ユア-ズ"
  },
  "8652": {
    "postcode": "7328652",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "広島市東区",
    "city_kana": "ヒロシマシヒガシク",
    "town": "光町",
    "town_kana": "ヒカリマチ",
    "street": "2丁目4−17(広島東郵便局私書箱第77号)",
    "office_name": "大正製薬 株式会社 広島支店",
    "office_name_kana": "タイシヨウセイヤク カブシキガイシヤ ヒロシマシテン"
  },
  "8765": {
    "postcode": "7328765",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "広島市南区",
    "city_kana": "ヒロシマシミナミク",
    "town": "大州",
    "town_kana": "オオズ",
    "street": "3丁目4−1",
    "office_name": "DNT山陽ケミカル 株式会社",
    "office_name_kana": "デイ-エヌテイ-サンヨウケミカル カブシキガイシヤ"
  }
}