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
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
{
  "8201": {
    "postcode": "7038201",
    "prefecture": "岡山県",
    "prefecture_kana": "オカヤマケン",
    "prefecture_code": 33,
    "city": "岡山市中区",
    "city_kana": "オカヤマシナカク",
    "town": "四御神",
    "town_kana": "シノゴゼ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "8202": {
    "postcode": "7038202",
    "prefecture": "岡山県",
    "prefecture_kana": "オカヤマケン",
    "prefecture_code": 33,
    "city": "岡山市中区",
    "city_kana": "オカヤマシナカク",
    "town": "湯迫",
    "town_kana": "ユバ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "8203": {
    "postcode": "7038203",
    "prefecture": "岡山県",
    "prefecture_kana": "オカヤマケン",
    "prefecture_code": 33,
    "city": "岡山市中区",
    "city_kana": "オカヤマシナカク",
    "town": "国府市場",
    "town_kana": "コクフイチバ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "8204": {
    "postcode": "7038204",
    "prefecture": "岡山県",
    "prefecture_kana": "オカヤマケン",
    "prefecture_code": 33,
    "city": "岡山市中区",
    "city_kana": "オカヤマシナカク",
    "town": "雄町",
    "town_kana": "オマチ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "8205": {
    "postcode": "7038205",
    "prefecture": "岡山県",
    "prefecture_kana": "オカヤマケン",
    "prefecture_code": 33,
    "city": "岡山市中区",
    "city_kana": "オカヤマシナカク",
    "town": "中井",
    "town_kana": "ナカイ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "8206": {
    "postcode": "7038206",
    "prefecture": "岡山県",
    "prefecture_kana": "オカヤマケン",
    "prefecture_code": 33,
    "city": "岡山市中区",
    "city_kana": "オカヤマシナカク",
    "town": "賞田",
    "town_kana": "ショウダ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "8207": [
    {
      "postcode": "7038207",
      "prefecture": "岡山県",
      "prefecture_kana": "オカヤマケン",
      "prefecture_code": 33,
      "city": "岡山市北区",
      "city_kana": "オカヤマシキタク",
      "town": "祇園",
      "town_kana": "ギオン",
      "street": null,
      "office_name": null,
      "office_name_kana": null
    },
    {
      "postcode": "7038207",
      "prefecture": "岡山県",
      "prefecture_kana": "オカヤマケン",
      "prefecture_code": 33,
      "city": "岡山市中区",
      "city_kana": "オカヤマシナカク",
      "town": "祇園",
      "town_kana": "ギオン",
      "street": null,
      "office_name": null,
      "office_name_kana": null
    }
  ],
  "8208": {
    "postcode": "7038208",
    "prefecture": "岡山県",
    "prefecture_kana": "オカヤマケン",
    "prefecture_code": 33,
    "city": "岡山市中区",
    "city_kana": "オカヤマシナカク",
    "town": "今在家",
    "town_kana": "イマザイケ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "8211": {
    "postcode": "7038211",
    "prefecture": "岡山県",
    "prefecture_kana": "オカヤマケン",
    "prefecture_code": 33,
    "city": "岡山市東区",
    "city_kana": "オカヤマシヒガシク",
    "town": "矢津",
    "town_kana": "ヤヅ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "8212": {
    "postcode": "7038212",
    "prefecture": "岡山県",
    "prefecture_kana": "オカヤマケン",
    "prefecture_code": 33,
    "city": "岡山市東区",
    "city_kana": "オカヤマシヒガシク",
    "town": "古都宿",
    "town_kana": "コズシュク",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "8213": {
    "postcode": "7038213",
    "prefecture": "岡山県",
    "prefecture_kana": "オカヤマケン",
    "prefecture_code": 33,
    "city": "岡山市東区",
    "city_kana": "オカヤマシヒガシク",
    "town": "藤井",
    "town_kana": "フジイ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "8214": {
    "postcode": "7038214",
    "prefecture": "岡山県",
    "prefecture_kana": "オカヤマケン",
    "prefecture_code": 33,
    "city": "岡山市東区",
    "city_kana": "オカヤマシヒガシク",
    "town": "",
    "town_kana": "クロガネ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "8215": {
    "postcode": "7038215",
    "prefecture": "岡山県",
    "prefecture_kana": "オカヤマケン",
    "prefecture_code": 33,
    "city": "岡山市東区",
    "city_kana": "オカヤマシヒガシク",
    "town": "古都南方",
    "town_kana": "コズミナミガタ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "8216": {
    "postcode": "7038216",
    "prefecture": "岡山県",
    "prefecture_kana": "オカヤマケン",
    "prefecture_code": 33,
    "city": "岡山市東区",
    "city_kana": "オカヤマシヒガシク",
    "town": "宍甘",
    "town_kana": "シジカイ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "8217": {
    "postcode": "7038217",
    "prefecture": "岡山県",
    "prefecture_kana": "オカヤマケン",
    "prefecture_code": 33,
    "city": "岡山市中区",
    "city_kana": "オカヤマシナカク",
    "town": "土田",
    "town_kana": "ツチダ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "8221": {
    "postcode": "7038221",
    "prefecture": "岡山県",
    "prefecture_kana": "オカヤマケン",
    "prefecture_code": 33,
    "city": "岡山市中区",
    "city_kana": "オカヤマシナカク",
    "town": "長岡",
    "town_kana": "ナガオカ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "8222": {
    "postcode": "7038222",
    "prefecture": "岡山県",
    "prefecture_kana": "オカヤマケン",
    "prefecture_code": 33,
    "city": "岡山市中区",
    "city_kana": "オカヤマシナカク",
    "town": "",
    "town_kana": "シモ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "8223": {
    "postcode": "7038223",
    "prefecture": "岡山県",
    "prefecture_kana": "オカヤマケン",
    "prefecture_code": 33,
    "city": "岡山市中区",
    "city_kana": "オカヤマシナカク",
    "town": "長利",
    "town_kana": "ナガトシ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "8224": {
    "postcode": "7038224",
    "prefecture": "岡山県",
    "prefecture_kana": "オカヤマケン",
    "prefecture_code": 33,
    "city": "岡山市中区",
    "city_kana": "オカヤマシナカク",
    "town": "米田",
    "town_kana": "ヨネダ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "8225": {
    "postcode": "7038225",
    "prefecture": "岡山県",
    "prefecture_kana": "オカヤマケン",
    "prefecture_code": 33,
    "city": "岡山市中区",
    "city_kana": "オカヤマシナカク",
    "town": "神下",
    "town_kana": "コウシタ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "8226": {
    "postcode": "7038226",
    "prefecture": "岡山県",
    "prefecture_kana": "オカヤマケン",
    "prefecture_code": 33,
    "city": "岡山市中区",
    "city_kana": "オカヤマシナカク",
    "town": "今谷",
    "town_kana": "イマダニ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "8227": {
    "postcode": "7038227",
    "prefecture": "岡山県",
    "prefecture_kana": "オカヤマケン",
    "prefecture_code": 33,
    "city": "岡山市中区",
    "city_kana": "オカヤマシナカク",
    "town": "兼基",
    "town_kana": "カネモト",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "8228": {
    "postcode": "7038228",
    "prefecture": "岡山県",
    "prefecture_kana": "オカヤマケン",
    "prefecture_code": 33,
    "city": "岡山市中区",
    "city_kana": "オカヤマシナカク",
    "town": "乙多見",
    "town_kana": "オタミ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "8231": {
    "postcode": "7038231",
    "prefecture": "岡山県",
    "prefecture_kana": "オカヤマケン",
    "prefecture_code": 33,
    "city": "岡山市中区",
    "city_kana": "オカヤマシナカク",
    "town": "赤田",
    "town_kana": "アコダ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "8232": {
    "postcode": "7038232",
    "prefecture": "岡山県",
    "prefecture_kana": "オカヤマケン",
    "prefecture_code": 33,
    "city": "岡山市中区",
    "city_kana": "オカヤマシナカク",
    "town": "",
    "town_kana": "セキ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "8233": {
    "postcode": "7038233",
    "prefecture": "岡山県",
    "prefecture_kana": "オカヤマケン",
    "prefecture_code": 33,
    "city": "岡山市中区",
    "city_kana": "オカヤマシナカク",
    "town": "高屋",
    "town_kana": "タカヤ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "8234": {
    "postcode": "7038234",
    "prefecture": "岡山県",
    "prefecture_kana": "オカヤマケン",
    "prefecture_code": 33,
    "city": "岡山市中区",
    "city_kana": "オカヤマシナカク",
    "town": "沢田",
    "town_kana": "サワダ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "8235": {
    "postcode": "7038235",
    "prefecture": "岡山県",
    "prefecture_kana": "オカヤマケン",
    "prefecture_code": 33,
    "city": "岡山市中区",
    "city_kana": "オカヤマシナカク",
    "town": "原尾島",
    "town_kana": "ハラオシマ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "8236": {
    "postcode": "7038236",
    "prefecture": "岡山県",
    "prefecture_kana": "オカヤマケン",
    "prefecture_code": 33,
    "city": "岡山市中区",
    "city_kana": "オカヤマシナカク",
    "town": "国富",
    "town_kana": "クニトミ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "8237": {
    "postcode": "7038237",
    "prefecture": "岡山県",
    "prefecture_kana": "オカヤマケン",
    "prefecture_code": 33,
    "city": "岡山市中区",
    "city_kana": "オカヤマシナカク",
    "town": "森下町",
    "town_kana": "モリシタチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "8238": {
    "postcode": "7038238",
    "prefecture": "岡山県",
    "prefecture_kana": "オカヤマケン",
    "prefecture_code": 33,
    "city": "岡山市中区",
    "city_kana": "オカヤマシナカク",
    "town": "住吉町",
    "town_kana": "スミヨシチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "8241": {
    "postcode": "7038241",
    "prefecture": "岡山県",
    "prefecture_kana": "オカヤマケン",
    "prefecture_code": 33,
    "city": "岡山市中区",
    "city_kana": "オカヤマシナカク",
    "town": "高島新屋敷",
    "town_kana": "タカシマシンヤシキ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "8242": {
    "postcode": "7038242",
    "prefecture": "岡山県",
    "prefecture_kana": "オカヤマケン",
    "prefecture_code": 33,
    "city": "岡山市中区",
    "city_kana": "オカヤマシナカク",
    "town": "高島",
    "town_kana": "タカシマ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "8243": {
    "postcode": "7038243",
    "prefecture": "岡山県",
    "prefecture_kana": "オカヤマケン",
    "prefecture_code": 33,
    "city": "岡山市中区",
    "city_kana": "オカヤマシナカク",
    "town": "清水",
    "town_kana": "シミズ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "8244": {
    "postcode": "7038244",
    "prefecture": "岡山県",
    "prefecture_kana": "オカヤマケン",
    "prefecture_code": 33,
    "city": "岡山市中区",
    "city_kana": "オカヤマシナカク",
    "town": "藤原西町",
    "town_kana": "フジワラニシマチ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "8245": {
    "postcode": "7038245",
    "prefecture": "岡山県",
    "prefecture_kana": "オカヤマケン",
    "prefecture_code": 33,
    "city": "岡山市中区",
    "city_kana": "オカヤマシナカク",
    "town": "藤原",
    "town_kana": "フジワラ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "8246": {
    "postcode": "7038246",
    "prefecture": "岡山県",
    "prefecture_kana": "オカヤマケン",
    "prefecture_code": 33,
    "city": "岡山市中区",
    "city_kana": "オカヤマシナカク",
    "town": "藤原光町",
    "town_kana": "フジワラヒカリマチ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "8247": {
    "postcode": "7038247",
    "prefecture": "岡山県",
    "prefecture_kana": "オカヤマケン",
    "prefecture_code": 33,
    "city": "岡山市中区",
    "city_kana": "オカヤマシナカク",
    "town": "さい東町",
    "town_kana": "サイヒガシマチ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "8248": {
    "postcode": "7038248",
    "prefecture": "岡山県",
    "prefecture_kana": "オカヤマケン",
    "prefecture_code": 33,
    "city": "岡山市中区",
    "city_kana": "オカヤマシナカク",
    "town": "さい",
    "town_kana": "サイ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "8251": {
    "postcode": "7038251",
    "prefecture": "岡山県",
    "prefecture_kana": "オカヤマケン",
    "prefecture_code": 33,
    "city": "岡山市中区",
    "city_kana": "オカヤマシナカク",
    "town": "竹田",
    "town_kana": "タケダ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "8252": {
    "postcode": "7038252",
    "prefecture": "岡山県",
    "prefecture_kana": "オカヤマケン",
    "prefecture_code": 33,
    "city": "岡山市中区",
    "city_kana": "オカヤマシナカク",
    "town": "中島",
    "town_kana": "ナカシマ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "8253": {
    "postcode": "7038253",
    "prefecture": "岡山県",
    "prefecture_kana": "オカヤマケン",
    "prefecture_code": 33,
    "city": "岡山市中区",
    "city_kana": "オカヤマシナカク",
    "town": "八幡東町",
    "town_kana": "ヤハタヒガシマチ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "8254": {
    "postcode": "7038254",
    "prefecture": "岡山県",
    "prefecture_kana": "オカヤマケン",
    "prefecture_code": 33,
    "city": "岡山市中区",
    "city_kana": "オカヤマシナカク",
    "town": "八幡",
    "town_kana": "ヤハタ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "8255": {
    "postcode": "7038255",
    "prefecture": "岡山県",
    "prefecture_kana": "オカヤマケン",
    "prefecture_code": 33,
    "city": "岡山市中区",
    "city_kana": "オカヤマシナカク",
    "town": "東川原",
    "town_kana": "ヒガシガワラ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "8256": {
    "postcode": "7038256",
    "prefecture": "岡山県",
    "prefecture_kana": "オカヤマケン",
    "prefecture_code": 33,
    "city": "岡山市中区",
    "city_kana": "オカヤマシナカク",
    "town": "",
    "town_kana": "ハマ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "8257": {
    "postcode": "7038257",
    "prefecture": "岡山県",
    "prefecture_kana": "オカヤマケン",
    "prefecture_code": 33,
    "city": "岡山市北区",
    "city_kana": "オカヤマシキタク",
    "town": "後楽園",
    "town_kana": "コウラクエン",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "8258": {
    "postcode": "7038258",
    "prefecture": "岡山県",
    "prefecture_kana": "オカヤマケン",
    "prefecture_code": 33,
    "city": "岡山市中区",
    "city_kana": "オカヤマシナカク",
    "town": "西川原",
    "town_kana": "ニシガワラ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "8261": {
    "postcode": "7038261",
    "prefecture": "岡山県",
    "prefecture_kana": "オカヤマケン",
    "prefecture_code": 33,
    "city": "岡山市中区",
    "city_kana": "オカヤマシナカク",
    "town": "海吉",
    "town_kana": "ミヨシ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "8262": {
    "postcode": "7038262",
    "prefecture": "岡山県",
    "prefecture_kana": "オカヤマケン",
    "prefecture_code": 33,
    "city": "岡山市中区",
    "city_kana": "オカヤマシナカク",
    "town": "福泊",
    "town_kana": "フクドマリ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "8263": {
    "postcode": "7038263",
    "prefecture": "岡山県",
    "prefecture_kana": "オカヤマケン",
    "prefecture_code": 33,
    "city": "岡山市中区",
    "city_kana": "オカヤマシナカク",
    "town": "倉益",
    "town_kana": "クラマス",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "8264": {
    "postcode": "7038264",
    "prefecture": "岡山県",
    "prefecture_kana": "オカヤマケン",
    "prefecture_code": 33,
    "city": "岡山市中区",
    "city_kana": "オカヤマシナカク",
    "town": "倉富",
    "town_kana": "クラトミ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "8265": {
    "postcode": "7038265",
    "prefecture": "岡山県",
    "prefecture_kana": "オカヤマケン",
    "prefecture_code": 33,
    "city": "岡山市中区",
    "city_kana": "オカヤマシナカク",
    "town": "倉田",
    "town_kana": "クラタ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "8266": {
    "postcode": "7038266",
    "prefecture": "岡山県",
    "prefecture_kana": "オカヤマケン",
    "prefecture_code": 33,
    "city": "岡山市中区",
    "city_kana": "オカヤマシナカク",
    "town": "",
    "town_kana": "ミナト",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "8267": {
    "postcode": "7038267",
    "prefecture": "岡山県",
    "prefecture_kana": "オカヤマケン",
    "prefecture_code": 33,
    "city": "岡山市中区",
    "city_kana": "オカヤマシナカク",
    "town": "山崎",
    "town_kana": "ヤマサキ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "8271": {
    "postcode": "7038271",
    "prefecture": "岡山県",
    "prefecture_kana": "オカヤマケン",
    "prefecture_code": 33,
    "city": "岡山市中区",
    "city_kana": "オカヤマシナカク",
    "town": "円山",
    "town_kana": "マルヤマ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "8272": {
    "postcode": "7038272",
    "prefecture": "岡山県",
    "prefecture_kana": "オカヤマケン",
    "prefecture_code": 33,
    "city": "岡山市中区",
    "city_kana": "オカヤマシナカク",
    "town": "奥市",
    "town_kana": "オクイチ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "8273": {
    "postcode": "7038273",
    "prefecture": "岡山県",
    "prefecture_kana": "オカヤマケン",
    "prefecture_code": 33,
    "city": "岡山市中区",
    "city_kana": "オカヤマシナカク",
    "town": "門田文化町",
    "town_kana": "カドタブンカマチ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "8274": {
    "postcode": "7038274",
    "prefecture": "岡山県",
    "prefecture_kana": "オカヤマケン",
    "prefecture_code": 33,
    "city": "岡山市中区",
    "city_kana": "オカヤマシナカク",
    "town": "門田本町",
    "town_kana": "カドタホンマチ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "8275": {
    "postcode": "7038275",
    "prefecture": "岡山県",
    "prefecture_kana": "オカヤマケン",
    "prefecture_code": 33,
    "city": "岡山市中区",
    "city_kana": "オカヤマシナカク",
    "town": "門田屋敷",
    "town_kana": "カドタヤシキ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "8276": {
    "postcode": "7038276",
    "prefecture": "岡山県",
    "prefecture_kana": "オカヤマケン",
    "prefecture_code": 33,
    "city": "岡山市中区",
    "city_kana": "オカヤマシナカク",
    "town": "門田屋敷本町",
    "town_kana": "カドタヤシキホンマチ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "8277": {
    "postcode": "7038277",
    "prefecture": "岡山県",
    "prefecture_kana": "オカヤマケン",
    "prefecture_code": 33,
    "city": "岡山市中区",
    "city_kana": "オカヤマシナカク",
    "town": "御成町",
    "town_kana": "オナリチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "8278": {
    "postcode": "7038278",
    "prefecture": "岡山県",
    "prefecture_kana": "オカヤマケン",
    "prefecture_code": 33,
    "city": "岡山市中区",
    "city_kana": "オカヤマシナカク",
    "town": "古京町",
    "town_kana": "フルギョウチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "8281": {
    "postcode": "7038281",
    "prefecture": "岡山県",
    "prefecture_kana": "オカヤマケン",
    "prefecture_code": 33,
    "city": "岡山市中区",
    "city_kana": "オカヤマシナカク",
    "town": "東山",
    "town_kana": "ヒガシヤマ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "8282": {
    "postcode": "7038282",
    "prefecture": "岡山県",
    "prefecture_kana": "オカヤマケン",
    "prefecture_code": 33,
    "city": "岡山市中区",
    "city_kana": "オカヤマシナカク",
    "town": "平井",
    "town_kana": "ヒライ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "8283": {
    "postcode": "7038283",
    "prefecture": "岡山県",
    "prefecture_kana": "オカヤマケン",
    "prefecture_code": 33,
    "city": "岡山市中区",
    "city_kana": "オカヤマシナカク",
    "town": "赤坂南新町",
    "town_kana": "アカサカミナミシンマチ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "8284": {
    "postcode": "7038284",
    "prefecture": "岡山県",
    "prefecture_kana": "オカヤマケン",
    "prefecture_code": 33,
    "city": "岡山市中区",
    "city_kana": "オカヤマシナカク",
    "town": "網浜",
    "town_kana": "アミノハマ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "8285": {
    "postcode": "7038285",
    "prefecture": "岡山県",
    "prefecture_kana": "オカヤマケン",
    "prefecture_code": 33,
    "city": "岡山市中区",
    "city_kana": "オカヤマシナカク",
    "town": "桜橋",
    "town_kana": "サクラバシ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "8286": {
    "postcode": "7038286",
    "prefecture": "岡山県",
    "prefecture_kana": "オカヤマケン",
    "prefecture_code": 33,
    "city": "岡山市中区",
    "city_kana": "オカヤマシナカク",
    "town": "旭東町",
    "town_kana": "キョクトウチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "8287": {
    "postcode": "7038287",
    "prefecture": "岡山県",
    "prefecture_kana": "オカヤマケン",
    "prefecture_code": 33,
    "city": "岡山市中区",
    "city_kana": "オカヤマシナカク",
    "town": "赤坂台",
    "town_kana": "アカサカダイ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "8288": {
    "postcode": "7038288",
    "prefecture": "岡山県",
    "prefecture_kana": "オカヤマケン",
    "prefecture_code": 33,
    "city": "岡山市中区",
    "city_kana": "オカヤマシナカク",
    "town": "赤坂本町",
    "town_kana": "アカサカホンマチ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "8291": {
    "postcode": "7038291",
    "prefecture": "岡山県",
    "prefecture_kana": "オカヤマケン",
    "prefecture_code": 33,
    "city": "岡山市中区",
    "city_kana": "オカヤマシナカク",
    "town": "徳吉町",
    "town_kana": "トクヨシチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "8292": {
    "postcode": "7038292",
    "prefecture": "岡山県",
    "prefecture_kana": "オカヤマケン",
    "prefecture_code": 33,
    "city": "岡山市中区",
    "city_kana": "オカヤマシナカク",
    "town": "中納言町",
    "town_kana": "チュウナゴンチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "8293": {
    "postcode": "7038293",
    "prefecture": "岡山県",
    "prefecture_kana": "オカヤマケン",
    "prefecture_code": 33,
    "city": "岡山市中区",
    "city_kana": "オカヤマシナカク",
    "town": "小橋町",
    "town_kana": "コバシチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "8294": {
    "postcode": "7038294",
    "prefecture": "岡山県",
    "prefecture_kana": "オカヤマケン",
    "prefecture_code": 33,
    "city": "岡山市中区",
    "city_kana": "オカヤマシナカク",
    "town": "新京橋",
    "town_kana": "シンキョウバシ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "8295": {
    "postcode": "7038295",
    "prefecture": "岡山県",
    "prefecture_kana": "オカヤマケン",
    "prefecture_code": 33,
    "city": "岡山市中区",
    "city_kana": "オカヤマシナカク",
    "town": "御幸町",
    "town_kana": "ミユキチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "8296": {
    "postcode": "7038296",
    "prefecture": "岡山県",
    "prefecture_kana": "オカヤマケン",
    "prefecture_code": 33,
    "city": "岡山市中区",
    "city_kana": "オカヤマシナカク",
    "town": "さくら住座",
    "town_kana": "サクラジュウザ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "8297": {
    "postcode": "7038297",
    "prefecture": "岡山県",
    "prefecture_kana": "オカヤマケン",
    "prefecture_code": 33,
    "city": "岡山市中区",
    "city_kana": "オカヤマシナカク",
    "town": "東中島町",
    "town_kana": "ヒガシナカジマチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "8298": {
    "postcode": "7038298",
    "prefecture": "岡山県",
    "prefecture_kana": "オカヤマケン",
    "prefecture_code": 33,
    "city": "岡山市中区",
    "city_kana": "オカヤマシナカク",
    "town": "西中島町",
    "town_kana": "ニシナカジマチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "8501": {
    "postcode": "7038501",
    "prefecture": "岡山県",
    "prefecture_kana": "オカヤマケン",
    "prefecture_code": 33,
    "city": "岡山市中区",
    "city_kana": "オカヤマシナカク",
    "town": "平井",
    "town_kana": "ヒライ",
    "street": "1丁目14−1",
    "office_name": "山陽学園大学.山陽学園短期大学",
    "office_name_kana": "サンヨウガクエンダイガク.サンヨウガクエンタンキダイガク"
  },
  "8502": {
    "postcode": "7038502",
    "prefecture": "岡山県",
    "prefecture_kana": "オカヤマケン",
    "prefecture_code": 33,
    "city": "岡山市中区",
    "city_kana": "オカヤマシナカク",
    "town": "海吉",
    "town_kana": "ミヨシ",
    "street": "2075",
    "office_name": "オムロン 株式会社 岡山事業所",
    "office_name_kana": "オムロン カブシキガイシヤ オカヤマジギヨウシヨ"
  },
  "8505": {
    "postcode": "7038505",
    "prefecture": "岡山県",
    "prefecture_kana": "オカヤマケン",
    "prefecture_code": 33,
    "city": "岡山市中区",
    "city_kana": "オカヤマシナカク",
    "town": "神下",
    "town_kana": "コウシタ",
    "street": "565",
    "office_name": "オハヨー乳業 株式会社",
    "office_name_kana": "オハヨ-ニユウギヨウ カブシキガイシヤ"
  },
  "8508": {
    "postcode": "7038508",
    "prefecture": "岡山県",
    "prefecture_kana": "オカヤマケン",
    "prefecture_code": 33,
    "city": "岡山市中区",
    "city_kana": "オカヤマシナカク",
    "town": "西川原",
    "town_kana": "ニシガワラ",
    "street": "255番地",
    "office_name": "財団法人 岡山県教育会",
    "office_name_kana": "ザイダンホウジン オカヤマケンキヨウイクカイ"
  },
  "8510": {
    "postcode": "7038510",
    "prefecture": "岡山県",
    "prefecture_kana": "オカヤマケン",
    "prefecture_code": 33,
    "city": "岡山市東区",
    "city_kana": "オカヤマシヒガシク",
    "town": "古都宿",
    "town_kana": "コズシュク",
    "street": "189",
    "office_name": "中国セキスイ工業 株式会社",
    "office_name_kana": "チユウゴクセキスイコウギヨウ カブシキガイシヤ"
  },
  "8511": {
    "postcode": "7038511",
    "prefecture": "岡山県",
    "prefecture_kana": "オカヤマケン",
    "prefecture_code": 33,
    "city": "岡山市中区",
    "city_kana": "オカヤマシナカク",
    "town": "赤坂本町",
    "town_kana": "アカサカホンマチ",
    "street": "8−10",
    "office_name": "総合病院 岡山協立病院",
    "office_name_kana": "ソウゴウビヨウイン オカヤマキヨウリツビヨウイン"
  },
  "8516": {
    "postcode": "7038516",
    "prefecture": "岡山県",
    "prefecture_kana": "オカヤマケン",
    "prefecture_code": 33,
    "city": "岡山市中区",
    "city_kana": "オカヤマシナカク",
    "town": "西川原",
    "town_kana": "ニシガワラ",
    "street": "1丁目6−1",
    "office_name": "就実大学.就実短期大学",
    "office_name_kana": "シユウジツダイガク.シユウジツタンキダイガク"
  },
  "8520": {
    "postcode": "7038520",
    "prefecture": "岡山県",
    "prefecture_kana": "オカヤマケン",
    "prefecture_code": 33,
    "city": "岡山市中区",
    "city_kana": "オカヤマシナカク",
    "town": "",
    "town_kana": "ハマ",
    "street": "472",
    "office_name": "財団法人 林精神医学研究所 附属林道倫精神科神経科病院",
    "office_name_kana": "ザイダンホウジン ハヤシセイシンイガクケンキユウシヨ フゾクハヤシドウリンセイシンカシンケイカビヨウイン"
  },
  "8530": {
    "postcode": "7038530",
    "prefecture": "岡山県",
    "prefecture_kana": "オカヤマケン",
    "prefecture_code": 33,
    "city": "岡山市中区",
    "city_kana": "オカヤマシナカク",
    "town": "平井",
    "town_kana": "ヒライ",
    "street": "1162−1",
    "office_name": "株式会社 ヒラタ",
    "office_name_kana": "カブシキガイシヤ ヒラタ"
  },
  "8533": {
    "postcode": "7038533",
    "prefecture": "岡山県",
    "prefecture_kana": "オカヤマケン",
    "prefecture_code": 33,
    "city": "岡山市中区",
    "city_kana": "オカヤマシナカク",
    "town": "国富",
    "town_kana": "クニトミ",
    "street": "228",
    "office_name": "日本年金機構 岡山東年金事務所",
    "office_name_kana": "ニツポンネンキンキコウ オカヤマヒガシネンキンジムシヨ"
  },
  "8544": {
    "postcode": "7038544",
    "prefecture": "岡山県",
    "prefecture_kana": "オカヤマケン",
    "prefecture_code": 33,
    "city": "岡山市中区",
    "city_kana": "オカヤマシナカク",
    "town": "",
    "town_kana": "ハマ",
    "street": "3丁目7−15",
    "office_name": "中区役所",
    "office_name_kana": "ナカクヤクシヨ"
  },
  "8550": {
    "postcode": "7038550",
    "prefecture": "岡山県",
    "prefecture_kana": "オカヤマケン",
    "prefecture_code": 33,
    "city": "岡山市中区",
    "city_kana": "オカヤマシナカク",
    "town": "西川原",
    "town_kana": "ニシガワラ",
    "street": "255番地",
    "office_name": "岡山県 学校生活協同組合",
    "office_name_kana": "オカヤマケン ガツコウセイカツキヨウドウクミアイ"
  },
  "8555": {
    "postcode": "7038555",
    "prefecture": "岡山県",
    "prefecture_kana": "オカヤマケン",
    "prefecture_code": 33,
    "city": "岡山市北区",
    "city_kana": "オカヤマシキタク",
    "town": "祇園",
    "town_kana": "ギオン",
    "street": "866番地",
    "office_name": "社会福祉法人 旭川荘",
    "office_name_kana": "シヤカイフクシホウジン アサヒガワソウ"
  },
  "8558": {
    "postcode": "7038558",
    "prefecture": "岡山県",
    "prefecture_kana": "オカヤマケン",
    "prefecture_code": 33,
    "city": "岡山市東区",
    "city_kana": "オカヤマシヒガシク",
    "town": "古都宿",
    "town_kana": "コズシュク",
    "street": "210番地",
    "office_name": "西日本積水工業 株式会社 岡山製造所",
    "office_name_kana": "ニシニホンセキスイコウギヨウ カブシキガイシヤ オカヤマセイゾウシヨ"
  },
  "8560": {
    "postcode": "7038560",
    "prefecture": "岡山県",
    "prefecture_kana": "オカヤマケン",
    "prefecture_code": 33,
    "city": "岡山市北区",
    "city_kana": "オカヤマシキタク",
    "town": "祇園",
    "town_kana": "ギオン",
    "street": "866",
    "office_name": "旭川荘厚生専門学院",
    "office_name_kana": "アサヒガワソウコウセイセンモンガクイン"
  },
  "8566": {
    "postcode": "7038566",
    "prefecture": "岡山県",
    "prefecture_kana": "オカヤマケン",
    "prefecture_code": 33,
    "city": "岡山市中区",
    "city_kana": "オカヤマシナカク",
    "town": "赤坂本町",
    "town_kana": "アカサカホンマチ",
    "street": "11番47号",
    "office_name": "岡山市中区福祉事務所",
    "office_name_kana": "オカヤマシナカクフクシジムシヨ"
  },
  "8570": {
    "postcode": "7038570",
    "prefecture": "岡山県",
    "prefecture_kana": "オカヤマケン",
    "prefecture_code": 33,
    "city": "岡山市中区",
    "city_kana": "オカヤマシナカク",
    "town": "雄町",
    "town_kana": "オマチ",
    "street": "394−3",
    "office_name": "株式会社 岡山農栄社",
    "office_name_kana": "カブシキガイシヤ オカヤマノウエイシヤ"
  },
  "8573": {
    "postcode": "7038573",
    "prefecture": "岡山県",
    "prefecture_kana": "オカヤマケン",
    "prefecture_code": 33,
    "city": "岡山市中区",
    "city_kana": "オカヤマシナカク",
    "town": "",
    "town_kana": "ハマ",
    "street": "412",
    "office_name": "岡山県立 岡山操山高等学校",
    "office_name_kana": "オカヤマケンリツ オカヤマソウザンコウトウガツコウ"
  },
  "8574": {
    "postcode": "7038574",
    "prefecture": "岡山県",
    "prefecture_kana": "オカヤマケン",
    "prefecture_code": 33,
    "city": "岡山市中区",
    "city_kana": "オカヤマシナカク",
    "town": "",
    "town_kana": "ハマ",
    "street": "412",
    "office_name": "岡山県立 岡山操山高等学校 通信制課程",
    "office_name_kana": "オカヤマケンリツ オカヤマソウザンコウトウガツコウ ツウシンセイカテイ"
  },
  "8575": {
    "postcode": "7038575",
    "prefecture": "岡山県",
    "prefecture_kana": "オカヤマケン",
    "prefecture_code": 33,
    "city": "岡山市中区",
    "city_kana": "オカヤマシナカク",
    "town": "",
    "town_kana": "ハマ",
    "street": "一丁目19番39号",
    "office_name": "岡山中央警察署",
    "office_name_kana": "オカヤマチユウオウケイサツシヨ"
  },
  "8580": {
    "postcode": "7038580",
    "prefecture": "岡山県",
    "prefecture_kana": "オカヤマケン",
    "prefecture_code": 33,
    "city": "岡山市中区",
    "city_kana": "オカヤマシナカク",
    "town": "倉富",
    "town_kana": "クラトミ",
    "street": "340−18",
    "office_name": "ナカウン 株式会社",
    "office_name_kana": "ナカウン カブシキガイシヤ"
  },
  "8585": {
    "postcode": "7038585",
    "prefecture": "岡山県",
    "prefecture_kana": "オカヤマケン",
    "prefecture_code": 33,
    "city": "岡山市中区",
    "city_kana": "オカヤマシナカク",
    "town": "国富",
    "town_kana": "クニトミ",
    "street": "1丁目16−10",
    "office_name": "岡山四国共和 株式会社",
    "office_name_kana": "オカヤマシコクキヨウワ カブシキガイシヤ"
  },
  "8586": {
    "postcode": "7038586",
    "prefecture": "岡山県",
    "prefecture_kana": "オカヤマケン",
    "prefecture_code": 33,
    "city": "岡山市中区",
    "city_kana": "オカヤマシナカク",
    "town": "さい",
    "town_kana": "サイ",
    "street": "155−9",
    "office_name": "一般社団法人 日本自動車連盟 岡山支部",
    "office_name_kana": "イツパンシヤダンホウジン ニホンジドウシヤレンメイ オカヤマシブ"
  },
  "8588": {
    "postcode": "7038588",
    "prefecture": "岡山県",
    "prefecture_kana": "オカヤマケン",
    "prefecture_code": 33,
    "city": "岡山市中区",
    "city_kana": "オカヤマシナカク",
    "town": "小橋町",
    "town_kana": "コバシチョウ",
    "street": "2丁目1−10",
    "office_name": "内山工業 株式会社",
    "office_name_kana": "ウチヤマコウギヨウ カブシキガイシヤ"
  },
  "8655": {
    "postcode": "7038655",
    "prefecture": "岡山県",
    "prefecture_kana": "オカヤマケン",
    "prefecture_code": 33,
    "city": "岡山市中区",
    "city_kana": "オカヤマシナカク",
    "town": "",
    "town_kana": "ハマ",
    "street": "1丁目8番22号",
    "office_name": "株式会社 ジョセイ新聞社",
    "office_name_kana": "カブシキガイシヤ ジヨセイシンブンシヤ"
  },
  "8686": {
    "postcode": "7038686",
    "prefecture": "岡山県",
    "prefecture_kana": "オカヤマケン",
    "prefecture_code": 33,
    "city": "岡山市中区",
    "city_kana": "オカヤマシナカク",
    "town": "平井",
    "town_kana": "ヒライ",
    "street": "3丁目1046−1",
    "office_name": "株式会社 中国銀行事務センター",
    "office_name_kana": "カブシキガイシヤ チユウゴクギンコウジムセンタ-"
  },
  "8750": {
    "postcode": "7038750",
    "prefecture": "岡山県",
    "prefecture_kana": "オカヤマケン",
    "prefecture_code": 33,
    "city": "岡山市中区",
    "city_kana": "オカヤマシナカク",
    "town": "西川原",
    "town_kana": "ニシガワラ",
    "street": "255番地",
    "office_name": "岡山県 学校生活協同組合",
    "office_name_kana": "オカヤマケン ガツコウセイカツキヨウドウクミアイ"
  }
}