-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy path103.json
More file actions
3841 lines (3841 loc) · 133 KB
/
103.json
File metadata and controls
3841 lines (3841 loc) · 133 KB
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
{
"0000": {
"postcode": "1030000",
"prefecture": "東京都",
"prefecture_kana": "トウキョウト",
"prefecture_code": 13,
"city": "中央区",
"city_kana": "チュウオウク",
"town": "",
"town_kana": "",
"street": null,
"office_name": null,
"office_name_kana": null
},
"0001": {
"postcode": "1030001",
"prefecture": "東京都",
"prefecture_kana": "トウキョウト",
"prefecture_code": 13,
"city": "中央区",
"city_kana": "チュウオウク",
"town": "日本橋小伝馬町",
"town_kana": "ニホンバシコデンマチョウ",
"street": null,
"office_name": null,
"office_name_kana": null
},
"0002": {
"postcode": "1030002",
"prefecture": "東京都",
"prefecture_kana": "トウキョウト",
"prefecture_code": 13,
"city": "中央区",
"city_kana": "チュウオウク",
"town": "日本橋馬喰町",
"town_kana": "ニホンバシバクロチョウ",
"street": null,
"office_name": null,
"office_name_kana": null
},
"0003": {
"postcode": "1030003",
"prefecture": "東京都",
"prefecture_kana": "トウキョウト",
"prefecture_code": 13,
"city": "中央区",
"city_kana": "チュウオウク",
"town": "日本橋横山町",
"town_kana": "ニホンバシヨコヤマチョウ",
"street": null,
"office_name": null,
"office_name_kana": null
},
"0004": {
"postcode": "1030004",
"prefecture": "東京都",
"prefecture_kana": "トウキョウト",
"prefecture_code": 13,
"city": "中央区",
"city_kana": "チュウオウク",
"town": "東日本橋",
"town_kana": "ヒガシニホンバシ",
"street": null,
"office_name": null,
"office_name_kana": null
},
"0005": {
"postcode": "1030005",
"prefecture": "東京都",
"prefecture_kana": "トウキョウト",
"prefecture_code": 13,
"city": "中央区",
"city_kana": "チュウオウク",
"town": "日本橋久松町",
"town_kana": "ニホンバシヒサマツチョウ",
"street": null,
"office_name": null,
"office_name_kana": null
},
"0006": {
"postcode": "1030006",
"prefecture": "東京都",
"prefecture_kana": "トウキョウト",
"prefecture_code": 13,
"city": "中央区",
"city_kana": "チュウオウク",
"town": "日本橋富沢町",
"town_kana": "ニホンバシトミザワチョウ",
"street": null,
"office_name": null,
"office_name_kana": null
},
"0007": {
"postcode": "1030007",
"prefecture": "東京都",
"prefecture_kana": "トウキョウト",
"prefecture_code": 13,
"city": "中央区",
"city_kana": "チュウオウク",
"town": "日本橋浜町",
"town_kana": "ニホンバシハマチョウ",
"street": null,
"office_name": null,
"office_name_kana": null
},
"0008": {
"postcode": "1030008",
"prefecture": "東京都",
"prefecture_kana": "トウキョウト",
"prefecture_code": 13,
"city": "中央区",
"city_kana": "チュウオウク",
"town": "日本橋中洲",
"town_kana": "ニホンバシナカス",
"street": null,
"office_name": null,
"office_name_kana": null
},
"0011": {
"postcode": "1030011",
"prefecture": "東京都",
"prefecture_kana": "トウキョウト",
"prefecture_code": 13,
"city": "中央区",
"city_kana": "チュウオウク",
"town": "日本橋大伝馬町",
"town_kana": "ニホンバシオオデンマチョウ",
"street": null,
"office_name": null,
"office_name_kana": null
},
"0012": {
"postcode": "1030012",
"prefecture": "東京都",
"prefecture_kana": "トウキョウト",
"prefecture_code": 13,
"city": "中央区",
"city_kana": "チュウオウク",
"town": "日本橋堀留町",
"town_kana": "ニホンバシホリドメチョウ",
"street": null,
"office_name": null,
"office_name_kana": null
},
"0013": {
"postcode": "1030013",
"prefecture": "東京都",
"prefecture_kana": "トウキョウト",
"prefecture_code": 13,
"city": "中央区",
"city_kana": "チュウオウク",
"town": "日本橋人形町",
"town_kana": "ニホンバシニンギョウチョウ",
"street": null,
"office_name": null,
"office_name_kana": null
},
"0014": {
"postcode": "1030014",
"prefecture": "東京都",
"prefecture_kana": "トウキョウト",
"prefecture_code": 13,
"city": "中央区",
"city_kana": "チュウオウク",
"town": "日本橋蛎殻町",
"town_kana": "ニホンバシカキガラチョウ",
"street": null,
"office_name": null,
"office_name_kana": null
},
"0015": {
"postcode": "1030015",
"prefecture": "東京都",
"prefecture_kana": "トウキョウト",
"prefecture_code": 13,
"city": "中央区",
"city_kana": "チュウオウク",
"town": "日本橋箱崎町",
"town_kana": "ニホンバシハコザキチョウ",
"street": null,
"office_name": null,
"office_name_kana": null
},
"0016": {
"postcode": "1030016",
"prefecture": "東京都",
"prefecture_kana": "トウキョウト",
"prefecture_code": 13,
"city": "中央区",
"city_kana": "チュウオウク",
"town": "日本橋小網町",
"town_kana": "ニホンバシコアミチョウ",
"street": null,
"office_name": null,
"office_name_kana": null
},
"0021": {
"postcode": "1030021",
"prefecture": "東京都",
"prefecture_kana": "トウキョウト",
"prefecture_code": 13,
"city": "中央区",
"city_kana": "チュウオウク",
"town": "日本橋本石町",
"town_kana": "ニホンバシホンゴクチョウ",
"street": null,
"office_name": null,
"office_name_kana": null
},
"0022": {
"postcode": "1030022",
"prefecture": "東京都",
"prefecture_kana": "トウキョウト",
"prefecture_code": 13,
"city": "中央区",
"city_kana": "チュウオウク",
"town": "日本橋室町",
"town_kana": "ニホンバシムロマチ",
"street": null,
"office_name": null,
"office_name_kana": null
},
"0023": {
"postcode": "1030023",
"prefecture": "東京都",
"prefecture_kana": "トウキョウト",
"prefecture_code": 13,
"city": "中央区",
"city_kana": "チュウオウク",
"town": "日本橋本町",
"town_kana": "ニホンバシホンチョウ",
"street": null,
"office_name": null,
"office_name_kana": null
},
"0024": {
"postcode": "1030024",
"prefecture": "東京都",
"prefecture_kana": "トウキョウト",
"prefecture_code": 13,
"city": "中央区",
"city_kana": "チュウオウク",
"town": "日本橋小舟町",
"town_kana": "ニホンバシコブナチョウ",
"street": null,
"office_name": null,
"office_name_kana": null
},
"0025": {
"postcode": "1030025",
"prefecture": "東京都",
"prefecture_kana": "トウキョウト",
"prefecture_code": 13,
"city": "中央区",
"city_kana": "チュウオウク",
"town": "日本橋茅場町",
"town_kana": "ニホンバシカヤバチョウ",
"street": null,
"office_name": null,
"office_name_kana": null
},
"0026": {
"postcode": "1030026",
"prefecture": "東京都",
"prefecture_kana": "トウキョウト",
"prefecture_code": 13,
"city": "中央区",
"city_kana": "チュウオウク",
"town": "日本橋兜町",
"town_kana": "ニホンバシカブトチョウ",
"street": null,
"office_name": null,
"office_name_kana": null
},
"0027": {
"postcode": "1030027",
"prefecture": "東京都",
"prefecture_kana": "トウキョウト",
"prefecture_code": 13,
"city": "中央区",
"city_kana": "チュウオウク",
"town": "日本橋",
"town_kana": "ニホンバシ",
"street": null,
"office_name": null,
"office_name_kana": null
},
"0028": {
"postcode": "1030028",
"prefecture": "東京都",
"prefecture_kana": "トウキョウト",
"prefecture_code": 13,
"city": "中央区",
"city_kana": "チュウオウク",
"town": "八重洲",
"town_kana": "ヤエス",
"street": null,
"office_name": null,
"office_name_kana": null
},
"6001": {
"postcode": "1036001",
"prefecture": "東京都",
"prefecture_kana": "トウキョウト",
"prefecture_code": 13,
"city": "中央区",
"city_kana": "チュウオウク",
"town": "日本橋東京日本橋タワー 1階",
"town_kana": "ニホンバシトウキョウニホンバシタワー1カイ",
"street": null,
"office_name": null,
"office_name_kana": null
},
"6002": {
"postcode": "1036002",
"prefecture": "東京都",
"prefecture_kana": "トウキョウト",
"prefecture_code": 13,
"city": "中央区",
"city_kana": "チュウオウク",
"town": "日本橋東京日本橋タワー 2階",
"town_kana": "ニホンバシトウキョウニホンバシタワー2カイ",
"street": null,
"office_name": null,
"office_name_kana": null
},
"6003": {
"postcode": "1036003",
"prefecture": "東京都",
"prefecture_kana": "トウキョウト",
"prefecture_code": 13,
"city": "中央区",
"city_kana": "チュウオウク",
"town": "日本橋東京日本橋タワー 3階",
"town_kana": "ニホンバシトウキョウニホンバシタワー3カイ",
"street": null,
"office_name": null,
"office_name_kana": null
},
"6004": {
"postcode": "1036004",
"prefecture": "東京都",
"prefecture_kana": "トウキョウト",
"prefecture_code": 13,
"city": "中央区",
"city_kana": "チュウオウク",
"town": "日本橋東京日本橋タワー 4階",
"town_kana": "ニホンバシトウキョウニホンバシタワー4カイ",
"street": null,
"office_name": null,
"office_name_kana": null
},
"6005": {
"postcode": "1036005",
"prefecture": "東京都",
"prefecture_kana": "トウキョウト",
"prefecture_code": 13,
"city": "中央区",
"city_kana": "チュウオウク",
"town": "日本橋東京日本橋タワー 5階",
"town_kana": "ニホンバシトウキョウニホンバシタワー5カイ",
"street": null,
"office_name": null,
"office_name_kana": null
},
"6006": {
"postcode": "1036006",
"prefecture": "東京都",
"prefecture_kana": "トウキョウト",
"prefecture_code": 13,
"city": "中央区",
"city_kana": "チュウオウク",
"town": "日本橋東京日本橋タワー 6階",
"town_kana": "ニホンバシトウキョウニホンバシタワー6カイ",
"street": null,
"office_name": null,
"office_name_kana": null
},
"6007": {
"postcode": "1036007",
"prefecture": "東京都",
"prefecture_kana": "トウキョウト",
"prefecture_code": 13,
"city": "中央区",
"city_kana": "チュウオウク",
"town": "日本橋東京日本橋タワー 7階",
"town_kana": "ニホンバシトウキョウニホンバシタワー7カイ",
"street": null,
"office_name": null,
"office_name_kana": null
},
"6008": {
"postcode": "1036008",
"prefecture": "東京都",
"prefecture_kana": "トウキョウト",
"prefecture_code": 13,
"city": "中央区",
"city_kana": "チュウオウク",
"town": "日本橋東京日本橋タワー 8階",
"town_kana": "ニホンバシトウキョウニホンバシタワー8カイ",
"street": null,
"office_name": null,
"office_name_kana": null
},
"6009": {
"postcode": "1036009",
"prefecture": "東京都",
"prefecture_kana": "トウキョウト",
"prefecture_code": 13,
"city": "中央区",
"city_kana": "チュウオウク",
"town": "日本橋東京日本橋タワー 9階",
"town_kana": "ニホンバシトウキョウニホンバシタワー9カイ",
"street": null,
"office_name": null,
"office_name_kana": null
},
"6010": {
"postcode": "1036010",
"prefecture": "東京都",
"prefecture_kana": "トウキョウト",
"prefecture_code": 13,
"city": "中央区",
"city_kana": "チュウオウク",
"town": "日本橋東京日本橋タワー 10階",
"town_kana": "ニホンバシトウキョウニホンバシタワー10カイ",
"street": null,
"office_name": null,
"office_name_kana": null
},
"6011": {
"postcode": "1036011",
"prefecture": "東京都",
"prefecture_kana": "トウキョウト",
"prefecture_code": 13,
"city": "中央区",
"city_kana": "チュウオウク",
"town": "日本橋東京日本橋タワー 11階",
"town_kana": "ニホンバシトウキョウニホンバシタワー11カイ",
"street": null,
"office_name": null,
"office_name_kana": null
},
"6012": {
"postcode": "1036012",
"prefecture": "東京都",
"prefecture_kana": "トウキョウト",
"prefecture_code": 13,
"city": "中央区",
"city_kana": "チュウオウク",
"town": "日本橋東京日本橋タワー 12階",
"town_kana": "ニホンバシトウキョウニホンバシタワー12カイ",
"street": null,
"office_name": null,
"office_name_kana": null
},
"6013": {
"postcode": "1036013",
"prefecture": "東京都",
"prefecture_kana": "トウキョウト",
"prefecture_code": 13,
"city": "中央区",
"city_kana": "チュウオウク",
"town": "日本橋東京日本橋タワー 13階",
"town_kana": "ニホンバシトウキョウニホンバシタワー13カイ",
"street": null,
"office_name": null,
"office_name_kana": null
},
"6014": {
"postcode": "1036014",
"prefecture": "東京都",
"prefecture_kana": "トウキョウト",
"prefecture_code": 13,
"city": "中央区",
"city_kana": "チュウオウク",
"town": "日本橋東京日本橋タワー 14階",
"town_kana": "ニホンバシトウキョウニホンバシタワー14カイ",
"street": null,
"office_name": null,
"office_name_kana": null
},
"6015": {
"postcode": "1036015",
"prefecture": "東京都",
"prefecture_kana": "トウキョウト",
"prefecture_code": 13,
"city": "中央区",
"city_kana": "チュウオウク",
"town": "日本橋東京日本橋タワー 15階",
"town_kana": "ニホンバシトウキョウニホンバシタワー15カイ",
"street": null,
"office_name": null,
"office_name_kana": null
},
"6016": {
"postcode": "1036016",
"prefecture": "東京都",
"prefecture_kana": "トウキョウト",
"prefecture_code": 13,
"city": "中央区",
"city_kana": "チュウオウク",
"town": "日本橋東京日本橋タワー 16階",
"town_kana": "ニホンバシトウキョウニホンバシタワー16カイ",
"street": null,
"office_name": null,
"office_name_kana": null
},
"6017": {
"postcode": "1036017",
"prefecture": "東京都",
"prefecture_kana": "トウキョウト",
"prefecture_code": 13,
"city": "中央区",
"city_kana": "チュウオウク",
"town": "日本橋東京日本橋タワー 17階",
"town_kana": "ニホンバシトウキョウニホンバシタワー17カイ",
"street": null,
"office_name": null,
"office_name_kana": null
},
"6018": {
"postcode": "1036018",
"prefecture": "東京都",
"prefecture_kana": "トウキョウト",
"prefecture_code": 13,
"city": "中央区",
"city_kana": "チュウオウク",
"town": "日本橋東京日本橋タワー 18階",
"town_kana": "ニホンバシトウキョウニホンバシタワー18カイ",
"street": null,
"office_name": null,
"office_name_kana": null
},
"6019": {
"postcode": "1036019",
"prefecture": "東京都",
"prefecture_kana": "トウキョウト",
"prefecture_code": 13,
"city": "中央区",
"city_kana": "チュウオウク",
"town": "日本橋東京日本橋タワー 19階",
"town_kana": "ニホンバシトウキョウニホンバシタワー19カイ",
"street": null,
"office_name": null,
"office_name_kana": null
},
"6020": {
"postcode": "1036020",
"prefecture": "東京都",
"prefecture_kana": "トウキョウト",
"prefecture_code": 13,
"city": "中央区",
"city_kana": "チュウオウク",
"town": "日本橋東京日本橋タワー 20階",
"town_kana": "ニホンバシトウキョウニホンバシタワー20カイ",
"street": null,
"office_name": null,
"office_name_kana": null
},
"6021": {
"postcode": "1036021",
"prefecture": "東京都",
"prefecture_kana": "トウキョウト",
"prefecture_code": 13,
"city": "中央区",
"city_kana": "チュウオウク",
"town": "日本橋東京日本橋タワー 21階",
"town_kana": "ニホンバシトウキョウニホンバシタワー21カイ",
"street": null,
"office_name": null,
"office_name_kana": null
},
"6022": {
"postcode": "1036022",
"prefecture": "東京都",
"prefecture_kana": "トウキョウト",
"prefecture_code": 13,
"city": "中央区",
"city_kana": "チュウオウク",
"town": "日本橋東京日本橋タワー 22階",
"town_kana": "ニホンバシトウキョウニホンバシタワー22カイ",
"street": null,
"office_name": null,
"office_name_kana": null
},
"6023": {
"postcode": "1036023",
"prefecture": "東京都",
"prefecture_kana": "トウキョウト",
"prefecture_code": 13,
"city": "中央区",
"city_kana": "チュウオウク",
"town": "日本橋東京日本橋タワー 23階",
"town_kana": "ニホンバシトウキョウニホンバシタワー23カイ",
"street": null,
"office_name": null,
"office_name_kana": null
},
"6024": {
"postcode": "1036024",
"prefecture": "東京都",
"prefecture_kana": "トウキョウト",
"prefecture_code": 13,
"city": "中央区",
"city_kana": "チュウオウク",
"town": "日本橋東京日本橋タワー 24階",
"town_kana": "ニホンバシトウキョウニホンバシタワー24カイ",
"street": null,
"office_name": null,
"office_name_kana": null
},
"6025": {
"postcode": "1036025",
"prefecture": "東京都",
"prefecture_kana": "トウキョウト",
"prefecture_code": 13,
"city": "中央区",
"city_kana": "チュウオウク",
"town": "日本橋東京日本橋タワー 25階",
"town_kana": "ニホンバシトウキョウニホンバシタワー25カイ",
"street": null,
"office_name": null,
"office_name_kana": null
},
"6026": {
"postcode": "1036026",
"prefecture": "東京都",
"prefecture_kana": "トウキョウト",
"prefecture_code": 13,
"city": "中央区",
"city_kana": "チュウオウク",
"town": "日本橋東京日本橋タワー 26階",
"town_kana": "ニホンバシトウキョウニホンバシタワー26カイ",
"street": null,
"office_name": null,
"office_name_kana": null
},
"6027": {
"postcode": "1036027",
"prefecture": "東京都",
"prefecture_kana": "トウキョウト",
"prefecture_code": 13,
"city": "中央区",
"city_kana": "チュウオウク",
"town": "日本橋東京日本橋タワー 27階",
"town_kana": "ニホンバシトウキョウニホンバシタワー27カイ",
"street": null,
"office_name": null,
"office_name_kana": null
},
"6028": {
"postcode": "1036028",
"prefecture": "東京都",
"prefecture_kana": "トウキョウト",
"prefecture_code": 13,
"city": "中央区",
"city_kana": "チュウオウク",
"town": "日本橋東京日本橋タワー 28階",
"town_kana": "ニホンバシトウキョウニホンバシタワー28カイ",
"street": null,
"office_name": null,
"office_name_kana": null
},
"6029": {
"postcode": "1036029",
"prefecture": "東京都",
"prefecture_kana": "トウキョウト",
"prefecture_code": 13,
"city": "中央区",
"city_kana": "チュウオウク",
"town": "日本橋東京日本橋タワー 29階",
"town_kana": "ニホンバシトウキョウニホンバシタワー29カイ",
"street": null,
"office_name": null,
"office_name_kana": null
},
"6030": {
"postcode": "1036030",
"prefecture": "東京都",
"prefecture_kana": "トウキョウト",
"prefecture_code": 13,
"city": "中央区",
"city_kana": "チュウオウク",
"town": "日本橋東京日本橋タワー 30階",
"town_kana": "ニホンバシトウキョウニホンバシタワー30カイ",
"street": null,
"office_name": null,
"office_name_kana": null
},
"6031": {
"postcode": "1036031",
"prefecture": "東京都",
"prefecture_kana": "トウキョウト",
"prefecture_code": 13,
"city": "中央区",
"city_kana": "チュウオウク",
"town": "日本橋東京日本橋タワー 31階",
"town_kana": "ニホンバシトウキョウニホンバシタワー31カイ",
"street": null,
"office_name": null,
"office_name_kana": null
},
"6032": {
"postcode": "1036032",
"prefecture": "東京都",
"prefecture_kana": "トウキョウト",
"prefecture_code": 13,
"city": "中央区",
"city_kana": "チュウオウク",
"town": "日本橋東京日本橋タワー 32階",
"town_kana": "ニホンバシトウキョウニホンバシタワー32カイ",
"street": null,
"office_name": null,
"office_name_kana": null
},
"6033": {
"postcode": "1036033",
"prefecture": "東京都",
"prefecture_kana": "トウキョウト",
"prefecture_code": 13,
"city": "中央区",
"city_kana": "チュウオウク",
"town": "日本橋東京日本橋タワー 33階",
"town_kana": "ニホンバシトウキョウニホンバシタワー33カイ",
"street": null,
"office_name": null,
"office_name_kana": null
},
"6034": {
"postcode": "1036034",
"prefecture": "東京都",
"prefecture_kana": "トウキョウト",
"prefecture_code": 13,
"city": "中央区",
"city_kana": "チュウオウク",
"town": "日本橋東京日本橋タワー 34階",
"town_kana": "ニホンバシトウキョウニホンバシタワー34カイ",
"street": null,
"office_name": null,
"office_name_kana": null
},
"6035": {
"postcode": "1036035",
"prefecture": "東京都",
"prefecture_kana": "トウキョウト",
"prefecture_code": 13,
"city": "中央区",
"city_kana": "チュウオウク",
"town": "日本橋東京日本橋タワー 35階",
"town_kana": "ニホンバシトウキョウニホンバシタワー35カイ",
"street": null,
"office_name": null,
"office_name_kana": null
},
"6090": {
"postcode": "1036090",
"prefecture": "東京都",
"prefecture_kana": "トウキョウト",
"prefecture_code": 13,
"city": "中央区",
"city_kana": "チュウオウク",
"town": "日本橋東京日本橋タワー",
"town_kana": "ニホンバシトウキョウニホンバシタワー",
"street": null,
"office_name": null,
"office_name_kana": null
},
"6101": {
"postcode": "1036101",
"prefecture": "東京都",
"prefecture_kana": "トウキョウト",
"prefecture_code": 13,
"city": "中央区",
"city_kana": "チュウオウク",
"town": "日本橋日本橋高島屋三井ビルディング 1階",
"town_kana": "ニホンバシニホンバシタカシマヤミツイビルディング1カイ",
"street": null,
"office_name": null,
"office_name_kana": null
},
"6102": {
"postcode": "1036102",
"prefecture": "東京都",
"prefecture_kana": "トウキョウト",
"prefecture_code": 13,
"city": "中央区",
"city_kana": "チュウオウク",
"town": "日本橋日本橋高島屋三井ビルディング 2階",
"town_kana": "ニホンバシニホンバシタカシマヤミツイビルディング2カイ",
"street": null,
"office_name": null,
"office_name_kana": null
},
"6103": {
"postcode": "1036103",
"prefecture": "東京都",
"prefecture_kana": "トウキョウト",
"prefecture_code": 13,
"city": "中央区",
"city_kana": "チュウオウク",
"town": "日本橋日本橋高島屋三井ビルディング 3階",
"town_kana": "ニホンバシニホンバシタカシマヤミツイビルディング3カイ",
"street": null,
"office_name": null,
"office_name_kana": null
},
"6104": {
"postcode": "1036104",
"prefecture": "東京都",
"prefecture_kana": "トウキョウト",
"prefecture_code": 13,
"city": "中央区",
"city_kana": "チュウオウク",
"town": "日本橋日本橋高島屋三井ビルディング 4階",
"town_kana": "ニホンバシニホンバシタカシマヤミツイビルディング4カイ",
"street": null,
"office_name": null,
"office_name_kana": null
},
"6105": {
"postcode": "1036105",
"prefecture": "東京都",
"prefecture_kana": "トウキョウト",
"prefecture_code": 13,
"city": "中央区",
"city_kana": "チュウオウク",
"town": "日本橋日本橋高島屋三井ビルディング 5階",
"town_kana": "ニホンバシニホンバシタカシマヤミツイビルディング5カイ",
"street": null,
"office_name": null,
"office_name_kana": null
},
"6106": {
"postcode": "1036106",
"prefecture": "東京都",
"prefecture_kana": "トウキョウト",
"prefecture_code": 13,
"city": "中央区",
"city_kana": "チュウオウク",
"town": "日本橋日本橋高島屋三井ビルディング 6階",
"town_kana": "ニホンバシニホンバシタカシマヤミツイビルディング6カイ",
"street": null,
"office_name": null,
"office_name_kana": null
},
"6107": {
"postcode": "1036107",
"prefecture": "東京都",
"prefecture_kana": "トウキョウト",
"prefecture_code": 13,
"city": "中央区",
"city_kana": "チュウオウク",
"town": "日本橋日本橋高島屋三井ビルディング 7階",
"town_kana": "ニホンバシニホンバシタカシマヤミツイビルディング7カイ",
"street": null,
"office_name": null,
"office_name_kana": null
},
"6108": {
"postcode": "1036108",
"prefecture": "東京都",
"prefecture_kana": "トウキョウト",
"prefecture_code": 13,
"city": "中央区",
"city_kana": "チュウオウク",
"town": "日本橋日本橋高島屋三井ビルディング 8階",
"town_kana": "ニホンバシニホンバシタカシマヤミツイビルディング8カイ",
"street": null,
"office_name": null,
"office_name_kana": null
},
"6109": {
"postcode": "1036109",
"prefecture": "東京都",
"prefecture_kana": "トウキョウト",
"prefecture_code": 13,
"city": "中央区",
"city_kana": "チュウオウク",
"town": "日本橋日本橋高島屋三井ビルディング 9階",
"town_kana": "ニホンバシニホンバシタカシマヤミツイビルディング9カイ",
"street": null,
"office_name": null,
"office_name_kana": null
},
"6110": {
"postcode": "1036110",
"prefecture": "東京都",
"prefecture_kana": "トウキョウト",
"prefecture_code": 13,
"city": "中央区",
"city_kana": "チュウオウク",
"town": "日本橋日本橋高島屋三井ビルディング 10階",
"town_kana": "ニホンバシニホンバシタカシマヤミツイビルディング10カイ",
"street": null,
"office_name": null,
"office_name_kana": null
},
"6111": {
"postcode": "1036111",
"prefecture": "東京都",
"prefecture_kana": "トウキョウト",
"prefecture_code": 13,
"city": "中央区",
"city_kana": "チュウオウク",
"town": "日本橋日本橋高島屋三井ビルディング 11階",
"town_kana": "ニホンバシニホンバシタカシマヤミツイビルディング11カイ",
"street": null,
"office_name": null,
"office_name_kana": null
},
"6112": {
"postcode": "1036112",
"prefecture": "東京都",
"prefecture_kana": "トウキョウト",
"prefecture_code": 13,
"city": "中央区",
"city_kana": "チュウオウク",
"town": "日本橋日本橋高島屋三井ビルディング 12階",
"town_kana": "ニホンバシニホンバシタカシマヤミツイビルディング12カイ",
"street": null,
"office_name": null,
"office_name_kana": null
},
"6113": {
"postcode": "1036113",
"prefecture": "東京都",
"prefecture_kana": "トウキョウト",
"prefecture_code": 13,
"city": "中央区",
"city_kana": "チュウオウク",
"town": "日本橋日本橋高島屋三井ビルディング 13階",
"town_kana": "ニホンバシニホンバシタカシマヤミツイビルディング13カイ",
"street": null,
"office_name": null,
"office_name_kana": null
},
"6114": {
"postcode": "1036114",
"prefecture": "東京都",
"prefecture_kana": "トウキョウト",
"prefecture_code": 13,
"city": "中央区",
"city_kana": "チュウオウク",
"town": "日本橋日本橋高島屋三井ビルディング 14階",
"town_kana": "ニホンバシニホンバシタカシマヤミツイビルディング14カイ",
"street": null,
"office_name": null,
"office_name_kana": null
},
"6115": {
"postcode": "1036115",
"prefecture": "東京都",
"prefecture_kana": "トウキョウト",
"prefecture_code": 13,
"city": "中央区",
"city_kana": "チュウオウク",
"town": "日本橋日本橋高島屋三井ビルディング 15階",
"town_kana": "ニホンバシニホンバシタカシマヤミツイビルディング15カイ",
"street": null,
"office_name": null,
"office_name_kana": null
},
"6116": {
"postcode": "1036116",
"prefecture": "東京都",
"prefecture_kana": "トウキョウト",
"prefecture_code": 13,
"city": "中央区",
"city_kana": "チュウオウク",
"town": "日本橋日本橋高島屋三井ビルディング 16階",
"town_kana": "ニホンバシニホンバシタカシマヤミツイビルディング16カイ",
"street": null,
"office_name": null,
"office_name_kana": null
},
"6117": {
"postcode": "1036117",
"prefecture": "東京都",
"prefecture_kana": "トウキョウト",
"prefecture_code": 13,
"city": "中央区",
"city_kana": "チュウオウク",
"town": "日本橋日本橋高島屋三井ビルディング 17階",
"town_kana": "ニホンバシニホンバシタカシマヤミツイビルディング17カイ",
"street": null,
"office_name": null,
"office_name_kana": null
},
"6118": {
"postcode": "1036118",
"prefecture": "東京都",
"prefecture_kana": "トウキョウト",
"prefecture_code": 13,
"city": "中央区",
"city_kana": "チュウオウク",
"town": "日本橋日本橋高島屋三井ビルディング 18階",
"town_kana": "ニホンバシニホンバシタカシマヤミツイビルディング18カイ",
"street": null,
"office_name": null,