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
{
  "0000": {
    "postcode": "2610000",
    "prefecture": "千葉県",
    "prefecture_kana": "チバケン",
    "prefecture_code": 12,
    "city": "千葉市美浜区",
    "city_kana": "チバシミハマク",
    "town": "",
    "town_kana": "",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0001": {
    "postcode": "2610001",
    "prefecture": "千葉県",
    "prefecture_kana": "チバケン",
    "prefecture_code": 12,
    "city": "千葉市美浜区",
    "city_kana": "チバシミハマク",
    "town": "幸町",
    "town_kana": "サイワイチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0002": {
    "postcode": "2610002",
    "prefecture": "千葉県",
    "prefecture_kana": "チバケン",
    "prefecture_code": 12,
    "city": "千葉市美浜区",
    "city_kana": "チバシミハマク",
    "town": "新港",
    "town_kana": "シンミナト",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0003": {
    "postcode": "2610003",
    "prefecture": "千葉県",
    "prefecture_kana": "チバケン",
    "prefecture_code": 12,
    "city": "千葉市美浜区",
    "city_kana": "チバシミハマク",
    "town": "高浜",
    "town_kana": "タカハマ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0004": {
    "postcode": "2610004",
    "prefecture": "千葉県",
    "prefecture_kana": "チバケン",
    "prefecture_code": 12,
    "city": "千葉市美浜区",
    "city_kana": "チバシミハマク",
    "town": "高洲",
    "town_kana": "タカス",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0005": {
    "postcode": "2610005",
    "prefecture": "千葉県",
    "prefecture_kana": "チバケン",
    "prefecture_code": 12,
    "city": "千葉市美浜区",
    "city_kana": "チバシミハマク",
    "town": "稲毛海岸",
    "town_kana": "イナゲカイガン",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0011": {
    "postcode": "2610011",
    "prefecture": "千葉県",
    "prefecture_kana": "チバケン",
    "prefecture_code": 12,
    "city": "千葉市美浜区",
    "city_kana": "チバシミハマク",
    "town": "真砂",
    "town_kana": "マサゴ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0012": {
    "postcode": "2610012",
    "prefecture": "千葉県",
    "prefecture_kana": "チバケン",
    "prefecture_code": 12,
    "city": "千葉市美浜区",
    "city_kana": "チバシミハマク",
    "town": "磯辺",
    "town_kana": "イソベ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0013": {
    "postcode": "2610013",
    "prefecture": "千葉県",
    "prefecture_kana": "チバケン",
    "prefecture_code": 12,
    "city": "千葉市美浜区",
    "city_kana": "チバシミハマク",
    "town": "打瀬",
    "town_kana": "ウタセ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0014": {
    "postcode": "2610014",
    "prefecture": "千葉県",
    "prefecture_kana": "チバケン",
    "prefecture_code": 12,
    "city": "千葉市美浜区",
    "city_kana": "チバシミハマク",
    "town": "若葉",
    "town_kana": "ワカバ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0021": {
    "postcode": "2610021",
    "prefecture": "千葉県",
    "prefecture_kana": "チバケン",
    "prefecture_code": 12,
    "city": "千葉市美浜区",
    "city_kana": "チバシミハマク",
    "town": "ひび野",
    "town_kana": "ヒビノ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0022": {
    "postcode": "2610022",
    "prefecture": "千葉県",
    "prefecture_kana": "チバケン",
    "prefecture_code": 12,
    "city": "千葉市美浜区",
    "city_kana": "チバシミハマク",
    "town": "美浜",
    "town_kana": "ミハマ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0023": {
    "postcode": "2610023",
    "prefecture": "千葉県",
    "prefecture_kana": "チバケン",
    "prefecture_code": 12,
    "city": "千葉市美浜区",
    "city_kana": "チバシミハマク",
    "town": "中瀬",
    "town_kana": "ナカセ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0024": {
    "postcode": "2610024",
    "prefecture": "千葉県",
    "prefecture_kana": "チバケン",
    "prefecture_code": 12,
    "city": "千葉市美浜区",
    "city_kana": "チバシミハマク",
    "town": "豊砂",
    "town_kana": "トヨスナ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0025": {
    "postcode": "2610025",
    "prefecture": "千葉県",
    "prefecture_kana": "チバケン",
    "prefecture_code": 12,
    "city": "千葉市美浜区",
    "city_kana": "チバシミハマク",
    "town": "浜田",
    "town_kana": "ハマダ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0026": {
    "postcode": "2610026",
    "prefecture": "千葉県",
    "prefecture_kana": "チバケン",
    "prefecture_code": 12,
    "city": "千葉市美浜区",
    "city_kana": "チバシミハマク",
    "town": "幕張西",
    "town_kana": "マクハリニシ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "7101": {
    "postcode": "2617101",
    "prefecture": "千葉県",
    "prefecture_kana": "チバケン",
    "prefecture_code": 12,
    "city": "千葉市美浜区",
    "city_kana": "チバシミハマク",
    "town": "中瀬ワールドビジネスガーデン 1階",
    "town_kana": "ナカセワールドビジネスガーデン1カイ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "7102": {
    "postcode": "2617102",
    "prefecture": "千葉県",
    "prefecture_kana": "チバケン",
    "prefecture_code": 12,
    "city": "千葉市美浜区",
    "city_kana": "チバシミハマク",
    "town": "中瀬ワールドビジネスガーデン 2階",
    "town_kana": "ナカセワールドビジネスガーデン2カイ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "7103": {
    "postcode": "2617103",
    "prefecture": "千葉県",
    "prefecture_kana": "チバケン",
    "prefecture_code": 12,
    "city": "千葉市美浜区",
    "city_kana": "チバシミハマク",
    "town": "中瀬ワールドビジネスガーデン 3階",
    "town_kana": "ナカセワールドビジネスガーデン3カイ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "7104": {
    "postcode": "2617104",
    "prefecture": "千葉県",
    "prefecture_kana": "チバケン",
    "prefecture_code": 12,
    "city": "千葉市美浜区",
    "city_kana": "チバシミハマク",
    "town": "中瀬ワールドビジネスガーデン 4階",
    "town_kana": "ナカセワールドビジネスガーデン4カイ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "7105": {
    "postcode": "2617105",
    "prefecture": "千葉県",
    "prefecture_kana": "チバケン",
    "prefecture_code": 12,
    "city": "千葉市美浜区",
    "city_kana": "チバシミハマク",
    "town": "中瀬ワールドビジネスガーデン 5階",
    "town_kana": "ナカセワールドビジネスガーデン5カイ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "7106": {
    "postcode": "2617106",
    "prefecture": "千葉県",
    "prefecture_kana": "チバケン",
    "prefecture_code": 12,
    "city": "千葉市美浜区",
    "city_kana": "チバシミハマク",
    "town": "中瀬ワールドビジネスガーデン 6階",
    "town_kana": "ナカセワールドビジネスガーデン6カイ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "7107": {
    "postcode": "2617107",
    "prefecture": "千葉県",
    "prefecture_kana": "チバケン",
    "prefecture_code": 12,
    "city": "千葉市美浜区",
    "city_kana": "チバシミハマク",
    "town": "中瀬ワールドビジネスガーデン 7階",
    "town_kana": "ナカセワールドビジネスガーデン7カイ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "7108": {
    "postcode": "2617108",
    "prefecture": "千葉県",
    "prefecture_kana": "チバケン",
    "prefecture_code": 12,
    "city": "千葉市美浜区",
    "city_kana": "チバシミハマク",
    "town": "中瀬ワールドビジネスガーデン 8階",
    "town_kana": "ナカセワールドビジネスガーデン8カイ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "7109": {
    "postcode": "2617109",
    "prefecture": "千葉県",
    "prefecture_kana": "チバケン",
    "prefecture_code": 12,
    "city": "千葉市美浜区",
    "city_kana": "チバシミハマク",
    "town": "中瀬ワールドビジネスガーデン 9階",
    "town_kana": "ナカセワールドビジネスガーデン9カイ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "7110": {
    "postcode": "2617110",
    "prefecture": "千葉県",
    "prefecture_kana": "チバケン",
    "prefecture_code": 12,
    "city": "千葉市美浜区",
    "city_kana": "チバシミハマク",
    "town": "中瀬ワールドビジネスガーデン 10階",
    "town_kana": "ナカセワールドビジネスガーデン10カイ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "7111": {
    "postcode": "2617111",
    "prefecture": "千葉県",
    "prefecture_kana": "チバケン",
    "prefecture_code": 12,
    "city": "千葉市美浜区",
    "city_kana": "チバシミハマク",
    "town": "中瀬ワールドビジネスガーデン 11階",
    "town_kana": "ナカセワールドビジネスガーデン11カイ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "7112": {
    "postcode": "2617112",
    "prefecture": "千葉県",
    "prefecture_kana": "チバケン",
    "prefecture_code": 12,
    "city": "千葉市美浜区",
    "city_kana": "チバシミハマク",
    "town": "中瀬ワールドビジネスガーデン 12階",
    "town_kana": "ナカセワールドビジネスガーデン12カイ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "7113": {
    "postcode": "2617113",
    "prefecture": "千葉県",
    "prefecture_kana": "チバケン",
    "prefecture_code": 12,
    "city": "千葉市美浜区",
    "city_kana": "チバシミハマク",
    "town": "中瀬ワールドビジネスガーデン 13階",
    "town_kana": "ナカセワールドビジネスガーデン13カイ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "7114": {
    "postcode": "2617114",
    "prefecture": "千葉県",
    "prefecture_kana": "チバケン",
    "prefecture_code": 12,
    "city": "千葉市美浜区",
    "city_kana": "チバシミハマク",
    "town": "中瀬ワールドビジネスガーデン 14階",
    "town_kana": "ナカセワールドビジネスガーデン14カイ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "7115": {
    "postcode": "2617115",
    "prefecture": "千葉県",
    "prefecture_kana": "チバケン",
    "prefecture_code": 12,
    "city": "千葉市美浜区",
    "city_kana": "チバシミハマク",
    "town": "中瀬ワールドビジネスガーデン 15階",
    "town_kana": "ナカセワールドビジネスガーデン15カイ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "7116": {
    "postcode": "2617116",
    "prefecture": "千葉県",
    "prefecture_kana": "チバケン",
    "prefecture_code": 12,
    "city": "千葉市美浜区",
    "city_kana": "チバシミハマク",
    "town": "中瀬ワールドビジネスガーデン 16階",
    "town_kana": "ナカセワールドビジネスガーデン16カイ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "7117": {
    "postcode": "2617117",
    "prefecture": "千葉県",
    "prefecture_kana": "チバケン",
    "prefecture_code": 12,
    "city": "千葉市美浜区",
    "city_kana": "チバシミハマク",
    "town": "中瀬ワールドビジネスガーデン 17階",
    "town_kana": "ナカセワールドビジネスガーデン17カイ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "7118": {
    "postcode": "2617118",
    "prefecture": "千葉県",
    "prefecture_kana": "チバケン",
    "prefecture_code": 12,
    "city": "千葉市美浜区",
    "city_kana": "チバシミハマク",
    "town": "中瀬ワールドビジネスガーデン 18階",
    "town_kana": "ナカセワールドビジネスガーデン18カイ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "7119": {
    "postcode": "2617119",
    "prefecture": "千葉県",
    "prefecture_kana": "チバケン",
    "prefecture_code": 12,
    "city": "千葉市美浜区",
    "city_kana": "チバシミハマク",
    "town": "中瀬ワールドビジネスガーデン 19階",
    "town_kana": "ナカセワールドビジネスガーデン19カイ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "7120": {
    "postcode": "2617120",
    "prefecture": "千葉県",
    "prefecture_kana": "チバケン",
    "prefecture_code": 12,
    "city": "千葉市美浜区",
    "city_kana": "チバシミハマク",
    "town": "中瀬ワールドビジネスガーデン 20階",
    "town_kana": "ナカセワールドビジネスガーデン20カイ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "7121": {
    "postcode": "2617121",
    "prefecture": "千葉県",
    "prefecture_kana": "チバケン",
    "prefecture_code": 12,
    "city": "千葉市美浜区",
    "city_kana": "チバシミハマク",
    "town": "中瀬ワールドビジネスガーデン 21階",
    "town_kana": "ナカセワールドビジネスガーデン21カイ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "7122": {
    "postcode": "2617122",
    "prefecture": "千葉県",
    "prefecture_kana": "チバケン",
    "prefecture_code": 12,
    "city": "千葉市美浜区",
    "city_kana": "チバシミハマク",
    "town": "中瀬ワールドビジネスガーデン 22階",
    "town_kana": "ナカセワールドビジネスガーデン22カイ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "7123": {
    "postcode": "2617123",
    "prefecture": "千葉県",
    "prefecture_kana": "チバケン",
    "prefecture_code": 12,
    "city": "千葉市美浜区",
    "city_kana": "チバシミハマク",
    "town": "中瀬ワールドビジネスガーデン 23階",
    "town_kana": "ナカセワールドビジネスガーデン23カイ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "7124": {
    "postcode": "2617124",
    "prefecture": "千葉県",
    "prefecture_kana": "チバケン",
    "prefecture_code": 12,
    "city": "千葉市美浜区",
    "city_kana": "チバシミハマク",
    "town": "中瀬ワールドビジネスガーデン 24階",
    "town_kana": "ナカセワールドビジネスガーデン24カイ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "7125": {
    "postcode": "2617125",
    "prefecture": "千葉県",
    "prefecture_kana": "チバケン",
    "prefecture_code": 12,
    "city": "千葉市美浜区",
    "city_kana": "チバシミハマク",
    "town": "中瀬ワールドビジネスガーデン 25階",
    "town_kana": "ナカセワールドビジネスガーデン25カイ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "7126": {
    "postcode": "2617126",
    "prefecture": "千葉県",
    "prefecture_kana": "チバケン",
    "prefecture_code": 12,
    "city": "千葉市美浜区",
    "city_kana": "チバシミハマク",
    "town": "中瀬ワールドビジネスガーデン 26階",
    "town_kana": "ナカセワールドビジネスガーデン26カイ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "7127": {
    "postcode": "2617127",
    "prefecture": "千葉県",
    "prefecture_kana": "チバケン",
    "prefecture_code": 12,
    "city": "千葉市美浜区",
    "city_kana": "チバシミハマク",
    "town": "中瀬ワールドビジネスガーデン 27階",
    "town_kana": "ナカセワールドビジネスガーデン27カイ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "7128": {
    "postcode": "2617128",
    "prefecture": "千葉県",
    "prefecture_kana": "チバケン",
    "prefecture_code": 12,
    "city": "千葉市美浜区",
    "city_kana": "チバシミハマク",
    "town": "中瀬ワールドビジネスガーデン 28階",
    "town_kana": "ナカセワールドビジネスガーデン28カイ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "7129": {
    "postcode": "2617129",
    "prefecture": "千葉県",
    "prefecture_kana": "チバケン",
    "prefecture_code": 12,
    "city": "千葉市美浜区",
    "city_kana": "チバシミハマク",
    "town": "中瀬ワールドビジネスガーデン 29階",
    "town_kana": "ナカセワールドビジネスガーデン29カイ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "7130": {
    "postcode": "2617130",
    "prefecture": "千葉県",
    "prefecture_kana": "チバケン",
    "prefecture_code": 12,
    "city": "千葉市美浜区",
    "city_kana": "チバシミハマク",
    "town": "中瀬ワールドビジネスガーデン 30階",
    "town_kana": "ナカセワールドビジネスガーデン30カイ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "7131": {
    "postcode": "2617131",
    "prefecture": "千葉県",
    "prefecture_kana": "チバケン",
    "prefecture_code": 12,
    "city": "千葉市美浜区",
    "city_kana": "チバシミハマク",
    "town": "中瀬ワールドビジネスガーデン 31階",
    "town_kana": "ナカセワールドビジネスガーデン31カイ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "7132": {
    "postcode": "2617132",
    "prefecture": "千葉県",
    "prefecture_kana": "チバケン",
    "prefecture_code": 12,
    "city": "千葉市美浜区",
    "city_kana": "チバシミハマク",
    "town": "中瀬ワールドビジネスガーデン 32階",
    "town_kana": "ナカセワールドビジネスガーデン32カイ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "7133": {
    "postcode": "2617133",
    "prefecture": "千葉県",
    "prefecture_kana": "チバケン",
    "prefecture_code": 12,
    "city": "千葉市美浜区",
    "city_kana": "チバシミハマク",
    "town": "中瀬ワールドビジネスガーデン 33階",
    "town_kana": "ナカセワールドビジネスガーデン33カイ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "7134": {
    "postcode": "2617134",
    "prefecture": "千葉県",
    "prefecture_kana": "チバケン",
    "prefecture_code": 12,
    "city": "千葉市美浜区",
    "city_kana": "チバシミハマク",
    "town": "中瀬ワールドビジネスガーデン 34階",
    "town_kana": "ナカセワールドビジネスガーデン34カイ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "7135": {
    "postcode": "2617135",
    "prefecture": "千葉県",
    "prefecture_kana": "チバケン",
    "prefecture_code": 12,
    "city": "千葉市美浜区",
    "city_kana": "チバシミハマク",
    "town": "中瀬ワールドビジネスガーデン 35階",
    "town_kana": "ナカセワールドビジネスガーデン35カイ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "7190": {
    "postcode": "2617190",
    "prefecture": "千葉県",
    "prefecture_kana": "チバケン",
    "prefecture_code": 12,
    "city": "千葉市美浜区",
    "city_kana": "チバシミハマク",
    "town": "中瀬ワールドビジネスガーデン",
    "town_kana": "ナカセワールドビジネスガーデン",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "8501": {
    "postcode": "2618501",
    "prefecture": "千葉県",
    "prefecture_kana": "チバケン",
    "prefecture_code": 12,
    "city": "千葉市美浜区",
    "city_kana": "チバシミハマク",
    "town": "中瀬",
    "town_kana": "ナカセ",
    "street": "1丁目3",
    "office_name": "幕張テクノガーデン",
    "office_name_kana": "マクハリテクノガ-デン"
  },
  "8502": {
    "postcode": "2618502",
    "prefecture": "千葉県",
    "prefecture_kana": "チバケン",
    "prefecture_code": 12,
    "city": "千葉市美浜区",
    "city_kana": "チバシミハマク",
    "town": "真砂",
    "town_kana": "マサゴ",
    "street": "1丁目2−2",
    "office_name": "東京歯科大学",
    "office_name_kana": "トウキヨウシカダイガク"
  },
  "8503": {
    "postcode": "2618503",
    "prefecture": "千葉県",
    "prefecture_kana": "チバケン",
    "prefecture_code": 12,
    "city": "千葉市美浜区",
    "city_kana": "チバシミハマク",
    "town": "高洲",
    "town_kana": "タカス",
    "street": "3−13−2",
    "office_name": "イオンリテール 株式会社 稲毛海岸事務所",
    "office_name_kana": "イオンリテ-ル カブシキガイシヤ イナゲカイガンジムシヨ"
  },
  "8504": {
    "postcode": "2618504",
    "prefecture": "千葉県",
    "prefecture_kana": "チバケン",
    "prefecture_code": 12,
    "city": "千葉市美浜区",
    "city_kana": "チバシミハマク",
    "town": "中瀬",
    "town_kana": "ナカセ",
    "street": "1−5−1",
    "office_name": "株式会社 イオンファンタジー",
    "office_name_kana": "カブシキガイシヤ イオンフアンタジ-"
  },
  "8507": {
    "postcode": "2618507",
    "prefecture": "千葉県",
    "prefecture_kana": "チバケン",
    "prefecture_code": 12,
    "city": "千葉市美浜区",
    "city_kana": "チバシミハマク",
    "town": "中瀬",
    "town_kana": "ナカセ",
    "street": "1−8",
    "office_name": "セイコーインスツル 株式会社",
    "office_name_kana": "セイコ-インスツル カブシキガイシヤ"
  },
  "8508": {
    "postcode": "2618508",
    "prefecture": "千葉県",
    "prefecture_kana": "チバケン",
    "prefecture_code": 12,
    "city": "千葉市美浜区",
    "city_kana": "チバシミハマク",
    "town": "真砂",
    "town_kana": "マサゴ",
    "street": "4−1−4",
    "office_name": "千葉県千葉西県税事務所",
    "office_name_kana": "チバケンチバニシケンゼイジムシヨ"
  },
  "8510": {
    "postcode": "2618510",
    "prefecture": "千葉県",
    "prefecture_kana": "チバケン",
    "prefecture_code": 12,
    "city": "千葉市美浜区",
    "city_kana": "チバシミハマク",
    "town": "中瀬",
    "town_kana": "ナカセ",
    "street": "1−3",
    "office_name": "株式会社 ウェザーニューズ",
    "office_name_kana": "カブシキガイシヤ ウエザ-ニユ-ズ"
  },
  "8511": {
    "postcode": "2618511",
    "prefecture": "千葉県",
    "prefecture_kana": "チバケン",
    "prefecture_code": 12,
    "city": "千葉市美浜区",
    "city_kana": "チバシミハマク",
    "town": "中瀬",
    "town_kana": "ナカセ",
    "street": "1−1",
    "office_name": "キンドリルジャパン 株式会社 幕張事業所",
    "office_name_kana": "キンドリルジヤパン カブシキガイシヤ マクハリジギヨウシヨ"
  },
  "8512": {
    "postcode": "2618512",
    "prefecture": "千葉県",
    "prefecture_kana": "チバケン",
    "prefecture_code": 12,
    "city": "千葉市美浜区",
    "city_kana": "チバシミハマク",
    "town": "幸町",
    "town_kana": "サイワイチョウ",
    "street": "1丁目6−5",
    "office_name": "株式会社 京葉銀行 幸町センター",
    "office_name_kana": "カブシキガイシヤ ケイヨウギンコウ サイワイチヨウセンタ-"
  },
  "8513": {
    "postcode": "2618513",
    "prefecture": "千葉県",
    "prefecture_kana": "チバケン",
    "prefecture_code": 12,
    "city": "千葉市美浜区",
    "city_kana": "チバシミハマク",
    "town": "高洲",
    "town_kana": "タカス",
    "street": "3−13−1",
    "office_name": "イオンリテール 株式会社 ジャスコマリンピア店",
    "office_name_kana": "イオンリテ-ル カブシキガイシヤ ジヤスコマリンピアテン"
  },
  "8515": {
    "postcode": "2618515",
    "prefecture": "千葉県",
    "prefecture_kana": "チバケン",
    "prefecture_code": 12,
    "city": "千葉市美浜区",
    "city_kana": "チバシミハマク",
    "town": "中瀬",
    "town_kana": "ナカセ",
    "street": "1丁目5−1",
    "office_name": "イオン 株式会社",
    "office_name_kana": "イオン カブシキガイシヤ"
  },
  "8520": {
    "postcode": "2618520",
    "prefecture": "千葉県",
    "prefecture_kana": "チバケン",
    "prefecture_code": 12,
    "city": "千葉市美浜区",
    "city_kana": "チバシミハマク",
    "town": "中瀬",
    "town_kana": "ナカセ",
    "street": "1丁目9番2号",
    "office_name": "シャープ 株式会社 幕張事業所",
    "office_name_kana": "シヤ-プ カブシキガイシヤ マクハリジギヨウシヨ"
  },
  "8521": {
    "postcode": "2618521",
    "prefecture": "千葉県",
    "prefecture_kana": "チバケン",
    "prefecture_code": 12,
    "city": "千葉市美浜区",
    "city_kana": "チバシミハマク",
    "town": "幸町",
    "town_kana": "サイワイチョウ",
    "street": "1丁目21−19",
    "office_name": "東京電力 株式会社 千葉支社",
    "office_name_kana": "トウキヨウデンリヨク カブシキガイシヤ チバシシヤ"
  },
  "8522": {
    "postcode": "2618522",
    "prefecture": "千葉県",
    "prefecture_kana": "チバケン",
    "prefecture_code": 12,
    "city": "千葉市美浜区",
    "city_kana": "チバシミハマク",
    "town": "中瀬",
    "town_kana": "ナカセ",
    "street": "1−1",
    "office_name": "日本アイ・ビー・エム 株式会社 幕張事業所",
    "office_name_kana": "ニホンアイ・ビ-・エム カブシキガイシヤ マクハリジギヨウシヨ"
  },
  "8528": {
    "postcode": "2618528",
    "prefecture": "千葉県",
    "prefecture_kana": "チバケン",
    "prefecture_code": 12,
    "city": "千葉市美浜区",
    "city_kana": "チバシミハマク",
    "town": "新港",
    "town_kana": "シンミナト",
    "street": "68−1",
    "office_name": "アマゾン千葉みなとFC",
    "office_name_kana": "アマゾンチバミナトエフシ-"
  },
  "8530": {
    "postcode": "2618530",
    "prefecture": "千葉県",
    "prefecture_kana": "チバケン",
    "prefecture_code": 12,
    "city": "千葉市美浜区",
    "city_kana": "チバシミハマク",
    "town": "新港",
    "town_kana": "シンミナト",
    "street": "22",
    "office_name": "山崎製パン 株式会社千葉工場",
    "office_name_kana": "ヤマザキセイパン カブシキガイシヤチバコウジヨウ"
  },
  "8533": {
    "postcode": "2618533",
    "prefecture": "千葉県",
    "prefecture_kana": "チバケン",
    "prefecture_code": 12,
    "city": "千葉市美浜区",
    "city_kana": "チバシミハマク",
    "town": "ひび野",
    "town_kana": "ヒビノ",
    "street": "2−1−1",
    "office_name": "株式会社 QVCジャパン",
    "office_name_kana": "カブシキガイシヤ キユ-ヴイ-シ-ジヤパン"
  },
  "8535": {
    "postcode": "2618535",
    "prefecture": "千葉県",
    "prefecture_kana": "チバケン",
    "prefecture_code": 12,
    "city": "千葉市美浜区",
    "city_kana": "チバシミハマク",
    "town": "豊砂",
    "town_kana": "トヨスナ",
    "street": "1−1",
    "office_name": "イオンモール 幕張新都心",
    "office_name_kana": "イオンモ-ル マクハリシントシン"
  },
  "8539": {
    "postcode": "2618539",
    "prefecture": "千葉県",
    "prefecture_kana": "チバケン",
    "prefecture_code": 12,
    "city": "千葉市美浜区",
    "city_kana": "チバシミハマク",
    "town": "中瀬",
    "town_kana": "ナカセ",
    "street": "一丁目5番地1",
    "office_name": "イオンモール 株式会社",
    "office_name_kana": "イオンモ-ル カブシキガイシヤ"
  },
  "8541": {
    "postcode": "2618541",
    "prefecture": "千葉県",
    "prefecture_kana": "チバケン",
    "prefecture_code": 12,
    "city": "千葉市美浜区",
    "city_kana": "チバシミハマク",
    "town": "中瀬",
    "town_kana": "ナカセ",
    "street": "2−6−1WBGマリブイースト5F",
    "office_name": "イオンコンパス (株) オペレーションセンター ハガキ事務局",
    "office_name_kana": "イオンコンパス (カ) オペレ-シヨンセンタ- ハガキジムキヨク"
  },
  "8544": {
    "postcode": "2618544",
    "prefecture": "千葉県",
    "prefecture_kana": "チバケン",
    "prefecture_code": 12,
    "city": "千葉市美浜区",
    "city_kana": "チバシミハマク",
    "town": "中瀬",
    "town_kana": "ナカセ",
    "street": "1−7−2",
    "office_name": "キヤノンマーケティングジャパン 株式会社 幕張事業所",
    "office_name_kana": "キヤノンマ-ケテイングジヤパン カブシキカイシヤ マクハリジギヨウシヨ"
  },
  "8545": {
    "postcode": "2618545",
    "prefecture": "千葉県",
    "prefecture_kana": "チバケン",
    "prefecture_code": 12,
    "city": "千葉市美浜区",
    "city_kana": "チバシミハマク",
    "town": "若葉",
    "town_kana": "ワカバ",
    "street": "3−2−2",
    "office_name": "日本貿易振興機構(ジェトロ) アジア経済研究所",
    "office_name_kana": "ニホンボウエキシンコウキコウ(ジエトロ) アジアケイザイケンキユウジヨ"
  },
  "8550": {
    "postcode": "2618550",
    "prefecture": "千葉県",
    "prefecture_kana": "チバケン",
    "prefecture_code": 12,
    "city": "千葉市美浜区",
    "city_kana": "チバシミハマク",
    "town": "中瀬",
    "town_kana": "ナカセ",
    "street": "2−1",
    "office_name": "幕張メッセ",
    "office_name_kana": "マクハリメツセ"
  },
  "8552": {
    "postcode": "2618552",
    "prefecture": "千葉県",
    "prefecture_kana": "チバケン",
    "prefecture_code": 12,
    "city": "千葉市美浜区",
    "city_kana": "チバシミハマク",
    "town": "中瀬",
    "town_kana": "ナカセ",
    "street": "1丁目3番地幕張テクノガーデンD棟5階",
    "office_name": "千葉県企業局",
    "office_name_kana": "チバケンキギヨウキヨク"
  },
  "8554": {
    "postcode": "2618554",
    "prefecture": "千葉県",
    "prefecture_kana": "チバケン",
    "prefecture_code": 12,
    "city": "千葉市美浜区",
    "city_kana": "チバシミハマク",
    "town": "中瀬",
    "town_kana": "ナカセ",
    "street": "1丁目3幕張テクノガーデンD棟21階",
    "office_name": "株式会社 大地を守る会",
    "office_name_kana": "カブシキガイシヤ ダイチヲマモルカイ"
  },
  "8558": {
    "postcode": "2618558",
    "prefecture": "千葉県",
    "prefecture_kana": "チバケン",
    "prefecture_code": 12,
    "city": "千葉市美浜区",
    "city_kana": "チバシミハマク",
    "town": "若葉",
    "town_kana": "ワカバ",
    "street": "3−1−2",
    "office_name": "独立行政法人 高齢・障害・求職者雇用支援機構",
    "office_name_kana": "ドクリツギヨウセイホウジン コウレイ・シヨウガイ・キユウシヨクシヤコヨウシエンキコウ"
  },
  "8560": {
    "postcode": "2618560",
    "prefecture": "千葉県",
    "prefecture_kana": "チバケン",
    "prefecture_code": 12,
    "city": "千葉市美浜区",
    "city_kana": "チバシミハマク",
    "town": "浜田",
    "town_kana": "ハマダ",
    "street": "2丁目1番",
    "office_name": "千葉県警察 千葉運転免許センター",
    "office_name_kana": "チバケンケイサツ チバウンテンメンキヨセンタ-"
  },
  "8561": {
    "postcode": "2618561",
    "prefecture": "千葉県",
    "prefecture_kana": "チバケン",
    "prefecture_code": 12,
    "city": "千葉市美浜区",
    "city_kana": "チバシミハマク",
    "town": "中瀬",
    "town_kana": "ナカセ",
    "street": "1−3幕張テクノガーデンB棟4F",
    "office_name": "Sansan 株式会社 BillOneセンター",
    "office_name_kana": "サンサン カブシキガイシヤ ビルワンセンタ-"
  },
  "8566": {
    "postcode": "2618566",
    "prefecture": "千葉県",
    "prefecture_kana": "チバケン",
    "prefecture_code": 12,
    "city": "千葉市美浜区",
    "city_kana": "チバシミハマク",
    "town": "中瀬",
    "town_kana": "ナカセ",
    "street": "1丁目9−1",
    "office_name": "スターツアメニティー 株式会社",
    "office_name_kana": "スタ-ツアメニテイ- カブシキカイシヤ"
  },
  "8568": {
    "postcode": "2618568",
    "prefecture": "千葉県",
    "prefecture_kana": "チバケン",
    "prefecture_code": 12,
    "city": "千葉市美浜区",
    "city_kana": "チバシミハマク",
    "town": "中瀬",
    "town_kana": "ナカセ",
    "street": "1丁目7−1",
    "office_name": "住友ケミカルエンジニアリング 株式会社",
    "office_name_kana": "スミトモケミカルエンジニアリング カブシキガイシヤ"
  },
  "8575": {
    "postcode": "2618575",
    "prefecture": "千葉県",
    "prefecture_kana": "チバケン",
    "prefecture_code": 12,
    "city": "千葉市美浜区",
    "city_kana": "チバシミハマク",
    "town": "中瀬",
    "town_kana": "ナカセ",
    "street": "2丁目6ワールドビジネスガーデンマリブウエスト13F",
    "office_name": "(株) 日産フィナンシャルサービス",
    "office_name_kana": "(カブ) ニツサンフイナンシヤルサ-ビス"
  },
  "8577": {
    "postcode": "2618577",
    "prefecture": "千葉県",
    "prefecture_kana": "チバケン",
    "prefecture_code": 12,
    "city": "千葉市美浜区",
    "city_kana": "チバシミハマク",
    "town": "中瀬",
    "town_kana": "ナカセ",
    "street": "一丁目10番1",
    "office_name": "株式会社 キッツ",
    "office_name_kana": "カブシキガイシヤ キツツ"
  },
  "8581": {
    "postcode": "2618581",
    "prefecture": "千葉県",
    "prefecture_kana": "チバケン",
    "prefecture_code": 12,
    "city": "千葉市美浜区",
    "city_kana": "チバシミハマク",
    "town": "真砂",
    "town_kana": "マサゴ",
    "street": "5丁目15−2",
    "office_name": "千葉市 美浜保健福祉センター",
    "office_name_kana": "チバシ ミハマホケンフクシセンタ-"
  },
  "8582": {
    "postcode": "2618582",
    "prefecture": "千葉県",
    "prefecture_kana": "チバケン",
    "prefecture_code": 12,
    "city": "千葉市美浜区",
    "city_kana": "チバシミハマク",
    "town": "真砂",
    "town_kana": "マサゴ",
    "street": "5丁目15番1号",
    "office_name": "千葉市 西部市税事務所",
    "office_name_kana": "チバシ セイブシゼイジムシヨ"
  },
  "8585": {
    "postcode": "2618585",
    "prefecture": "千葉県",
    "prefecture_kana": "チバケン",
    "prefecture_code": 12,
    "city": "千葉市美浜区",
    "city_kana": "チバシミハマク",
    "town": "稲毛海岸",
    "town_kana": "イナゲカイガン",
    "street": "4丁目5番1号",
    "office_name": "千葉トヨペット 株式会社",
    "office_name_kana": "チバトヨペツト カブシキガイシヤ"
  },
  "8586": {
    "postcode": "2618586",
    "prefecture": "千葉県",
    "prefecture_kana": "チバケン",
    "prefecture_code": 12,
    "city": "千葉市美浜区",
    "city_kana": "チバシミハマク",
    "town": "若葉",
    "town_kana": "ワカバ",
    "street": "2丁目11",
    "office_name": "放送大学",
    "office_name_kana": "ホウソウダイガク"
  },
  "8587": {
    "postcode": "2618587",
    "prefecture": "千葉県",
    "prefecture_kana": "チバケン",
    "prefecture_code": 12,
    "city": "千葉市美浜区",
    "city_kana": "チバシミハマク",
    "town": "美浜",
    "town_kana": "ミハマ",
    "street": "",
    "office_name": "株式会社 千葉ロッテマリーンズ",
    "office_name_kana": "カブシキガイシヤ チバロツテマリ-ンズ"
  },
  "8588": {
    "postcode": "2618588",
    "prefecture": "千葉県",
    "prefecture_kana": "チバケン",
    "prefecture_code": 12,
    "city": "千葉市美浜区",
    "city_kana": "チバシミハマク",
    "town": "中瀬",
    "town_kana": "ナカセ",
    "street": "1−9−3",
    "office_name": "富士通 株式会社",
    "office_name_kana": "フジツウ カブシキガイシヤ"
  },
  "8601": {
    "postcode": "2618601",
    "prefecture": "千葉県",
    "prefecture_kana": "チバケン",
    "prefecture_code": 12,
    "city": "千葉市美浜区",
    "city_kana": "チバシミハマク",
    "town": "中瀬",
    "town_kana": "ナカセ",
    "street": "一丁目1番地幕張テクニカルセンターD棟6F",
    "office_name": "東洋エンジニアリング 株式会社",
    "office_name_kana": "トウヨウエンジニアリング カブシキガイシヤ"
  },
  "8602": {
    "postcode": "2618602",
    "prefecture": "千葉県",
    "prefecture_kana": "チバケン",
    "prefecture_code": 12,
    "city": "千葉市美浜区",
    "city_kana": "チバシミハマク",
    "town": "中瀬",
    "town_kana": "ナカセ",
    "street": "一丁目1番地幕張テクニカルセンターE棟5F",
    "office_name": "テックプロジェクトサービス 株式会社",
    "office_name_kana": "テツクプロジエクトサ-ビス カブシキガイシヤ"
  },
  "8603": {
    "postcode": "2618603",
    "prefecture": "千葉県",
    "prefecture_kana": "チバケン",
    "prefecture_code": 12,
    "city": "千葉市美浜区",
    "city_kana": "チバシミハマク",
    "town": "中瀬",
    "town_kana": "ナカセ",
    "street": "一丁目1番地幕張テクニカルセンターD棟5F",
    "office_name": "テックビジネスサービス 株式会社",
    "office_name_kana": "テツクビジネスサ-ビス カブシキガイシヤ"
  },
  "8609": {
    "postcode": "2618609",
    "prefecture": "千葉県",
    "prefecture_kana": "チバケン",
    "prefecture_code": 12,
    "city": "千葉市美浜区",
    "city_kana": "チバシミハマク",
    "town": "幸町",
    "town_kana": "サイワイチョウ",
    "street": "1丁目1番3号",
    "office_name": "千葉公共職業安定所",
    "office_name_kana": "チバコウキヨウシヨクギヨウアンテイシヨ"
  },
  "8686": {
    "postcode": "2618686",
    "prefecture": "千葉県",
    "prefecture_kana": "チバケン",
    "prefecture_code": 12,
    "city": "千葉市美浜区",
    "city_kana": "チバシミハマク",
    "town": "若葉",
    "town_kana": "ワカバ",
    "street": "2丁目11(美浜郵便局私書箱第5号)",
    "office_name": "放送大学",
    "office_name_kana": "ホウソウダイガク"
  },
  "8733": {
    "postcode": "2618733",
    "prefecture": "千葉県",
    "prefecture_kana": "チバケン",
    "prefecture_code": 12,
    "city": "千葉市美浜区",
    "city_kana": "チバシミハマク",
    "town": "真砂",
    "town_kana": "マサゴ",
    "street": "5丁目15番1号",
    "office_name": "美浜区役所",
    "office_name_kana": "ミハマクヤクシヨ"
  }
}