This repository has been archived by the owner on Mar 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
areas.json
17578 lines (17578 loc) · 289 KB
/
areas.json
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
{
"province": [
{
"id": "110000",
"text": "北京市",
"short": "BJS"
},
{
"id": "120000",
"text": "天津市",
"short": "TJS"
},
{
"id": "130000",
"text": "河北省",
"short": "HBS"
},
{
"id": "140000",
"text": "山西省",
"short": "SXS"
},
{
"id": "150000",
"text": "内蒙古自治区",
"short": "NMGZZQ"
},
{
"id": "210000",
"text": "辽宁省",
"short": "LNS"
},
{
"id": "220000",
"text": "吉林省",
"short": "JLS"
},
{
"id": "230000",
"text": "黑龙江省",
"short": "HLJS"
},
{
"id": "310000",
"text": "上海市",
"short": "SHS"
},
{
"id": "320000",
"text": "江苏省",
"short": "JSS"
},
{
"id": "330000",
"text": "浙江省",
"short": "ZJS"
},
{
"id": "340000",
"text": "安徽省",
"short": "AHS"
},
{
"id": "350000",
"text": "福建省",
"short": "FJS"
},
{
"id": "360000",
"text": "江西省",
"short": "JXS"
},
{
"id": "370000",
"text": "山东省",
"short": "SDS"
},
{
"id": "410000",
"text": "河南省",
"short": "HNS"
},
{
"id": "420000",
"text": "湖北省",
"short": "HBS"
},
{
"id": "430000",
"text": "湖南省",
"short": "HNS"
},
{
"id": "440000",
"text": "广东省",
"short": "GDS"
},
{
"id": "450000",
"text": "广西壮族自治区",
"short": "GXZZZZQ"
},
{
"id": "460000",
"text": "海南省",
"short": "HNS"
},
{
"id": "500000",
"text": "重庆市",
"short": "ZQS"
},
{
"id": "510000",
"text": "四川省",
"short": "SCS"
},
{
"id": "520000",
"text": "贵州省",
"short": "GZS"
},
{
"id": "530000",
"text": "云南省",
"short": "YNS"
},
{
"id": "540000",
"text": "西藏自治区",
"short": "XCZZQ"
},
{
"id": "610000",
"text": "陕西省",
"short": "SXS"
},
{
"id": "620000",
"text": "甘肃省",
"short": "GSS"
},
{
"id": "630000",
"text": "青海省",
"short": "QHS"
},
{
"id": "640000",
"text": "宁夏回族自治区",
"short": "NXHZZZQ"
},
{
"id": "650000",
"text": "新疆维吾尔自治区",
"short": "XJWWEZZQ"
},
{
"id": "710000",
"text": "台湾省",
"short": "TWS"
},
{
"id": "810000",
"text": "香港特别行政区",
"short": "XGTBXZQ"
},
{
"id": "820000",
"text": "澳门特别行政区",
"short": "AMTBXZQ"
}
],
"city": [
{
"id": "110100",
"text": "市辖区",
"short": "SXQ"
},
{
"id": "110200",
"text": "县",
"short": "X"
},
{
"id": "120100",
"text": "市辖区",
"short": "SXQ"
},
{
"id": "120200",
"text": "县",
"short": "X"
},
{
"id": "130100",
"text": "石家庄市",
"short": "SJZS"
},
{
"id": "130200",
"text": "唐山市",
"short": "TSS"
},
{
"id": "130300",
"text": "秦皇岛市",
"short": "QHDS"
},
{
"id": "130400",
"text": "邯郸市",
"short": "HDS"
},
{
"id": "130500",
"text": "邢台市",
"short": "XTS"
},
{
"id": "130600",
"text": "保定市",
"short": "BDS"
},
{
"id": "130700",
"text": "张家口市",
"short": "ZJKS"
},
{
"id": "130800",
"text": "承德市",
"short": "CDS"
},
{
"id": "130900",
"text": "沧州市",
"short": "CZS"
},
{
"id": "131000",
"text": "廊坊市",
"short": "LFS"
},
{
"id": "131100",
"text": "衡水市",
"short": "HSS"
},
{
"id": "139000",
"text": "省直辖县级行政区划",
"short": "SZXXJXZQH"
},
{
"id": "140100",
"text": "太原市",
"short": "TYS"
},
{
"id": "140200",
"text": "大同市",
"short": "DTS"
},
{
"id": "140300",
"text": "阳泉市",
"short": "YQS"
},
{
"id": "140400",
"text": "长治市",
"short": "CZS"
},
{
"id": "140500",
"text": "晋城市",
"short": "JCS"
},
{
"id": "140600",
"text": "朔州市",
"short": "SZS"
},
{
"id": "140700",
"text": "晋中市",
"short": "JZS"
},
{
"id": "140800",
"text": "运城市",
"short": "YCS"
},
{
"id": "140900",
"text": "忻州市",
"short": "XZS"
},
{
"id": "141000",
"text": "临汾市",
"short": "LFS"
},
{
"id": "141100",
"text": "吕梁市",
"short": "LLS"
},
{
"id": "150100",
"text": "呼和浩特市",
"short": "HHHTS"
},
{
"id": "150200",
"text": "包头市",
"short": "BTS"
},
{
"id": "150300",
"text": "乌海市",
"short": "WHS"
},
{
"id": "150400",
"text": "赤峰市",
"short": "CFS"
},
{
"id": "150500",
"text": "通辽市",
"short": "TLS"
},
{
"id": "150600",
"text": "鄂尔多斯市",
"short": "EEDSS"
},
{
"id": "150700",
"text": "呼伦贝尔市",
"short": "HLBES"
},
{
"id": "150800",
"text": "巴彦淖尔市",
"short": "BYNES"
},
{
"id": "150900",
"text": "乌兰察布市",
"short": "WLCBS"
},
{
"id": "152200",
"text": "兴安盟",
"short": "XAM"
},
{
"id": "152500",
"text": "锡林郭勒盟",
"short": "XLGLM"
},
{
"id": "152900",
"text": "阿拉善盟",
"short": "ALSM"
},
{
"id": "210100",
"text": "沈阳市",
"short": "SYS"
},
{
"id": "210200",
"text": "大连市",
"short": "DLS"
},
{
"id": "210300",
"text": "鞍山市",
"short": "ASS"
},
{
"id": "210400",
"text": "抚顺市",
"short": "FSS"
},
{
"id": "210500",
"text": "本溪市",
"short": "BXS"
},
{
"id": "210600",
"text": "丹东市",
"short": "DDS"
},
{
"id": "210700",
"text": "锦州市",
"short": "JZS"
},
{
"id": "210800",
"text": "营口市",
"short": "YKS"
},
{
"id": "210900",
"text": "阜新市",
"short": "FXS"
},
{
"id": "211000",
"text": "辽阳市",
"short": "LYS"
},
{
"id": "211100",
"text": "盘锦市",
"short": "PJS"
},
{
"id": "211200",
"text": "铁岭市",
"short": "TLS"
},
{
"id": "211300",
"text": "朝阳市",
"short": "ZYS"
},
{
"id": "211400",
"text": "葫芦岛市",
"short": "HLDS"
},
{
"id": "220100",
"text": "长春市",
"short": "CCS"
},
{
"id": "220200",
"text": "吉林市",
"short": "JLS"
},
{
"id": "220300",
"text": "四平市",
"short": "SPS"
},
{
"id": "220400",
"text": "辽源市",
"short": "LYS"
},
{
"id": "220500",
"text": "通化市",
"short": "THS"
},
{
"id": "220600",
"text": "白山市",
"short": "BSS"
},
{
"id": "220700",
"text": "松原市",
"short": "SYS"
},
{
"id": "220800",
"text": "白城市",
"short": "BCS"
},
{
"id": "222400",
"text": "延边朝鲜族自治州",
"short": "YBZXZZZZ"
},
{
"id": "230100",
"text": "哈尔滨市",
"short": "HEBS"
},
{
"id": "230200",
"text": "齐齐哈尔市",
"short": "QQHES"
},
{
"id": "230300",
"text": "鸡西市",
"short": "JXS"
},
{
"id": "230400",
"text": "鹤岗市",
"short": "HGS"
},
{
"id": "230500",
"text": "双鸭山市",
"short": "SYSS"
},
{
"id": "230600",
"text": "大庆市",
"short": "DQS"
},
{
"id": "230700",
"text": "伊春市",
"short": "YCS"
},
{
"id": "230800",
"text": "佳木斯市",
"short": "JMSS"
},
{
"id": "230900",
"text": "七台河市",
"short": "QTHS"
},
{
"id": "231000",
"text": "牡丹江市",
"short": "MDJS"
},
{
"id": "231100",
"text": "黑河市",
"short": "HHS"
},
{
"id": "231200",
"text": "绥化市",
"short": "SHS"
},
{
"id": "232700",
"text": "大兴安岭地区",
"short": "DXALDQ"
},
{
"id": "310100",
"text": "市辖区",
"short": "SXQ"
},
{
"id": "310200",
"text": "县",
"short": "X"
},
{
"id": "320100",
"text": "南京市",
"short": "NJS"
},
{
"id": "320200",
"text": "无锡市",
"short": "WXS"
},
{
"id": "320300",
"text": "徐州市",
"short": "XZS"
},
{
"id": "320400",
"text": "常州市",
"short": "CZS"
},
{
"id": "320500",
"text": "苏州市",
"short": "SZS"
},
{
"id": "320600",
"text": "南通市",
"short": "NTS"
},
{
"id": "320700",
"text": "连云港市",
"short": "LYGS"
},
{
"id": "320800",
"text": "淮安市",
"short": "HAS"
},
{
"id": "320900",
"text": "盐城市",
"short": "YCS"
},
{
"id": "321000",
"text": "扬州市",
"short": "YZS"
},
{
"id": "321100",
"text": "镇江市",
"short": "ZJS"
},
{
"id": "321200",
"text": "泰州市",
"short": "TZS"
},
{
"id": "321300",
"text": "宿迁市",
"short": "SQS"
},
{
"id": "330100",
"text": "杭州市",
"short": "HZS"
},
{
"id": "330200",
"text": "宁波市",
"short": "NBS"
},
{
"id": "330300",
"text": "温州市",
"short": "WZS"
},
{
"id": "330400",
"text": "嘉兴市",
"short": "JXS"
},
{
"id": "330500",
"text": "湖州市",
"short": "HZS"
},
{
"id": "330600",
"text": "绍兴市",
"short": "SXS"
},
{
"id": "330700",
"text": "金华市",
"short": "JHS"
},
{
"id": "330800",
"text": "衢州市",
"short": "QZS"
},
{
"id": "330900",
"text": "舟山市",
"short": "ZSS"
},
{
"id": "331000",
"text": "台州市",
"short": "TZS"
},
{
"id": "331100",
"text": "丽水市",
"short": "LSS"
},
{
"id": "340100",
"text": "合肥市",
"short": "HFS"
},
{
"id": "340200",
"text": "芜湖市",
"short": "WHS"
},
{
"id": "340300",
"text": "蚌埠市",
"short": "BBS"
},
{
"id": "340400",
"text": "淮南市",
"short": "HNS"
},
{
"id": "340500",
"text": "马鞍山市",
"short": "MASS"
},
{
"id": "340600",
"text": "淮北市",
"short": "HBS"
},
{
"id": "340700",
"text": "铜陵市",
"short": "TLS"
},
{
"id": "340800",
"text": "安庆市",
"short": "AQS"
},
{
"id": "341000",
"text": "黄山市",
"short": "HSS"
},
{
"id": "341100",
"text": "滁州市",
"short": "CZS"
},
{
"id": "341200",
"text": "阜阳市",
"short": "FYS"
},
{
"id": "341300",
"text": "宿州市",
"short": "SZS"
},
{
"id": "341500",
"text": "六安市",
"short": "LAS"
},
{
"id": "341600",
"text": "亳州市",
"short": "BZS"
},
{
"id": "341700",
"text": "池州市",
"short": "CZS"
},
{
"id": "341800",
"text": "宣城市",
"short": "XCS"
},
{
"id": "350100",
"text": "福州市",
"short": "FZS"
},
{
"id": "350200",
"text": "厦门市",
"short": "SMS"
},
{
"id": "350300",
"text": "莆田市",
"short": "FTS"
},
{
"id": "350400",
"text": "三明市",
"short": "SMS"
},
{
"id": "350500",
"text": "泉州市",
"short": "QZS"
},
{
"id": "350600",
"text": "漳州市",
"short": "ZZS"
},
{
"id": "350700",
"text": "南平市",
"short": "NPS"
},
{
"id": "350800",
"text": "龙岩市",
"short": "LYS"
},
{
"id": "350900",
"text": "宁德市",
"short": "NDS"
},
{
"id": "360100",
"text": "南昌市",
"short": "NCS"
},
{
"id": "360200",
"text": "景德镇市",
"short": "JDZS"
},
{
"id": "360300",
"text": "萍乡市",
"short": "PXS"
},
{
"id": "360400",
"text": "九江市",
"short": "JJS"
},
{
"id": "360500",
"text": "新余市",
"short": "XYS"
},
{
"id": "360600",
"text": "鹰潭市",
"short": "YTS"
},
{
"id": "360700",
"text": "赣州市",
"short": "GZS"
},
{
"id": "360800",
"text": "吉安市",
"short": "JAS"
},
{
"id": "360900",
"text": "宜春市",
"short": "YCS"
},
{
"id": "361000",
"text": "抚州市",
"short": "FZS"
},
{
"id": "361100",
"text": "上饶市",
"short": "SRS"
},
{
"id": "370100",
"text": "济南市",
"short": "JNS"
},
{
"id": "370200",
"text": "青岛市",
"short": "QDS"
},
{
"id": "370300",
"text": "淄博市",
"short": "ZBS"
},
{
"id": "370400",
"text": "枣庄市",
"short": "ZZS"
},
{
"id": "370500",
"text": "东营市",
"short": "DYS"
},
{
"id": "370600",
"text": "烟台市",
"short": "YTS"
},
{
"id": "370700",
"text": "潍坊市",
"short": "WFS"
},
{
"id": "370800",
"text": "济宁市",
"short": "JNS"
},
{
"id": "370900",
"text": "泰安市",
"short": "TAS"
},
{
"id": "371000",
"text": "威海市",
"short": "WHS"
},
{
"id": "371100",
"text": "日照市",
"short": "RZS"
},
{
"id": "371200",
"text": "莱芜市",
"short": "LWS"
},
{
"id": "371300",
"text": "临沂市",
"short": "LYS"
},
{
"id": "371400",
"text": "德州市",
"short": "DZS"
},
{
"id": "371500",
"text": "聊城市",
"short": "LCS"
},
{
"id": "371600",
"text": "滨州市",
"short": "BZS"
},
{
"id": "371700",
"text": "菏泽市",
"short": "HZS"
},
{
"id": "410100",
"text": "郑州市",
"short": "ZZS"
},
{
"id": "410200",
"text": "开封市",
"short": "KFS"
},
{
"id": "410300",
"text": "洛阳市",
"short": "LYS"
},
{
"id": "410400",
"text": "平顶山市",
"short": "PDSS"
},
{
"id": "410500",
"text": "安阳市",
"short": "AYS"
},
{
"id": "410600",
"text": "鹤壁市",
"short": "HBS"
},
{
"id": "410700",
"text": "新乡市",
"short": "XXS"
},
{
"id": "410800",
"text": "焦作市",
"short": "JZS"
},
{
"id": "410900",
"text": "濮阳市",
"short": "PYS"
},
{
"id": "411000",
"text": "许昌市",
"short": "XCS"
},
{
"id": "411100",
"text": "漯河市",
"short": "THS"
},
{