Showing preview only (606K chars total). Download the full file or copy to clipboard to get everything.
Repository: yuche/wechat-banks
Branch: master
Commit: 30862826129c
Files: 10
Total size: 17.4 MB
Directory structure:
gitextract_z1th4j80/
├── .gitignore
├── README.md
├── bankType.js
├── cities.js
├── data/
│ └── banks.json
├── index.js
├── package.json
├── provinces.js
└── src/
├── index.js
└── package.json
================================================
FILE CONTENTS
================================================
================================================
FILE: .gitignore
================================================
node_modules
.DS_Store
.vscode
================================================
FILE: README.md
================================================
# wechat-banks
从微信商户后台爬出来的全国各地银行数据,共计 101370 条。你可以 [点击这里](https://raw.githubusercontent.com/yuche/wechat-banks/master/data/banks.json) 下载。
## 使用方法
该 JSON 压缩后仍然有 17M 的大小,不推荐直接在客户端使用。你应该导入服务器数据库,让客户端通过 api 请求对应银行类型和地址的银行信息。
```javascript
// 分别得到适配微信商户银行数据的银行类型,省份,城市列表
import { bankTypes, cities, provinces } from 'wechat-banks'
```
## 数据结构
### 银行列表 data/banks.json
```javascript
{
"subBranchId": 116568,
"subBranchName": "中国邮政储蓄银行股份有限公司陕西省渭南市白水县东风路支行",
"provinceId": "27",
"code": "610500", // 行政区划代码
"name": "渭南", // 银行所在的地级行政单位名称
"cityId": "913",
"bankId": "1066"
}
...
```
### bankTypes
银行的类型
```javascript
{
"value": "1001", // 银行的 ID,对应银行列表的 bankId
"name": "招商银行", // 银行名称
"accNoParttern": [/^(\d{13}|\d{15,21})$/, /^(\d{10}|\d{12}|\d{15,16})$/] // 匹配正则
}
...
```
### provinces
中国省级行政区
```javascript
{
"name": "重庆市",
"value": "4", // 省份的 ID,对应银行列表的 provinceId
"children": [
{"name": "重庆", "value": "23"},
{"name": "涪陵市", "value": "230"},
{"name": "万州市", "value": "231"},
{"name": "黔江市", "value": "232"}
]
}
...
```
### cities
中国地级行政区
```javascript
{
"id": "132",
"name": "承德",
"parent_id": "5", // 对应省级行政区 provinces 的 value
"first_letter": "c",
"shorthand": "cd",
"pinyin": "chengde",
"suffix": "市",
"code": "130800", // 行政区划代码
"sort": "8"
},
```
## 自行爬数据
src 文件夹下有源代码。请确保你的 Node.js 版本大于 v4。然后:
1. `npm install` 安装依赖;
2. 进入微信商户后台管理页面;
3. 打开 chrome dev tools 或者其他抓包工具;
4. 进行一次真实的银行名称的选取(选类型 > 省份 > 城市),拿到你的 MERCHANT_ID,COOKIE 和 TOKEN;
5. 替换掉 index.js [第 9 行到第 11 行](https://github.com/yuche/wechat-banks/blob/master/src/index.js#L9-L11)的内容;
6. 终端运行 `node index.js`
由于脚本是 2016 年初写的,不保证微信的 api 是否有变化。如果一切顺利,你大概请求 9800 次微信服务器就可以得到完整数据。
请求策略是继发请求,你也可以使用 `async` 的 `eachLimit` 或者 `bluebird` 的 `Promise.map` 控制并发,节约一点时间。
================================================
FILE: bankType.js
================================================
module.exports = [
{"value": "1001", "name": "招商银行", "accNoParttern": [/^(\d{13}|\d{15,21})$/, /^(\d{10}|\d{12}|\d{15,16})$/]},
{"value": "1002", "name": "中国工商银行", "accNoParttern": [/^(\d{16}|\d{19})$/, /^(\d{16,19})$/]},
{"value": "1003", "name": "中国建设银行", "accNoParttern": [/^(\d{20}|\d{25,26})$/, /^(\d{16}|\d{19})$/]},
{"value": "1004", "name": "浦发银行", "accNoParttern": [/^(\d{13,20}|\d{23})$/, /^(\d{12}|\d{16})$/]},
{"value": "1005", "name": "中国农业银行", "accNoParttern": [/^(\d{17}|\d{27})$/, /^(\d{16}|\d{18,19})$/]},
{"value": "1006", "name": "中国民生银行", "accNoParttern": [/^(\d{9}|\d{15,16}|\d{20})$/, /^(\d{12}|\d{16})$/]},
{"value": "1010", "name": "平安银行", "accNoParttern": [/^(\d{13,14}|\d{18})$/, /^(\d{11}|\d{13,14}|\d{16}|\d{19})$/]},
{"value": "1009", "name": "兴业银行", "accNoParttern": [/^(\d{18})$/, /^(\d{16}|\d{18})$/]},
{"value": "1020", "name": "交通银行", "accNoParttern": [/^(\d{8}|\d{18}|\d{20,21})$/, /^(\d{16,19}|\d{21})$/]},
{"value": "1021", "name": "中信银行", "accNoParttern": [/^(\d{19})$/, /^(\d{16}|\d{19})$/]},
{"value": "1022", "name": "中国光大银行", "accNoParttern": [/^(\d{17}|\d{21,30})$/, /^(\d{16,17})$/]},
{"value": "1023", "name": "农村合作信用社", "accNoParttern": [/^(\d{8,30})$/, /^(\d{8,30})$/]},
{"value": "1024", "name": "上海银行", "accNoParttern": [/^(\d{8,30})$/, /^(\d{8,30})$/]},
{"value": "1025", "name": "华夏银行", "accNoParttern": [/^(\d{8,30})$/, /^(\d{8,30})$/]},
{"value": "1026", "name": "中国银行", "accNoParttern": [/^(\d{12}|\d{16}|\d{18})$/, /^(\d{12}|\d{16}|\d{18,19})$/]},
{"value": "1027", "name": "广发银行", "accNoParttern": [/^(\d{15}|\d{17}|\d{18}|\d{19}|\d{20})$/, /^(\d{16}|\d{18,19})$/]},
{"value": "1032", "name": "北京银行", "accNoParttern": [/^(\d{8,30})$/, /^(\d{8,30})$/]},
{"value": "1066", "name": "邮政储蓄银行", "accNoParttern": [/^(\d{16}|\d{18})$/, /^(\d{18,19})$/]},
{"value": "1054", "name": "南京银行", "accNoParttern": [/^(\d{8,30})$/, /^(\d{8,30})$/]},
{"value": "1056", "name": "宁波银行", "accNoParttern": [/^(\d{8,30})$/, /^(\d{8,30})$/]},
{"value": "1082", "name": "上海农商银行", "accNoParttern": [/^(\d{8,30})$/, /^(\d{8,30})$/]},
{"value": "4006", "name": "华润银行", "accNoParttern": [/^(\d{8,30})$/, /^(\d{8,30})$/]},
{"value": "4830", "name": "江苏银行", "accNoParttern": [/^(\d{8,30})$/, /^(\d{8,30})$/]},
{"value": "4835", "name": "广东南粤银行", "accNoParttern": [/^(\d{8,30})$/, /^(\d{8,30})$/]},
{"value": "1099", "name": "其他银行", "accNoParttern": [/^(\d{8,30})$/, /^(\d{8,30})$/]}
];
================================================
FILE: cities.js
================================================
module.exports = [
{
"id": "1",
"name": "北京",
"parent_id": "0",
"first_letter": "b",
"shorthand": "bj",
"pinyin": "beijing",
"suffix": "市",
"code": "110000",
"sort": "1"
},
{
"id": "2",
"name": "天津",
"parent_id": "0",
"first_letter": "t",
"shorthand": "tj",
"pinyin": "tianjin",
"suffix": "市",
"code": "120000",
"sort": "2"
},
{
"id": "3",
"name": "上海",
"parent_id": "0",
"first_letter": "s",
"shorthand": "sh",
"pinyin": "shanghai",
"suffix": "市",
"code": "310000",
"sort": "3"
},
{
"id": "4",
"name": "重庆",
"parent_id": "0",
"first_letter": "z",
"shorthand": "zq",
"pinyin": "zhongqing",
"suffix": "市",
"code": "500000",
"sort": "4"
},
{
"id": "5",
"name": "河北",
"parent_id": "0",
"first_letter": "h",
"shorthand": "hb",
"pinyin": "hebei",
"suffix": "省",
"code": "130000",
"sort": "5"
},
{
"id": "6",
"name": "山西",
"parent_id": "0",
"first_letter": "s",
"shorthand": "sx",
"pinyin": "shanxi",
"suffix": "省",
"code": "140000",
"sort": "6"
},
{
"id": "7",
"name": "内蒙古",
"parent_id": "0",
"first_letter": "n",
"shorthand": "nmg",
"pinyin": "neimenggu",
"suffix": "自治区",
"code": "150000",
"sort": "7"
},
{
"id": "8",
"name": "辽宁",
"parent_id": "0",
"first_letter": "l",
"shorthand": "ln",
"pinyin": "liaoning",
"suffix": "省",
"code": "210000",
"sort": "8"
},
{
"id": "9",
"name": "吉林",
"parent_id": "0",
"first_letter": "j",
"shorthand": "jl",
"pinyin": "jilin",
"suffix": "省",
"code": "220000",
"sort": "9"
},
{
"id": "10",
"name": "黑龙江",
"parent_id": "0",
"first_letter": "h",
"shorthand": "hlj",
"pinyin": "heilongjiang",
"suffix": "省",
"code": "230000",
"sort": "10"
},
{
"id": "11",
"name": "江苏",
"parent_id": "0",
"first_letter": "j",
"shorthand": "js",
"pinyin": "jiangsu",
"suffix": "省",
"code": "320000",
"sort": "11"
},
{
"id": "12",
"name": "浙江",
"parent_id": "0",
"first_letter": "z",
"shorthand": "zj",
"pinyin": "zhejiang",
"suffix": "省",
"code": "330000",
"sort": "12"
},
{
"id": "13",
"name": "安徽",
"parent_id": "0",
"first_letter": "a",
"shorthand": "ah",
"pinyin": "anhui",
"suffix": "省",
"code": "340000",
"sort": "13"
},
{
"id": "14",
"name": "福建",
"parent_id": "0",
"first_letter": "f",
"shorthand": "fj",
"pinyin": "fujian",
"suffix": "省",
"code": "350000",
"sort": "14"
},
{
"id": "15",
"name": "江西",
"parent_id": "0",
"first_letter": "j",
"shorthand": "jx",
"pinyin": "jiangxi",
"suffix": "省",
"code": "360000",
"sort": "15"
},
{
"id": "16",
"name": "山东",
"parent_id": "0",
"first_letter": "s",
"shorthand": "sd",
"pinyin": "shandong",
"suffix": "省",
"code": "370000",
"sort": "16"
},
{
"id": "17",
"name": "河南",
"parent_id": "0",
"first_letter": "h",
"shorthand": "hn",
"pinyin": "henan",
"suffix": "省",
"code": "410000",
"sort": "17"
},
{
"id": "18",
"name": "湖北",
"parent_id": "0",
"first_letter": "h",
"shorthand": "hb",
"pinyin": "hubei",
"suffix": "省",
"code": "420000",
"sort": "18"
},
{
"id": "19",
"name": "湖南",
"parent_id": "0",
"first_letter": "h",
"shorthand": "hn",
"pinyin": "hunan",
"suffix": "省",
"code": "430000",
"sort": "19"
},
{
"id": "20",
"name": "广东",
"parent_id": "0",
"first_letter": "g",
"shorthand": "gd",
"pinyin": "guangdong",
"suffix": "省",
"code": "440000",
"sort": "20"
},
{
"id": "21",
"name": "广西",
"parent_id": "0",
"first_letter": "g",
"shorthand": "gx",
"pinyin": "guangxi",
"suffix": "自治区",
"code": "450000",
"sort": "21"
},
{
"id": "22",
"name": "海南",
"parent_id": "0",
"first_letter": "h",
"shorthand": "hn",
"pinyin": "hainan",
"suffix": "省",
"code": "460000",
"sort": "22"
},
{
"id": "23",
"name": "四川",
"parent_id": "0",
"first_letter": "s",
"shorthand": "sc",
"pinyin": "sichuan",
"suffix": "省",
"code": "510000",
"sort": "23"
},
{
"id": "24",
"name": "贵州",
"parent_id": "0",
"first_letter": "g",
"shorthand": "gz",
"pinyin": "guizhou",
"suffix": "省",
"code": "520000",
"sort": "24"
},
{
"id": "25",
"name": "云南",
"parent_id": "0",
"first_letter": "y",
"shorthand": "yn",
"pinyin": "yunnan",
"suffix": "省",
"code": "530000",
"sort": "25"
},
{
"id": "26",
"name": "西藏",
"parent_id": "0",
"first_letter": "x",
"shorthand": "xz",
"pinyin": "xizang",
"suffix": "自治区",
"code": "540000",
"sort": "26"
},
{
"id": "27",
"name": "陕西",
"parent_id": "0",
"first_letter": "s",
"shorthand": "sx",
"pinyin": "shanxi",
"suffix": "省",
"code": "610000",
"sort": "27"
},
{
"id": "28",
"name": "甘肃",
"parent_id": "0",
"first_letter": "g",
"shorthand": "gs",
"pinyin": "gansu",
"suffix": "省",
"code": "620000",
"sort": "28"
},
{
"id": "29",
"name": "青海",
"parent_id": "0",
"first_letter": "q",
"shorthand": "qh",
"pinyin": "qinghai",
"suffix": "省",
"code": "630000",
"sort": "29"
},
{
"id": "30",
"name": "宁夏",
"parent_id": "0",
"first_letter": "n",
"shorthand": "nx",
"pinyin": "ningxia",
"suffix": "自治区",
"code": "640000",
"sort": "30"
},
{
"id": "31",
"name": "新疆",
"parent_id": "0",
"first_letter": "x",
"shorthand": "xj",
"pinyin": "xinjiang",
"suffix": "自治区",
"code": "650000",
"sort": "31"
},
{
"id": "32",
"name": "台湾",
"parent_id": "0",
"first_letter": "t",
"shorthand": "tw",
"pinyin": "taiwan",
"suffix": "省",
"code": "710000",
"sort": "32"
},
{
"id": "33",
"name": "香港",
"parent_id": "0",
"first_letter": "x",
"shorthand": "xg",
"pinyin": "xianggang",
"suffix": "特别行政区",
"code": "810000",
"sort": "33"
},
{
"id": "34",
"name": "澳门",
"parent_id": "0",
"first_letter": "a",
"shorthand": "am",
"pinyin": "aomen",
"suffix": "特别行政区",
"code": "820000",
"sort": "34"
},
{
"id": "35",
"name": "海外",
"parent_id": "0",
"first_letter": "h",
"shorthand": "hw",
"pinyin": "haiwai",
"suffix": "",
"code": "",
"sort": "35"
},
{
"id": "36",
"name": "东城",
"parent_id": "1",
"first_letter": "d",
"shorthand": "dc",
"pinyin": "dongcheng",
"suffix": "区",
"code": "110101",
"sort": "1"
},
{
"id": "37",
"name": "西城",
"parent_id": "1",
"first_letter": "x",
"shorthand": "xc",
"pinyin": "xicheng",
"suffix": "区",
"code": "110102",
"sort": "2"
},
{
"id": "38",
"name": "崇文",
"parent_id": "1",
"first_letter": "c",
"shorthand": "cw",
"pinyin": "chongwen",
"suffix": "区",
"code": "110103",
"sort": "3"
},
{
"id": "39",
"name": "宣武",
"parent_id": "1",
"first_letter": "x",
"shorthand": "xw",
"pinyin": "xuanwu",
"suffix": "区",
"code": "110104",
"sort": "4"
},
{
"id": "40",
"name": "朝阳",
"parent_id": "1",
"first_letter": "c",
"shorthand": "cy",
"pinyin": "chaoyang",
"suffix": "区",
"code": "110105",
"sort": "5"
},
{
"id": "41",
"name": "丰台",
"parent_id": "1",
"first_letter": "f",
"shorthand": "ft",
"pinyin": "fengtai",
"suffix": "区",
"code": "110106",
"sort": "6"
},
{
"id": "42",
"name": "石景山",
"parent_id": "1",
"first_letter": "s",
"shorthand": "sjs",
"pinyin": "shijingshan",
"suffix": "区",
"code": "110107",
"sort": "7"
},
{
"id": "43",
"name": "海淀",
"parent_id": "1",
"first_letter": "h",
"shorthand": "hd",
"pinyin": "haidian",
"suffix": "区",
"code": "110108",
"sort": "8"
},
{
"id": "44",
"name": "门头沟",
"parent_id": "1",
"first_letter": "m",
"shorthand": "mtg",
"pinyin": "mentougou",
"suffix": "区",
"code": "110109",
"sort": "9"
},
{
"id": "45",
"name": "房山",
"parent_id": "1",
"first_letter": "f",
"shorthand": "fs",
"pinyin": "fangshan",
"suffix": "区",
"code": "110111",
"sort": "10"
},
{
"id": "46",
"name": "通州",
"parent_id": "1",
"first_letter": "t",
"shorthand": "tz",
"pinyin": "tongzhou",
"suffix": "区",
"code": "110112",
"sort": "11"
},
{
"id": "47",
"name": "顺义",
"parent_id": "1",
"first_letter": "s",
"shorthand": "sy",
"pinyin": "shunyi",
"suffix": "区",
"code": "110113",
"sort": "12"
},
{
"id": "48",
"name": "昌平",
"parent_id": "1",
"first_letter": "c",
"shorthand": "cp",
"pinyin": "changping",
"suffix": "区",
"code": "110114",
"sort": "13"
},
{
"id": "49",
"name": "大兴",
"parent_id": "1",
"first_letter": "d",
"shorthand": "dx",
"pinyin": "daxing",
"suffix": "区",
"code": "110115",
"sort": "14"
},
{
"id": "50",
"name": "怀柔",
"parent_id": "1",
"first_letter": "h",
"shorthand": "hr",
"pinyin": "huairou",
"suffix": "区",
"code": "110116",
"sort": "15"
},
{
"id": "51",
"name": "平谷",
"parent_id": "1",
"first_letter": "p",
"shorthand": "pg",
"pinyin": "pinggu",
"suffix": "区",
"code": "110117",
"sort": "16"
},
{
"id": "52",
"name": "密云",
"parent_id": "1",
"first_letter": "m",
"shorthand": "my",
"pinyin": "miyun",
"suffix": "县",
"code": "110228",
"sort": "17"
},
{
"id": "53",
"name": "延庆",
"parent_id": "1",
"first_letter": "y",
"shorthand": "yq",
"pinyin": "yanqing",
"suffix": "县",
"code": "110229",
"sort": "18"
},
{
"id": "54",
"name": "和平",
"parent_id": "2",
"first_letter": "h",
"shorthand": "hp",
"pinyin": "heping",
"suffix": "区",
"code": "120101",
"sort": "1"
},
{
"id": "55",
"name": "河东",
"parent_id": "2",
"first_letter": "h",
"shorthand": "hd",
"pinyin": "hedong",
"suffix": "区",
"code": "120102",
"sort": "2"
},
{
"id": "56",
"name": "河西",
"parent_id": "2",
"first_letter": "h",
"shorthand": "hx",
"pinyin": "hexi",
"suffix": "区",
"code": "120103",
"sort": "3"
},
{
"id": "57",
"name": "南开",
"parent_id": "2",
"first_letter": "n",
"shorthand": "nk",
"pinyin": "nankai",
"suffix": "区",
"code": "120104",
"sort": "4"
},
{
"id": "58",
"name": "河北",
"parent_id": "2",
"first_letter": "h",
"shorthand": "hb",
"pinyin": "hebei",
"suffix": "区",
"code": "120105",
"sort": "5"
},
{
"id": "59",
"name": "红桥",
"parent_id": "2",
"first_letter": "h",
"shorthand": "hq",
"pinyin": "hongqiao",
"suffix": "区",
"code": "120106",
"sort": "6"
},
{
"id": "60",
"name": "东丽",
"parent_id": "2",
"first_letter": "d",
"shorthand": "dl",
"pinyin": "dongli",
"suffix": "区",
"code": "120110",
"sort": "7"
},
{
"id": "61",
"name": "西青",
"parent_id": "2",
"first_letter": "x",
"shorthand": "xq",
"pinyin": "xiqing",
"suffix": "区",
"code": "120111",
"sort": "8"
},
{
"id": "62",
"name": "津南",
"parent_id": "2",
"first_letter": "j",
"shorthand": "jn",
"pinyin": "jinnan",
"suffix": "区",
"code": "120112",
"sort": "9"
},
{
"id": "63",
"name": "北辰",
"parent_id": "2",
"first_letter": "b",
"shorthand": "bc",
"pinyin": "beichen",
"suffix": "区",
"code": "120113",
"sort": "10"
},
{
"id": "64",
"name": "武清",
"parent_id": "2",
"first_letter": "w",
"shorthand": "wq",
"pinyin": "wuqing",
"suffix": "区",
"code": "120114",
"sort": "11"
},
{
"id": "65",
"name": "宝坻",
"parent_id": "2",
"first_letter": "b",
"shorthand": "bc",
"pinyin": "baochi",
"suffix": "区",
"code": "120115",
"sort": "12"
},
{
"id": "66",
"name": "滨海新区",
"parent_id": "2",
"first_letter": "b",
"shorthand": "bhxq",
"pinyin": "binhaixinqu",
"suffix": "",
"code": "120116",
"sort": "13"
},
{
"id": "67",
"name": "宁河",
"parent_id": "2",
"first_letter": "n",
"shorthand": "nh",
"pinyin": "ninghe",
"suffix": "县",
"code": "120221",
"sort": "14"
},
{
"id": "68",
"name": "蓟县",
"parent_id": "2",
"first_letter": "j",
"shorthand": "jx",
"pinyin": "jixian",
"suffix": "",
"code": "120223",
"sort": "15"
},
{
"id": "69",
"name": "静海",
"parent_id": "2",
"first_letter": "j",
"shorthand": "jh",
"pinyin": "jinghai",
"suffix": "县",
"code": "120225",
"sort": "16"
},
{
"id": "70",
"name": "黄浦",
"parent_id": "3",
"first_letter": "h",
"shorthand": "hp",
"pinyin": "huangpu",
"suffix": "区",
"code": "310101",
"sort": "1"
},
{
"id": "71",
"name": "徐汇",
"parent_id": "3",
"first_letter": "x",
"shorthand": "xh",
"pinyin": "xuhui",
"suffix": "区",
"code": "310104",
"sort": "2"
},
{
"id": "72",
"name": "长宁",
"parent_id": "3",
"first_letter": "z",
"shorthand": "zn",
"pinyin": "zhangning",
"suffix": "区",
"code": "310105",
"sort": "3"
},
{
"id": "73",
"name": "静安",
"parent_id": "3",
"first_letter": "j",
"shorthand": "ja",
"pinyin": "jingan",
"suffix": "区",
"code": "310106",
"sort": "4"
},
{
"id": "74",
"name": "普陀",
"parent_id": "3",
"first_letter": "p",
"shorthand": "pt",
"pinyin": "putuo",
"suffix": "区",
"code": "310107",
"sort": "5"
},
{
"id": "75",
"name": "闸北",
"parent_id": "3",
"first_letter": "z",
"shorthand": "zb",
"pinyin": "zhabei",
"suffix": "区",
"code": "310108",
"sort": "6"
},
{
"id": "76",
"name": "虹口",
"parent_id": "3",
"first_letter": "h",
"shorthand": "hk",
"pinyin": "hongkou",
"suffix": "区",
"code": "310109",
"sort": "7"
},
{
"id": "77",
"name": "杨浦",
"parent_id": "3",
"first_letter": "y",
"shorthand": "yp",
"pinyin": "yangpu",
"suffix": "区",
"code": "310110",
"sort": "8"
},
{
"id": "78",
"name": "闵行",
"parent_id": "3",
"first_letter": "m",
"shorthand": "mx",
"pinyin": "minxing",
"suffix": "区",
"code": "310112",
"sort": "9"
},
{
"id": "79",
"name": "宝山",
"parent_id": "3",
"first_letter": "b",
"shorthand": "bs",
"pinyin": "baoshan",
"suffix": "区",
"code": "310113",
"sort": "10"
},
{
"id": "80",
"name": "嘉定",
"parent_id": "3",
"first_letter": "j",
"shorthand": "jd",
"pinyin": "jiading",
"suffix": "区",
"code": "310114",
"sort": "11"
},
{
"id": "81",
"name": "浦东新区",
"parent_id": "3",
"first_letter": "p",
"shorthand": "pdxq",
"pinyin": "pudongxinqu",
"suffix": "",
"code": "310115",
"sort": "12"
},
{
"id": "82",
"name": "金山",
"parent_id": "3",
"first_letter": "j",
"shorthand": "js",
"pinyin": "jinshan",
"suffix": "区",
"code": "310116",
"sort": "13"
},
{
"id": "83",
"name": "松江",
"parent_id": "3",
"first_letter": "s",
"shorthand": "sj",
"pinyin": "songjiang",
"suffix": "区",
"code": "310117",
"sort": "14"
},
{
"id": "84",
"name": "青浦",
"parent_id": "3",
"first_letter": "q",
"shorthand": "qp",
"pinyin": "qingpu",
"suffix": "区",
"code": "310118",
"sort": "15"
},
{
"id": "85",
"name": "奉贤",
"parent_id": "3",
"first_letter": "f",
"shorthand": "fx",
"pinyin": "fengxian",
"suffix": "区",
"code": "310120",
"sort": "16"
},
{
"id": "86",
"name": "崇明",
"parent_id": "3",
"first_letter": "c",
"shorthand": "cm",
"pinyin": "chongming",
"suffix": "县",
"code": "310230",
"sort": "17"
},
{
"id": "87",
"name": "万州",
"parent_id": "4",
"first_letter": "w",
"shorthand": "wz",
"pinyin": "wanzhou",
"suffix": "区",
"code": "500101",
"sort": "1"
},
{
"id": "88",
"name": "涪陵",
"parent_id": "4",
"first_letter": "f",
"shorthand": "fl",
"pinyin": "fuling",
"suffix": "区",
"code": "500102",
"sort": "2"
},
{
"id": "89",
"name": "渝中",
"parent_id": "4",
"first_letter": "y",
"shorthand": "yz",
"pinyin": "yuzhong",
"suffix": "区",
"code": "500103",
"sort": "3"
},
{
"id": "90",
"name": "大渡口",
"parent_id": "4",
"first_letter": "d",
"shorthand": "ddk",
"pinyin": "dadukou",
"suffix": "区",
"code": "500104",
"sort": "4"
},
{
"id": "91",
"name": "江北",
"parent_id": "4",
"first_letter": "j",
"shorthand": "jb",
"pinyin": "jiangbei",
"suffix": "区",
"code": "500105",
"sort": "5"
},
{
"id": "92",
"name": "沙坪坝",
"parent_id": "4",
"first_letter": "s",
"shorthand": "spb",
"pinyin": "shapingba",
"suffix": "区",
"code": "500106",
"sort": "6"
},
{
"id": "93",
"name": "九龙坡",
"parent_id": "4",
"first_letter": "j",
"shorthand": "jlp",
"pinyin": "jiulongpo",
"suffix": "区",
"code": "500107",
"sort": "7"
},
{
"id": "94",
"name": "南岸",
"parent_id": "4",
"first_letter": "n",
"shorthand": "na",
"pinyin": "nanan",
"suffix": "区",
"code": "500108",
"sort": "8"
},
{
"id": "95",
"name": "北碚",
"parent_id": "4",
"first_letter": "b",
"shorthand": "bb",
"pinyin": "beibei",
"suffix": "区",
"code": "500109",
"sort": "9"
},
{
"id": "96",
"name": "綦江",
"parent_id": "4",
"first_letter": "q",
"shorthand": "qj",
"pinyin": "qijiang",
"suffix": "区",
"code": "500110",
"sort": "10"
},
{
"id": "97",
"name": "大足",
"parent_id": "4",
"first_letter": "d",
"shorthand": "dz",
"pinyin": "dazu",
"suffix": "区",
"code": "500111",
"sort": "11"
},
{
"id": "98",
"name": "渝北",
"parent_id": "4",
"first_letter": "y",
"shorthand": "yb",
"pinyin": "yubei",
"suffix": "区",
"code": "500112",
"sort": "12"
},
{
"id": "99",
"name": "巴南",
"parent_id": "4",
"first_letter": "b",
"shorthand": "bn",
"pinyin": "banan",
"suffix": "区",
"code": "500113",
"sort": "13"
},
{
"id": "100",
"name": "黔江",
"parent_id": "4",
"first_letter": "q",
"shorthand": "qj",
"pinyin": "qianjiang",
"suffix": "区",
"code": "500114",
"sort": "14"
},
{
"id": "101",
"name": "长寿",
"parent_id": "4",
"first_letter": "z",
"shorthand": "zs",
"pinyin": "zhangshou",
"suffix": "区",
"code": "500115",
"sort": "15"
},
{
"id": "102",
"name": "江津",
"parent_id": "4",
"first_letter": "j",
"shorthand": "jj",
"pinyin": "jiangjin",
"suffix": "区",
"code": "500116",
"sort": "16"
},
{
"id": "103",
"name": "合川",
"parent_id": "4",
"first_letter": "h",
"shorthand": "hc",
"pinyin": "hechuan",
"suffix": "区",
"code": "500117",
"sort": "17"
},
{
"id": "104",
"name": "永川",
"parent_id": "4",
"first_letter": "y",
"shorthand": "yc",
"pinyin": "yongchuan",
"suffix": "区",
"code": "500118",
"sort": "18"
},
{
"id": "105",
"name": "南川",
"parent_id": "4",
"first_letter": "n",
"shorthand": "nc",
"pinyin": "nanchuan",
"suffix": "区",
"code": "500119",
"sort": "19"
},
{
"id": "106",
"name": "潼南",
"parent_id": "4",
"first_letter": "t",
"shorthand": "tn",
"pinyin": "tongnan",
"suffix": "县",
"code": "500223",
"sort": "22"
},
{
"id": "107",
"name": "铜梁",
"parent_id": "4",
"first_letter": "t",
"shorthand": "tl",
"pinyin": "tongliang",
"suffix": "区",
"code": "500151",
"sort": "21"
},
{
"id": "108",
"name": "荣昌",
"parent_id": "4",
"first_letter": "r",
"shorthand": "rc",
"pinyin": "rongchang",
"suffix": "县",
"code": "500226",
"sort": "23"
},
{
"id": "109",
"name": "璧山",
"parent_id": "4",
"first_letter": "b",
"shorthand": "bs",
"pinyin": "bishan",
"suffix": "区",
"code": "500120",
"sort": "20"
},
{
"id": "110",
"name": "梁平",
"parent_id": "4",
"first_letter": "l",
"shorthand": "lp",
"pinyin": "liangping",
"suffix": "县",
"code": "500228",
"sort": "24"
},
{
"id": "111",
"name": "城口",
"parent_id": "4",
"first_letter": "c",
"shorthand": "ck",
"pinyin": "chengkou",
"suffix": "县",
"code": "500229",
"sort": "25"
},
{
"id": "112",
"name": "丰都",
"parent_id": "4",
"first_letter": "f",
"shorthand": "fd",
"pinyin": "fengdou",
"suffix": "县",
"code": "500230",
"sort": "26"
},
{
"id": "113",
"name": "垫江",
"parent_id": "4",
"first_letter": "d",
"shorthand": "dj",
"pinyin": "dianjiang",
"suffix": "县",
"code": "500231",
"sort": "27"
},
{
"id": "114",
"name": "武隆",
"parent_id": "4",
"first_letter": "w",
"shorthand": "wl",
"pinyin": "wulong",
"suffix": "县",
"code": "500232",
"sort": "28"
},
{
"id": "115",
"name": "忠县",
"parent_id": "4",
"first_letter": "z",
"shorthand": "zx",
"pinyin": "zhongxian",
"suffix": "",
"code": "500233",
"sort": "29"
},
{
"id": "116",
"name": "开县",
"parent_id": "4",
"first_letter": "k",
"shorthand": "kx",
"pinyin": "kaixian",
"suffix": "",
"code": "500234",
"sort": "30"
},
{
"id": "117",
"name": "云阳",
"parent_id": "4",
"first_letter": "y",
"shorthand": "yy",
"pinyin": "yunyang",
"suffix": "县",
"code": "500235",
"sort": "31"
},
{
"id": "118",
"name": "奉节",
"parent_id": "4",
"first_letter": "f",
"shorthand": "fj",
"pinyin": "fengjie",
"suffix": "县",
"code": "500236",
"sort": "32"
},
{
"id": "119",
"name": "巫山",
"parent_id": "4",
"first_letter": "w",
"shorthand": "ws",
"pinyin": "wushan",
"suffix": "县",
"code": "500237",
"sort": "33"
},
{
"id": "120",
"name": "巫溪",
"parent_id": "4",
"first_letter": "w",
"shorthand": "wx",
"pinyin": "wuxi",
"suffix": "县",
"code": "500238",
"sort": "34"
},
{
"id": "121",
"name": "石柱",
"parent_id": "4",
"first_letter": "s",
"shorthand": "sz",
"pinyin": "shizhu",
"suffix": "自治县",
"code": "500240",
"sort": "35"
},
{
"id": "122",
"name": "秀山",
"parent_id": "4",
"first_letter": "x",
"shorthand": "xs",
"pinyin": "xiushan",
"suffix": "自治县",
"code": "500241",
"sort": "36"
},
{
"id": "123",
"name": "酉阳",
"parent_id": "4",
"first_letter": "y",
"shorthand": "yy",
"pinyin": "youyang",
"suffix": "自治县",
"code": "500242",
"sort": "37"
},
{
"id": "124",
"name": "彭水",
"parent_id": "4",
"first_letter": "p",
"shorthand": "ps",
"pinyin": "pengshui",
"suffix": "自治县",
"code": "500243",
"sort": "38"
},
{
"id": "125",
"name": "石家庄",
"parent_id": "5",
"first_letter": "s",
"shorthand": "sjz",
"pinyin": "shijiazhuang",
"suffix": "市",
"code": "130100",
"sort": "1"
},
{
"id": "126",
"name": "唐山",
"parent_id": "5",
"first_letter": "t",
"shorthand": "ts",
"pinyin": "tangshan",
"suffix": "市",
"code": "130200",
"sort": "2"
},
{
"id": "127",
"name": "秦皇岛",
"parent_id": "5",
"first_letter": "q",
"shorthand": "qhd",
"pinyin": "qinhuangdao",
"suffix": "市",
"code": "130300",
"sort": "3"
},
{
"id": "128",
"name": "邯郸",
"parent_id": "5",
"first_letter": "h",
"shorthand": "hd",
"pinyin": "handan",
"suffix": "市",
"code": "130400",
"sort": "4"
},
{
"id": "129",
"name": "邢台",
"parent_id": "5",
"first_letter": "x",
"shorthand": "xt",
"pinyin": "xingtai",
"suffix": "市",
"code": "130500",
"sort": "5"
},
{
"id": "130",
"name": "保定",
"parent_id": "5",
"first_letter": "b",
"shorthand": "bd",
"pinyin": "baoding",
"suffix": "市",
"code": "130600",
"sort": "6"
},
{
"id": "131",
"name": "张家口",
"parent_id": "5",
"first_letter": "z",
"shorthand": "zjk",
"pinyin": "zhangjiakou",
"suffix": "市",
"code": "130700",
"sort": "7"
},
{
"id": "132",
"name": "承德",
"parent_id": "5",
"first_letter": "c",
"shorthand": "cd",
"pinyin": "chengde",
"suffix": "市",
"code": "130800",
"sort": "8"
},
{
"id": "133",
"name": "沧州",
"parent_id": "5",
"first_letter": "c",
"shorthand": "cz",
"pinyin": "cangzhou",
"suffix": "市",
"code": "130900",
"sort": "9"
},
{
"id": "134",
"name": "廊坊",
"parent_id": "5",
"first_letter": "l",
"shorthand": "lf",
"pinyin": "langfang",
"suffix": "市",
"code": "131000",
"sort": "10"
},
{
"id": "135",
"name": "衡水",
"parent_id": "5",
"first_letter": "h",
"shorthand": "hs",
"pinyin": "hengshui",
"suffix": "市",
"code": "131100",
"sort": "11"
},
{
"id": "136",
"name": "太原",
"parent_id": "6",
"first_letter": "t",
"shorthand": "ty",
"pinyin": "taiyuan",
"suffix": "市",
"code": "140100",
"sort": "1"
},
{
"id": "137",
"name": "大同",
"parent_id": "6",
"first_letter": "d",
"shorthand": "dt",
"pinyin": "datong",
"suffix": "市",
"code": "140200",
"sort": "2"
},
{
"id": "138",
"name": "阳泉",
"parent_id": "6",
"first_letter": "y",
"shorthand": "yq",
"pinyin": "yangquan",
"suffix": "市",
"code": "140300",
"sort": "3"
},
{
"id": "139",
"name": "长治",
"parent_id": "6",
"first_letter": "z",
"shorthand": "zz",
"pinyin": "zhangzhi",
"suffix": "市",
"code": "140400",
"sort": "4"
},
{
"id": "140",
"name": "晋城",
"parent_id": "6",
"first_letter": "j",
"shorthand": "jc",
"pinyin": "jincheng",
"suffix": "市",
"code": "140500",
"sort": "5"
},
{
"id": "141",
"name": "朔州",
"parent_id": "6",
"first_letter": "s",
"shorthand": "sz",
"pinyin": "shuozhou",
"suffix": "市",
"code": "140600",
"sort": "6"
},
{
"id": "142",
"name": "晋中",
"parent_id": "6",
"first_letter": "j",
"shorthand": "jz",
"pinyin": "jinzhong",
"suffix": "市",
"code": "140700",
"sort": "7"
},
{
"id": "143",
"name": "运城",
"parent_id": "6",
"first_letter": "y",
"shorthand": "yc",
"pinyin": "yuncheng",
"suffix": "市",
"code": "140800",
"sort": "8"
},
{
"id": "144",
"name": "忻州",
"parent_id": "6",
"first_letter": "x",
"shorthand": "xz",
"pinyin": "xinzhou",
"suffix": "市",
"code": "140900",
"sort": "9"
},
{
"id": "145",
"name": "临汾",
"parent_id": "6",
"first_letter": "l",
"shorthand": "lf",
"pinyin": "linfen",
"suffix": "市",
"code": "141000",
"sort": "10"
},
{
"id": "146",
"name": "吕梁",
"parent_id": "6",
"first_letter": "l",
"shorthand": "ll",
"pinyin": "lu:liang",
"suffix": "市",
"code": "141100",
"sort": "11"
},
{
"id": "147",
"name": "呼和浩特",
"parent_id": "7",
"first_letter": "h",
"shorthand": "hhht",
"pinyin": "huhehaote",
"suffix": "市",
"code": "150100",
"sort": "1"
},
{
"id": "148",
"name": "包头",
"parent_id": "7",
"first_letter": "b",
"shorthand": "bt",
"pinyin": "baotou",
"suffix": "市",
"code": "150200",
"sort": "2"
},
{
"id": "149",
"name": "乌海",
"parent_id": "7",
"first_letter": "w",
"shorthand": "wh",
"pinyin": "wuhai",
"suffix": "市",
"code": "150300",
"sort": "3"
},
{
"id": "150",
"name": "赤峰",
"parent_id": "7",
"first_letter": "c",
"shorthand": "cf",
"pinyin": "chifeng",
"suffix": "市",
"code": "150400",
"sort": "4"
},
{
"id": "151",
"name": "通辽",
"parent_id": "7",
"first_letter": "t",
"shorthand": "tl",
"pinyin": "tongliao",
"suffix": "市",
"code": "150500",
"sort": "5"
},
{
"id": "152",
"name": "鄂尔多斯",
"parent_id": "7",
"first_letter": "e",
"shorthand": "eeds",
"pinyin": "eerduosi",
"suffix": "市",
"code": "150600",
"sort": "6"
},
{
"id": "153",
"name": "呼伦贝尔",
"parent_id": "7",
"first_letter": "h",
"shorthand": "hlbe",
"pinyin": "hulunbeier",
"suffix": "市",
"code": "150700",
"sort": "7"
},
{
"id": "154",
"name": "巴彦淖尔",
"parent_id": "7",
"first_letter": "b",
"shorthand": "byne",
"pinyin": "bayannaoer",
"suffix": "市",
"code": "150800",
"sort": "8"
},
{
"id": "155",
"name": "乌兰察布",
"parent_id": "7",
"first_letter": "w",
"shorthand": "wlcb",
"pinyin": "wulanchabu",
"suffix": "市",
"code": "150900",
"sort": "9"
},
{
"id": "156",
"name": "兴安",
"parent_id": "7",
"first_letter": "x",
"shorthand": "xa",
"pinyin": "xingan",
"suffix": "盟",
"code": "152200",
"sort": "10"
},
{
"id": "157",
"name": "锡林郭勒",
"parent_id": "7",
"first_letter": "x",
"shorthand": "xlgl",
"pinyin": "xilinguole",
"suffix": "盟",
"code": "152500",
"sort": "11"
},
{
"id": "158",
"name": "阿拉善",
"parent_id": "7",
"first_letter": "a",
"shorthand": "als",
"pinyin": "alashan",
"suffix": "盟",
"code": "152900",
"sort": "12"
},
{
"id": "159",
"name": "沈阳",
"parent_id": "8",
"first_letter": "s",
"shorthand": "sy",
"pinyin": "shenyang",
"suffix": "市",
"code": "210100",
"sort": "1"
},
{
"id": "160",
"name": "大连",
"parent_id": "8",
"first_letter": "d",
"shorthand": "dl",
"pinyin": "dalian",
"suffix": "市",
"code": "210200",
"sort": "2"
},
{
"id": "161",
"name": "鞍山",
"parent_id": "8",
"first_letter": "a",
"shorthand": "as",
"pinyin": "anshan",
"suffix": "市",
"code": "210300",
"sort": "3"
},
{
"id": "162",
"name": "抚顺",
"parent_id": "8",
"first_letter": "f",
"shorthand": "fs",
"pinyin": "fushun",
"suffix": "市",
"code": "210400",
"sort": "4"
},
{
"id": "163",
"name": "本溪",
"parent_id": "8",
"first_letter": "b",
"shorthand": "bx",
"pinyin": "benxi",
"suffix": "市",
"code": "210500",
"sort": "5"
},
{
"id": "164",
"name": "丹东",
"parent_id": "8",
"first_letter": "d",
"shorthand": "dd",
"pinyin": "dandong",
"suffix": "市",
"code": "210600",
"sort": "6"
},
{
"id": "165",
"name": "锦州",
"parent_id": "8",
"first_letter": "j",
"shorthand": "jz",
"pinyin": "jinzhou",
"suffix": "市",
"code": "210700",
"sort": "7"
},
{
"id": "166",
"name": "营口",
"parent_id": "8",
"first_letter": "y",
"shorthand": "yk",
"pinyin": "yingkou",
"suffix": "市",
"code": "210800",
"sort": "8"
},
{
"id": "167",
"name": "阜新",
"parent_id": "8",
"first_letter": "f",
"shorthand": "fx",
"pinyin": "fuxin",
"suffix": "市",
"code": "210900",
"sort": "9"
},
{
"id": "168",
"name": "辽阳",
"parent_id": "8",
"first_letter": "l",
"shorthand": "ly",
"pinyin": "liaoyang",
"suffix": "市",
"code": "211000",
"sort": "10"
},
{
"id": "169",
"name": "盘锦",
"parent_id": "8",
"first_letter": "p",
"shorthand": "pj",
"pinyin": "panjin",
"suffix": "市",
"code": "211100",
"sort": "11"
},
{
"id": "170",
"name": "铁岭",
"parent_id": "8",
"first_letter": "t",
"shorthand": "tl",
"pinyin": "tieling",
"suffix": "市",
"code": "211200",
"sort": "12"
},
{
"id": "171",
"name": "朝阳",
"parent_id": "8",
"first_letter": "c",
"shorthand": "cy",
"pinyin": "chaoyang",
"suffix": "市",
"code": "211300",
"sort": "13"
},
{
"id": "172",
"name": "葫芦岛",
"parent_id": "8",
"first_letter": "h",
"shorthand": "hld",
"pinyin": "huludao",
"suffix": "市",
"code": "211400",
"sort": "14"
},
{
"id": "173",
"name": "长春",
"parent_id": "9",
"first_letter": "z",
"shorthand": "zc",
"pinyin": "zhangchun",
"suffix": "市",
"code": "220100",
"sort": "1"
},
{
"id": "174",
"name": "吉林",
"parent_id": "9",
"first_letter": "j",
"shorthand": "jl",
"pinyin": "jilin",
"suffix": "市",
"code": "220200",
"sort": "2"
},
{
"id": "175",
"name": "四平",
"parent_id": "9",
"first_letter": "s",
"shorthand": "sp",
"pinyin": "siping",
"suffix": "市",
"code": "220300",
"sort": "3"
},
{
"id": "176",
"name": "辽源",
"parent_id": "9",
"first_letter": "l",
"shorthand": "ly",
"pinyin": "liaoyuan",
"suffix": "市",
"code": "220400",
"sort": "4"
},
{
"id": "177",
"name": "通化",
"parent_id": "9",
"first_letter": "t",
"shorthand": "th",
"pinyin": "tonghua",
"suffix": "市",
"code": "220500",
"sort": "5"
},
{
"id": "178",
"name": "白山",
"parent_id": "9",
"first_letter": "b",
"shorthand": "bs",
"pinyin": "baishan",
"suffix": "市",
"code": "220600",
"sort": "6"
},
{
"id": "179",
"name": "松原",
"parent_id": "9",
"first_letter": "s",
"shorthand": "sy",
"pinyin": "songyuan",
"suffix": "市",
"code": "220700",
"sort": "7"
},
{
"id": "180",
"name": "白城",
"parent_id": "9",
"first_letter": "b",
"shorthand": "bc",
"pinyin": "baicheng",
"suffix": "市",
"code": "220800",
"sort": "8"
},
{
"id": "181",
"name": "延边",
"parent_id": "9",
"first_letter": "y",
"shorthand": "yb",
"pinyin": "yanbian",
"suffix": "自治州",
"code": "222400",
"sort": "9"
},
{
"id": "182",
"name": "哈尔滨",
"parent_id": "10",
"first_letter": "h",
"shorthand": "heb",
"pinyin": "haerbin",
"suffix": "市",
"code": "230100",
"sort": "1"
},
{
"id": "183",
"name": "齐齐哈尔",
"parent_id": "10",
"first_letter": "q",
"shorthand": "qqhe",
"pinyin": "qiqihaer",
"suffix": "市",
"code": "230200",
"sort": "2"
},
{
"id": "184",
"name": "鸡西",
"parent_id": "10",
"first_letter": "j",
"shorthand": "jx",
"pinyin": "jixi",
"suffix": "市",
"code": "230300",
"sort": "3"
},
{
"id": "185",
"name": "鹤岗",
"parent_id": "10",
"first_letter": "h",
"shorthand": "hg",
"pinyin": "hegang",
"suffix": "市",
"code": "230400",
"sort": "4"
},
{
"id": "186",
"name": "双鸭山",
"parent_id": "10",
"first_letter": "s",
"shorthand": "sys",
"pinyin": "shuangyashan",
"suffix": "市",
"code": "230500",
"sort": "5"
},
{
"id": "187",
"name": "大庆",
"parent_id": "10",
"first_letter": "d",
"shorthand": "dq",
"pinyin": "daqing",
"suffix": "市",
"code": "230600",
"sort": "6"
},
{
"id": "188",
"name": "伊春",
"parent_id": "10",
"first_letter": "y",
"shorthand": "yc",
"pinyin": "yichun",
"suffix": "市",
"code": "230700",
"sort": "7"
},
{
"id": "189",
"name": "佳木斯",
"parent_id": "10",
"first_letter": "j",
"shorthand": "jms",
"pinyin": "jiamusi",
"suffix": "市",
"code": "230800",
"sort": "8"
},
{
"id": "190",
"name": "七台河",
"parent_id": "10",
"first_letter": "q",
"shorthand": "qth",
"pinyin": "qitaihe",
"suffix": "市",
"code": "230900",
"sort": "9"
},
{
"id": "191",
"name": "牡丹江",
"parent_id": "10",
"first_letter": "m",
"shorthand": "mdj",
"pinyin": "mudanjiang",
"suffix": "市",
"code": "231000",
"sort": "10"
},
{
"id": "192",
"name": "黑河",
"parent_id": "10",
"first_letter": "h",
"shorthand": "hh",
"pinyin": "heihe",
"suffix": "市",
"code": "231100",
"sort": "11"
},
{
"id": "193",
"name": "绥化",
"parent_id": "10",
"first_letter": "s",
"shorthand": "sh",
"pinyin": "suihua",
"suffix": "市",
"code": "231200",
"sort": "12"
},
{
"id": "194",
"name": "大兴安岭",
"parent_id": "10",
"first_letter": "d",
"shorthand": "dxal",
"pinyin": "daxinganling",
"suffix": "地区",
"code": "232700",
"sort": "13"
},
{
"id": "195",
"name": "南京",
"parent_id": "11",
"first_letter": "n",
"shorthand": "nj",
"pinyin": "nanjing",
"suffix": "市",
"code": "320100",
"sort": "1"
},
{
"id": "196",
"name": "无锡",
"parent_id": "11",
"first_letter": "w",
"shorthand": "wx",
"pinyin": "wuxi",
"suffix": "市",
"code": "320200",
"sort": "2"
},
{
"id": "197",
"name": "徐州",
"parent_id": "11",
"first_letter": "x",
"shorthand": "xz",
"pinyin": "xuzhou",
"suffix": "市",
"code": "320300",
"sort": "3"
},
{
"id": "198",
"name": "常州",
"parent_id": "11",
"first_letter": "c",
"shorthand": "cz",
"pinyin": "changzhou",
"suffix": "市",
"code": "320400",
"sort": "4"
},
{
"id": "199",
"name": "苏州",
"parent_id": "11",
"first_letter": "s",
"shorthand": "sz",
"pinyin": "suzhou",
"suffix": "市",
"code": "320500",
"sort": "5"
},
{
"id": "200",
"name": "南通",
"parent_id": "11",
"first_letter": "n",
"shorthand": "nt",
"pinyin": "nantong",
"suffix": "市",
"code": "320600",
"sort": "6"
},
{
"id": "201",
"name": "连云港",
"parent_id": "11",
"first_letter": "l",
"shorthand": "lyg",
"pinyin": "lianyungang",
"suffix": "市",
"code": "320700",
"sort": "7"
},
{
"id": "202",
"name": "淮安",
"parent_id": "11",
"first_letter": "h",
"shorthand": "ha",
"pinyin": "huaian",
"suffix": "市",
"code": "320800",
"sort": "8"
},
{
"id": "203",
"name": "盐城",
"parent_id": "11",
"first_letter": "y",
"shorthand": "yc",
"pinyin": "yancheng",
"suffix": "市",
"code": "320900",
"sort": "9"
},
{
"id": "204",
"name": "扬州",
"parent_id": "11",
"first_letter": "y",
"shorthand": "yz",
"pinyin": "yangzhou",
"suffix": "市",
"code": "321000",
"sort": "10"
},
{
"id": "205",
"name": "镇江",
"parent_id": "11",
"first_letter": "z",
"shorthand": "zj",
"pinyin": "zhenjiang",
"suffix": "市",
"code": "321100",
"sort": "11"
},
{
"id": "206",
"name": "泰州",
"parent_id": "11",
"first_letter": "t",
"shorthand": "tz",
"pinyin": "taizhou",
"suffix": "市",
"code": "321200",
"sort": "12"
},
{
"id": "207",
"name": "宿迁",
"parent_id": "11",
"first_letter": "s",
"shorthand": "sq",
"pinyin": "suqian",
"suffix": "市",
"code": "321300",
"sort": "13"
},
{
"id": "208",
"name": "杭州",
"parent_id": "12",
"first_letter": "h",
"shorthand": "hz",
"pinyin": "hangzhou",
"suffix": "市",
"code": "330100",
"sort": "1"
},
{
"id": "209",
"name": "宁波",
"parent_id": "12",
"first_letter": "n",
"shorthand": "nb",
"pinyin": "ningbo",
"suffix": "市",
"code": "330200",
"sort": "2"
},
{
"id": "210",
"name": "温州",
"parent_id": "12",
"first_letter": "w",
"shorthand": "wz",
"pinyin": "wenzhou",
"suffix": "市",
"code": "330300",
"sort": "3"
},
{
"id": "211",
"name": "嘉兴",
"parent_id": "12",
"first_letter": "j",
"shorthand": "jx",
"pinyin": "jiaxing",
"suffix": "市",
"code": "330400",
"sort": "4"
},
{
"id": "212",
"name": "湖州",
"parent_id": "12",
"first_letter": "h",
"shorthand": "hz",
"pinyin": "huzhou",
"suffix": "市",
"code": "330500",
"sort": "5"
},
{
"id": "213",
"name": "绍兴",
"parent_id": "12",
"first_letter": "s",
"shorthand": "sx",
"pinyin": "shaoxing",
"suffix": "市",
"code": "330600",
"sort": "6"
},
{
"id": "214",
"name": "金华",
"parent_id": "12",
"first_letter": "j",
"shorthand": "jh",
"pinyin": "jinhua",
"suffix": "市",
"code": "330700",
"sort": "7"
},
{
"id": "215",
"name": "衢州",
"parent_id": "12",
"first_letter": "q",
"shorthand": "qz",
"pinyin": "quzhou",
"suffix": "市",
"code": "330800",
"sort": "8"
},
{
"id": "216",
"name": "舟山",
"parent_id": "12",
"first_letter": "z",
"shorthand": "zs",
"pinyin": "zhoushan",
"suffix": "市",
"code": "330900",
"sort": "9"
},
{
"id": "217",
"name": "台州",
"parent_id": "12",
"first_letter": "t",
"shorthand": "tz",
"pinyin": "taizhou",
"suffix": "市",
"code": "331000",
"sort": "10"
},
{
"id": "218",
"name": "丽水",
"parent_id": "12",
"first_letter": "l",
"shorthand": "ls",
"pinyin": "lishui",
"suffix": "市",
"code": "331100",
"sort": "11"
},
{
"id": "219",
"name": "合肥",
"parent_id": "13",
"first_letter": "h",
"shorthand": "hf",
"pinyin": "hefei",
"suffix": "市",
"code": "340100",
"sort": "1"
},
{
"id": "220",
"name": "芜湖",
"parent_id": "13",
"first_letter": "w",
"shorthand": "wh",
"pinyin": "wuhu",
"suffix": "市",
"code": "340200",
"sort": "2"
},
{
"id": "221",
"name": "蚌埠",
"parent_id": "13",
"first_letter": "b",
"shorthand": "bb",
"pinyin": "bangbu",
"suffix": "市",
"code": "340300",
"sort": "3"
},
{
"id": "222",
"name": "淮南",
"parent_id": "13",
"first_letter": "h",
"shorthand": "hn",
"pinyin": "huainan",
"suffix": "市",
"code": "340400",
"sort": "4"
},
{
"id": "223",
"name": "马鞍山",
"parent_id": "13",
"first_letter": "m",
"shorthand": "mas",
"pinyin": "maanshan",
"suffix": "市",
"code": "340500",
"sort": "5"
},
{
"id": "224",
"name": "淮北",
"parent_id": "13",
"first_letter": "h",
"shorthand": "hb",
"pinyin": "huaibei",
"suffix": "市",
"code": "340600",
"sort": "6"
},
{
"id": "225",
"name": "铜陵",
"parent_id": "13",
"first_letter": "t",
"shorthand": "tl",
"pinyin": "tongling",
"suffix": "市",
"code": "340700",
"sort": "7"
},
{
"id": "226",
"name": "安庆",
"parent_id": "13",
"first_letter": "a",
"shorthand": "aq",
"pinyin": "anqing",
"suffix": "市",
"code": "340800",
"sort": "8"
},
{
"id": "227",
"name": "黄山",
"parent_id": "13",
"first_letter": "h",
"shorthand": "hs",
"pinyin": "huangshan",
"suffix": "市",
"code": "341000",
"sort": "9"
},
{
"id": "228",
"name": "滁州",
"parent_id": "13",
"first_letter": "c",
"shorthand": "cz",
"pinyin": "chuzhou",
"suffix": "市",
"code": "341100",
"sort": "10"
},
{
"id": "229",
"name": "阜阳",
"parent_id": "13",
"first_letter": "f",
"shorthand": "fy",
"pinyin": "fuyang",
"suffix": "市",
"code": "341200",
"sort": "11"
},
{
"id": "230",
"name": "宿州",
"parent_id": "13",
"first_letter": "s",
"shorthand": "sz",
"pinyin": "suzhou",
"suffix": "市",
"code": "341300",
"sort": "12"
},
{
"id": "231",
"name": "六安",
"parent_id": "13",
"first_letter": "l",
"shorthand": "la",
"pinyin": "liuan",
"suffix": "市",
"code": "341500",
"sort": "13"
},
{
"id": "232",
"name": "亳州",
"parent_id": "13",
"first_letter": "b",
"shorthand": "bz",
"pinyin": "bozhou",
"suffix": "市",
"code": "341600",
"sort": "14"
},
{
"id": "233",
"name": "池州",
"parent_id": "13",
"first_letter": "c",
"shorthand": "cz",
"pinyin": "chizhou",
"suffix": "市",
"code": "341700",
"sort": "15"
},
{
"id": "234",
"name": "宣城",
"parent_id": "13",
"first_letter": "x",
"shorthand": "xc",
"pinyin": "xuancheng",
"suffix": "市",
"code": "341800",
"sort": "16"
},
{
"id": "235",
"name": "福州",
"parent_id": "14",
"first_letter": "f",
"shorthand": "fz",
"pinyin": "fuzhou",
"suffix": "市",
"code": "350100",
"sort": "1"
},
{
"id": "236",
"name": "厦门",
"parent_id": "14",
"first_letter": "s",
"shorthand": "sm",
"pinyin": "shamen",
"suffix": "市",
"code": "350200",
"sort": "2"
},
{
"id": "237",
"name": "莆田",
"parent_id": "14",
"first_letter": "p",
"shorthand": "pt",
"pinyin": "putian",
"suffix": "市",
"code": "350300",
"sort": "3"
},
{
"id": "238",
"name": "三明",
"parent_id": "14",
"first_letter": "s",
"shorthand": "sm",
"pinyin": "sanming",
"suffix": "市",
"code": "350400",
"sort": "4"
},
{
"id": "239",
"name": "泉州",
"parent_id": "14",
"first_letter": "q",
"shorthand": "qz",
"pinyin": "quanzhou",
"suffix": "市",
"code": "350500",
"sort": "5"
},
{
"id": "240",
"name": "漳州",
"parent_id": "14",
"first_letter": "z",
"shorthand": "zz",
"pinyin": "zhangzhou",
"suffix": "市",
"code": "350600",
"sort": "6"
},
{
"id": "241",
"name": "南平",
"parent_id": "14",
"first_letter": "n",
"shorthand": "np",
"pinyin": "nanping",
"suffix": "市",
"code": "350700",
"sort": "7"
},
{
"id": "242",
"name": "龙岩",
"parent_id": "14",
"first_letter": "l",
"shorthand": "ly",
"pinyin": "longyan",
"suffix": "市",
"code": "350800",
"sort": "8"
},
{
"id": "243",
"name": "宁德",
"parent_id": "14",
"first_letter": "n",
"shorthand": "nd",
"pinyin": "ningde",
"suffix": "市",
"code": "350900",
"sort": "9"
},
{
"id": "244",
"name": "南昌",
"parent_id": "15",
"first_letter": "n",
"shorthand": "nc",
"pinyin": "nanchang",
"suffix": "市",
"code": "360100",
"sort": "1"
},
{
"id": "245",
"name": "景德镇",
"parent_id": "15",
"first_letter": "j",
"shorthand": "jdz",
"pinyin": "jingdezhen",
"suffix": "市",
"code": "360200",
"sort": "2"
},
{
"id": "246",
"name": "萍乡",
"parent_id": "15",
"first_letter": "p",
"shorthand": "px",
"pinyin": "pingxiang",
"suffix": "市",
"code": "360300",
"sort": "3"
},
{
"id": "247",
"name": "九江",
"parent_id": "15",
"first_letter": "j",
"shorthand": "jj",
"pinyin": "jiujiang",
"suffix": "市",
"code": "360400",
"sort": "4"
},
{
"id": "248",
"name": "新余",
"parent_id": "15",
"first_letter": "x",
"shorthand": "xy",
"pinyin": "xinyu",
"suffix": "市",
"code": "360500",
"sort": "5"
},
{
"id": "249",
"name": "鹰潭",
"parent_id": "15",
"first_letter": "y",
"shorthand": "yt",
"pinyin": "yingtan",
"suffix": "市",
"code": "360600",
"sort": "6"
},
{
"id": "250",
"name": "赣州",
"parent_id": "15",
"first_letter": "g",
"shorthand": "gz",
"pinyin": "ganzhou",
"suffix": "市",
"code": "360700",
"sort": "7"
},
{
"id": "251",
"name": "吉安",
"parent_id": "15",
"first_letter": "j",
"shorthand": "ja",
"pinyin": "jian",
"suffix": "市",
"code": "360800",
"sort": "8"
},
{
"id": "252",
"name": "宜春",
"parent_id": "15",
"first_letter": "y",
"shorthand": "yc",
"pinyin": "yichun",
"suffix": "市",
"code": "360900",
"sort": "9"
},
{
"id": "253",
"name": "抚州",
"parent_id": "15",
"first_letter": "f",
"shorthand": "fz",
"pinyin": "fuzhou",
"suffix": "市",
"code": "361000",
"sort": "10"
},
{
"id": "254",
"name": "上饶",
"parent_id": "15",
"first_letter": "s",
"shorthand": "sr",
"pinyin": "shangrao",
"suffix": "市",
"code": "361100",
"sort": "11"
},
{
"id": "255",
"name": "济南",
"parent_id": "16",
"first_letter": "j",
"shorthand": "jn",
"pinyin": "jinan",
"suffix": "市",
"code": "370100",
"sort": "1"
},
{
"id": "256",
"name": "青岛",
"parent_id": "16",
"first_letter": "q",
"shorthand": "qd",
"pinyin": "qingdao",
"suffix": "市",
"code": "370200",
"sort": "2"
},
{
"id": "257",
"name": "淄博",
"parent_id": "16",
"first_letter": "z",
"shorthand": "zb",
"pinyin": "zibo",
"suffix": "市",
"code": "370300",
"sort": "3"
},
{
"id": "258",
"name": "枣庄",
"parent_id": "16",
"first_letter": "z",
"shorthand": "zz",
"pinyin": "zaozhuang",
"suffix": "市",
"code": "370400",
"sort": "4"
},
{
"id": "259",
"name": "东营",
"parent_id": "16",
"first_letter": "d",
"shorthand": "dy",
"pinyin": "dongying",
"suffix": "市",
"code": "370500",
"sort": "5"
},
{
"id": "260",
"name": "烟台",
"parent_id": "16",
"first_letter": "y",
"shorthand": "yt",
"pinyin": "yantai",
"suffix": "市",
"code": "370600",
"sort": "6"
},
{
"id": "261",
"name": "潍坊",
"parent_id": "16",
"first_letter": "w",
"shorthand": "wf",
"pinyin": "weifang",
"suffix": "市",
"code": "370700",
"sort": "7"
},
{
"id": "262",
"name": "济宁",
"parent_id": "16",
"first_letter": "j",
"shorthand": "jn",
"pinyin": "jining",
"suffix": "市",
"code": "370800",
"sort": "8"
},
{
"id": "263",
"name": "泰安",
"parent_id": "16",
"first_letter": "t",
"shorthand": "ta",
"pinyin": "taian",
"suffix": "市",
"code": "370900",
"sort": "9"
},
{
"id": "264",
"name": "威海",
"parent_id": "16",
"first_letter": "w",
"shorthand": "wh",
"pinyin": "weihai",
"suffix": "市",
"code": "371000",
"sort": "10"
},
{
"id": "265",
"name": "日照",
"parent_id": "16",
"first_letter": "r",
"shorthand": "rz",
"pinyin": "rizhao",
"suffix": "市",
"code": "371100",
"sort": "11"
},
{
"id": "266",
"name": "莱芜",
"parent_id": "16",
"first_letter": "l",
"shorthand": "lw",
"pinyin": "laiwu",
"suffix": "市",
"code": "371200",
"sort": "12"
},
{
"id": "267",
"name": "临沂",
"parent_id": "16",
"first_letter": "l",
"shorthand": "ly",
"pinyin": "linyi",
"suffix": "市",
"code": "371300",
"sort": "13"
},
{
"id": "268",
"name": "德州",
"parent_id": "16",
"first_letter": "d",
"shorthand": "dz",
"pinyin": "dezhou",
"suffix": "市",
"code": "371400",
"sort": "14"
},
{
"id": "269",
"name": "聊城",
"parent_id": "16",
"first_letter": "l",
"shorthand": "lc",
"pinyin": "liaocheng",
"suffix": "市",
"code": "371500",
"sort": "15"
},
{
"id": "270",
"name": "滨州",
"parent_id": "16",
"first_letter": "b",
"shorthand": "bz",
"pinyin": "binzhou",
"suffix": "市",
"code": "371600",
"sort": "16"
},
{
"id": "271",
"name": "菏泽",
"parent_id": "16",
"first_letter": "h",
"shorthand": "hz",
"pinyin": "heze",
"suffix": "市",
"code": "371700",
"sort": "17"
},
{
"id": "272",
"name": "郑州",
"parent_id": "17",
"first_letter": "z",
"shorthand": "zz",
"pinyin": "zhengzhou",
"suffix": "市",
"code": "410100",
"sort": "1"
},
{
"id": "273",
"name": "开封",
"parent_id": "17",
"first_letter": "k",
"shorthand": "kf",
"pinyin": "kaifeng",
"suffix": "市",
"code": "410200",
"sort": "2"
},
{
"id": "274",
"name": "洛阳",
"parent_id": "17",
"first_letter": "l",
"shorthand": "ly",
"pinyin": "luoyang",
"suffix": "市",
"code": "410300",
"sort": "3"
},
{
"id": "275",
"name": "平顶山",
"parent_id": "17",
"first_letter": "p",
"shorthand": "pds",
"pinyin": "pingdingshan",
"suffix": "市",
"code": "410400",
"sort": "4"
},
{
"id": "276",
"name": "安阳",
"parent_id": "17",
"first_letter": "a",
"shorthand": "ay",
"pinyin": "anyang",
"suffix": "市",
"code": "410500",
"sort": "5"
},
{
"id": "277",
"name": "鹤壁",
"parent_id": "17",
"first_letter": "h",
"shorthand": "hb",
"pinyin": "hebi",
"suffix": "市",
"code": "410600",
"sort": "6"
},
{
"id": "278",
"name": "新乡",
"parent_id": "17",
"first_letter": "x",
"shorthand": "xx",
"pinyin": "xinxiang",
"suffix": "市",
"code": "410700",
"sort": "7"
},
{
"id": "279",
"name": "焦作",
"parent_id": "17",
"first_letter": "j",
"shorthand": "jz",
"pinyin": "jiaozuo",
"suffix": "市",
"code": "410800",
"sort": "8"
},
{
"id": "280",
"name": "濮阳",
"parent_id": "17",
"first_letter": "p",
"shorthand": "py",
"pinyin": "puyang",
"suffix": "市",
"code": "410900",
"sort": "9"
},
{
"id": "281",
"name": "许昌",
"parent_id": "17",
"first_letter": "x",
"shorthand": "xc",
"pinyin": "xuchang",
"suffix": "市",
"code": "411000",
"sort": "10"
},
{
"id": "282",
"name": "漯河",
"parent_id": "17",
"first_letter": "l",
"shorthand": "lh",
"pinyin": "luohe",
"suffix": "市",
"code": "411100",
"sort": "11"
},
{
"id": "283",
"name": "三门峡",
"parent_id": "17",
"first_letter": "s",
"shorthand": "smx",
"pinyin": "sanmenxia",
"suffix": "市",
"code": "411200",
"sort": "12"
},
{
"id": "284",
"name": "南阳",
"parent_id": "17",
"first_letter": "n",
"shorthand": "ny",
"pinyin": "nanyang",
"suffix": "市",
"code": "411300",
"sort": "13"
},
{
"id": "285",
"name": "商丘",
"parent_id": "17",
"first_letter": "s",
"shorthand": "sq",
"pinyin": "shangqiu",
"suffix": "市",
"code": "411400",
"sort": "14"
},
{
"id": "286",
"name": "信阳",
"parent_id": "17",
"first_letter": "x",
"shorthand": "xy",
"pinyin": "xinyang",
"suffix": "市",
"code": "411500",
"sort": "15"
},
{
"id": "287",
"name": "周口",
"parent_id": "17",
"first_letter": "z",
"shorthand": "zk",
"pinyin": "zhoukou",
"suffix": "市",
"code": "411600",
"sort": "16"
},
{
"id": "288",
"name": "驻马店",
"parent_id": "17",
"first_letter": "z",
"shorthand": "zmd",
"pinyin": "zhumadian",
"suffix": "市",
"code": "411700",
"sort": "17"
},
{
"id": "289",
"name": "济源",
"parent_id": "17",
"first_letter": "j",
"shorthand": "jy",
"pinyin": "jiyuan",
"suffix": "市",
"code": "419001",
"sort": "18"
},
{
"id": "290",
"name": "武汉",
"parent_id": "18",
"first_letter": "w",
"shorthand": "wh",
"pinyin": "wuhan",
"suffix": "市",
"code": "420100",
"sort": "1"
},
{
"id": "291",
"name": "黄石",
"parent_id": "18",
"first_letter": "h",
"shorthand": "hs",
"pinyin": "huangshi",
"suffix": "市",
"code": "420200",
"sort": "2"
},
{
"id": "292",
"name": "十堰",
"parent_id": "18",
"first_letter": "s",
"shorthand": "sy",
"pinyin": "shiyan",
"suffix": "市",
"code": "420300",
"sort": "3"
},
{
"id": "293",
"name": "宜昌",
"parent_id": "18",
"first_letter": "y",
"shorthand": "yc",
"pinyin": "yichang",
"suffix": "市",
"code": "420500",
"sort": "4"
},
{
"id": "294",
"name": "襄阳",
"parent_id": "18",
"first_letter": "x",
"shorthand": "xy",
"pinyin": "xiangyang",
"suffix": "市",
"code": "420600",
"sort": "5"
},
{
"id": "295",
"name": "鄂州",
"parent_id": "18",
"first_letter": "e",
"shorthand": "ez",
"pinyin": "ezhou",
"suffix": "市",
"code": "420700",
"sort": "6"
},
{
"id": "296",
"name": "荆门",
"parent_id": "18",
"first_letter": "j",
"shorthand": "jm",
"pinyin": "jingmen",
"suffix": "市",
"code": "420800",
"sort": "7"
},
{
"id": "297",
"name": "孝感",
"parent_id": "18",
"first_letter": "x",
"shorthand": "xg",
"pinyin": "xiaogan",
"suffix": "市",
"code": "420900",
"sort": "8"
},
{
"id": "298",
"name": "荆州",
"parent_id": "18",
"first_letter": "j",
"shorthand": "jz",
"pinyin": "jingzhou",
"suffix": "市",
"code": "421000",
"sort": "9"
},
{
"id": "299",
"name": "黄冈",
"parent_id": "18",
"first_letter": "h",
"shorthand": "hg",
"pinyin": "huanggang",
"suffix": "市",
"code": "421100",
"sort": "10"
},
{
"id": "300",
"name": "咸宁",
"parent_id": "18",
"first_letter": "x",
"shorthand": "xn",
"pinyin": "xianning",
"suffix": "市",
"code": "421200",
"sort": "11"
},
{
"id": "301",
"name": "随州",
"parent_id": "18",
"first_letter": "s",
"shorthand": "sz",
"pinyin": "suizhou",
"suffix": "市",
"code": "421300",
"sort": "12"
},
{
"id": "302",
"name": "恩施",
"parent_id": "18",
"first_letter": "e",
"shorthand": "es",
"pinyin": "enshi",
"suffix": "自治州",
"code": "422800",
"sort": "13"
},
{
"id": "303",
"name": "仙桃",
"parent_id": "18",
"first_letter": "x",
"shorthand": "xt",
"pinyin": "xiantao",
"suffix": "市",
"code": "429004",
"sort": "14"
},
{
"id": "304",
"name": "潜江",
"parent_id": "18",
"first_letter": "q",
"shorthand": "qj",
"pinyin": "qianjiang",
"suffix": "市",
"code": "429005",
"sort": "15"
},
{
"id": "305",
"name": "天门",
"parent_id": "18",
"first_letter": "t",
"shorthand": "tm",
"pinyin": "tianmen",
"suffix": "市",
"code": "429006",
"sort": "16"
},
{
"id": "306",
"name": "神农架林区",
"parent_id": "18",
"first_letter": "s",
"shorthand": "snjlq",
"pinyin": "shennongjialinqu",
"suffix": "",
"code": "429021",
"sort": "17"
},
{
"id": "307",
"name": "长沙",
"parent_id": "19",
"first_letter": "z",
"shorthand": "zs",
"pinyin": "zhangsha",
"suffix": "市",
"code": "430100",
"sort": "1"
},
{
"id": "308",
"name": "株洲",
"parent_id": "19",
"first_letter": "z",
"shorthand": "zz",
"pinyin": "zhuzhou",
"suffix": "市",
"code": "430200",
"sort": "2"
},
{
"id": "309",
"name": "湘潭",
"parent_id": "19",
"first_letter": "x",
"shorthand": "xt",
"pinyin": "xiangtan",
"suffix": "市",
"code": "430300",
"sort": "3"
},
{
"id": "310",
"name": "衡阳",
"parent_id": "19",
"first_letter": "h",
"shorthand": "hy",
"pinyin": "hengyang",
"suffix": "市",
"code": "430400",
"sort": "4"
},
{
"id": "311",
"name": "邵阳",
"parent_id": "19",
"first_letter": "s",
"shorthand": "sy",
"pinyin": "shaoyang",
"suffix": "市",
"code": "430500",
"sort": "5"
},
{
"id": "312",
"name": "岳阳",
"parent_id": "19",
"first_letter": "y",
"shorthand": "yy",
"pinyin": "yueyang",
"suffix": "市",
"code": "430600",
"sort": "6"
},
{
"id": "313",
"name": "常德",
"parent_id": "19",
"first_letter": "c",
"shorthand": "cd",
"pinyin": "changde",
"suffix": "市",
"code": "430700",
"sort": "7"
},
{
"id": "314",
"name": "张家界",
"parent_id": "19",
"first_letter": "z",
"shorthand": "zjj",
"pinyin": "zhangjiajie",
"suffix": "市",
"code": "430800",
"sort": "8"
},
{
"id": "315",
"name": "益阳",
"parent_id": "19",
"first_letter": "y",
"shorthand": "yy",
"pinyin": "yiyang",
"suffix": "市",
"code": "430900",
"sort": "9"
},
{
"id": "316",
"name": "郴州",
"parent_id": "19",
"first_letter": "c",
"shorthand": "cz",
"pinyin": "chenzhou",
"suffix": "市",
"code": "431000",
"sort": "10"
},
{
"id": "317",
"name": "永州",
"parent_id": "19",
"first_letter": "y",
"shorthand": "yz",
"pinyin": "yongzhou",
"suffix": "市",
"code": "431100",
"sort": "11"
},
{
"id": "318",
"name": "怀化",
"parent_id": "19",
"first_letter": "h",
"shorthand": "hh",
"pinyin": "huaihua",
"suffix": "市",
"code": "431200",
"sort": "12"
},
{
"id": "319",
"name": "娄底",
"parent_id": "19",
"first_letter": "l",
"shorthand": "ld",
"pinyin": "loudi",
"suffix": "市",
"code": "431300",
"sort": "13"
},
{
"id": "320",
"name": "湘西",
"parent_id": "19",
"first_letter": "x",
"shorthand": "xx",
"pinyin": "xiangxi",
"suffix": "自治州",
"code": "433100",
"sort": "14"
},
{
"id": "321",
"name": "广州",
"parent_id": "20",
"first_letter": "g",
"shorthand": "gz",
"pinyin": "guangzhou",
"suffix": "市",
"code": "440100",
"sort": "1"
},
{
"id": "322",
"name": "韶关",
"parent_id": "20",
"first_letter": "s",
"shorthand": "sg",
"pinyin": "shaoguan",
"suffix": "市",
"code": "440200",
"sort": "2"
},
{
"id": "323",
"name": "深圳",
"parent_id": "20",
"first_letter": "s",
"shorthand": "sz",
"pinyin": "shenzhen",
"suffix": "市",
"code": "440300",
"sort": "3"
},
{
"id": "324",
"name": "珠海",
"parent_id": "20",
"first_letter": "z",
"shorthand": "zh",
"pinyin": "zhuhai",
"suffix": "市",
"code": "440400",
"sort": "4"
},
{
"id": "325",
"name": "汕头",
"parent_id": "20",
"first_letter": "s",
"shorthand": "st",
"pinyin": "shantou",
"suffix": "市",
"code": "440500",
"sort": "5"
},
{
"id": "326",
"name": "佛山",
"parent_id": "20",
"first_letter": "f",
"shorthand": "fs",
"pinyin": "foshan",
"suffix": "市",
"code": "440600",
"sort": "6"
},
{
"id": "327",
"name": "江门",
"parent_id": "20",
"first_letter": "j",
"shorthand": "jm",
"pinyin": "jiangmen",
"suffix": "市",
"code": "440700",
"sort": "7"
},
{
"id": "328",
"name": "湛江",
"parent_id": "20",
"first_letter": "z",
"shorthand": "zj",
"pinyin": "zhanjiang",
"suffix": "市",
"code": "440800",
"sort": "8"
},
{
"id": "329",
"name": "茂名",
"parent_id": "20",
"first_letter": "m",
"shorthand": "mm",
"pinyin": "maoming",
"suffix": "市",
"code": "440900",
"sort": "9"
},
{
"id": "330",
"name": "肇庆",
"parent_id": "20",
"first_letter": "z",
"shorthand": "zq",
"pinyin": "zhaoqing",
"suffix": "市",
"code": "441200",
"sort": "10"
},
{
"id": "331",
"name": "惠州",
"parent_id": "20",
"first_letter": "h",
"shorthand": "hz",
"pinyin": "huizhou",
"suffix": "市",
"code": "441300",
"sort": "11"
},
{
"id": "332",
"name": "梅州",
"parent_id": "20",
"first_letter": "m",
"shorthand": "mz",
"pinyin": "meizhou",
"suffix": "市",
"code": "441400",
"sort": "12"
},
{
"id": "333",
"name": "汕尾",
"parent_id": "20",
"first_letter": "s",
"shorthand": "sw",
"pinyin": "shanwei",
"suffix": "市",
"code": "441500",
"sort": "13"
},
{
"id": "334",
"name": "河源",
"parent_id": "20",
"first_letter": "h",
"shorthand": "hy",
"pinyin": "heyuan",
"suffix": "市",
"code": "441600",
"sort": "14"
},
{
"id": "335",
"name": "阳江",
"parent_id": "20",
"first_letter": "y",
"shorthand": "yj",
"pinyin": "yangjiang",
"suffix": "市",
"code": "441700",
"sort": "15"
},
{
"id": "336",
"name": "清远",
"parent_id": "20",
"first_letter": "q",
"shorthand": "qy",
"pinyin": "qingyuan",
"suffix": "市",
"code": "441800",
"sort": "16"
},
{
"id": "337",
"name": "东莞",
"parent_id": "20",
"first_letter": "d",
"shorthand": "dg",
"pinyin": "dongguan",
"suffix": "市",
"code": "441900",
"sort": "17"
},
{
"id": "338",
"name": "中山",
"parent_id": "20",
"first_letter": "z",
"shorthand": "zs",
"pinyin": "zhongshan",
"suffix": "市",
"code": "442000",
"sort": "18"
},
{
"id": "339",
"name": "潮州",
"parent_id": "20",
"first_letter": "c",
"shorthand": "cz",
"pinyin": "chaozhou",
"suffix": "市",
"code": "445100",
"sort": "19"
},
{
"id": "340",
"name": "揭阳",
"parent_id": "20",
"first_letter": "j",
"shorthand": "jy",
"pinyin": "jieyang",
"suffix": "市",
"code": "445200",
"sort": "20"
},
{
"id": "341",
"name": "云浮",
"parent_id": "20",
"first_letter": "y",
"shorthand": "yf",
"pinyin": "yunfu",
"suffix": "市",
"code": "445300",
"sort": "21"
},
{
"id": "342",
"name": "南宁",
"parent_id": "21",
"first_letter": "n",
"shorthand": "nn",
"pinyin": "nanning",
"suffix": "市",
"code": "450100",
"sort": "1"
},
{
"id": "343",
"name": "柳州",
"parent_id": "21",
"first_letter": "l",
"shorthand": "lz",
"pinyin": "liuzhou",
"suffix": "市",
"code": "450200",
"sort": "2"
},
{
"id": "344",
"name": "桂林",
"parent_id": "21",
"first_letter": "g",
"shorthand": "gl",
"pinyin": "guilin",
"suffix": "市",
"code": "450300",
"sort": "3"
},
{
"id": "345",
"name": "梧州",
"parent_id": "21",
"first_letter": "w",
"shorthand": "wz",
"pinyin": "wuzhou",
"suffix": "市",
"code": "450400",
"sort": "4"
},
{
"id": "346",
"name": "北海",
"parent_id": "21",
"first_letter": "b",
"shorthand": "bh",
"pinyin": "beihai",
"suffix": "市",
"code": "450500",
"sort": "5"
},
{
"id": "347",
"name": "防城港",
"parent_id": "21",
"first_letter": "f",
"shorthand": "fcg",
"pinyin": "fangchenggang",
"suffix": "市",
"code": "450600",
"sort": "6"
},
{
"id": "348",
"name": "钦州",
"parent_id": "21",
"first_letter": "q",
"shorthand": "qz",
"pinyin": "qinzhou",
"suffix": "市",
"code": "450700",
"sort": "7"
},
{
"id": "349",
"name": "贵港",
"parent_id": "21",
"first_letter": "g",
"shorthand": "gg",
"pinyin": "guigang",
"suffix": "市",
"code": "450800",
"sort": "8"
},
{
"id": "350",
"name": "玉林",
"parent_id": "21",
"first_letter": "y",
"shorthand": "yl",
"pinyin": "yulin",
"suffix": "市",
"code": "450900",
"sort": "9"
},
{
"id": "351",
"name": "百色",
"parent_id": "21",
"first_letter": "b",
"shorthand": "bs",
"pinyin": "baise",
"suffix": "市",
"code": "451000",
"sort": "10"
},
{
"id": "352",
"name": "贺州",
"parent_id": "21",
"first_letter": "h",
"shorthand": "hz",
"pinyin": "hezhou",
"suffix": "市",
"code": "451100",
"sort": "11"
},
{
"id": "353",
"name": "河池",
"parent_id": "21",
"first_letter": "h",
"shorthand": "hc",
"pinyin": "hechi",
"suffix": "市",
"code": "451200",
"sort": "12"
},
{
"id": "354",
"name": "来宾",
"parent_id": "21",
"first_letter": "l",
"shorthand": "lb",
"pinyin": "laibin",
"suffix": "市",
"code": "451300",
"sort": "13"
},
{
"id": "355",
"name": "崇左",
"parent_id": "21",
"first_letter": "c",
"shorthand": "cz",
"pinyin": "chongzuo",
"suffix": "市",
"code": "451400",
"sort": "14"
},
{
"id": "356",
"name": "海口",
"parent_id": "22",
"first_letter": "h",
"shorthand": "hk",
"pinyin": "haikou",
"suffix": "市",
"code": "460100",
"sort": "1"
},
{
"id": "357",
"name": "三亚",
"parent_id": "22",
"first_letter": "s",
"shorthand": "sy",
"pinyin": "sanya",
"suffix": "市",
"code": "460200",
"sort": "2"
},
{
"id": "358",
"name": "三沙",
"parent_id": "22",
"first_letter": "s",
"shorthand": "ss",
"pinyin": "sansha",
"suffix": "市",
"code": "460300",
"sort": "3"
},
{
"id": "359",
"name": "五指山",
"parent_id": "22",
"first_letter": "w",
"shorthand": "wzs",
"pinyin": "wuzhishan",
"suffix": "市",
"code": "469001",
"sort": "4"
},
{
"id": "360",
"name": "琼海",
"parent_id": "22",
"first_letter": "q",
"shorthand": "qh",
"pinyin": "qionghai",
"suffix": "市",
"code": "469002",
"sort": "5"
},
{
"id": "361",
"name": "儋州",
"parent_id": "22",
"first_letter": "d",
"shorthand": "dz",
"pinyin": "danzhou",
"suffix": "市",
"code": "460400",
"sort": "6"
},
{
"id": "362",
"name": "文昌",
"parent_id": "22",
"first_letter": "w",
"shorthand": "wc",
"pinyin": "wenchang",
"suffix": "市",
"code": "469005",
"sort": "7"
},
{
"id": "363",
"name": "万宁",
"parent_id": "22",
"first_letter": "w",
"shorthand": "wn",
"pinyin": "wanning",
"suffix": "市",
"code": "469006",
"sort": "8"
},
{
"id": "364",
"name": "东方",
"parent_id": "22",
"first_letter": "d",
"shorthand": "df",
"pinyin": "dongfang",
"suffix": "市",
"code": "469007",
"sort": "9"
},
{
"id": "365",
"name": "定安",
"parent_id": "22",
"first_letter": "d",
"shorthand": "da",
"pinyin": "dingan",
"suffix": "县",
"code": "469025",
"sort": "10"
},
{
"id": "366",
"name": "屯昌",
"parent_id": "22",
"first_letter": "t",
"shorthand": "tc",
"pinyin": "tunchang",
"suffix": "县",
"code": "469026",
"sort": "11"
},
{
"id": "367",
"name": "澄迈",
"parent_id": "22",
"first_letter": "c",
"shorthand": "cm",
"pinyin": "chengmai",
"suffix": "县",
"code": "469027",
"sort": "12"
},
{
"id": "368",
"name": "临高",
"parent_id": "22",
"first_letter": "l",
"shorthand": "lg",
"pinyin": "lingao",
"suffix": "县",
"code": "469028",
"sort": "13"
},
{
"id": "369",
"name": "白沙",
"parent_id": "22",
"first_letter": "b",
"shorthand": "bs",
"pinyin": "baisha",
"suffix": "自治县",
"code": "469030",
"sort": "14"
},
{
"id": "370",
"name": "昌江",
"parent_id": "22",
"first_letter": "c",
"shorthand": "cj",
"pinyin": "changjiang",
"suffix": "自治县",
"code": "469031",
"sort": "15"
},
{
"id": "371",
"name": "乐东",
"parent_id": "22",
"first_letter": "l",
"shorthand": "ld",
"pinyin": "ledong",
"suffix": "自治县",
"code": "469033",
"sort": "16"
},
{
"id": "372",
"name": "陵水",
"parent_id": "22",
"first_letter": "l",
"shorthand": "ls",
"pinyin": "lingshui",
"suffix": "自治县",
"code": "469034",
"sort": "17"
},
{
"id": "373",
"name": "保亭",
"parent_id": "22",
"first_letter": "b",
"shorthand": "bt",
"pinyin": "baoting",
"suffix": "自治县",
"code": "469035",
"sort": "18"
},
{
"id": "374",
"name": "琼中",
"parent_id": "22",
"first_letter": "q",
"shorthand": "qz",
"pinyin": "qiongzhong",
"suffix": "自治县",
"code": "469036",
"sort": "19"
},
{
"id": "375",
"name": "成都",
"parent_id": "23",
"first_letter": "c",
"shorthand": "cd",
"pinyin": "chengdou",
"suffix": "市",
"code": "510100",
"sort": "1"
},
{
"id": "376",
"name": "自贡",
"parent_id": "23",
"first_letter": "z",
"shorthand": "zg",
"pinyin": "zigong",
"suffix": "市",
"code": "510300",
"sort": "2"
},
{
"id": "377",
"name": "攀枝花",
"parent_id": "23",
"first_letter": "p",
"shorthand": "pzh",
"pinyin": "panzhihua",
"suffix": "市",
"code": "510400",
"sort": "3"
},
{
"id": "378",
"name": "泸州",
"parent_id": "23",
"first_letter": "l",
"shorthand": "lz",
"pinyin": "luzhou",
"suffix": "市",
"code": "510500",
"sort": "4"
},
{
"id": "379",
"name": "德阳",
"parent_id": "23",
"first_letter": "d",
"shorthand": "dy",
"pinyin": "deyang",
"suffix": "市",
"code": "510600",
"sort": "5"
},
{
"id": "380",
"name": "绵阳",
"parent_id": "23",
"first_letter": "m",
"shorthand": "my",
"pinyin": "mianyang",
"suffix": "市",
"code": "510700",
"sort": "6"
},
{
"id": "381",
"name": "广元",
"parent_id": "23",
"first_letter": "g",
"shorthand": "gy",
"pinyin": "guangyuan",
"suffix": "市",
"code": "510800",
"sort": "7"
},
{
"id": "382",
"name": "遂宁",
"parent_id": "23",
"first_letter": "s",
"shorthand": "sn",
"pinyin": "suining",
"suffix": "市",
"code": "510900",
"sort": "8"
},
{
"id": "383",
"name": "内江",
"parent_id": "23",
"first_letter": "n",
"shorthand": "nj",
"pinyin": "neijiang",
"suffix": "市",
"code": "511000",
"sort": "9"
},
{
"id": "384",
"name": "乐山",
"parent_id": "23",
"first_letter": "l",
"shorthand": "ls",
"pinyin": "leshan",
"suffix": "市",
"code": "511100",
"sort": "10"
},
{
"id": "385",
"name": "南充",
"parent_id": "23",
"first_letter": "n",
"shorthand": "nc",
"pinyin": "nanchong",
"suffix": "市",
"code": "511300",
"sort": "11"
},
{
"id": "386",
"name": "眉山",
"parent_id": "23",
"first_letter": "m",
"shorthand": "ms",
"pinyin": "meishan",
"suffix": "市",
"code": "511400",
"sort": "12"
},
{
"id": "387",
"name": "宜宾",
"parent_id": "23",
"first_letter": "y",
"shorthand": "yb",
"pinyin": "yibin",
"suffix": "市",
"code": "511500",
"sort": "13"
},
{
"id": "388",
"name": "广安",
"parent_id": "23",
"first_letter": "g",
"shorthand": "ga",
"pinyin": "guangan",
"suffix": "市",
"code": "511600",
"sort": "14"
},
{
"id": "389",
"name": "达州",
"parent_id": "23",
"first_letter": "d",
"shorthand": "dz",
"pinyin": "dazhou",
"suffix": "市",
"code": "511700",
"sort": "15"
},
{
"id": "390",
"name": "雅安",
"parent_id": "23",
"first_letter": "y",
"shorthand": "ya",
"pinyin": "yaan",
"suffix": "市",
"code": "511800",
"sort": "16"
},
{
"id": "391",
"name": "巴中",
"parent_id": "23",
"first_letter": "b",
"shorthand": "bz",
"pinyin": "bazhong",
"suffix": "市",
"code": "511900",
"sort": "17"
},
{
"id": "392",
"name": "资阳",
"parent_id": "23",
"first_letter": "z",
"shorthand": "zy",
"pinyin": "ziyang",
"suffix": "市",
"code": "512000",
"sort": "18"
},
{
"id": "393",
"name": "阿坝",
"parent_id": "23",
"first_letter": "a",
"shorthand": "ab",
"pinyin": "aba",
"suffix": "自治州",
"code": "513200",
"sort": "19"
},
{
"id": "394",
"name": "甘孜",
"parent_id": "23",
"first_letter": "g",
"shorthand": "gz",
"pinyin": "ganzi",
"suffix": "自治州",
"code": "513300",
"sort": "20"
},
{
"id": "395",
"name": "凉山",
"parent_id": "23",
"first_letter": "l",
"shorthand": "ls",
"pinyin": "liangshan",
"suffix": "自治州",
"code": "615000",
"sort": "21"
},
{
"id": "396",
"name": "贵阳",
"parent_id": "24",
"first_letter": "g",
"shorthand": "gy",
"pinyin": "guiyang",
"suffix": "市",
"code": "520100",
"sort": "1"
},
{
"id": "397",
"name": "六盘水",
"parent_id": "24",
"first_letter": "l",
"shorthand": "lps",
"pinyin": "liupanshui",
"suffix": "市",
"code": "520200",
"sort": "2"
},
{
"id": "398",
"name": "遵义",
"parent_id": "24",
"first_letter": "z",
"shorthand": "zy",
"pinyin": "zunyi",
"suffix": "市",
"code": "520300",
"sort": "3"
},
{
"id": "399",
"name": "安顺",
"parent_id": "24",
"first_letter": "a",
"shorthand": "as",
"pinyin": "anshun",
"suffix": "市",
"code": "520400",
"sort": "4"
},
{
"id": "400",
"name": "毕节",
"parent_id": "24",
"first_letter": "b",
"shorthand": "bj",
"pinyin": "bijie",
"suffix": "市",
"code": "520500",
"sort": "5"
},
{
"id": "401",
"name": "铜仁",
"parent_id": "24",
"first_letter": "t",
"shorthand": "tr",
"pinyin": "tongren",
"suffix": "市",
"code": "520600",
"sort": "6"
},
{
"id": "402",
"name": "黔西南",
"parent_id": "24",
"first_letter": "q",
"shorthand": "qxn",
"pinyin": "qianxinan",
"suffix": "自治州",
"code": "522300",
"sort": "7"
},
{
"id": "403",
"name": "黔东南",
"parent_id": "24",
"first_letter": "q",
"shorthand": "qdn",
"pinyin": "qiandongnan",
"suffix": "自治州",
"code": "522600",
"sort": "8"
},
{
"id": "404",
"name": "黔南",
"parent_id": "24",
"first_letter": "q",
"shorthand": "qn",
"pinyin": "qiannan",
"suffix": "自治州",
"code": "522700",
"sort": "9"
},
{
"id": "405",
"name": "昆明",
"parent_id": "25",
"first_letter": "k",
"shorthand": "km",
"pinyin": "kunming",
"suffix": "市",
"code": "530100",
"sort": "1"
},
{
"id": "406",
"name": "曲靖",
"parent_id": "25",
"first_letter": "q",
"shorthand": "qj",
"pinyin": "qujing",
"suffix": "市",
"code": "530300",
"sort": "2"
},
{
"id": "407",
"name": "玉溪",
"parent_id": "25",
"first_letter": "y",
"shorthand": "yx",
"pinyin": "yuxi",
"suffix": "市",
"code": "530400",
"sort": "3"
},
{
"id": "408",
"name": "昭通",
"parent_id": "25",
"first_letter": "z",
"shorthand": "zt",
"pinyin": "zhaotong",
"suffix": "市",
"code": "530600",
"sort": "4"
},
{
"id": "409",
"name": "丽江",
"parent_id": "25",
"first_letter": "l",
"shorthand": "lj",
"pinyin": "lijiang",
"suffix": "市",
"code": "530700",
"sort": "5"
},
{
"id": "410",
"name": "普洱",
"parent_id": "25",
"first_letter": "p",
"shorthand": "pe",
"pinyin": "puer",
"suffix": "市",
"code": "530800",
"sort": "6"
},
{
"id": "411",
"name": "临沧",
"parent_id": "25",
"first_letter": "l",
"shorthand": "lc",
"pinyin": "lincang",
"suffix": "市",
"code": "530900",
"sort": "7"
},
{
"id": "412",
"name": "楚雄",
"parent_id": "25",
"first_letter": "c",
"shorthand": "cx",
"pinyin": "chuxiong",
"suffix": "自治州",
"code": "532300",
"sort": "8"
},
{
"id": "413",
"name": "红河",
"parent_id": "25",
"first_letter": "h",
"shorthand": "hh",
"pinyin": "honghe",
"suffix": "自治州",
"code": "532500",
"sort": "9"
},
{
"id": "414",
"name": "文山",
"parent_id": "25",
"first_letter": "w",
"shorthand": "ws",
"pinyin": "wenshan",
"suffix": "自治州",
"code": "532600",
"sort": "10"
},
{
"id": "415",
"name": "西双版纳",
"parent_id": "25",
"first_letter": "x",
"shorthand": "xsbn",
"pinyin": "xishuangbanna",
"suffix": "自治州",
"code": "532800",
"sort": "11"
},
{
"id": "416",
"name": "大理",
"parent_id": "25",
"first_letter": "d",
"shorthand": "dl",
"pinyin": "dali",
"suffix": "自治州",
"code": "532900",
"sort": "12"
},
{
"id": "417",
"name": "德宏",
"parent_id": "25",
"first_letter": "d",
"shorthand": "dh",
"pinyin": "dehong",
"suffix": "自治州",
"code": "533100",
"sort": "13"
},
{
"id": "418",
"name": "怒江",
"parent_id": "25",
"first_letter": "n",
"shorthand": "nj",
"pinyin": "nujiang",
"suffix": "自治州",
"code": "533300",
"sort": "14"
},
{
"id": "419",
"name": "迪庆",
"parent_id": "25",
"first_letter": "d",
"shorthand": "dq",
"pinyin": "diqing",
"suffix": "自治州",
"code": "533400",
"sort": "15"
},
{
"id": "420",
"name": "保山",
"parent_id": "25",
"first_letter": "b",
"shorthand": "bs",
"pinyin": "baoshan",
"suffix": "市",
"code": "678000",
"sort": "16"
},
{
"id": "421",
"name": "拉萨",
"parent_id": "26",
"first_letter": "l",
"shorthand": "ls",
"pinyin": "lasa",
"suffix": "市",
"code": "540100",
"sort": "1"
},
{
"id": "422",
"name": "昌都",
"parent_id": "26",
"first_letter": "c",
"shorthand": "cd",
"pinyin": "changdou",
"suffix": "市",
"code": "542100",
"sort": "2"
},
{
"id": "423",
"name": "山南",
"parent_id": "26",
"first_letter": "s",
"shorthand": "sn",
"pinyin": "shannan",
"suffix": "地区",
"code": "542200",
"sort": "3"
},
{
"id": "424",
"name": "日喀则",
"parent_id": "26",
"first_letter": "r",
"shorthand": "rkz",
"pinyin": "rikaze",
"suffix": "市",
"code": "542300",
"sort": "4"
},
{
"id": "425",
"name": "那曲",
"parent_id": "26",
"first_letter": "n",
"shorthand": "nq",
"pinyin": "neiqu",
"suffix": "地区",
"code": "542400",
"sort": "5"
},
{
"id": "426",
"name": "阿里",
"parent_id": "26",
"first_letter": "a",
"shorthand": "al",
"pinyin": "ali",
"suffix": "地区",
"code": "542500",
"sort": "6"
},
{
"id": "427",
"name": "林芝",
"parent_id": "26",
"first_letter": "l",
"shorthand": "lz",
"pinyin": "linzhi",
"suffix": "市",
"code": "540400",
"sort": "7"
},
{
"id": "428",
"name": "西安",
"parent_id": "27",
"first_letter": "x",
"shorthand": "xa",
"pinyin": "xian",
"suffix": "市",
"code": "610100",
"sort": "1"
},
{
"id": "429",
"name": "铜川",
"parent_id": "27",
"first_letter": "t",
"shorthand": "tc",
"pinyin": "tongchuan",
"suffix": "市",
"code": "610200",
"sort": "2"
},
{
"id": "430",
"name": "宝鸡",
"parent_id": "27",
"first_letter": "b",
"shorthand": "bj",
"pinyin": "baoji",
"suffix": "市",
"code": "610300",
"sort": "3"
},
{
"id": "431",
"name": "咸阳",
"parent_id": "27",
"first_letter": "x",
"shorthand": "xy",
"pinyin": "xianyang",
"suffix": "市",
"code": "610400",
"sort": "4"
},
{
"id": "432",
"name": "渭南",
"parent_id": "27",
"first_letter": "w",
"shorthand": "wn",
"pinyin": "weinan",
"suffix": "市",
"code": "610500",
"sort": "5"
},
{
"id": "433",
"name": "延安",
"parent_id": "27",
"first_letter": "y",
"shorthand": "ya",
"pinyin": "yanan",
"suffix": "市",
"code": "610600",
"sort": "6"
},
{
"id": "434",
"name": "汉中",
"parent_id": "27",
"first_letter": "h",
"shorthand": "hz",
"pinyin": "hanzhong",
"suffix": "市",
"code": "610700",
"sort": "7"
},
{
"id": "435",
"name": "榆林",
"parent_id": "27",
"first_letter": "y",
"shorthand": "yl",
"pinyin": "yulin",
"suffix": "市",
"code": "610800",
"sort": "8"
},
{
"id": "436",
"name": "安康",
"parent_id": "27",
"first_letter": "a",
"shorthand": "ak",
"pinyin": "ankang",
"suffix": "市",
"code": "610900",
"sort": "9"
},
{
"id": "437",
"name": "商洛",
"parent_id": "27",
"first_letter": "s",
"shorthand": "sl",
"pinyin": "shangluo",
"suffix": "市",
"code": "611000",
"sort": "10"
},
{
"id": "438",
"name": "兰州",
"parent_id": "28",
"first_letter": "l",
"shorthand": "lz",
"pinyin": "lanzhou",
"suffix": "市",
"code": "620100",
"sort": "1"
},
{
"id": "439",
"name": "嘉峪关",
"parent_id": "28",
"first_letter": "j",
"shorthand": "jyg",
"pinyin": "jiayuguan",
"suffix": "市",
"code": "620200",
"sort": "2"
},
{
"id": "440",
"name": "金昌",
"parent_id": "28",
"first_letter": "j",
"shorthand": "jc",
"pinyin": "jinchang",
"suffix": "市",
"code": "620300",
"sort": "3"
},
{
"id": "441",
"name": "白银",
"parent_id": "28",
"first_letter": "b",
"shorthand": "by",
"pinyin": "baiyin",
"suffix": "市",
"code": "620400",
"sort": "4"
},
{
"id": "442",
"name": "天水",
"parent_id": "28",
"first_letter": "t",
"shorthand": "ts",
"pinyin": "tianshui",
"suffix": "市",
"code": "620500",
"sort": "5"
},
{
"id": "443",
"name": "武威",
"parent_id": "28",
"first_letter": "w",
"shorthand": "ww",
"pinyin": "wuwei",
"suffix": "市",
"code": "620600",
"sort": "6"
},
{
"id": "444",
"name": "张掖",
"parent_id": "28",
"first_letter": "z",
"shorthand": "zy",
"pinyin": "zhangye",
"suffix": "市",
"code": "620700",
"sort": "7"
},
{
"id": "445",
"name": "平凉",
"parent_id": "28",
"first_letter": "p",
"shorthand": "pl",
"pinyin": "pingliang",
"suffix": "市",
"code": "620800",
"sort": "8"
},
{
"id": "446",
"name": "酒泉",
"parent_id": "28",
"first_letter": "j",
"shorthand": "jq",
"pinyin": "jiuquan",
"suffix": "市",
"code": "620900",
"sort": "9"
},
{
"id": "447",
"name": "庆阳",
"parent_id": "28",
"first_letter": "q",
"shorthand": "qy",
"pinyin": "qingyang",
"suffix": "市",
"code": "621000",
"sort": "10"
},
{
"id": "448",
"name": "定西",
"parent_id": "28",
"first_letter": "d",
"shorthand": "dx",
"pinyin": "dingxi",
"suffix": "市",
"code": "621100",
"sort": "11"
},
{
"id": "449",
"name": "陇南",
"parent_id": "28",
"first_letter": "l",
"shorthand": "ln",
"pinyin": "longnan",
"suffix": "市",
"code": "621200",
"sort": "12"
},
{
"id": "450",
"name": "临夏",
"parent_id": "28",
"first_letter": "l",
"shorthand": "lx",
"pinyin": "linxia",
"suffix": "自治州",
"code": "622900",
"sort": "13"
},
{
"id": "451",
"name": "甘南",
"parent_id": "28",
"first_letter": "g",
"shorthand": "gn",
"pinyin": "gannan",
"suffix": "自治州",
"code": "623000",
"sort": "14"
},
{
"id": "452",
"name": "西宁",
"parent_id": "29",
"first_letter": "x",
"shorthand": "xn",
"pinyin": "xining",
"suffix": "市",
"code": "630100",
"sort": "1"
},
{
"id": "453",
"name": "海东",
"parent_id": "29",
"first_letter": "h",
"shorthand": "hd",
"pinyin": "haidong",
"suffix": "市",
"code": "632100",
"sort": "2"
},
{
"id": "454",
"name": "海北",
"parent_id": "29",
"first_letter": "h",
"shorthand": "hb",
"pinyin": "haibei",
"suffix": "自治州",
"code": "632200",
"sort": "3"
},
{
"id": "455",
"name": "黄南",
"parent_id": "29",
"first_letter": "h",
"shorthand": "hn",
"pinyin": "huangnan",
"suffix": "自治州",
"code": "632300",
"sort": "4"
},
{
"id": "456",
"name": "海南",
"parent_id": "29",
"first_letter": "h",
"shorthand": "hn",
"pinyin": "hainan",
"suffix": "自治州",
"code": "632500",
"sort": "5"
},
{
"id": "457",
"name": "果洛",
"parent_id": "29",
"first_letter": "g",
"shorthand": "gl",
"pinyin": "guoluo",
"suffix": "自治州",
"code": "632600",
"sort": "6"
},
{
"id": "458",
"name": "玉树",
"parent_id": "29",
"first_letter": "y",
"shorthand": "ys",
"pinyin": "yushu",
"suffix": "自治州",
"code": "632700",
"sort": "7"
},
{
"id": "459",
"name": "海西",
"parent_id": "29",
"first_letter": "h",
"shorthand": "hx",
"pinyin": "haixi",
"suffix": "自治州",
"code": "632800",
"sort": "8"
},
{
"id": "460",
"name": "银川",
"parent_id": "30",
"first_letter": "y",
"shorthand": "yc",
"pinyin": "yinchuan",
"suffix": "市",
"code": "640100",
"sort": "1"
},
{
"id": "461",
"name": "石嘴山",
"parent_id": "30",
"first_letter": "s",
"shorthand": "szs",
"pinyin": "shizuishan",
"suffix": "市",
"code": "640200",
"sort": "2"
},
{
"id": "462",
"name": "吴忠",
"parent_id": "30",
"first_letter": "w",
"shorthand": "wz",
"pinyin": "wuzhong",
"suffix": "市",
"code": "640300",
"sort": "3"
},
{
"id": "463",
"name": "固原",
"parent_id": "30",
"first_letter": "g",
"shorthand": "gy",
"pinyin": "guyuan",
"suffix": "市",
"code": "640400",
"sort": "4"
},
{
"id": "464",
"name": "中卫",
"parent_id": "30",
"first_letter": "z",
"shorthand": "zw",
"pinyin": "zhongwei",
"suffix": "市",
"code": "640500",
"sort": "5"
},
{
"id": "465",
"name": "乌鲁木齐",
"parent_id": "31",
"first_letter": "w",
"shorthand": "wlmq",
"pinyin": "wulumuqi",
"suffix": "市",
"code": "650100",
"sort": "1"
},
{
"id": "466",
"name": "克拉玛依",
"parent_id": "31",
"first_letter": "k",
"shorthand": "klmy",
"pinyin": "kelamayi",
"suffix": "市",
"code": "650200",
"sort": "2"
},
{
"id": "467",
"name": "吐鲁番",
"parent_id": "31",
"first_letter": "t",
"shorthand": "tlf",
"pinyin": "tulufan",
"suffix": "市",
"code": "652100",
"sort": "3"
},
{
"id": "468",
"name": "哈密",
"parent_id": "31",
"first_letter": "h",
"shorthand": "hm",
"pinyin": "hami",
"suffix": "地区",
"code": "652200",
"sort": "4"
},
{
"id": "469",
"name": "昌吉",
"parent_id": "31",
"first_letter": "c",
"shorthand": "cj",
"pinyin": "changji",
"suffix": "自治州",
"code": "652300",
"sort": "5"
},
{
"id": "470",
"name": "博尔塔拉",
"parent_id": "31",
"first_letter": "b",
"shorthand": "betl",
"pinyin": "boertala",
"suffix": "自治州",
"code": "652700",
"sort": "6"
},
{
"id": "471",
"name": "巴音郭楞",
"parent_id": "31",
"first_letter": "b",
"shorthand": "bygl",
"pinyin": "bayinguoleng",
"suffix": "自治州",
"code": "652800",
"sort": "7"
},
{
"id": "472",
"name": "阿克苏",
"parent_id": "31",
"first_letter": "a",
"shorthand": "aks",
"pinyin": "akesu",
"suffix": "地区",
"code": "652900",
"sort": "8"
},
{
"id": "473",
"name": "克孜勒苏",
"parent_id": "31",
"first_letter": "k",
"shorthand": "kzls",
"pinyin": "kezilesu",
"suffix": "自治州",
"code": "653000",
"sort": "9"
},
{
"id": "474",
"name": "喀什",
"parent_id": "31",
"first_letter": "k",
"shorthand": "ks",
"pinyin": "kashi",
"suffix": "地区",
"code": "653100",
"sort": "10"
},
{
"id": "475",
"name": "和田",
"parent_id": "31",
"first_letter": "h",
"shorthand": "ht",
"pinyin": "hetian",
"suffix": "地区",
"code": "653200",
"sort": "11"
},
{
"id": "476",
"name": "伊犁",
"parent_id": "31",
"first_letter": "y",
"shorthand": "yl",
"pinyin": "yili",
"suffix": "自治州",
"code": "654000",
"sort": "12"
},
{
"id": "477",
"name": "塔城",
"parent_id": "31",
"first_letter": "t",
"shorthand": "tc",
"pinyin": "tacheng",
"suffix": "地区",
"code": "654200",
"sort": "13"
},
{
"id": "478",
"name": "阿勒泰",
"parent_id": "31",
"first_letter": "a",
"shorthand": "alt",
"pinyin": "aletai",
"suffix": "地区",
"code": "654300",
"sort": "14"
},
{
"id": "479",
"name": "石河子",
"parent_id": "31",
"first_letter": "s",
"shorthand": "shz",
"pinyin": "shihezi",
"suffix": "市",
"code": "659001",
"sort": "15"
},
{
"id": "480",
"name": "阿拉尔",
"parent_id": "31",
"first_letter": "a",
"shorthand": "ale",
"pinyin": "alaer",
"suffix": "市",
"code": "659002",
"sort": "16"
},
{
"id": "481",
"name": "图木舒克",
"parent_id": "31",
"first_letter": "t",
"shorthand": "tmsk",
"pinyin": "tumushuke",
"suffix": "市",
"code": "659003",
"sort": "17"
},
{
"id": "482",
"name": "五家渠",
"parent_id": "31",
"first_letter": "w",
"shorthand": "wjq",
"pinyin": "wujiaqu",
"suffix": "市",
"code": "659004",
"sort": "18"
},
{
"id": "483",
"name": "北屯",
"parent_id": "31",
"first_letter": "b",
"shorthand": "bt",
"pinyin": "beitun",
"suffix": "市",
"code": "659005",
"sort": "19"
},
{
"id": "484",
"name": "铁门关",
"parent_id": "31",
"first_letter": "t",
"shorthand": "tmg",
"pinyin": "tiemenguan",
"suffix": "市",
"code": "659006",
"sort": "20"
},
{
"id": "485",
"name": "台北",
"parent_id": "32",
"first_letter": "t",
"shorthand": "tb",
"pinyin": "taibei",
"suffix": "市",
"code": "63",
"sort": "1"
},
{
"id": "486",
"name": "高雄",
"parent_id": "32",
"first_letter": "g",
"shorthand": "gx",
"pinyin": "gaoxiong",
"suffix": "市",
"code": "64",
"sort": "2"
},
{
"id": "487",
"name": "基隆",
"parent_id": "32",
"first_letter": "j",
"shorthand": "jl",
"pinyin": "jilong",
"suffix": "市",
"code": "10017",
"sort": "3"
},
{
"id": "488",
"name": "台中",
"parent_id": "32",
"first_letter": "t",
"shorthand": "tz",
"pinyin": "taizhong",
"suffix": "市",
"code": "10019",
"sort": "4"
},
{
"id": "489",
"name": "台南",
"parent_id": "32",
"first_letter": "t",
"shorthand": "tn",
"pinyin": "tainan",
"suffix": "市",
"code": "10021",
"sort": "5"
},
{
"id": "490",
"name": "新竹",
"parent_id": "32",
"first_letter": "x",
"shorthand": "xz",
"pinyin": "xinzhu",
"suffix": "市",
"code": "10018",
"sort": "6"
},
{
"id": "491",
"name": "嘉义",
"parent_id": "32",
"first_letter": "j",
"shorthand": "jy",
"pinyin": "jiayi",
"suffix": "市",
"code": "10020",
"sort": "7"
},
{
"id": "493",
"name": "宜兰",
"parent_id": "32",
"first_letter": "y",
"shorthand": "yl",
"pinyin": "yilan",
"suffix": "县",
"code": "10002",
"sort": "9"
},
{
"id": "494",
"name": "桃园",
"parent_id": "32",
"first_letter": "t",
"shorthand": "ty",
"pinyin": "taoyuan",
"suffix": "县",
"code": "10003",
"sort": "10"
},
{
"id": "495",
"name": "新竹",
"parent_id": "32",
"first_letter": "x",
"shorthand": "xz",
"pinyin": "xinzhu",
"suffix": "县",
"code": "10004",
"sort": "11"
},
{
"id": "496",
"name": "苗栗",
"parent_id": "32",
"first_letter": "m",
"shorthand": "ml",
"pinyin": "miaoli",
"suffix": "县",
"code": "10005",
"sort": "12"
},
{
"id": "497",
"name": "彰化",
"parent_id": "32",
"first_letter": "z",
"shorthand": "zh",
"pinyin": "zhanghua",
"suffix": "县",
"code": "10007",
"sort": "13"
},
{
"id": "498",
"name": "南投",
"parent_id": "32",
"first_letter": "n",
"shorthand": "nt",
"pinyin": "nantou",
"suffix": "县",
"code": "10008",
"sort": "14"
},
{
"id": "499",
"name": "云林",
"parent_id": "32",
"first_letter": "y",
"shorthand": "yl",
"pinyin": "yunlin",
"suffix": "县",
"code": "10009",
"sort": "15"
},
{
"id": "501",
"name": "屏东",
"parent_id": "32",
"first_letter": "p",
"shorthand": "pd",
"pinyin": "pingdong",
"suffix": "县",
"code": "10013",
"sort": "17"
},
{
"id": "502",
"name": "台东",
"parent_id": "32",
"first_letter": "t",
"shorthand": "td",
"pinyin": "taidong",
"suffix": "县",
"code": "10014",
"sort": "18"
},
{
"id": "503",
"name": "花莲",
"parent_id": "32",
"first_letter": "h",
"shorthand": "hl",
"pinyin": "hualian",
"suffix": "县",
"code": "10015",
"sort": "19"
},
{
"id": "504",
"name": "澎湖",
"parent_id": "32",
"first_letter": "p",
"shorthand": "ph",
"pinyin": "penghu",
"suffix": "县",
"code": "10016",
"sort": "20"
},
{
"id": "533",
"name": "长安",
"parent_id": "125",
"first_letter": "z",
"shorthand": "za",
"pinyin": "zhangan",
"suffix": "区",
"code": "130102",
"sort": "1"
},
{
"id": "535",
"name": "桥西",
"parent_id": "125",
"first_letter": "q",
"shorthand": "qx",
"pinyin": "qiaoxi",
"suffix": "区",
"code": "130104",
"sort": "2"
},
{
"id": "536",
"name": "新华",
"parent_id": "125",
"first_letter": "x",
"shorthand": "xh",
"pinyin": "xinhua",
"suffix": "区",
"code": "130105",
"sort": "3"
},
{
"id": "537",
"name": "井陉矿",
"parent_id": "125",
"first_letter": "j",
"shorthand": "jxk",
"pinyin": "jingxingkuang",
"suffix": "区",
"code": "130107",
"sort": "4"
},
{
"id": "538",
"name": "裕华",
"parent_id": "125",
"first_letter": "y",
"shorthand": "yh",
"pinyin": "yuhua",
"suffix": "区",
"code": "130108",
"sort": "5"
},
{
"id": "539",
"name": "井陉",
"parent_id": "125",
"first_letter": "j",
"shorthand": "jx",
"pinyin": "jingxing",
"suffix": "县",
"code": "130121",
"sort": "9"
},
{
"id": "540",
"name": "正定",
"parent_id": "125",
"first_letter": "z",
"shorthand": "zd",
"pinyin": "zhengding",
"suffix": "县",
"code": "130123",
"sort": "10"
},
{
"id": "541",
"name": "栾城",
"parent_id": "125",
"first_letter": "l",
"shorthand": "lc",
"pinyin": "luancheng",
"suffix": "区",
"code": "130111",
"sort": "8"
},
{
"id": "542",
"name": "行唐",
"parent_id": "125",
"first_letter": "x",
"shorthand": "xt",
"pinyin": "xingtang",
"suffix": "县",
"code": "130125",
"sort": "11"
},
{
"id": "543",
"name": "灵寿",
"parent_id": "125",
"first_letter": "l",
"shorthand": "ls",
"pinyin": "lingshou",
"suffix": "县",
"code": "130126",
"sort": "12"
},
{
"id": "544",
"name": "高邑",
"parent_id": "125",
"first_letter": "g",
"shorthand": "gy",
"pinyin": "gaoyi",
"suffix": "县",
"code": "130127",
"sort": "13"
},
{
"id": "545",
"name": "深泽",
"parent_id": "125",
"first_letter": "s",
"shorthand": "sz",
"pinyin": "shenze",
"suffix": "县",
"code": "130128",
"sort": "14"
},
{
"id": "546",
"name": "赞皇",
"parent_id": "125",
"first_letter": "z",
"shorthand": "zh",
"pinyin": "zanhuang",
"suffix": "县",
"code": "130129",
"sort": "15"
},
{
"id": "547",
"name": "无极",
"parent_id": "125",
"first_letter": "w",
"shorthand": "wj",
"pinyin": "wuji",
"suffix": "县",
"code": "130130",
"sort": "16"
},
{
"id": "548",
"name": "平山",
"parent_id": "125",
"first_letter": "p",
"shorthand": "ps",
"pinyin": "pingshan",
"suffix": "县",
"code": "130131",
"sort": "17"
},
{
"id": "549",
"name": "元氏",
"parent_id": "125",
"first_letter": "y",
"shorthand": "ys",
"pinyin": "yuanshi",
"suffix": "县",
"code": "130132",
"sort": "18"
},
{
"id": "550",
"name": "赵县",
"parent_id": "125",
"first_letter": "z",
"shorthand": "zx",
"pinyin": "zhaoxian",
"suffix": "",
"code": "130133",
"sort": "19"
},
{
"id": "551",
"name": "辛集",
"parent_id": "125",
"first_letter": "x",
"shorthand": "xj",
"pinyin": "xinji",
"suffix": "市",
"code": "130181",
"sort": "20"
},
{
"id": "552",
"name": "藁城",
"parent_id": "125",
"first_letter": "g",
"shorthand": "gc",
"pinyin": "gaocheng",
"suffix": "区",
"code": "130109",
"sort": "6"
},
{
"id": "553",
"name": "晋州",
"parent_id": "125",
"first_letter": "j",
"shorthand": "jz",
"pinyin": "jinzhou",
"suffix": "市",
"code": "130183",
"sort": "21"
},
{
"id": "554",
"name": "新乐",
"parent_id": "125",
"first_letter": "x",
"shorthand": "xl",
"pinyin": "xinle",
"suffix": "市",
"code": "130184",
"sort": "22"
},
{
"id": "555",
"name": "鹿泉",
"parent_id": "125",
"first_letter": "l",
"shorthand": "lq",
"pinyin": "luquan",
"suffix": "区",
"code": "130110",
"sort": "7"
},
{
"id": "556",
"name": "路南",
"parent_id": "126",
"first_letter": "l",
"shorthand": "ln",
"pinyin": "lunan",
"suffix": "区",
"code": "130202",
"sort": "1"
},
{
"id": "557",
"name": "路北",
"parent_id": "126",
"first_letter": "l",
"shorthand": "lb",
"pinyin": "lubei",
"suffix": "区",
"code": "130203",
"sort": "2"
},
{
"id": "558",
"name": "古冶",
"parent_id": "126",
"first_letter": "g",
"shorthand": "gy",
"pinyin": "guye",
"suffix": "区",
"code": "130204",
"sort": "3"
},
{
"id": "559",
"name": "开平",
"parent_id": "126",
"first_letter": "k",
"shorthand": "kp",
"pinyin": "kaiping",
"suffix": "区",
"code": "130205",
"sort": "4"
},
{
"id": "560",
"name": "丰南",
"parent_id": "126",
"first_letter": "f",
"shorthand": "fn",
"pinyin": "fengnan",
"suffix": "区",
"code": "130207",
"sort": "5"
},
{
"id": "561",
"name": "丰润",
"parent_id": "126",
"first_letter": "f",
"shorthand": "fr",
"pinyin": "fengrun",
"suffix": "区",
"code": "130208",
"sort": "6"
},
{
"id": "562",
"name": "滦县",
"parent_id": "126",
"first_letter": "l",
"shorthand": "lx",
"pinyin": "luanxian",
"suffix": "",
"code": "130223",
"sort": "7"
},
{
"id": "563",
"name": "滦南",
"parent_id": "126",
"first_letter": "l",
"shorthand": "ln",
"pinyin": "luannan",
"suffix": "县",
"code": "130224",
"sort": "8"
},
{
"id": "564",
"name": "乐亭",
"parent_id": "126",
"first_letter": "l",
"shorthand": "lt",
"pinyin": "leting",
"suffix": "县",
"code": "130225",
"sort": "9"
},
{
"id": "565",
"name": "迁西",
"parent_id": "126",
"first_letter": "q",
"shorthand": "qx",
"pinyin": "qianxi",
"suffix": "县",
"code": "130227",
"sort": "10"
},
{
"id": "566",
"name": "玉田",
"parent_id": "126",
"first_letter": "y",
"shorthand": "yt",
"pinyin": "yutian",
"suffix": "县",
"code": "130229",
"sort": "11"
},
{
"id": "567",
"name": "唐海",
"parent_id": "126",
"first_letter": "t",
"shorthand": "th",
"pinyin": "tanghai",
"suffix": "县",
"code": "130230",
"sort": "12"
},
{
"id": "568",
"name": "遵化",
"parent_id": "126",
"first_letter": "z",
"shorthand": "zh",
"pinyin": "zunhua",
"suffix": "市",
"code": "130281",
"sort": "13"
},
{
"id": "569",
"name": "迁安",
"parent_id": "126",
"first_letter": "q",
"shorthand": "qa",
"pinyin": "qianan",
"suffix": "市",
"code": "130283",
"sort": "14"
},
{
"id": "570",
"name": "海港",
"parent_id": "127",
"first_letter": "h",
"shorthand": "hg",
"pinyin": "haigang",
"suffix": "区",
"code": "130302",
"sort": "1"
},
{
"id": "571",
"name": "山海关",
"parent_id": "127",
"first_letter": "s",
"shorthand": "shg",
"pinyin": "shanhaiguan",
"suffix": "区",
"code": "130303",
"sort": "2"
},
{
"id": "572",
"name": "北戴河",
"parent_id": "127",
"first_letter": "b",
"shorthand": "bdh",
"pinyin": "beidaihe",
"suffix": "区",
"code": "130304",
"sort": "3"
},
{
"id": "573",
"name": "青龙",
"parent_id": "127",
"first_letter": "q",
"shorthand": "ql",
"pinyin": "qinglong",
"suffix": "自治县",
"code": "130321",
"sort": "4"
},
{
"id": "574",
"name": "昌黎",
"parent_id": "127",
"first_letter": "c",
"shorthand": "cl",
"pinyin": "changli",
"suffix": "县",
"code": "130322",
"sort": "5"
},
{
"id": "575",
"name": "抚宁",
"parent_id": "127",
"first_letter": "f",
"shorthand": "fn",
"pinyin": "funing",
"suffix": "县",
"code": "130323",
"sort": "6"
},
{
"id": "576",
"name": "卢龙",
"parent_id": "127",
"first_letter": "l",
"shorthand": "ll",
"pinyin": "lulong",
"suffix": "县",
"code": "130324",
"sort": "7"
},
{
"id": "577",
"name": "邯山",
"parent_id": "128",
"first_letter": "h",
"shorthand": "hs",
"pinyin": "hanshan",
"suffix": "区",
"code": "130402",
"sort": "1"
},
{
"id": "578",
"name": "丛台",
"parent_id": "128",
"first_letter": "c",
"shorthand": "ct",
"pinyin": "congtai",
"suffix": "区",
"code": "130403",
"sort": "2"
},
{
"id": "579",
"name": "复兴",
"parent_id": "128",
"first_letter": "f",
"shorthand": "fx",
"pinyin": "fuxing",
"suffix": "区",
"code": "130404",
"sort": "3"
},
{
"id": "580",
"name": "峰峰矿",
"parent_id": "128",
"first_letter": "f",
"shorthand": "ffk",
"pinyin": "fengfengkuang",
"suffix": "区",
"code": "130406",
"sort": "4"
},
{
"id": "581",
"name": "邯郸",
"parent_id": "128",
"first_letter": "h",
"shorthand": "hd",
"pinyin": "handan",
"suffix": "县",
"code": "130421",
"sort": "5"
},
{
"id": "582",
"name": "临漳",
"parent_id": "128",
"first_letter": "l",
"shorthand": "lz",
"pinyin": "linzhang",
"suffix": "县",
"code": "130423",
"sort": "6"
},
{
"id": "583",
"name": "成安",
"parent_id": "128",
"first_letter": "c",
"shorthand": "ca",
"pinyin": "chengan",
"suffix": "县",
"code": "130424",
"sort": "7"
},
{
"id": "584",
"name": "大名",
"parent_id": "128",
"first_letter": "d",
"shorthand": "dm",
"pinyin": "daming",
"suffix": "县",
"code": "130425",
"sort": "8"
},
{
"id": "585",
"name": "涉县",
"parent_id": "128",
"first_letter": "s",
"shorthand": "sx",
"pinyin": "shexian",
"suffix": "",
"code": "130426",
"sort": "9"
},
{
"id": "586",
"name": "磁县",
"parent_id": "128",
"first_letter": "c",
"shorthand": "cx",
"pinyin": "cixian",
"suffix": "",
"code": "130427",
"sort": "10"
},
{
"id": "587",
"name": "肥乡",
"parent_id": "128",
"first_letter": "f",
"shorthand": "fx",
"pinyin": "feixiang",
"suffix": "县",
"code": "130428",
"sort": "11"
},
{
"id": "588",
"name": "永年",
"parent_id": "128",
"first_letter": "y",
"shorthand": "yn",
"pinyin": "yongnian",
"suffix": "县",
"code": "130429",
"sort": "12"
},
{
"id": "589",
"name": "邱县",
"parent_id": "128",
"first_letter": "q",
"shorthand": "qx",
"pinyin": "qiuxian",
"suffix": "",
"code": "130430",
"sort": "13"
},
{
"id": "590",
"name": "鸡泽",
"parent_id": "128",
"first_letter": "j",
"shorthand": "jz",
"pinyin": "jize",
"suffix": "县",
"code": "130431",
"sort": "14"
},
{
"id": "591",
"name": "广平",
"parent_id": "128",
"first_letter": "g",
"shorthand": "gp",
"pinyin": "guangping",
"suffix": "县",
"code": "130432",
"sort": "15"
},
{
"id": "592",
"name": "馆陶",
"parent_id": "128",
"first_letter": "g",
"shorthand": "gt",
"pinyin": "guantao",
"suffix": "县",
"code": "130433",
"sort": "16"
},
{
"id": "593",
"name": "魏县",
"parent_id": "128",
"first_letter": "w",
"shorthand": "wx",
"pinyin": "weixian",
"suffix": "",
"code": "130434",
"sort": "17"
},
{
"id": "594",
"name": "曲周",
"parent_id": "128",
"first_letter": "q",
"shorthand": "qz",
"pinyin": "quzhou",
"suffix": "县",
"code": "130435",
"sort": "18"
},
{
"id": "595",
"name": "武安",
"parent_id": "128",
"first_letter": "w",
"shorthand": "wa",
"pinyin": "wuan",
"suffix": "市",
"code": "130481",
"sort": "19"
},
{
"id": "596",
"name": "桥东",
"parent_id": "129",
"first_letter": "q",
"shorthand": "qd",
"pinyin": "qiaodong",
"suffix": "区",
"code": "130502",
"sort": "1"
},
{
"id": "597",
"name": "桥西",
"parent_id": "129",
"first_letter": "q",
"shorthand": "qx",
"pinyin": "qiaoxi",
"suffix": "区",
"code": "130503",
"sort": "2"
},
{
"id": "598",
"name": "邢台",
"parent_id": "129",
"first_letter": "x",
"shorthand": "xt",
"pinyin": "xingtai",
"suffix": "县",
"code": "130521",
"sort": "3"
},
{
"id": "599",
"name": "临城",
"parent_id": "129",
"first_letter": "l",
"shorthand": "lc",
"pinyin": "lincheng",
"suffix": "县",
"code": "130522",
"sort": "4"
},
{
"id": "600",
"name": "内丘",
"parent_id": "129",
"first_letter": "n",
"shorthand": "nq",
"pinyin": "neiqiu",
"suffix": "县",
"code": "130523",
"sort": "5"
},
{
"id": "601",
"name": "柏乡",
"parent_id": "129",
"first_letter": "b",
"shorthand": "bx",
"pinyin": "boxiang",
"suffix": "县",
"code": "130524",
"sort": "6"
},
{
"id": "602",
"name": "隆尧",
"parent_id": "129",
"first_letter": "l",
"shorthand": "ly",
"pinyin": "longyao",
"suffix": "县",
"code": "130525",
"sort": "7"
},
{
"id": "603",
"name": "任县",
"parent_id": "129",
"first_letter": "r",
"shorthand": "rx",
"pinyin": "renxian",
"suffix": "",
"code": "130526",
"sort": "8"
},
{
"id": "604",
"name": "南和",
"parent_id": "129",
"first_letter": "n",
"shorthand": "nh",
"pinyin": "nanhe",
"suffix": "县",
"code": "130527",
"sort": "9"
},
{
"id": "605",
"name": "宁晋",
"parent_id": "129",
"first_letter": "n",
"shorthand": "nj",
"pinyin": "ningjin",
"suffix": "县",
"code": "130528",
"sort": "10"
},
{
"id": "606",
"name": "巨鹿",
"parent_id": "129",
"first_letter": "j",
"shorthand": "jl",
"pinyin": "julu",
"suffix": "县",
"code": "130529",
"sort": "11"
},
{
"id": "607",
"name": "新河",
"parent_id": "129",
"first_letter": "x",
"shorthand": "xh",
"pinyin": "xinhe",
"suffix": "县",
"code": "130530",
"sort": "12"
},
{
"id": "608",
"name": "广宗",
"parent_id": "129",
"first_letter": "g",
"shorthand": "gz",
"pinyin": "guangzong",
"suffix": "县",
"code": "130531",
"sort": "13"
},
{
"id": "609",
"name": "平乡",
"parent_id": "129",
"first_letter": "p",
"shorthand": "px",
"pinyin": "pingxiang",
"suffix": "县",
"code": "130532",
"sort": "14"
},
{
"id": "610",
"name": "威县",
"parent_id": "129",
"first_letter": "w",
"shorthand": "wx",
"pinyin": "weixian",
"suffix": "",
"code": "130533",
"sort": "15"
},
{
"id": "611",
"name": "清河",
"parent_id": "129",
"first_letter": "q",
"shorthand": "qh",
"pinyin": "qinghe",
"suffix": "县",
"code": "130534",
"sort": "16"
},
{
"id": "612",
"name": "临西",
"parent_id": "129",
"first_letter": "l",
"shorthand": "lx",
"pinyin": "linxi",
"suffix": "县",
"code": "130535",
"sort": "17"
},
{
"id": "613",
"name": "南宫",
"parent_id": "129",
"first_letter": "n",
"shorthand": "ng",
"pinyin": "nangong",
"suffix": "市",
"code": "130581",
"sort": "18"
},
{
"id": "614",
"name": "沙河",
"parent_id": "129",
"first_letter": "s",
"shorthand": "sh",
"pinyin": "shahe",
"suffix": "市",
"code": "130582",
"sort": "19"
},
{
"id": "615",
"name": "新市",
"parent_id": "130",
"first_letter": "x",
"shorthand": "xs",
"pinyin": "xinshi",
"suffix": "区",
"code": "130602",
"sort": "1"
},
{
"id": "616",
"name": "北市",
"parent_id": "130",
"first_letter": "b",
"shorthand": "bs",
"pinyin": "beishi",
"suffix": "区",
"code": "130603",
"sort": "2"
},
{
"id": "617",
"name": "南市",
"parent_id": "130",
"first_letter": "n",
"shorthand": "ns",
"pinyin": "nanshi",
"suffix": "区",
"code": "130604",
"sort": "3"
},
{
"id": "618",
"name": "满城",
"parent_id": "130",
"first_letter": "m",
"shorthand": "mc",
"pinyin": "mancheng",
"suffix": "县",
"code": "130621",
"sort": "4"
},
{
"id": "619",
"name": "清苑",
"parent_id": "130",
"first_letter": "q",
"shorthand": "qy",
"pinyin": "qingyuan",
"suffix": "县",
"code": "130622",
"sort": "5"
},
{
"id": "620",
"name": "涞水",
"parent_id": "130",
"first_letter": "l",
"shorthand": "ls",
"pinyin": "laishui",
"suffix": "县",
"code": "130623",
"sort": "6"
},
{
"id": "621",
"name": "阜平",
"parent_id": "130",
"first_letter": "f",
"shorthand": "fp",
"pinyin": "fuping",
"suffix": "县",
"code": "130624",
"sort": "7"
},
{
"id": "622",
"name": "徐水",
"parent_id": "130",
"first_letter": "x",
"shorthand": "xs",
"pinyin": "xushui",
"suffix": "县",
"code": "130625",
"sort": "8"
},
{
"id": "623",
"name": "定兴",
"parent_id": "130",
"first_letter": "d",
"shorthand": "dx",
"pinyin": "dingxing",
"suffix": "县",
"code": "130626",
"sort": "9"
},
{
"id": "624",
"name": "唐县",
"parent_id": "130",
"first_letter": "t",
"shorthand": "tx",
"pinyin": "tangxian",
"suffix": "",
"code": "130627",
"sort": "10"
},
{
"id": "625",
"name": "高阳",
"parent_id": "130",
"first_letter": "g",
"shorthand": "gy",
"pinyin": "gaoyang",
"suffix": "县",
"code": "130628",
"sort": "11"
},
{
"id": "626",
"name": "容城",
"parent_id": "130",
"first_letter": "r",
"shorthand": "rc",
"pinyin": "rongcheng",
"suffix": "县",
"code": "130629",
"sort": "12"
},
{
"id": "627",
"name": "涞源",
"parent_id": "130",
"first_letter": "l",
"shorthand": "ly",
"pinyin": "laiyuan",
"suffix": "县",
"code": "130630",
"sort": "13"
},
{
"id": "628",
"name": "望都",
"parent_id": "130",
"first_letter": "w",
"shorthand": "wd",
"pinyin": "wangdou",
"suffix": "县",
"code": "130631",
"sort": "14"
},
{
"id": "629",
"name": "安新",
"parent_id": "130",
"first_letter": "a",
"shorthand": "ax",
"pinyin": "anxin",
"suffix": "县",
"code": "130632",
"sort": "15"
},
{
"id": "630",
"name": "易县",
"parent_id": "130",
"first_letter": "y",
"shorthand": "yx",
"pinyin": "yixian",
"suffix": "",
"code": "130633",
"sort": "16"
},
{
"id": "631",
"name": "曲阳",
"parent_id": "130",
"first_letter": "q",
"shorthand": "qy",
"pinyin": "quyang",
"suffix": "县",
"code": "130634",
"sort": "17"
},
{
"id": "632",
"name": "蠡县",
"parent_id": "130",
"first_letter": "l",
"shorthand": "lx",
"pinyin": "lixian",
"suffix": "",
"code": "130635",
"sort": "18"
},
{
"id": "633",
"name": "顺平",
"parent_id": "130",
"first_letter": "s",
"shorthand": "sp",
"pinyin": "shunping",
"suffix": "县",
"code": "130636",
"sort": "19"
},
{
"id": "634",
"name": "博野",
"parent_id": "130",
"first_letter": "b",
"shorthand": "by",
"pinyin": "boye",
"suffix": "县",
"code": "130637",
"sort": "20"
},
{
"id": "635",
"name": "雄县",
"parent_id": "130",
"first_letter": "x",
"shorthand": "xx",
"pinyin": "xiongxian",
"suffix": "",
"code": "130638",
"sort": "21"
},
{
"id": "636",
"name": "涿州",
"parent_id": "130",
"first_letter": "z",
"shorthand": "zz",
"pinyin": "zhuozhou",
"suffix": "市",
"code": "130681",
"sort": "22"
},
{
"id": "637",
"name": "定州",
"parent_id": "130",
"first_letter": "d",
"shorthand": "dz",
"pinyin": "dingzhou",
"suffix": "市",
"code": "130682",
"sort": "23"
},
{
"id": "638",
"name": "安国",
"parent_id": "130",
"first_letter": "a",
"shorthand": "ag",
"pinyin": "anguo",
"suffix": "市",
"code": "130683",
"sort": "24"
},
{
"id": "639",
"name": "高碑店",
"parent_id": "130",
"first_letter": "g",
"shorthand": "gbd",
"pinyin": "gaobeidian",
"suffix": "市",
"code": "130684",
"sort": "25"
},
{
"id": "640",
"name": "桥东",
"parent_id": "131",
"first_letter": "q",
"shorthand": "qd",
"pinyin": "qiaodong",
"suffix": "区",
"code": "130702",
"sort": "1"
},
{
"id": "641",
"name": "桥西",
"parent_id": "131",
"first_letter": "q",
"shorthand": "qx",
"pinyin": "qiaoxi",
"suffix": "区",
"code": "130703",
"sort": "2"
},
{
"id": "642",
"name": "宣化",
"parent_id": "131",
"first_letter": "x",
"shorthand": "xh",
"pinyin": "xuanhua",
"suffix": "区",
"code": "130705",
"sort": "3"
},
{
"id": "643",
"name": "下花园",
"parent_id": "131",
"first_letter": "x",
"shorthand": "xhy",
"pinyin": "xiahuayuan",
"suffix": "区",
"code": "130706",
"sort": "4"
},
{
"id": "644",
"name": "宣化",
"parent_id": "131",
"first_letter": "x",
"shorthand": "xh",
"pinyin": "xuanhua",
"suffix": "县",
"code": "130721",
"sort": "5"
},
{
"id": "645",
"name": "张北",
"parent_id": "131",
"first_letter": "z",
"shorthand": "zb",
"pinyin": "zhangbei",
"suffix": "县",
"code": "130722",
"sort": "6"
},
{
"id": "646",
"name": "康保",
"parent_id": "131",
"first_letter": "k",
"shorthand": "kb",
"pinyin": "kangbao",
"suffix": "县",
"code": "130723",
"sort": "7"
},
{
"id": "647",
"name": "沽源",
"parent_id": "131",
"first_letter": "g",
"shorthand": "gy",
"pinyin": "guyuan",
"suffix": "县",
"code": "130724",
"sort": "8"
},
{
"id": "648",
"name": "尚义",
"parent_id": "131",
"first_letter": "s",
"shorthand": "sy",
"pinyin": "shangyi",
"suffix": "县",
"code": "130725",
"sort": "9"
},
{
"id": "649",
"name": "蔚县",
"parent_id": "131",
"first_letter": "y",
"shorthand": "yx",
"pinyin": "yuxian",
"suffix": "",
"code": "130726",
"sort": "10"
},
{
"id": "650",
"name": "阳原",
"parent_id": "131",
"first_letter": "y",
"shorthand": "yy",
"pinyin": "yangyuan",
"suffix": "县",
"code": "130727",
"sort": "11"
},
{
"id": "651",
"name": "怀安",
"parent_id": "131",
"first_letter": "h",
"shorthand": "ha",
"pinyin": "huaian",
"suffix": "县",
"code": "130728",
"sort": "12"
},
{
"id": "652",
"name": "万全",
"parent_id": "131",
"first_letter": "w",
"shorthand": "wq",
"pinyin": "wanquan",
"suffix": "县",
"code": "130729",
"sort": "13"
},
{
"id": "653",
"name": "怀来",
"parent_id": "131",
"first_letter": "h",
"shorthand": "hl",
"pinyin": "huailai",
"suffix": "县",
"code": "130730",
"sort": "14"
},
{
"id": "654",
"name": "涿鹿",
"parent_id": "131",
"first_letter": "z",
"shorthand": "zl",
"pinyin": "zhuolu",
"suffix": "县",
"code": "130731",
"sort": "15"
},
{
"id": "655",
"name": "赤城",
"parent_id": "131",
"first_letter": "c",
"shorthand": "cc",
"pinyin": "chicheng",
"suffix": "县",
"code": "130732",
"sort": "16"
},
{
"id": "656",
"name": "崇礼",
"parent_id": "131",
"first_letter": "c",
"shorthand": "cl",
"pinyin": "chongli",
"suffix": "县",
"code": "130733",
"sort": "17"
},
{
"id": "657",
"name": "双桥",
"parent_id": "132",
"first_letter": "s",
"shorthand": "sq",
"pinyin": "shuangqiao",
"suffix": "区",
"code": "130802",
"sort": "1"
},
{
"id": "658",
"name": "双滦",
"parent_id": "132",
"first_letter": "s",
"shorthand": "sl",
"pinyin": "shuangluan",
"suffix": "区",
"code": "130803",
"sort": "2"
},
{
"id": "659",
"name": "鹰手营子",
"parent_id": "132",
"first_letter": "y",
"shorthand": "ysyz",
"pinyin": "yingshouyingzi",
"suffix": "区",
"code": "130804",
"sort": "3"
},
{
"id": "660",
"name": "承德",
"parent_id": "132",
"first_letter": "c",
"shorthand": "cd",
"pinyin": "chengde",
"suffix": "县",
"code": "130821",
"sort": "4"
},
{
"id": "661",
"name": "兴隆",
"parent_id": "132",
"first_letter": "x",
"shorthand": "xl",
"pinyin": "xinglong",
"suffix": "县",
"code": "130822",
"sort": "5"
},
{
"id": "662",
"name": "平泉",
"parent_id": "132",
"first_letter": "p",
"shorthand": "pq",
"pinyin": "pingquan",
"suffix": "县",
"code": "130823",
"sort": "6"
},
{
"id": "663",
"name": "滦平",
"parent_id": "132",
"first_letter": "l",
"shorthand": "lp",
"pinyin": "luanping",
"suffix": "县",
"code": "130824",
"sort": "7"
},
{
"id": "664",
"name": "隆化",
"parent_id": "132",
"first_letter": "l",
"shorthand": "lh",
"pinyin": "longhua",
"suffix": "县",
"code": "130825",
"sort": "8"
},
{
"id": "665",
"name": "丰宁",
"parent_id": "132",
"first_letter": "f",
"shorthand": "fn",
"pinyin": "fengning",
"suffix": "自治县",
"code": "130826",
"sort": "9"
},
{
"id": "666",
"name": "宽城",
"parent_id": "132",
"first_letter": "k",
"shorthand": "kc",
"pinyin": "kuancheng",
"suffix": "自治县",
"code": "130827",
"sort": "10"
},
{
"id": "667",
"name": "围场",
"parent_id": "132",
"first_letter": "w",
"shorthand": "wc",
"pinyin": "weichang",
"suffix": "自治县",
"code": "130828",
"sort": "11"
},
{
"id": "668",
"name": "新华",
"parent_id": "133",
"first_letter": "x",
"shorthand": "xh",
"pinyin": "xinhua",
"suffix": "区",
"code": "130902",
"sort": "1"
},
{
"id": "669",
"name": "运河",
"parent_id": "133",
"first_letter": "y",
"shorthand": "yh",
"pinyin": "yunhe",
"suffix": "区",
"code": "130903",
"sort": "2"
},
{
"id": "670",
"name": "沧县",
"parent_id": "133",
"first_letter": "c",
"shorthand": "cx",
"pinyin": "cangxian",
"suffix": "",
"code": "130921",
"sort": "3"
},
{
"id": "671",
"name": "青县",
"parent_id": "133",
"first_letter": "q",
"shorthand": "qx",
"pinyin": "qingxian",
"suffix": "",
"code": "130922",
"sort": "4"
},
{
"id": "672",
"name": "东光",
"parent_id": "133",
"first_letter": "d",
"shorthand": "dg",
"pinyin": "dongguang",
"suffix": "县",
"code": "130923",
"sort": "5"
},
{
"id": "673",
"name": "海兴",
"parent_id": "133",
"first_letter": "h",
"shorthand": "hx",
"pinyin": "haixing",
"suffix": "县",
"code": "130924",
"sort": "6"
},
{
"id": "674",
"name": "盐山",
"parent_id": "133",
"first_letter": "y",
"shorthand": "ys",
"pinyin": "yanshan",
"suffix": "县",
"code": "130925",
"sort": "7"
},
{
"id": "675",
"name": "肃宁",
"parent_id": "133",
"first_letter": "s",
"shorthand": "sn",
"pinyin": "suning",
"suffix": "县",
"code": "130926",
"sort": "8"
},
{
"id": "676",
"name": "南皮",
"parent_id": "133",
"first_letter": "n",
"shorthand": "np",
"pinyin": "nanpi",
"suffix": "县",
"code": "130927",
"sort": "9"
},
{
"id": "677",
"name": "吴桥",
"parent_id": "133",
"first_letter": "w",
"shorthand": "wq",
"pinyin": "wuqiao",
"suffix": "县",
"code": "130928",
"sort": "10"
},
{
"id": "678",
"name": "献县",
"parent_id": "133",
"first_letter": "x",
"shorthand": "xx",
"pinyin": "xianxian",
"suffix": "",
"code": "130929",
"sort": "11"
},
{
"id": "679",
"name": "孟村",
"parent_id": "133",
"first_letter": "m",
"shorthand": "mc",
"pinyin": "mengcun",
"suffix": "自治县",
"code": "130930",
"sort": "12"
},
{
"id": "680",
"name": "泊头",
"parent_id": "133",
"first_letter": "b",
"shorthand": "bt",
"pinyin": "botou",
"suffix": "市",
"code": "130981",
"sort": "13"
},
{
"id": "681",
"name": "任丘",
"parent_id": "133",
"first_letter": "r",
"shorthand": "rq",
"pinyin": "renqiu",
"suffix": "市",
"code": "130982",
"sort": "14"
},
{
"id": "682",
"name": "黄骅",
"parent_id": "133",
"first_letter": "h",
"shorthand": "hh",
"pinyin": "huanghua",
"suffix": "市",
"code": "130983",
"sort": "15"
},
{
"id": "683",
"name": "河间",
"parent_id": "133",
"first_letter": "h",
"shorthand": "hj",
"pinyin": "hejian",
"suffix": "市",
"code": "130984",
"sort": "16"
},
{
"id": "684",
"name": "安次",
"parent_id": "134",
"first_letter": "a",
"shorthand": "ac",
"pinyin": "anci",
"suffix": "区",
"code": "131002",
"sort": "1"
},
{
"id": "685",
"name": "广阳",
"parent_id": "134",
"first_letter": "g",
"shorthand": "gy",
"pinyin": "guangyang",
"suffix": "区",
"code": "131003",
"sort": "2"
},
{
"id": "686",
"name": "固安",
"parent_id": "134",
"first_letter": "g",
"shorthand": "ga",
"pinyin": "guan",
"suffix": "县",
"code": "131022",
"sort": "3"
},
{
"id": "687",
"name": "永清",
"parent_id": "134",
"first_letter": "y",
"shorthand": "yq",
"pinyin": "yongqing",
"suffix": "县",
"code": "131023",
"sort": "4"
},
{
"id": "688",
"name": "香河",
"parent_id": "134",
"first_letter": "x",
"shorthand": "xh",
"pinyin": "xianghe",
"suffix": "县",
"code": "131024",
"sort": "5"
},
{
"id": "689",
"name": "大城",
"parent_id": "134",
"first_letter": "d",
"shorthand": "dc",
"pinyin": "dacheng",
"suffix": "县",
"code": "131025",
"sort": "6"
},
{
"id": "690",
"name": "文安",
"parent_id": "134",
"first_letter": "w",
"shorthand": "wa",
"pinyin": "wenan",
"suffix": "县",
"code": "131026",
"sort": "7"
},
{
"id": "691",
"name": "大厂",
"parent_id": "134",
"first_letter": "d",
"shorthand": "dc",
"pinyin": "dachang",
"suffix": "自治县",
"code": "131028",
"sort": "8"
},
{
"id": "692",
"name": "霸州",
"parent_id": "134",
"first_letter": "b",
"shorthand": "bz",
"pinyin": "bazhou",
"suffix": "市",
"code": "131081",
"sort": "9"
},
{
"id": "693",
"name": "三河",
"parent_id": "134",
"first_letter": "s",
"shorthand": "sh",
"pinyin": "sanhe",
"suffix": "市",
"code": "131082",
"sort": "10"
},
{
"id": "694",
"name": "桃城",
"parent_id": "135",
"first_letter": "t",
"shorthand": "tc",
"pinyin": "taocheng",
"suffix": "区",
"code": "131102",
"sort": "1"
},
{
"id": "695",
"name": "枣强",
"parent_id": "135",
"first_letter": "z",
"shorthand": "zq",
"pinyin": "zaoqiang",
"suffix": "县",
"code": "131121",
"sort": "2"
},
{
"id": "696",
"name": "武邑",
"parent_id": "135",
"first_letter": "w",
"shorthand": "wy",
"pinyin": "wuyi",
"suffix": "县",
"code": "131122",
"sort": "3"
},
{
"id": "697",
"name": "武强",
"parent_id": "135",
"first_letter": "w",
"shorthand": "wq",
"pinyin": "wuqiang",
"suffix": "县",
"code": "131123",
"sort": "4"
},
{
"id": "698",
"name": "饶阳",
"parent_id": "135",
"first_letter": "r",
"shorthand": "ry",
"pinyin": "raoyang",
"suffix": "县",
"code": "131124",
"sort": "5"
},
{
"id": "699",
"name": "安平",
"parent_id": "135",
"first_letter": "a",
"shorthand": "ap",
"pinyin": "anping",
"suffix": "县",
"code": "131125",
"sort": "6"
},
{
"id": "700",
"name": "故城",
"parent_id": "135",
"first_letter": "g",
"shorthand": "gc",
"pinyin": "gucheng",
"suffix": "县",
"code": "131126",
"sort": "7"
},
{
"id": "701",
"name": "景县",
"parent_id": "135",
"first_letter": "j",
"shorthand": "jx",
"pinyin": "jingxian",
"suffix": "",
"code": "131127",
"sort": "8"
},
{
"id": "702",
"name": "阜城",
"parent_id": "135",
"first_letter": "f",
"shorthand": "fc",
"pinyin": "fucheng",
"suffix": "县",
"code": "131128",
"sort": "9"
},
{
"id": "703",
"name": "冀州",
"parent_id": "135",
"first_letter": "j",
"shorthand": "jz",
"pinyin": "jizhou",
"suffix": "市",
"code": "131181",
"sort": "10"
},
{
"id": "704",
"name": "深州",
"parent_id": "135",
"first_letter": "s",
"shorthand": "sz",
"pinyin": "shenzhou",
"suffix": "市",
"code": "131182",
"sort": "11"
},
{
"id": "705",
"name": "小店",
"parent_id": "136",
"first_letter": "x",
"shorthand": "xd",
"pinyin": "xiaodian",
"suffix": "区",
"code": "140105",
"sort": "1"
},
{
"id": "706",
"name": "迎泽",
"parent_id": "136",
"first_letter": "y",
"shorthand": "yz",
"pinyin": "yingze",
"suffix": "区",
"code": "140106",
"sort": "2"
},
{
"id": "707",
"name": "杏花岭",
"parent_id": "136",
"first_letter": "x",
"shorthand": "xhl",
"pinyin": "xinghualing",
"suffix": "区",
"code": "140107",
"sort": "3"
},
{
"id": "708",
"name": "尖草坪",
"parent_id": "136",
"first_letter": "j",
"shorthand": "jcp",
"pinyin": "jiancaoping",
"suffix": "区",
"code": "140108",
"sort": "4"
},
{
"id": "709",
"name": "万柏林",
"parent_id": "136",
"first_letter": "w",
"shorthand": "wbl",
"pinyin": "wanbolin",
"suffix": "区",
"code": "140109",
"sort": "5"
},
{
"id": "710",
"name": "晋源",
"parent_id": "136",
"first_letter": "j",
"shorthand": "jy",
"pinyin": "jinyuan",
"suffix": "区",
"code": "140110",
"sort": "6"
},
{
"id": "711",
"name": "清徐",
"parent_id": "136",
"first_letter": "q",
"shorthand": "qx",
"pinyin": "qingxu",
"suffix": "县",
"code": "140121",
"sort": "7"
},
{
"id": "712",
"name": "阳曲",
"parent_id": "136",
"first_letter": "y",
"shorthand": "yq",
"pinyin": "yangqu",
"suffix": "县",
"code": "140122",
"sort": "8"
},
{
"id": "713",
"name": "娄烦",
"parent_id": "136",
"first_letter": "l",
"shorthand": "lf",
"pinyin": "loufan",
"suffix": "县",
"code": "140123",
"sort": "9"
},
{
"id": "714",
"name": "古交",
"parent_id": "136",
"first_letter": "g",
"shorthand": "gj",
"pinyin": "gujiao",
"suffix": "市",
"code": "140181",
"sort": "10"
},
{
"id": "715",
"name": "城区",
"parent_id": "137",
"first_letter": "c",
"shorthand": "cq",
"pinyin": "chengqu",
"suffix": "",
"code": "140202",
"sort": "1"
},
{
"id": "716",
"name": "矿区",
"parent_id": "137",
"first_letter": "k",
"shorthand": "kq",
"pinyin": "kuangqu",
"suffix": "",
"code": "140203",
"sort": "2"
},
{
"id": "717",
"name": "南郊",
"parent_id": "137",
"first_letter": "n",
"shorthand": "nj",
"pinyin": "nanjiao",
"suffix": "区",
"code": "140211",
"sort": "3"
},
{
"id": "718",
"name": "新荣",
"parent_id": "137",
"first_letter": "x",
"shorthand": "xr",
"pinyin": "xinrong",
"suffix": "区",
"code": "140212",
"sort": "4"
},
{
"id": "719",
"name": "阳高",
"parent_id": "137",
"first_letter": "y",
"shorthand": "yg",
"pinyin": "yanggao",
"suffix": "县",
"code": "140221",
"sort": "5"
},
{
"id": "720",
"name": "天镇",
"parent_id": "137",
"first_letter": "t",
"shorthand": "tz",
"pinyin": "tianzhen",
"suffix": "县",
"code": "140222",
"sort": "6"
},
{
"id": "721",
"name": "广灵",
"parent_id": "137",
"first_letter": "g",
"shorthand": "gl",
"pinyin": "guangling",
"suffix": "县",
"code": "140223",
"sort": "7"
},
{
"id": "722",
"name": "灵丘",
"parent_id": "137",
"first_letter": "l",
"shorthand": "lq",
"pinyin": "lingqiu",
"suffix": "县",
"code": "140224",
"sort": "8"
},
{
"id": "723",
"name": "浑源",
"parent_id": "137",
"first_letter": "h",
"shorthand": "hy",
"pinyin": "hunyuan",
"suffix": "县",
"code": "140225",
"sort": "9"
},
{
"id": "724",
"name": "左云",
"parent_id": "137",
"first_letter": "z",
"shorthand": "zy",
"pinyin": "zuoyun",
"suffix": "县",
"code": "140226",
"sort": "10"
},
{
"id": "725",
"name": "大同",
"parent_id": "137",
"first_letter": "d",
"shorthand": "dt",
"pinyin": "datong",
"suffix": "县",
"code": "140227",
"sort": "11"
},
{
"id": "726",
"name": "城区",
"parent_id": "138",
"first_letter": "c",
"shorthand": "cq",
"pinyin": "chengqu",
"suffix": "",
"code": "140302",
"sort": "1"
},
{
"id": "727",
"name": "矿区",
"parent_id": "138",
"first_letter": "k",
"shorthand": "kq",
"pinyin": "kuangqu",
"suffix": "",
"code": "140303",
"sort": "2"
},
{
"id": "728",
"name": "郊区",
"parent_id": "138",
"first_letter": "j",
"shorthand": "jq",
"pinyin": "jiaoqu",
"suffix": "",
"code": "140311",
"sort": "3"
},
{
"id": "729",
"name": "平定",
"parent_id": "138",
"first_letter": "p",
"shorthand": "pd",
"pinyin": "pingding",
"suffix": "县",
"code": "140321",
"sort": "4"
},
{
"id": "730",
"name": "盂县",
"parent_id": "138",
"first_letter": "y",
"shorthand": "yx",
"pinyin": "yuxian",
"suffix": "",
"code": "140322",
"sort": "5"
},
{
"id": "731",
"name": "城区",
"parent_id": "139",
"first_letter": "c",
"shorthand": "cq",
"pinyin": "chengqu",
"suffix": "",
"code": "140402",
"sort": "1"
},
{
"id": "732",
"name": "郊区",
"parent_id": "139",
"first_letter": "j",
"shorthand": "jq",
"pinyin": "jiaoqu",
"suffix": "",
"code": "140411",
"sort": "2"
},
{
"id": "733",
"name": "长治",
"parent_id": "139",
"first_letter": "z",
"shorthand": "zz",
"pinyin": "zhangzhi",
"suffix": "县",
"code": "140421",
"sort": "3"
},
{
"id": "734",
"name": "襄垣",
"parent_id": "139",
"first_letter": "x",
"shorthand": "xy",
"pinyin": "xiangyuan",
"suffix": "县",
"code": "140423",
"sort": "4"
},
{
"id": "735",
"name": "屯留",
"parent_id": "139",
"first_letter": "t",
"shorthand": "tl",
"pinyin": "tunliu",
"suffix": "县",
"code": "140424",
"sort": "5"
},
{
"id": "736",
"name": "平顺",
"parent_id": "139",
"first_letter": "p",
"shorthand": "ps",
"pinyin": "pingshun",
"suffix": "县",
"code": "140425",
"sort": "6"
},
{
"id": "737",
"name": "黎城",
"parent_id": "139",
"first_letter": "l",
"shorthand": "lc",
"pinyin": "licheng",
"suffix": "县",
"code": "140426",
"sort": "7"
},
{
"id": "738",
"name": "壶关",
"parent_id": "139",
"first_letter": "h",
"shorthand": "hg",
"pinyin": "huguan",
"suffix": "县",
"code": "140427",
"sort": "8"
},
{
"id": "739",
"name": "长子",
"parent_id": "139",
"first_letter": "z",
"shorthand": "zz",
"pinyin": "zhangzi",
"suffix": "县",
"code": "140428",
"sort": "9"
},
{
"id": "740",
"name": "武乡",
"parent_id": "139",
"first_letter": "w",
"shorthand": "wx",
"pinyin": "wuxiang",
"suffix": "县",
"code": "140429",
"sort": "10"
},
{
"id": "741",
"name": "沁县",
"parent_id": "139",
"first_letter": "q",
"shorthand": "qx",
"pinyin": "qinxian",
"suffix": "",
"code": "140430",
"sort": "11"
},
{
"id": "742",
"name": "沁源",
"parent_id": "139",
"first_letter": "q",
"shorthand": "qy",
"pinyin": "qinyuan",
"suffix": "县",
"code": "140431",
"sort": "12"
},
{
"id": "743",
"name": "潞城",
"parent_id": "139",
"first_letter": "l",
"shorthand": "lc",
"pinyin": "lucheng",
"suffix": "县",
"code": "140481",
"sort": "13"
},
{
"id": "744",
"name": "城区",
"parent_id": "140",
"first_letter": "c",
"shorthand": "cq",
"pinyin": "chengqu",
"suffix": "",
"code": "140502",
"sort": "1"
},
{
"id": "745",
"name": "沁水",
"parent_id": "140",
"first_letter": "q",
"shorthand": "qs",
"pinyin": "qinshui",
"suffix": "县",
"code": "140521",
"sort": "2"
},
{
"id": "746",
"name": "阳城",
"parent_id": "140",
"first_letter": "y",
"shorthand": "yc",
"pinyin": "yangcheng",
"suffix": "县",
"code": "140522",
"sort": "3"
},
{
"id": "747",
"name": "陵川",
"parent_id": "140",
"first_letter": "l",
"shorthand": "lc",
"pinyin": "lingchuan",
"suffix": "县",
"code": "140524",
"sort": "4"
},
{
"id": "748",
"name": "泽州",
"parent_id": "140",
"first_letter": "z",
"shorthand": "zz",
"pinyin": "zezhou",
"suffix": "县",
"code": "140525",
"sort": "5"
},
{
"id": "749",
"name": "高平",
"parent_id": "140",
"first_letter": "g",
"shorthand": "gp",
"pinyin": "gaoping",
"suffix": "市",
"code": "140581",
"sort": "6"
},
{
"id": "750",
"name": "朔城",
"parent_id": "141",
"first_letter": "s",
"shorthand": "sc",
"pinyin": "shuocheng",
"suffix": "区",
"code": "140602",
"sort": "1"
},
{
"id": "751",
"name": "平鲁",
"parent_id": "141",
"first_letter": "p",
"shorthand": "pl",
"pinyin": "pinglu",
"suffix": "区",
"code": "140603",
"sort": "2"
},
{
"id": "752",
"name": "山阴",
"parent_id": "141",
"first_letter": "s",
"shorthand": "sy",
"pinyin": "shanyin",
"suffix": "县",
"code": "140621",
"sort": "3"
},
{
"id": "753",
"name": "应县",
"parent_id": "141",
"first_letter": "y",
"shorthand": "yx",
"pinyin": "yingxian",
"suffix": "",
"code": "140622",
"sort": "4"
},
{
"id": "754",
"name": "右玉",
"parent_id": "141",
"first_letter": "y",
"shorthand": "yy",
"pinyin": "youyu",
"suffix": "县",
"code": "140623",
"sort": "5"
},
{
"id": "755",
"name": "怀仁",
"parent_id": "141",
"first_letter": "h",
"shorthand": "hr",
"pinyin": "huairen",
"suffix": "县",
"code": "140624",
"sort": "6"
},
{
"id": "756",
"name": "榆次",
"parent_id": "142",
"first_letter": "y",
"shorthand": "yc",
"pinyin": "yuci",
"suffix": "区",
"code": "030600",
"sort": "1"
},
{
"id": "757",
"name": "榆社",
"parent_id": "142",
"first_letter": "y",
"shorthand": "ys",
"pinyin": "yushe",
"suffix": "县",
"code": "140721",
"sort": "2"
},
{
"id": "758",
"name": "左权",
"parent_id": "142",
"first_letter": "z",
"shorthand": "zq",
"pinyin": "zuoquan",
"suffix": "县",
"code": "140722",
"sort": "3"
},
{
"id": "759",
"name": "和顺",
"parent_id": "142",
"first_letter": "h",
"shorthand": "hs",
"pinyin": "heshun",
"suffix": "县",
"code": "140723",
"sort": "4"
},
{
"id": "760",
"name": "昔阳",
"parent_id": "142",
"first_letter": "x",
"shorthand": "xy",
"pinyin": "xiyang",
"suffix": "县",
"code": "140724",
"sort": "5"
},
{
"id": "761",
"name": "寿阳",
"parent_id": "142",
"first_letter": "s",
"shorthand": "sy",
"pinyin": "shouyang",
"suffix": "县",
"code": "140725",
"sort": "6"
},
{
"id": "762",
"name": "太谷",
"parent_id": "142",
"first_letter": "t",
"shorthand": "tg",
"pinyin": "taigu",
"suffix": "县",
"code": "140726",
"sort": "7"
},
{
"id": "763",
"name": "祁县",
"parent_id": "142",
"first_letter": "q",
"shorthand": "qx",
"pinyin": "qixian",
"suffix": "",
"code": "140727",
"sort": "8"
},
{
"id": "764",
"name": "平遥",
"parent_id": "142",
"first_letter": "p",
"shorthand": "py",
"pinyin": "pingyao",
"suffix": "县",
"code": "140728",
"sort": "9"
},
{
"id": "765",
"name": "灵石",
"parent_id": "142",
"first_letter": "l",
"shorthand": "ls",
"pinyin": "lingshi",
"suffix": "县",
"code": "140729",
"sort": "10"
},
{
"id": "766",
"name": "介休",
"parent_id": "142",
"first_letter": "j",
"shorthand": "jx",
"pinyin": "jiexiu",
"suffix": "市",
"code": "140781",
"sort": "11"
},
{
"id": "767",
"name": "盐湖",
"parent_id": "143",
"first_letter": "y",
"shorthand": "yh",
"pinyin": "yanhu",
"suffix": "区",
"code": "140802",
"sort": "1"
},
{
"id": "768",
"name": "临猗",
"parent_id": "143",
"first_letter": "l",
"shorthand": "ly",
"pinyin": "linyi",
"suffix": "县",
"code": "140821",
"sort": "2"
},
{
"id": "769",
"name": "万荣",
"parent_id": "143",
"first_letter": "w",
"shorthand": "wr",
"pinyin": "wanrong",
"suffix": "县",
"code": "140822",
"sort": "3"
},
{
"id": "770",
"name": "闻喜",
"parent_id": "143",
"first_letter": "w",
"shorthand": "wx",
"pinyin": "wenxi",
"suffix": "县",
"code": "140823",
"sort": "4"
},
{
"id": "771",
"name": "稷山",
"parent_id": "143",
"first_letter": "j",
"shorthand": "js",
"pinyin": "jishan",
"suffix": "县",
"code": "140824",
"sort": "5"
},
{
"id": "772",
"name": "新绛",
"parent_id": "143",
"first_letter": "x",
"shorthand": "xj",
"pinyin": "xinjiang",
"suffix": "县",
"code": "140825",
"sort": "6"
},
{
"id": "773",
"name": "绛县",
"parent_id": "143",
"first_letter": "j",
"shorthand": "jx",
"pinyin": "jiangxian",
"suffix": "",
"code": "140826",
"sort": "7"
},
{
"id": "774",
"name": "垣曲",
"parent_id": "143",
"first_letter": "y",
"shorthand": "yq",
"pinyin": "yuanqu",
"suffix": "县",
"code": "140827",
"sort": "8"
},
{
"id": "775",
"name": "夏县",
"parent_id": "143",
"first_letter": "x",
"shorthand": "xx",
"pinyin": "xiaxian",
"suffix": "",
"code": "140828",
"sort": "9"
},
{
"id": "776",
"name": "平陆",
"parent_id": "143",
"first_letter": "p",
"shorthand": "pl",
"pinyin": "pinglu",
"suffix": "县",
"code": "140829",
"sort": "10"
},
{
"id": "777",
"name": "芮城",
"parent_id": "143",
"first_letter": "r",
"shorthand": "rc",
"pinyin": "ruicheng",
"suffix": "县",
"code": "140830",
"sort": "11"
},
{
"id": "778",
"name": "永济",
"parent_id": "143",
"first_letter": "y",
"shorthand": "yj",
"pinyin": "yongji",
"suffix": "市",
"code": "140881",
"sort": "12"
},
{
"id": "779",
"name": "河津",
"parent_id": "143",
"first_letter": "h",
"shorthand": "hj",
"pinyin": "hejin",
"suffix": "市",
"code": "140882",
"sort": "13"
},
{
"id": "780",
"name": "忻府",
"parent_id": "144",
"first_letter": "x",
"shorthand": "xf",
"pinyin": "xinfu",
"suffix": "区",
"code": "140902",
"sort": "1"
},
{
"id": "781",
"name": "定襄",
"parent_id": "144",
"first_letter": "d",
"shorthand": "dx",
"pinyin": "dingxiang",
"suffix": "县",
"code": "140921",
"sort": "2"
},
{
"id": "782",
"name": "五台",
"parent_id": "144",
"first_letter": "w",
"shorthand": "wt",
"pinyin": "wutai",
"suffix": "县",
"code": "140922",
"sort": "3"
},
{
"id": "783",
"name": "代县",
"parent_id": "144",
"first_letter": "d",
"shorthand": "dx",
"pinyin": "daixian",
"suffix": "",
"code": "140923",
"sort": "4"
},
{
"id": "784",
"name": "繁峙",
"parent_id": "144",
"first_letter": "f",
"shorthand": "fz",
"pinyin": "fanzhi",
"suffix": "县",
"code": "140924",
"sort": "5"
},
{
"id": "785",
"name": "宁武",
"parent_id": "144",
"first_letter": "n",
"shorthand": "nw",
"pinyin": "ningwu",
"suffix": "县",
"code": "140925",
"sort": "6"
},
{
"id": "786",
"name": "静乐",
"parent_id": "144",
"first_letter": "j",
"shorthand": "jl",
"pinyin": "jingle",
"suffix": "县",
"code": "140926",
"sort": "7"
},
{
"id": "787",
"name": "神池",
"parent_id": "144",
"first_letter": "s",
"shorthand": "sc",
"pinyin": "shenchi",
"suffix": "县",
"code": "140927",
"sort": "8"
},
{
"id": "788",
"name": "五寨",
"parent_id": "144",
"first_letter": "w",
"shorthand": "wz",
"pinyin": "wuzhai",
"suffix": "县",
"code": "140928",
"sort": "9"
},
{
"id": "789",
"name": "岢岚",
"parent_id": "144",
"first_letter": "k",
"shorthand": "kl",
"pinyin": "kelan",
"suffix": "县",
"code": "140929",
"sort": "10"
},
{
"id": "790",
"name": "河曲",
"parent_id": "144",
"first_letter": "h",
"shorthand": "hq",
"pinyin": "hequ",
"suffix": "县",
"code": "140930",
"sort": "11"
},
{
"id": "791",
"name": "保德",
"parent_id": "144",
"first_letter": "b",
"shorthand": "bd",
"pinyin": "baode",
"suffix": "县",
"code": "140931",
"sort": "12"
},
{
"id": "792",
"name": "偏关",
"parent_id": "144",
"first_letter": "p",
"shorthand": "pg",
"pinyin": "pianguan",
"suffix": "县",
"code": "140932",
"sort": "13"
},
{
"id": "793",
"name": "原平",
"parent_id": "144",
"first_letter": "y",
"shorthand": "yp",
"pinyin": "yuanping",
"suffix": "市",
"code": "140981",
"sort": "14"
},
{
"id": "794",
"name": "尧都",
"parent_id": "145",
"first_letter": "y",
"shorthand": "yd",
"pinyin": "yaodou",
"suffix": "区",
"code": "141002",
"sort": "1"
},
{
"id": "795",
"name": "曲沃",
"parent_id": "145",
"first_letter": "q",
"shorthand": "qw",
"pinyin": "quwo",
"suffix": "县",
"code": "141021",
"sort": "2"
},
{
"id": "796",
"name": "翼城",
"parent_id": "145",
"first_letter": "y",
"shorthand": "yc",
"pinyin": "yicheng",
"suffix": "县",
"code": "141022",
"sort": "3"
},
{
"id": "797",
"name": "襄汾",
"parent_id": "145",
"first_letter": "x",
"shorthand": "xf",
"pinyin": "xiangfen",
"suffix": "县",
"code": "141023",
"sort": "4"
},
{
"id": "798",
"name": "洪洞",
"parent_id": "145",
"first_letter": "h",
"shorthand": "hd",
"pinyin": "hongdong",
"suffix": "县",
"code": "141024",
"sort": "5"
},
{
"id": "799",
"name": "古县",
"parent_id": "145",
"first_letter": "g",
"shorthand": "gx",
"pinyin": "guxian",
"suffix": "",
"code": "141025",
"sort": "6"
},
{
"id": "800",
"name": "安泽",
"parent_id": "145",
"first_letter": "a",
"shorthand": "az",
"pinyin": "anze",
"suffix": "县",
"code": "141026",
"sort": "7"
},
{
"id": "801",
"name": "浮山",
"parent_id": "145",
"first_letter": "f",
"shorthand": "fs",
"pinyin": "fushan",
"suffix": "县",
"code": "141027",
"sort": "8"
},
{
"id": "802",
"name": "吉县",
"parent_id": "145",
"first_letter": "j",
"shorthand": "jx",
"pinyin": "jixian",
"suffix": "",
"code": "141028",
"sort": "9"
},
{
"id": "803",
"name": "乡宁",
"parent_id": "145",
"first_letter": "x",
"shorthand": "xn",
"pinyin": "xiangning",
"suffix": "县",
"code": "141029",
"sort": "10"
},
{
"id": "804",
"name": "大宁",
"parent_id": "145",
"first_letter": "d",
"shorthand": "dn",
"pinyin": "daning",
"suffix": "县",
"code": "141030",
"sort": "11"
},
{
"id": "805",
"name": "隰县",
"parent_id": "145",
"first_letter": "x",
"shorthand": "xx",
"pinyin": "xixian",
"suffix": "",
"code": "141031",
"sort": "12"
},
{
"id": "806",
"name": "永和",
"parent_id": "145",
"first_letter": "y",
"shorthand": "yh",
"pinyin": "yonghe",
"suffix": "县",
"code": "141032",
"sort": "13"
},
{
"id": "807",
"name": "蒲县",
"parent_id": "145",
"first_letter": "p",
"shorthand": "px",
"pinyin": "puxian",
"suffix": "",
"code": "141033",
"sort": "14"
},
{
"id": "808",
"name": "汾西",
"parent_id": "145",
"first_letter": "f",
"shorthand": "fx",
"pinyin": "fenxi",
"suffix": "县",
"code": "141034",
"sort": "15"
},
{
"id": "809",
"name": "侯马",
"parent_id": "145",
"first_letter": "h",
"shorthand": "hm",
"pinyin": "houma",
"suffix": "市",
"code": "141081",
"sort": "16"
},
{
"id": "810",
"name": "霍州",
"parent_id": "145",
"first_letter": "h",
"shorthand": "hz",
"pinyin": "huozhou",
"suffix": "市",
"code": "141082",
"sort": "17"
},
{
"id": "811",
"name": "离石",
"parent_id": "146",
"first_letter": "l",
"shorthand": "ls",
"pinyin": "lishi",
"suffix": "区",
"code": "141102",
"sort": "1"
},
{
"id": "812",
"name": "文水",
"parent_id": "146",
"first_letter": "w",
"shorthand": "ws",
"pinyin": "wenshui",
"suffix": "县",
"code": "141121",
"sort": "2"
},
{
"id": "813",
"name": "交城",
"parent_id": "146",
"first_letter": "j",
"shorthand": "jc",
"pinyin": "jiaocheng",
"suffix": "县",
"code": "141122",
"sort": "3"
},
{
"id": "814",
"name": "兴县",
"parent_id": "146",
"first_letter": "x",
"shorthand": "xx",
"pinyin": "xingxian",
"suffix": "",
"code": "141123",
"sort": "4"
},
{
"id": "815",
"name": "临县",
"parent_id": "146",
"first_letter": "l",
"shorthand": "lx",
"pinyin": "linxian",
"suffix": "",
"code": "141124",
"sort": "5"
},
{
"id": "816",
"name": "柳林",
"parent_id": "146",
"first_letter": "l",
"shorthand": "ll",
"pinyin": "liulin",
"suffix": "县",
"code": "141125",
"sort": "6"
},
{
"id": "817",
"name": "石楼",
"parent_id": "146",
"first_letter": "s",
"shorthand": "sl",
"pinyin": "shilou",
"suffix": "县",
"code": "141126",
"sort": "7"
},
{
"id": "818",
"name": "岚县",
"parent_id": "146",
"first_letter": "l",
"shorthand": "lx",
"pinyin": "lanxian",
"suffix": "",
"code": "141127",
"sort": "8"
},
{
"id": "819",
"name": "方山",
"parent_id": "146",
"first_letter": "f",
"shorthand": "fs",
"pinyin": "fangshan",
"suffix": "县",
"code": "141128",
"sort": "9"
},
{
"id": "820",
"name": "中阳",
"parent_id": "146",
"first_letter": "z",
"shorthand": "zy",
"pinyin": "zhongyang",
"suffix": "县",
"code": "141129",
"sort": "10"
},
{
"id": "821",
"name": "交口",
"parent_id": "146",
"first_letter": "j",
"shorthand": "jk",
"pinyin": "jiaokou",
"suffix": "县",
"code": "141130",
"sort": "11"
},
{
"id": "822",
"name": "孝义",
"parent_id": "146",
"first_letter": "x",
"shorthand": "xy",
"pinyin": "xiaoyi",
"suffix": "市",
"code": "141181",
"sort": "12"
},
{
"id": "823",
"name": "汾阳",
"parent_id": "146",
"first_letter": "f",
"shorthand": "fy",
"pinyin": "fenyang",
"suffix": "市",
"code": "141182",
"sort": "13"
},
{
"id": "824",
"name": "新城",
"parent_id": "147",
"first_letter": "x",
"shorthand": "xc",
"pinyin": "xincheng",
"suffix": "区",
"code": "150102",
"sort": "1"
},
{
"id": "825",
"name": "回民",
"parent_id": "147",
"first_letter": "h",
"shorthand": "hm",
"pinyin": "huimin",
"suffix": "区",
"code": "150103",
"sort": "2"
},
{
"id": "826",
"name": "玉泉",
"parent_id": "147",
"first_letter": "y",
"shorthand": "yq",
"pinyin": "yuquan",
"suffix": "区",
"code": "150104",
"sort": "3"
},
{
"id": "827",
"name": "赛罕",
"parent_id": "147",
"first_letter": "s",
"shorthand": "sh",
"pinyin": "saihan",
"suffix": "区",
"code": "150105",
"sort": "4"
},
{
"id": "828",
"name": "土默特左",
"parent_id": "147",
"first_letter": "t",
"shorthand": "tmtz",
"pinyin": "tumotezuo",
"suffix": "旗",
"code": "150121",
"sort": "5"
},
{
"id": "829",
"name": "托克托",
"parent_id": "147",
"first_letter": "t",
"shorthand": "tkt",
"pinyin": "tuoketuo",
"suffix": "县",
"code": "150122",
"sort": "6"
},
{
"id": "830",
"name": "和林格尔",
"parent_id": "147",
"first_letter": "h",
"shorthand": "hlge",
"pinyin": "helingeer",
"suffix": "县",
"code": "150123",
"sort": "7"
},
{
"id": "831",
"name": "清水河",
"parent_id": "147",
"first_letter": "q",
"shorthand": "qsh",
"pinyin": "qingshuihe",
"suffix": "县",
"code": "150124",
"sort": "8"
},
{
"id": "832",
"name": "武川",
"parent_id": "147",
"first_letter": "w",
"shorthand": "wc",
"pinyin": "wuchuan",
"suffix": "县",
"code": "150125",
"sort": "9"
},
{
"id": "833",
"name": "东河",
"parent_id": "148",
"first_letter": "d",
"shorthand": "dh",
"pinyin": "donghe",
"suffix": "区",
"code": "150202",
"sort": "1"
},
{
"id": "834",
"name": "昆都仑",
"parent_id": "148",
"first_letter": "k",
"shorthand": "kdl",
"pinyin": "kundoulun",
"suffix": "区",
"code": "150203",
"sort": "2"
},
{
"id": "835",
"name": "青山",
"parent_id": "148",
"first_letter": "q",
"shorthand": "qs",
"pinyin": "qingshan",
"suffix": "区",
"code": "150204",
"sort": "3"
},
{
"id": "836",
"name": "石拐",
"parent_id": "148",
"first_letter": "s",
"shorthand": "sg",
"pinyin": "shiguai",
"suffix": "区",
"code": "150205",
"sort": "4"
},
{
"id": "837",
"name": "白云",
"parent_id": "148",
"first_letter": "b",
"shorthand": "by",
"pinyin": "baiyun",
"suffix": "区",
"code": "150206",
"sort": "5"
},
{
"id": "838",
"name": "九原",
"parent_id": "148",
"first_letter": "j",
"shorthand": "jy",
"pinyin": "jiuyuan",
"suffix": "区",
"code": "150207",
"sort": "6"
},
{
"id": "839",
"name": "土默特右",
"parent_id": "148",
"first_letter": "t",
"shorthand": "tmty",
"pinyin": "tumoteyou",
"suffix": "旗",
"code": "150221",
"sort": "7"
},
{
"id": "840",
"name": "固阳",
"parent_id": "148",
"first_letter": "g",
"shorthand": "gy",
"pinyin": "guyang",
"suffix": "县",
"code": "150222",
"sort": "8"
},
{
"id": "841",
"name": "达尔罕茂明安",
"parent_id": "148",
"first_letter": "d",
"shorthand": "dehmma",
"pinyin": "daerhanmaomingan",
"suffix": "旗",
"code": "150223",
"sort": "9"
},
{
"id": "842",
"name": "海勃湾",
"parent_id": "149",
"first_letter": "h",
"shorthand": "hbw",
"pinyin": "haibowan",
"suffix": "区",
"code": "150302",
"sort": "1"
},
{
"id": "843",
"name": "海南",
"parent_id": "149",
"first_letter": "h",
"shorthand": "hn",
"pinyin": "hainan",
"suffix": "区",
"code": "150303",
"sort": "2"
},
{
"id": "844",
"name": "乌达",
"parent_id": "149",
"first_letter": "w",
"shorthand": "wd",
"pinyin": "wuda",
"suffix": "区",
"code": "150304",
"sort": "3"
},
{
"id": "845",
"name": "红山",
"parent_id": "150",
"first_letter": "h",
"shorthand": "hs",
"pinyin": "hongshan",
"suffix": "区",
"code": "150402",
"sort": "1"
},
{
"id": "846",
"name": "元宝山",
"parent_id": "150",
"first_letter": "y",
"shorthand": "ybs",
"pinyin": "yuanbaoshan",
"suffix": "区",
"code": "150403",
"sort": "2"
},
{
"id": "847",
"name": "松山",
"parent_id": "150",
"first_letter": "s",
"shorthand": "ss",
"pinyin": "songshan",
"suffix": "区",
"code": "150404",
"sort": "3"
},
{
"id": "848",
"name": "阿鲁科尔沁",
"parent_id": "150",
"first_letter": "a",
"shorthand": "alkeq",
"pinyin": "alukeerqin",
"suffix": "旗",
"code": "150421",
"sort": "4"
},
{
"id": "849",
"name": "巴林左",
"parent_id": "150",
"first_letter": "b",
"shorthand": "blz",
"pinyin": "balinzuo",
"suffix": "旗",
"code": "150422",
"sort": "5"
},
{
"id": "850",
"name": "巴林右",
"parent_id": "150",
"first_letter": "b",
"shorthand": "bly",
"pinyin": "balinyou",
"suffix": "旗",
"code": "150423",
"sort": "6"
},
{
"id": "851",
"name": "林西",
"parent_id": "150",
"first_letter": "l",
"shorthand": "lx",
"pinyin": "linxi",
"suffix": "县",
"code": "150424",
"sort": "7"
},
{
"id": "852",
"name": "克什克腾",
"parent_id": "150",
"first_letter": "k",
"shorthand": "kskt",
"pinyin": "keshenketeng",
"suffix": "旗",
"code": "150425",
"sort": "8"
},
{
"id": "853",
"name": "翁牛特",
"parent_id": "150",
"first_letter": "w",
"shorthand": "wnt",
"pinyin": "wengniute",
"suffix": "旗",
"code": "150426",
"sort": "9"
},
{
"id": "854",
"name": "喀喇沁",
"parent_id": "150",
"first_letter": "k",
"shorthand": "klq",
"pinyin": "kalaqin",
"suffix": "旗",
"code": "150428",
"sort": "10"
},
{
"id": "855",
"name": "宁城",
"parent_id": "150",
"first_letter": "n",
"shorthand": "nc",
"pinyin": "ningcheng",
"suffix": "县",
"code": "150429",
"sort": "11"
},
{
"id": "856",
"name": "敖汉",
"parent_id": "150",
"first_letter": "a",
"shorthand": "ah",
"pinyin": "aohan",
"suffix": "旗",
"code": "150430",
"sort": "12"
},
{
"id": "857",
"name": "科尔沁",
"parent_id": "151",
"first_letter": "k",
"shorthand": "keq",
"pinyin": "keerqin",
"suffix": "区",
"code": "150502",
"sort": "1"
},
{
"id": "858",
"name": "科尔沁左翼中",
"parent_id": "151",
"first_letter": "k",
"shorthand": "keqzyz",
"pinyin": "keerqinzuoyizhong",
"suffix": "旗",
"code": "150521",
"sort": "2"
},
{
"id": "859",
"name": "科尔沁左翼后",
"parent_id": "151",
"first_letter": "k",
"shorthand": "keqzyh",
"pinyin": "keerqinzuoyihou",
"suffix": "旗",
"code": "150522",
"sort": "3"
},
{
"id": "860",
"name": "开鲁",
"parent_id": "151",
"first_letter": "k",
"shorthand": "kl",
"pinyin": "kailu",
"suffix": "县",
"code": "150523",
"sort": "4"
},
{
"id": "861",
"name": "库伦",
"parent_id": "151",
"first_letter": "k",
"shorthand": "kl",
"pinyin": "kulun",
"suffix": "旗",
"code": "150524",
"sort": "5"
},
{
"id": "862",
"name": "奈曼",
"parent_id": "151",
"first_letter": "n",
"shorthand": "nm",
"pinyin": "naiman",
"suffix": "旗",
"code": "150525",
"sort": "6"
},
{
"id": "863",
"name": "扎鲁特",
"parent_id": "151",
"first_letter": "z",
"shorthand": "zlt",
"pinyin": "zhalute",
"suffix": "旗",
"code": "150526",
"sort": "7"
},
{
"id": "864",
"name": "霍林郭勒",
"parent_id": "151",
"first_letter": "h",
"shorthand": "hlgl",
"pinyin": "huolinguole",
"suffix": "市",
"code": "150581",
"sort": "8"
},
{
"id": "865",
"name": "东胜",
"parent_id": "152",
"first_letter": "d",
"shorthand": "ds",
"pinyin": "dongsheng",
"suffix": "区",
"code": "150602",
"sort": "1"
},
{
"id": "866",
"name": "达拉特",
"parent_id": "152",
"first_letter": "d",
"shorthand": "dlt",
"pinyin": "dalate",
"suffix": "旗",
"code": "150621",
"sort": "2"
},
{
"id": "867",
"name": "准格尔",
"parent_id": "152",
"first_letter": "z",
"shorthand": "zge",
"pinyin": "zhungeer",
"suffix": "旗",
"code": "150622",
"sort": "3"
},
{
"id": "868",
"name": "鄂托克前",
"parent_id": "152",
"first_letter": "e",
"shorthand": "etkq",
"pinyin": "etuokeqian",
"suffix": "旗",
"code": "150623",
"sort": "4"
},
{
"id": "869",
"name": "鄂托克",
"parent_id": "152",
"first_letter": "e",
"shorthand": "etk",
"pinyin": "etuoke",
"suffix": "旗",
"code": "150624",
"sort": "5"
},
{
"id": "870",
"name": "杭锦",
"parent_id": "152",
"first_letter": "h",
"shorthand": "hj",
"pinyin": "hangjin",
"suffix": "旗",
"code": "150625",
"sort": "6"
},
{
"id": "871",
"name": "乌审",
"parent_id": "152",
"first_letter": "w",
"shorthand": "ws",
"pinyin": "wushen",
"suffix": "旗",
"code": "150626",
"sort": "7"
},
{
"id": "872",
"name": "伊金霍洛",
"parent_id": "152",
"first_letter": "y",
"shorthand": "yjhl",
"pinyin": "yijinhuoluo",
"suffix": "旗",
"code": "150627",
"sort": "8"
},
{
"id": "873",
"name": "海拉尔",
"parent_id": "153",
"first_letter": "h",
"shorthand": "hle",
"pinyin": "hailaer",
"suffix": "区",
"code": "150702",
"sort": "1"
},
{
"id": "874",
"name": "阿荣",
"parent_id": "153",
"first_letter": "a",
"shorthand": "ar",
"pinyin": "arong",
"suffix": "旗",
"code": "150721",
"sort": "2"
},
{
"id": "875",
"name": "莫力达瓦",
"parent_id": "153",
"first_letter": "m",
"shorthand": "mldw",
"pinyin": "molidawa",
"suffix": "自治旗",
"code": "150722",
"sort": "3"
},
{
"id": "876",
"name": "鄂伦春",
"parent_id": "153",
"first_letter": "e",
"shorthand": "elc",
"pinyin": "elunchun",
"suffix": "自治旗",
"code": "150723",
"sort": "4"
},
{
"id": "877",
"name": "鄂温克族",
"parent_id": "153",
"first_letter": "e",
"shorthand": "ewkz",
"pinyin": "ewenkezu",
"suffix": "自治旗",
"code": "150724",
"sort": "5"
},
{
"id": "878",
"name": "陈巴尔虎",
"parent_id": "153",
"first_letter": "c",
"shorthand": "cbeh",
"pinyin": "chenbaerhu",
"suffix": "旗",
"code": "150725",
"sort": "6"
},
{
"id": "879",
"name": "新巴尔虎左",
"parent_id": "153",
"first_letter": "x",
"shorthand": "xbehz",
"pinyin": "xinbaerhuzuo",
"suffix": "旗",
"code": "150726",
"sort": "7"
},
{
"id": "880",
"name": "新巴尔虎右",
"parent_id": "153",
"first_letter": "x",
"shorthand": "xbehy",
"pinyin": "xinbaerhuyou",
"suffix": "旗",
"code": "150727",
"sort": "8"
},
{
"id": "881",
"name": "满洲里",
"parent_id": "153",
"first_letter": "m",
"shorthand": "mzl",
"pinyin": "manzhouli",
"suffix": "市",
"code": "150781",
"sort": "9"
},
{
"id": "882",
"name": "牙克石",
"parent_id": "153",
"first_letter": "y",
"shorthand": "yks",
"pinyin": "yakeshi",
"suffix": "市",
"code": "150782",
"sort": "10"
},
{
"id": "883",
"name": "扎兰屯",
"parent_id": "153",
"first_letter": "z",
"shorthand": "zlt",
"pinyin": "zhalantun",
"suffix": "市",
"code": "150783",
"sort": "11"
},
{
"id": "884",
"name": "额尔古纳",
"parent_id": "153",
"first_letter": "e",
"shorthand": "eegn",
"pinyin": "eerguna",
"suffix": "市",
"code": "150784",
"sort": "12"
},
{
"id": "885",
"name": "根河",
"parent_id": "153",
"first_letter": "g",
"shorthand": "gh",
"pinyin": "genhe",
"suffix": "市",
"code": "150785",
"sort": "13"
},
{
"id": "886",
"name": "临河",
"parent_id": "154",
"first_letter": "l",
"shorthand": "lh",
"pinyin": "linhe",
"suffix": "区",
"code": "150802",
"sort": "1"
},
{
"id": "887",
"name": "五原",
"parent_id": "154",
"first_letter": "w",
"shorthand": "wy",
"pinyin": "wuyuan",
"suffix": "县",
"code": "150821",
"sort": "2"
},
{
"id": "888",
"name": "磴口",
"parent_id": "154",
"first_letter": "d",
"shorthand": "dk",
"pinyin": "dengkou",
"suffix": "县",
"code": "150822",
"sort": "3"
},
{
"id": "889",
"name": "乌拉特前",
"parent_id": "154",
"first_letter": "w",
"shorthand": "wltq",
"pinyin": "wulateqian",
"suffix": "旗",
"code": "150823",
"sort": "4"
},
{
"id": "890",
"name": "乌拉特中",
"parent_id": "154",
"first_letter": "w",
"shorthand": "wltz",
"pinyin": "wulatezhong",
"suffix": "旗",
"code": "150824",
"sort": "5"
},
{
"id": "891",
"name": "乌拉特后",
"parent_id": "154",
"first_letter": "w",
"shorthand": "wlth",
"pinyin": "wulatehou",
"suffix": "旗",
"code": "150825",
"sort": "6"
},
{
"id": "892",
"name": "杭锦后",
"parent_id": "154",
"first_letter": "h",
"shorthand": "hjh",
"pinyin": "hangjinhou",
"suffix": "旗",
"code": "150826",
"sort": "7"
},
{
"id": "893",
"name": "集宁",
"parent_id": "155",
"first_letter": "j",
"shorthand": "jn",
"pinyin": "jining",
"suffix": "区",
"code": "150902",
"sort": "1"
},
{
"id": "894",
"name": "卓资",
"parent_id": "155",
"first_letter": "z",
"shorthand": "zz",
"pinyin": "zhuozi",
"suffix": "县",
"code": "150921",
"sort": "2"
},
{
"id": "895",
"name": "化德",
"parent_id": "155",
"first_letter": "h",
"shorthand": "hd",
"pinyin": "huade",
"suffix": "县",
"code": "150922",
"sort": "3"
},
{
"id": "896",
"name": "商都",
"parent_id": "155",
"first_letter": "s",
"shorthand": "sd",
"pinyin": "shangdou",
"suffix": "县",
"code": "150923",
"sort": "4"
},
{
"id": "897",
"name": "兴和",
"parent_id": "155",
"first_letter": "x",
"shorthand": "xh",
"pinyin": "xinghe",
"suffix": "县",
"code": "150924",
"sort": "5"
},
{
"id": "898",
"name": "凉城",
"parent_id": "155",
"first_letter": "l",
"shorthand": "lc",
"pinyin": "liangcheng",
"suffix": "县",
"code": "150925",
"sort": "6"
},
{
"id": "899",
"name": "察哈尔右翼前",
"parent_id": "155",
"first_letter": "c",
"shorthand": "cheyyq",
"pinyin": "chahaeryouyiqian",
"suffix": "旗",
"code": "150926",
"sort": "7"
},
{
"id": "900",
"name": "察哈尔右翼中",
"parent_id": "155",
"first_letter": "c",
"shorthand": "cheyyz",
"pinyin": "chahaeryouyizhong",
"suffix": "旗",
"code": "150927",
"sort": "8"
},
{
"id": "901",
"name": "察哈尔右翼后",
"parent_id": "155",
"first_letter": "c",
"shorthand": "cheyyh",
"pinyin": "chahaeryouyihou",
"suffix": "旗",
"code": "150928",
"sort": "9"
},
{
"id": "902",
"name": "四子王",
"parent_id": "155",
"first_letter": "s",
"shorthand": "szw",
"pinyin": "siziwang",
"suffix": "旗",
"code": "150929",
"sort": "10"
},
{
"id": "903",
"name": "丰镇",
"parent_id": "155",
"first_letter": "f",
"shorthand": "fz",
"pinyin": "fengzhen",
"suffix": "市",
"code": "150981",
"sort": "11"
},
{
"id": "904",
"name": "乌兰浩特",
"parent_id": "156",
"first_letter": "w",
"shorthand": "wlht",
"pinyin": "wulanhaote",
"suffix": "市",
"code": "152201",
"sort": "1"
},
{
"id": "905",
"name": "阿尔山",
"parent_id": "156",
"first_letter": "a",
"shorthand": "aes",
"pinyin": "aershan",
"suffix": "市",
"code": "152202",
"sort": "2"
},
{
"id": "906",
"name": "科尔沁右翼前",
"parent_id": "156",
"first_letter": "k",
"shorthand": "keqyyq",
"pinyin": "keerqinyouyiqian",
"suffix": "旗",
"code": "152221",
"sort": "3"
},
{
"id": "907",
"name": "科尔沁右翼中",
"parent_id": "156",
"first_letter": "k",
"shorthand": "keqyyz",
"pinyin": "keerqinyouyizhong",
"suffix": "旗",
"code": "152222",
"sort": "4"
},
{
"id": "908",
"name": "扎赉特",
"parent_id": "156",
"first_letter": "z",
"shorthand": "zlt",
"pinyin": "zhalaite",
"suffix": "旗",
"code": "152223",
"sort": "5"
},
{
"id": "909",
"name": "突泉",
"parent_id": "156",
"first_letter": "t",
"shorthand": "tq",
"pinyin": "tuquan",
"suffix": "县",
"code": "152224",
"sort": "6"
},
{
"id": "910",
"name": "二连浩特",
"parent_id": "157",
"first_letter": "e",
"shorthand": "elht",
"pinyin": "erlianhaote",
"suffix": "市",
"code": "152501",
"sort": "1"
},
{
"id": "911",
"name": "锡林浩特",
"parent_id": "157",
"first_letter": "x",
"shorthand": "xlht",
"pinyin": "xilinhaote",
"suffix": "市",
"code": "152502",
"sort": "2"
},
{
"id": "912",
"name": "阿巴嘎",
"parent_id": "157",
"first_letter": "a",
"shorthand": "abg",
"pinyin": "abaga",
"suffix": "旗",
"code": "152522",
"sort": "3"
},
{
"id": "913",
"name": "苏尼特左",
"parent_id": "157",
"first_letter": "s",
"shorthand": "sntz",
"pinyin": "sunitezuo",
"suffix": "旗",
"code": "152523",
"sort": "4"
},
{
"id": "914",
"name": "苏尼特右",
"parent_id": "157",
"first_letter": "s",
"shorthand": "snty",
"pinyin": "suniteyou",
"suffix": "旗",
"code": "152524",
"sort": "5"
},
{
"id": "915",
"name": "东乌珠穆沁",
"parent_id": "157",
"first_letter": "d",
"shorthand": "dwzmq",
"pinyin": "dongwuzhumuqin",
"suffix": "旗",
"code": "152525",
"sort": "6"
},
{
"id": "916",
"name": "西乌珠穆沁",
"parent_id": "157",
"first_letter": "x",
"shorthand": "xwzmq",
"pinyin": "xiwuzhumuqin",
"suffix": "旗",
"code": "152526",
"sort": "7"
},
{
"id": "917",
"name": "太仆寺",
"parent_id": "157",
"first_letter": "t",
"shorthand": "tps",
"pinyin": "taipusi",
"suffix": "旗",
"code": "152527",
"sort": "8"
},
{
"id": "918",
"name": "镶黄",
"parent_id": "157",
"first_letter": "x",
"shorthand": "xh",
"pinyin": "xianghuang",
"suffix": "旗",
"code": "152528",
"sort": "9"
},
{
"id": "919",
"name": "正镶白",
"parent_id": "157",
"first_letter": "z",
"shorthand": "zxb",
"pinyin": "zhengxiangbai",
"suffix": "旗",
"code": "152529",
"sort": "10"
},
{
"id": "920",
"name": "正蓝",
"parent_id": "157",
"first_letter": "z",
"shorthand": "zl",
"pinyin": "zhenglan",
"suffix": "旗",
"code": "152530",
"sort": "11"
},
{
"id": "921",
"name": "多伦",
"parent_id": "157",
"first_letter": "d",
"shorthand": "dl",
"pinyin": "duolun",
"suffix": "县",
"code": "152531",
"sort": "12"
},
{
"id": "922",
"name": "阿拉善左",
"parent_id": "158",
"first_letter": "a",
"shorthand": "alsz",
"pinyin": "alashanzuo",
"suffix": "旗",
"code": "152921",
"sort": "1"
},
{
"id": "923",
"name": "阿拉善右",
"parent_id": "158",
"first_letter": "a",
"shorthand": "alsy",
"pinyin": "alashanyou",
"suffix": "旗",
"code": "152922",
"sort": "2"
},
{
"id": "924",
"name": "额济纳",
"parent_id": "158",
"first_letter": "e",
"shorthand": "ejn",
"pinyin": "ejina",
"suffix": "旗",
"code": "152923",
"sort": "3"
},
{
"id": "925",
"name": "和平",
"parent_id": "159",
"first_letter": "h",
"shorthand": "hp",
"pinyin": "heping",
"suffix": "区",
"code": "210102",
"sort": "1"
},
{
"id": "926",
"name": "沈河",
"parent_id": "159",
"first_letter": "s",
"shorthand": "sh",
"pinyin": "shenhe",
"suffix": "区",
"code": "210103",
"sort": "2"
},
{
"id": "927",
"name": "大东",
"parent_id": "159",
"first_letter": "d",
"shorthand": "dd",
"pinyin": "dadong",
"suffix": "区",
"code": "210104",
"sort": "3"
},
{
"id": "928",
"name": "皇姑",
"parent_id": "159",
"first_letter": "h",
"shorthand": "hg",
"pinyin": "huanggu",
"suffix": "区",
"code": "210105",
"sort": "4"
},
{
"id": "929",
"name": "铁西",
"parent_id": "159",
"first_letter": "t",
"shorthand": "tx",
"pinyin": "tiexi",
"suffix": "区",
"code": "210106",
"sort": "5"
},
{
"id": "930",
"name": "苏家屯",
"parent_id": "159",
"first_letter": "s",
"shorthand": "sjt",
"pinyin": "sujiatun",
"suffix": "区",
"code": "210111",
"sort": "6"
},
{
"id": "931",
"name": "浑南",
"parent_id": "159",
"first_letter": "h",
"shorthand": "hn",
"pinyin": "hunnan",
"suffix": "区",
"code": "210112",
"sort": "7"
},
{
"id": "932",
"name": "沈北新区",
"parent_id": "159",
"first_letter": "s",
"shorthand": "sbxq",
"pinyin": "shenbeixinqu",
"suffix": "",
"code": "210113",
"sort": "8"
},
{
"id": "933",
"name": "于洪",
"parent_id": "159",
"first_letter": "y",
"shorthand": "yh",
"pinyin": "yuhong",
"suffix": "区",
"code": "210114",
"sort": "9"
},
{
"id": "934",
"name": "辽中",
"parent_id": "159",
"first_letter": "l",
"shorthand": "lz",
"pinyin": "liaozhong",
"suffix": "县",
"code": "210122",
"sort": "10"
},
{
"id": "935",
"name": "康平",
"parent_id": "159",
"first_letter": "k",
"shorthand": "kp",
"pinyin": "kangping",
"suffix": "县",
"code": "210123",
"sort": "11"
},
{
"id": "936",
"name": "法库",
"parent_id": "159",
"first_letter": "f",
"shorthand": "fk",
"pinyin": "faku",
"suffix": "县",
"code": "210124",
"sort": "12"
},
{
"id": "937",
"name": "新民",
"parent_id": "159",
"first_letter": "x",
"shorthand": "xm",
"pinyin": "xinmin",
"suffix": "市",
"code": "210181",
"sort": "13"
},
{
"id": "938",
"name": "中山",
"parent_id": "160",
"first_letter": "z",
"shorthand": "zs",
"pinyin": "zhongshan",
"suffix": "区",
"code": "210202",
"sort": "1"
},
{
"id": "939",
"name": "西岗",
"parent_id": "160",
"first_letter": "x",
"shorthand": "xg",
"pinyin": "xigang",
"suffix": "区",
"code": "210203",
"sort": "2"
},
{
"id": "940",
"name": "沙河口",
"parent_id": "160",
"first_letter": "s",
"shorthand": "shk",
"pinyin": "shahekou",
"suffix": "区",
"code": "210204",
"sort": "3"
},
{
"id": "941",
"name": "甘井子",
"parent_id": "160",
"first_letter": "g",
"shorthand": "gjz",
"pinyin": "ganjingzi",
"suffix": "区",
"code": "210211",
"sort": "4"
},
{
"id": "942",
"name": "旅顺口",
"parent_id": "160",
"first_letter": "l",
"shorthand": "lsk",
"pinyin": "lu:shunkou",
"suffix": "区",
"code": "210212",
"sort": "5"
},
{
"id": "943",
"name": "金州",
"parent_id": "160",
"first_letter": "j",
"shorthand": "jz",
"pinyin": "jinzhou",
"suffix": "区",
"code": "210213",
"sort": "6"
},
{
"id": "944",
"name": "长海",
"parent_id": "160",
"first_letter": "z",
"shorthand": "zh",
"pinyin": "zhanghai",
"suffix": "县",
"code": "210224",
"sort": "7"
},
{
"id": "945",
"name": "瓦房店",
"parent_id": "160",
"first_letter": "w",
"shorthand": "wfd",
"pinyin": "wafangdian",
"suffix": "市",
"code": "210281",
"sort": "8"
},
{
"id": "946",
"name": "普兰店",
"parent_id": "160",
"first_letter": "p",
"shorthand": "pld",
"pinyin": "pulandian",
"suffix": "市",
"code": "210282",
"sort": "9"
},
{
"id": "947",
"name": "庄河",
"parent_id": "160",
"first_letter": "z",
"shorthand": "zh",
"pinyin": "zhuanghe",
"suffix": "市",
"code": "210283",
"sort": "10"
},
{
"id": "948",
"name": "铁东",
"parent_id": "161",
"first_letter": "t",
"shorthand": "td",
"pinyin": "tiedong",
"suffix": "区",
"code": "210302",
"sort": "1"
},
{
"id": "949",
"name": "铁西",
"parent_id": "161",
"first_letter": "t",
"shorthand": "tx",
"pinyin": "tiexi",
"suffix": "区",
"code": "210303",
"sort": "2"
},
{
"id": "950",
"name": "立山",
"parent_id": "161",
"first_letter": "l",
"shorthand": "ls",
"pinyin": "lishan",
"suffix": "区",
"code": "210304",
"sort": "3"
},
{
"id": "951",
"name": "千山",
"parent_id": "161",
"first_letter": "q",
"shorthand": "qs",
"pinyin": "qianshan",
"suffix": "区",
"code": "210311",
"sort": "4"
},
{
"id": "952",
"name": "台安",
"parent_id": "161",
"first_letter": "t",
"shorthand": "ta",
"pinyin": "taian",
"suffix": "县",
"code": "210321",
"sort": "5"
},
{
"id": "953",
"name": "岫岩",
"parent_id": "161",
"first_letter": "x",
"shorthand": "xy",
"pinyin": "xiuyan",
"suffix": "自治县",
"code": "210323",
"sort": "6"
},
{
"id": "954",
"name": "海城",
"parent_id": "161",
"first_letter": "h",
"shorthand": "hc",
"pinyin": "haicheng",
"suffix": "市",
"code": "210381",
"sort": "7"
},
{
"id": "955",
"name": "新抚",
"parent_id": "162",
"first_letter": "x",
"shorthand": "xf",
"pinyin": "xinfu",
"suffix": "区",
"code": "210402",
"sort": "1"
},
{
"id": "956",
"name": "东洲",
"parent_id": "162",
"first_letter": "d",
"shorthand": "dz",
"pinyin": "dongzhou",
"suffix": "区",
"code": "210403",
"sort": "2"
},
{
"id": "957",
"name": "望花",
"parent_id": "162",
"first_letter": "w",
"shorthand": "wh",
"pinyin": "wanghua",
"suffix": "区",
"code": "210404",
"sort": "3"
},
{
"id": "958",
"name": "顺城",
"parent_id": "162",
"first_letter": "s",
"shorthand": "sc",
"pinyin": "shuncheng",
"suffix": "区",
"code": "210411",
"sort": "4"
},
{
"id": "959",
"name": "抚顺",
"parent_id": "162",
"first_letter": "f",
"shorthand": "fs",
"pinyin": "fushun",
"suffix": "县",
"code": "210421",
"sort": "5"
},
{
"id": "960",
"name": "新宾",
"parent_id": "162",
"first_letter": "x",
"shorthand": "xb",
"pinyin": "xinbin",
"suffix": "自治县",
"code": "210422",
"sort": "6"
},
{
"id": "961",
"name": "清原",
"parent_id": "162",
"first_letter": "q",
"shorthand": "qy",
"pinyin": "qingyuan",
"suffix": "自治县",
"code": "210423",
"sort": "7"
},
{
"id": "962",
"name": "平山",
"parent_id": "163",
"first_letter": "p",
"shorthand": "ps",
"pinyin": "pingshan",
"suffix": "区",
"code": "210502",
"sort": "1"
},
{
"id": "963",
"name": "溪湖",
"parent_id": "163",
"first_letter": "x",
"shorthand": "xh",
"pinyin": "xihu",
"suffix": "区",
"code": "210503",
"sort": "2"
},
{
"id": "964",
"name": "明山",
"parent_id": "163",
"first_letter": "m",
"shorthand": "ms",
"pinyin": "mingshan",
"suffix": "区",
"code": "210504",
"sort": "3"
},
{
"id": "965",
"name": "南芬",
"parent_id": "163",
"first_letter": "n",
"shorthand": "nf",
"pinyin": "nanfen",
"suffix": "区",
"code": "210505",
"sort": "4"
},
{
"id": "966",
"name": "本溪",
"parent_id": "163",
"first_letter": "b",
"shorthand": "bx",
"pinyin": "benxi",
"suffix": "自治县",
"code": "210521",
"sort": "5"
},
{
"id": "967",
"name": "桓仁",
"parent_id": "163",
"first_letter": "h",
"shorthand": "hr",
"pinyin": "huanren",
"suffix": "自治县",
"code": "210522",
"sort": "6"
},
{
"id": "968",
"name": "元宝",
"parent_id": "164",
"first_letter": "y",
"shorthand": "yb",
"pinyin": "yuanbao",
"suffix": "区",
"code": "210602",
"sort": "1"
},
{
"id": "969",
"name": "振兴",
"parent_id": "164",
"first_letter": "z",
"shorthand": "zx",
"pinyin": "zhenxing",
"suffix": "区",
"code": "210603",
"sort": "2"
},
{
"id": "970",
"name": "振安",
"parent_id": "164",
"first_letter": "z",
"shorthand": "za",
"pinyin": "zhenan",
"suffix": "区",
"code": "210604",
"sort": "3"
},
{
"id": "971",
"name": "宽甸",
"parent_id": "164",
"first_letter": "k",
"shorthand": "kd",
"pinyin": "kuandian",
"suffix": "自治县",
"code": "210624",
"sort": "4"
},
{
"id": "972",
"name": "东港",
"parent_id": "164",
"first_letter": "d",
"shorthand": "dg",
"pinyin": "donggang",
"suffix": "市",
"code": "210681",
"sort": "5"
},
{
"id": "973",
"name": "凤城",
"parent_id": "164",
"first_letter": "f",
"shorthand": "fc",
"pinyin": "fengcheng",
"suffix": "市",
"code": "210682",
"sort": "6"
},
{
"id": "974",
"name": "古塔",
"parent_id": "165",
"first_letter": "g",
"shorthand": "gt",
"pinyin": "guta",
"suffix": "区",
"code": "210702",
"sort": "1"
},
{
"id": "975",
"name": "凌河",
"parent_id": "165",
"first_letter": "l",
"shorthand": "lh",
"pinyin": "linghe",
"suffix": "区",
"code": "210703",
"sort": "2"
},
{
"id": "976",
"name": "太和",
"parent_id": "165",
"first_letter": "t",
"shorthand": "th",
"pinyin": "taihe",
"suffix": "区",
"code": "210711",
"sort": "3"
},
{
"id": "977",
"name": "黑山",
"parent_id": "165",
"first_letter": "h",
"shorthand": "hs",
"pinyin": "heishan",
"suffix": "县",
"code": "210726",
"sort": "4"
},
{
"id": "978",
"name": "义县",
"parent_id": "165",
"first_letter": "y",
"shorthand": "yx",
"pinyin": "yixian",
"suffix": "",
"code": "210727",
"sort": "5"
},
{
"id": "979",
"name": "凌海",
"parent_id": "165",
"first_letter": "l",
"shorthand": "lh",
"pinyin": "linghai",
"suffix": "市",
"code": "210781",
"sort": "6"
},
{
"id": "980",
"name": "北镇",
"parent_id": "165",
"first_letter": "b",
"shorthand": "bz",
"pinyin": "beizhen",
"suffix": "市",
"code": "210782",
"sort": "7"
},
{
"id": "981",
"name": "站前",
"parent_id": "166",
"first_letter": "z",
"shorthand": "zq",
"pinyin": "zhanqian",
"suffix": "区",
"code": "210802",
"sort": "1"
},
{
"id": "982",
"name": "西市",
"parent_id": "166",
"first_letter": "x",
"shorthand": "xs",
"pinyin": "xishi",
"suffix": "区",
"code": "210803",
"sort": "2"
},
{
"id": "983",
"name": "鲅鱼圈",
"parent_id": "166",
"first_letter": "b",
"shorthand": "byq",
"pinyin": "bayuquan",
"suffix": "区",
"code": "210804",
"sort": "3"
},
{
"id": "984",
"name": "老边",
"parent_id": "166",
"first_letter": "l",
"shorthand": "lb",
"pinyin": "laobian",
"suffix": "区",
"code": "210811",
"sort": "4"
},
{
"id": "985",
"name": "盖州",
"parent_id": "166",
"first_letter": "g",
"shorthand": "gz",
"pinyin": "gaizhou",
"suffix": "市",
"code": "210881",
"sort": "5"
},
{
"id": "986",
"name": "大石桥",
"parent_id": "166",
"first_letter": "d",
"shorthand": "dsq",
"pinyin": "dashiqiao",
"suffix": "市",
"code": "210882",
"sort": "6"
},
{
"id": "987",
"name": "海州",
"parent_id": "167",
"first_letter": "h",
"shorthand": "hz",
"pinyin": "haizhou",
"suffix": "区",
"code": "210902",
"sort": "1"
},
{
"id": "988",
"name": "新邱",
"parent_id": "167",
"first_letter": "x",
"shorthand": "xq",
"pinyin": "xinqiu",
"suffix": "区",
"code": "210903",
"sort": "2"
},
{
"id": "989",
"name": "太平",
"parent_id": "167",
"first_letter": "t",
"shorthand": "tp",
"pinyin": "taiping",
"suffix": "区",
"code": "210904",
"sort": "3"
},
{
"id": "990",
"name": "清河门",
"parent_id": "167",
"first_letter": "q",
"shorthand": "qhm",
"pinyin": "qinghemen",
"suffix": "区",
"code": "210905",
"sort": "4"
},
{
"id": "991",
"name": "细河",
"parent_id": "167",
"first_letter": "x",
"shorthand": "xh",
"pinyin": "xihe",
"suffix": "区",
"code": "210911",
"sort": "5"
},
{
"id": "992",
"name": "阜新",
"parent_id": "167",
"first_letter": "f",
"shorthand": "fx",
"pinyin": "fuxin",
"suffix": "自治县",
"code": "210921",
"sort": "6"
},
{
"id": "993",
"name": "彰武",
"parent_id": "167",
"first_letter": "z",
"shorthand": "zw",
"pinyin": "zhangwu",
"suffix": "县",
"code": "210922",
"sort": "7"
},
{
"id": "994",
"name": "白塔",
"parent_id": "168",
"first_letter": "b",
"shorthand": "bt",
"pinyin": "baita",
"suffix": "区",
"code": "211002",
"sort": "1"
},
{
"id": "995",
"name": "文圣",
"parent_id": "168",
"first_letter": "w",
"shorthand": "ws",
"pinyin": "wensheng",
"suffix": "区",
"code": "211003",
"sort": "2"
},
{
"id": "996",
"name": "宏伟",
"parent_id": "168",
"first_letter": "h",
"shorthand": "hw",
"pinyin": "hongwei",
"suffix": "区",
"code": "211004",
"sort": "3"
},
{
"id": "997",
"name": "弓长岭",
"parent_id": "168",
"first_letter": "g",
"shorthand": "gzl",
"pinyin": "gongzhangling",
"suffix": "区",
"code": "211005",
"sort": "4"
},
{
"id": "998",
"name": "辽阳",
"parent_id": "168",
"first_letter": "l",
"shorthand": "ly",
"pinyin": "liaoyang",
"suffix": "县",
"code": "211021",
"sort": "5"
},
{
"id": "999",
"name": "灯塔",
"parent_id": "168",
"first_letter": "d",
"shorthand": "dt",
"pinyin": "dengta",
"suffix": "市",
"code": "211081",
"sort": "6"
},
{
"id": "1000",
"name": "太子河",
"parent_id": "168",
"first_letter": "t",
"shorthand": "tzh",
"pinyin": "taizihe",
"suffix": "区",
"code": "211110",
"sort": "7"
},
{
"id": "1001",
"name": "双台子",
"parent_id": "169",
"first_letter": "s",
"shorthand": "stz",
"pinyin": "shuangtaizi",
"suffix": "区",
"code": "211103",
"sort": "1"
},
{
"id": "1003",
"name": "大洼",
"parent_id": "169",
"first_letter": "d",
"shorthand": "dw",
"pinyin": "dawa",
"suffix": "县",
"code": "211121",
"sort": "3"
},
{
"id": "1004",
"name": "盘山",
"parent_id": "169",
"first_letter": "p",
"shorthand": "ps",
"pinyin": "panshan",
"suffix": "县",
"code": "211122",
"sort": "4"
},
{
"id": "1005",
"name": "银州",
"parent_id": "170",
"first_letter": "y",
"shorthand": "yz",
"pinyin": "yinzhou",
"suffix": "区",
"code": "211202",
"sort": "1"
},
{
"id": "1006",
"name": "清河",
"parent_id": "170",
"first_letter": "q",
"shorthand": "qh",
"pinyin": "qinghe",
"suffix": "区",
"code": "211204",
"sort": "2"
},
{
"id": "1007",
"name": "铁岭",
"parent_id": "170",
"first_letter": "t",
"shorthand": "tl",
"pinyin": "tieling",
"suffix": "县",
"code": "211221",
"sort": "3"
},
{
"id": "1008",
"name": "西丰",
"parent_id": "170",
"first_letter": "x",
"shorthand": "xf",
"pinyin": "xifeng",
"suffix": "县",
"code": "211223",
"sort": "4"
},
{
"id": "1009",
"name": "昌图",
"parent_id": "170",
"first_letter": "c",
"shorthand": "ct",
"pinyin": "changtu",
"suffix": "县",
"code": "211224",
"sort": "5"
},
{
"id": "1010",
"name": "调兵山",
"parent_id": "170",
"first_letter": "d",
"shorthand": "dbs",
"pinyin": "diaobingshan",
"suffix": "市",
"code": "211281",
"sort": "6"
},
{
"id": "1011",
"name": "开原",
"parent_id": "170",
"first_letter": "k",
"shorthand": "ky",
"pinyin": "kaiyuan",
"suffix": "市",
"code": "211282",
"sort": "7"
},
{
"id": "1012",
"name": "双塔",
"parent_id": "171",
"first_letter": "s",
"shorthand": "st",
"pinyin": "shuangta",
"suffix": "区",
"code": "211302",
"sort": "1"
},
{
"id": "1013",
"name": "龙城",
"parent_id": "171",
"first_letter": "l",
"shorthand": "lc",
"pinyin": "longcheng",
"suffix": "区",
"code": "211303",
"sort": "2"
},
{
"id": "1014",
"name": "朝阳",
"parent_id": "171",
"first_letter": "c",
"shorthand": "cy",
"pinyin": "chaoyang",
"suffix": "县",
"code": "211321",
"sort": "3"
},
{
"id": "1015",
"name": "建平",
"parent_id": "171",
"first_letter": "j",
"shorthand": "jp",
"pinyin": "jianping",
"suffix": "县",
"code": "211322",
"sort": "4"
},
{
"id": "1016",
"name": "喀喇沁左翼",
"parent_id": "171",
"first_letter": "k",
"shorthand": "klqzy",
"pinyin": "kalaqinzuoyi",
"suffix": "自治县",
"code": "211324",
"sort": "5"
},
{
"id": "1017",
"name": "北票",
"parent_id": "171",
"first_letter": "b",
"shorthand": "bp",
"pinyin": "beipiao",
"suffix": "市",
"code": "211381",
"sort": "6"
},
{
"id": "1018",
"name": "凌源",
"parent_id": "171",
"first_letter": "l",
"shorthand": "ly",
"pinyin": "lingyuan",
"suffix": "市",
"code": "211382",
"sort": "7"
},
{
"id": "1019",
"name": "连山",
"parent_id": "172",
"first_letter": "l",
"shorthand": "ls",
"pinyin": "lianshan",
"suffix": "区",
"code": "211402",
"sort": "1"
},
{
"id": "1020",
"name": "龙港",
"parent_id": "172",
"first_letter": "l",
"shorthand": "lg",
"pinyin": "longgang",
"suffix": "区",
"code": "211403",
"sort": "2"
},
{
"id": "1021",
"name": "南票",
"parent_id": "172",
"first_letter": "n",
"shorthand": "np",
"pinyin": "nanpiao",
"suffix": "区",
"code": "211404",
"sort": "3"
},
{
"id": "1022",
"name": "绥中",
"parent_id": "172",
"first_letter": "s",
"shorthand": "sz",
"pinyin": "suizhong",
"suffix": "县",
"code": "211421",
"sort": "4"
},
{
"id": "1023",
"name": "建昌",
"parent_id": "172",
"first_letter": "j",
"shorthand": "jc",
"pinyin": "jianchang",
"suffix": "县",
"code": "211422",
"sort": "5"
},
{
"id": "1024",
"name": "兴城",
"parent_id": "172",
"first_letter": "x",
"shorthand": "xc",
"pinyin": "xingcheng",
"suffix": "市",
"code": "211481",
"sort": "6"
},
{
"id": "1025",
"name": "南关",
"parent_id": "173",
"first_letter": "n",
"shorthand": "ng",
"pinyin": "nanguan",
"suffix": "区",
"code": "220102",
"sort": "1"
},
{
"id": "1026",
"name": "宽城",
"parent_id": "173",
"first_letter": "k",
"shorthand": "kc",
"pinyin": "kuancheng",
"suffix": "区",
"code": "220103",
"sort": "2"
},
{
"id": "1027",
"name": "朝阳",
"parent_id": "173",
"first_letter": "c",
"shorthand": "cy",
"pinyin": "chaoyang",
"suffix": "区",
"code": "220104",
"sort": "3"
},
{
"id": "1028",
"name": "二道",
"parent_id": "173",
"first_letter": "e",
"shorthand": "ed",
"pinyin": "erdao",
"suffix": "区",
"code": "220105",
"sort": "4"
},
{
"id": "1029",
"name": "绿园",
"parent_id": "173",
"first_letter": "l",
"shorthand": "ly",
"pinyin": "lu:yuan",
"suffix": "区",
"code": "220106",
"sort": "5"
},
{
"id": "1030",
"name": "双阳",
"parent_id": "173",
"first_letter": "s",
"shorthand": "sy",
"pinyin": "shuangyang",
"suffix": "区",
"code": "220112",
"sort": "6"
},
{
"id": "1031",
"name": "农安",
"parent_id": "173",
"first_letter": "n",
"shorthand": "na",
"pinyin": "nongan",
"suffix": "县",
"code": "220122",
"sort": "8"
},
{
"id": "1032",
"name": "九台",
"parent_id": "173",
"first_letter": "j",
"shorthand": "jt",
"pinyin": "jiutai",
"suffix": "区",
"code": "220113",
"sort": "7"
},
{
"id": "1033",
"name": "榆树",
"parent_id": "173",
"first_letter": "y",
"shorthand": "ys",
"pinyin": "yushu",
"suffix": "市",
"code": "220182",
"sort": "9"
},
{
"id": "1034",
"name": "德惠",
"parent_id": "173",
"first_letter": "d",
"shorthand": "dh",
"pinyin": "dehui",
"suffix": "市",
"code": "220183",
"sort": "10"
},
{
"id": "1035",
"name": "昌邑",
"parent_id": "174",
"first_letter": "c",
"shorthand": "cy",
"pinyin": "changyi",
"suffix": "区",
"code": "220202",
"sort": "1"
},
{
"id": "1036",
"name": "龙潭",
"parent_id": "174",
"first_letter": "l",
"shorthand": "lt",
"pinyin": "longtan",
"suffix": "区",
"code": "220203",
"sort": "2"
},
{
"id": "1037",
"name": "船营",
"parent_id": "174",
"first_letter": "c",
"shorthand": "cy",
"pinyin": "chuanying",
"suffix": "区",
"code": "220204",
"sort": "3"
},
{
"id": "1038",
"name": "丰满",
"parent_id": "174",
"first_letter": "f",
"shorthand": "fm",
"pinyin": "fengman",
"suffix": "区",
"code": "220211",
"sort": "4"
},
{
"id": "1039",
"name": "永吉",
"parent_id": "174",
"first_letter": "y",
"shorthand": "yj",
"pinyin": "yongji",
"suffix": "县",
"code": "220221",
"sort": "5"
},
{
"id": "1040",
"name": "桦甸",
"parent_id": "174",
"first_letter": "h",
"shorthand": "hd",
"pinyin": "huadian",
"suffix": "市",
"code": "220281",
"sort": "6"
},
{
"id": "1041",
"name": "蛟河",
"parent_id": "174",
"first_letter": "j",
"shorthand": "jh",
"pinyin": "jiaohe",
"suffix": "市",
"code": "220282",
"sort": "7"
},
{
"id": "1042",
"name": "舒兰",
"parent_id": "174",
"first_letter": "s",
"shorthand": "sl",
"pinyin": "shulan",
"suffix": "市",
"code": "220283",
"sort": "8"
},
{
"id": "1043",
"name": "磐石",
"parent_id": "174",
"first_letter": "p",
"shorthand": "ps",
"pinyin": "panshi",
"suffix": "市",
"code": "220284",
"sort": "9"
},
{
"id": "1044",
"name": "铁西",
"parent_id": "175",
"first_letter": "t",
"shorthand": "tx",
"pinyin": "tiexi",
"suffix": "区",
"code": "220302",
"sort": "1"
},
{
"id": "1045",
"name": "铁东",
"parent_id": "175",
"first_letter": "t",
"shorthand": "td",
"pinyin": "tiedong",
"suffix": "区",
"code": "220303",
"sort": "2"
},
{
"id": "1046",
"name": "梨树",
"parent_id": "175",
"first_letter": "l",
"shorthand": "ls",
"pinyin": "lishu",
"suffix": "县",
"code": "220322",
"sort": "3"
},
{
"id": "1047",
"name": "伊通",
"parent_id": "175",
"first_letter": "y",
"shorthand": "yt",
"pinyin": "yitong",
"suffix": "自治县",
"code": "220323",
"sort": "4"
},
{
"id": "1048",
"name": "公主岭",
"parent_id": "175",
"first_letter": "g",
"shorthand": "gzl",
"pinyin": "gongzhuling",
"suffix": "市",
"code": "220381",
"sort": "5"
},
{
"id": "1049",
"name": "双辽",
"parent_id": "175",
"first_letter": "s",
"shorthand": "sl",
"pinyin": "shuangliao",
"suffix": "市",
"code": "220382",
"sort": "6"
},
{
"id": "1050",
"name": "龙山",
"parent_id": "176",
"first_letter": "l",
"shorthand": "ls",
"pinyin": "longshan",
"suffix": "区",
"code": "220402",
"sort": "1"
},
{
"id": "1051",
"name": "西安",
"parent_id": "176",
"first_letter": "x",
"shorthand": "xa",
"pinyin": "xian",
"suffix": "区",
"code": "220403",
"sort": "2"
},
{
"id": "1052",
"name": "东丰",
"parent_id": "176",
"first_letter": "d",
"shorthand": "df",
"pinyin": "dongfeng",
"suffix": "县",
"code": "220421",
"sort": "3"
},
{
"id": "1053",
"name": "东辽",
"parent_id": "176",
"first_letter": "d",
"shorthand": "dl",
"pinyin": "dongliao",
"suffix": "县",
"code": "220422",
"sort": "4"
},
{
"id": "1054",
"name": "东昌",
"parent_id": "177",
"first_letter": "d",
"shorthand": "dc",
"pinyin": "dongchang",
"suffix": "区",
"code": "220502",
"sort": "1"
},
{
"id": "1055",
"name": "二道江",
"parent_id": "177",
"first_letter": "e",
"shorthand": "edj",
"pinyin": "erdaojiang",
"suffix": "区",
"code": "220503",
"sort": "2"
},
{
"id": "1056",
"name": "通化",
"parent_id": "177",
"first_letter": "t",
"shorthand": "th",
"pinyin": "tonghua",
"suffix": "县",
"code": "220521",
"sort": "3"
},
{
"id": "1057",
"name": "辉南",
"parent_id": "177",
"first_letter": "h",
"shorthand": "hn",
"pinyin": "huinan",
"suffix": "县",
"code": "220523",
"sort": "4"
},
{
"id": "1058",
"name": "柳河",
"parent_id": "177",
"first_letter": "l",
"shorthand": "lh",
"pinyin": "liuhe",
"suffix": "县",
"code": "220524",
"sort": "5"
},
{
"id": "1059",
"name": "梅河口",
"parent_id": "177",
"first_letter": "m",
"shorthand": "mhk",
"pinyin": "meihekou",
"suffix": "市",
"code": "220581",
"sort": "6"
},
{
"id": "1060",
"name": "集安",
"parent_id": "177",
"first_letter": "j",
"shorthand": "ja",
"pinyin": "jian",
"suffix": "市",
"code": "220582",
"sort": "7"
},
{
"id": "1061",
"name": "浑江",
"parent_id": "178",
"first_letter": "h",
"shorthand": "hj",
"pinyin": "hunjiang",
"suffix": "区",
"code": "220602",
"sort": "1"
},
{
"id": "1062",
"name": "江源",
"parent_id": "178",
"first_letter": "j",
"shorthand": "jy",
"pinyin": "jiangyuan",
"suffix": "区",
"code": "220604",
"sort": "2"
},
{
"id": "1063",
"name": "抚松",
"parent_id": "178",
"first_letter": "f",
"shorthand": "fs",
"pinyin": "fusong",
"suffix": "县",
"code": "220621",
"sort": "3"
},
{
"id": "1064",
"name": "靖宇",
"parent_id": "178",
"first_letter": "j",
"shorthand": "jy",
"pinyin": "jingyu",
"suffix": "县",
"code": "220622",
"sort": "4"
},
{
"id": "1065",
"name": "长白",
"parent_id": "178",
"first_letter": "z",
"shorthand": "zb",
"pinyin": "zhangbai",
"suffix": "自治县",
"code": "220623",
"sort": "5"
},
{
"id": "1066",
"name": "临江",
"parent_id": "178",
"first_letter": "l",
"shorthand": "lj",
"pinyin": "linjiang",
"suffix": "市",
"code": "220681",
"sort": "6"
},
{
"id": "1067",
"name": "宁江",
"parent_id": "179",
"first_letter": "n",
"shorthand": "nj",
"pinyin": "ningjiang",
"suffix": "区",
"code": "220702",
"sort": "1"
},
{
"id": "1068",
"name": "前郭尔罗斯",
"parent_id": "179",
"first_letter": "q",
"shorthand": "qgels",
"pinyin": "qianguoerluosi",
"suffix": "自治县",
"code": "220721",
"sort": "2"
},
{
"id": "1069",
"name": "长岭",
"parent_id": "179",
"first_letter": "z",
"shorthand": "zl",
"pinyin": "zhangling",
"suffix": "县",
"code": "220722",
"sort": "3"
},
{
"id": "1070",
"name": "乾安",
"parent_id": "179",
"first_letter": "q",
"shorthand": "qa",
"pinyin": "qianan",
"suffix": "县",
"code": "220723",
"sort": "4"
},
{
"id": "1071",
"name": "扶余",
"parent_id": "179",
"first_letter": "f",
"shorthand": "fy",
"pinyin": "fuyu",
"suffix": "市",
"code": "220724",
"sort": "5"
},
{
"id": "1072",
"name": "洮北",
"parent_id": "180",
"first_letter": "t",
"shorthand": "tb",
"pinyin": "taobei",
"suffix": "区",
"code": "220802",
"sort": "1"
},
{
"id": "1073",
"name": "镇赉",
"parent_id": "180",
"first_letter": "z",
"shorthand": "zl",
"pinyin": "zhenlai",
"suffix": "县",
"code": "220821",
"sort": "2"
},
{
"id": "1074",
"name": "洮南",
"parent_id": "180",
"first_letter": "t",
"shorthand": "tn",
"pinyin": "taonan",
"suffix": "市",
"code": "220881",
"sort": "4"
},
{
"id": "1075",
"name": "大安",
"parent_id": "180",
"first_letter": "d",
"shorthand": "da",
"pinyin": "daan",
"suffix": "市",
"code": "220882",
"sort": "5"
},
{
"id": "1076",
"name": "通榆",
"parent_id": "180",
"first_letter": "t",
"shorthand": "ty",
"pinyin": "tongyu",
"suffix": "县",
"code": "220822",
"sort": "3"
},
{
"id": "1077",
"name": "延吉",
"parent_id": "181",
"first_letter": "y",
"shorthand": "yj",
"pinyin": "yanji",
"suffix": "市",
"code": "222401",
"sort": "1"
},
{
"id": "1078",
"name": "图们",
"parent_id": "181",
"first_letter": "t",
"shorthand": "tm",
"pinyin": "tumen",
"suffix": "市",
"code": "222402",
"sort": "2"
},
{
"id": "1079",
"name": "敦化",
"parent_id": "181",
"first_letter": "d",
"shorthand": "dh",
"pinyin": "dunhua",
"suffix": "市",
"code": "222403",
"sort": "3"
},
{
"id": "1080",
"name": "珲春",
"parent_id": "181",
"first_letter": "h",
"shorthand": "hc",
"pinyin": "hunchun",
"suffix": "市",
"code": "222404",
"sort": "4"
},
{
"id": "1081",
"name": "龙井",
"parent_id": "181",
"first_letter": "l",
"shorthand": "lj",
"pinyin": "longjing",
"suffix": "市",
"code": "222405",
"sort": "5"
},
{
"id": "1082",
"name": "和龙",
"parent_id": "181",
"first_letter": "h",
"shorthand": "hl",
"pinyin": "helong",
"suffix": "市",
"code": "222406",
"sort": "6"
},
{
"id": "1083",
"name": "汪清",
"parent_id": "181",
"first_letter": "w",
"shorthand": "wq",
"pinyin": "wangqing",
"suffix": "县",
"code": "222424",
"sort": "7"
},
{
"id": "1084",
"name": "安图",
"parent_id": "181",
"first_letter": "a",
"shorthand": "at",
"pinyin": "antu",
"suffix": "县",
"code": "222426",
"sort": "8"
},
{
"id": "1085",
"name": "道里",
"parent_id": "182",
"first_letter": "d",
"shorthand": "dl",
"pinyin": "daoli",
"suffix": "区",
"code": "230102",
"sort": "1"
},
{
"id": "1086",
"name": "南岗",
"parent_id": "182",
"first_letter": "n",
"shorthand": "ng",
"pinyin": "nangang",
"suffix": "区",
"code": "230103",
"sort": "2"
},
{
"id": "1087",
"name": "道外",
"parent_id": "182",
"first_letter": "d",
"shorthand": "dw",
"pinyin": "daowai",
"suffix": "区",
"code": "230104",
"sort": "3"
},
{
"id": "1088",
"name": "平房",
"parent_id": "182",
"first_letter": "p",
"shorthand": "pf",
"pinyin": "pingfang",
"suffix": "区",
"code": "230108",
"sort": "4"
},
{
"id": "1089",
"name": "松北",
"parent_id": "182",
"first_letter": "s",
"shorthand": "sb",
"pinyin": "songbei",
"suffix": "区",
"code": "230109",
"sort": "5"
},
{
"id": "1090",
"name": "香坊",
"parent_id": "182",
"first_letter": "x",
"shorthand": "xf",
"pinyin": "xiangfang",
"suffix": "区",
"code": "230110",
"sort": "6"
},
{
"id": "1091",
"name": "呼兰",
"parent_id": "182",
"first_letter": "h",
"shorthand": "hl",
"pinyin": "hulan",
"suffix": "区",
"code": "230111",
"sort": "7"
},
{
"id": "1092",
"name": "阿城",
"parent_id": "182",
"first_letter": "a",
"shorthand": "ac",
"pinyin": "acheng",
"suffix": "区",
"code": "230112",
"sort": "8"
},
{
"id": "1093",
"name": "依兰",
"parent_id": "182",
"first_letter": "y",
"shorthand": "yl",
"pinyin": "yilan",
"suffix": "县",
"code": "230123",
"sort": "9"
},
{
"id": "1094",
"name": "方正",
"parent_id": "182",
"first_letter": "f",
"shorthand": "fz",
"pinyin": "fangzheng",
"suffix": "县",
"code": "230124",
"sort": "10"
},
{
"id": "1095",
"name": "宾县",
"parent_id": "182",
"first_letter": "b",
"shorthand": "bx",
"pinyin": "binxian",
"suffix": "",
"code": "230125",
"sort": "11"
},
{
"id": "1096",
"name": "巴彦",
"parent_id": "182",
"first_letter": "b",
"shorthand": "by",
"pinyin": "bayan",
"suffix": "县",
"code": "230126",
"sort": "12"
},
{
"id": "1097",
"name": "木兰",
"parent_id": "182",
"first_letter": "m",
"shorthand": "ml",
"pinyin": "mulan",
"suffix": "县",
"code": "230127",
"sort": "13"
},
{
"id": "1098",
"name": "通河",
"parent_id": "182",
"first_letter": "t",
"shorthand": "th",
"pinyin": "tonghe",
"suffix": "县",
"code": "230128",
"sort": "14"
},
{
"id": "1099",
"name": "延寿",
"parent_id": "182",
"first_letter": "y",
"shorthand": "ys",
"pinyin": "yanshou",
"suffix": "县",
"code": "230129",
"sort": "15"
},
{
"id": "1100",
"name": "双城",
"parent_id": "182",
"first_letter": "s",
"shorthand": "sc",
"pinyin": "shuangcheng",
"suffix": "区",
"code": "230182",
"sort": "16"
},
{
"id": "1101",
"name": "尚志",
"parent_id": "182",
"first_letter": "s",
"shorthand": "sz",
"pinyin": "shangzhi",
"suffix": "市",
"code": "230183",
"sort": "17"
},
{
"id": "1102",
"name": "五常",
"parent_id": "182",
"first_letter": "w",
"shorthand": "wc",
"pinyin": "wuchang",
"suffix": "市",
"code": "230184",
"sort": "18"
},
{
"id": "1103",
"name": "龙沙",
"parent_id": "183",
"first_letter": "l",
"shorthand": "ls",
"pinyin": "longsha",
"suffix": "区",
"code": "230202",
"sort": "1"
},
{
"id": "1104",
"name": "建华",
"parent_id": "183",
"first_letter": "j",
"shorthand": "jh",
"pinyin": "jianhua",
"suffix": "区",
"code": "230203",
"sort": "2"
},
{
"id": "1105",
"name": "铁锋",
"parent_id": "183",
"first_letter": "t",
"shorthand": "tf",
"pinyin": "tiefeng",
"suffix": "区",
"code": "230204",
"sort": "3"
},
{
"id": "1106",
"name": "昂昂溪",
"parent_id": "183",
"first_letter": "a",
"shorthand": "aax",
"pinyin": "angangxi",
"suffix": "区",
"code": "230205",
"sort": "4"
},
{
"id": "1107",
"name": "富拉尔基",
"parent_id": "183",
"first_letter": "f",
"shorthand": "flej",
"pinyin": "fulaerji",
"suffix": "区",
"code": "230206",
"sort": "5"
},
{
"id": "1108",
"name": "碾子山",
"parent_id": "183",
"first_letter": "n",
"shorthand": "nzs",
"pinyin": "nianzishan",
"suffix": "区",
"code": "230207",
"sort": "6"
},
{
"id": "1109",
"name": "梅里斯",
"parent_id": "183",
"first_letter": "m",
"shorthand": "mls",
"pinyin": "meilisi",
"suffix": "区",
"code": "230208",
"sort": "7"
},
{
"id": "1110",
"name": "龙江",
"parent_id": "183",
"first_letter": "l",
"shorthand": "lj",
"pinyin": "longjiang",
"suffix": "县",
"code": "230221",
"sort": "8"
},
{
"id": "1111",
"name": "依安",
"parent_id": "183",
"first_letter": "y",
"shorthand": "ya",
"pinyin": "yian",
"suffix": "县",
"code": "230223",
"sort": "9"
},
{
"id": "1112",
"name": "泰来",
"parent_id": "183",
"first_letter": "t",
"shorthand": "tl",
"pinyin": "tailai",
"suffix": "县",
"code": "230224",
"sort": "10"
},
{
"id": "1113",
"name": "甘南",
"parent_id": "183",
"first_letter": "g",
"shorthand": "gn",
"pinyin": "gannan",
"suffix": "县",
"code": "230225",
"sort": "11"
},
{
"id": "1114",
"name": "富裕",
"parent_id": "183",
"first_letter": "f",
"shorthand": "fy",
"pinyin": "fuyu",
"suffix": "县",
"code": "230227",
"sort": "12"
},
{
"id": "1115",
"name": "克山",
"parent_id": "183",
"first_letter": "k",
"shorthand": "ks",
"pinyin": "keshan",
"suffix": "县",
"code": "230229",
"sort": "13"
},
{
"id": "1116",
"name": "克东",
"parent_id": "183",
"first_letter": "k",
"shorthand": "kd",
"pinyin": "kedong",
"suffix": "县",
"code": "230230",
"sort": "14"
},
{
"id": "1117",
"name": "拜泉",
"parent_id": "183",
"first_letter": "b",
"shorthand": "bq",
"pinyin": "baiquan",
"suffix": "县",
"code": "230231",
"sort": "15"
},
{
"id": "1118",
"name": "讷河",
"parent_id": "183",
"first_letter": "n",
"shorthand": "nh",
"pinyin": "nehe",
"suffix": "市",
"code": "230281",
"sort": "16"
},
{
"id": "1119",
"name": "鸡冠",
"parent_id": "184",
"first_letter": "j",
"shorthand": "jg",
"pinyin": "jiguan",
"suffix": "区",
"code": "230302",
"sort": "1"
},
{
"id": "1120",
"name": "恒山",
"parent_id": "184",
"first_letter": "h",
"shorthand": "hs",
"pinyin": "hengshan",
"suffix": "区",
"code": "230303",
"sort": "2"
},
{
"id": "1121",
"name": "滴道",
"parent_id": "184",
"first_letter": "d",
"shorthand": "dd",
"pinyin": "didao",
"suffix": "区",
"code": "230304",
"sort": "3"
},
{
"id": "1122",
"name": "梨树",
"parent_id": "184",
"first_letter": "l",
"shorthand": "ls",
"pinyin": "lishu",
"suffix": "区",
"code": "230305",
"sort": "4"
},
{
"id": "1123",
"name": "城子河",
"parent_id": "184",
"first_letter": "c",
"shorthand": "czh",
"pinyin": "chengzihe",
"suffix": "区",
"code": "230306",
"sort": "5"
},
{
"id": "1124",
"name": "麻山",
"parent_id": "184",
"first_letter": "m",
"shorthand": "ms",
"pinyin": "mashan",
"suffix": "区",
"code": "230307",
"sort": "6"
},
{
"id": "1125",
"name": "鸡东",
"parent_id": "184",
"first_letter": "j",
"shorthand": "jd",
"pinyin": "jidong",
"suffix": "县",
"code": "230321",
"sort": "7"
},
{
"id": "1126",
"name": "虎林",
"parent_id": "184",
"first_letter": "h",
"shorthand": "hl",
"pinyin": "hulin",
"suffix": "市",
"code": "230381",
"sort": "8"
},
{
"id": "1127",
"name": "密山",
"parent_id": "184",
"first_letter": "m",
"shorthand": "ms",
"pinyin": "mishan",
"suffix": "市",
"code": "230382",
"sort": "9"
},
{
"id": "1128",
"name": "向阳",
"parent_id": "185",
"first_letter": "x",
"shorthand": "xy",
"pinyin": "xiangyang",
"suffix": "区",
"code": "230402",
"sort": "1"
},
{
"id": "1129",
"name": "工农",
"parent_id": "185",
"first_letter": "g",
"shorthand": "gn",
"pinyin": "gongnong",
"suffix": "区",
"code": "230403",
"sort": "2"
},
{
"id": "1130",
"name": "南山",
"parent_id": "185",
"first_letter": "n",
"shorthand": "ns",
"pinyin": "nanshan",
"suffix": "区",
"code": "230404",
"sort": "3"
},
{
"id": "1131",
"name": "兴安",
"parent_id": "185",
"first_letter": "x",
"shorthand": "xa",
"pinyin": "xingan",
"suffix": "区",
"code": "230405",
"sort": "4"
},
{
"id": "1132",
"name": "东山",
"parent_id": "185",
"first_letter": "d",
"shorthand": "ds",
"pinyin": "dongshan",
"suffix": "区",
"code": "230406",
"sort": "5"
},
{
"id": "1133",
"name": "兴山",
"parent_id": "185",
"first_letter": "x",
"shorthand": "xs",
"pinyin": "xingshan",
"suffix": "区",
"code": "230407",
"sort": "6"
},
{
"id": "1134",
"name": "萝北",
"parent_id": "185",
"first_letter": "l",
"shorthand": "lb",
"pinyin": "luobei",
"suffix": "县",
"code": "230421",
"sort": "7"
},
{
"id": "1135",
"name": "绥滨",
"parent_id": "185",
"first_letter": "s",
"shorthand": "sb",
"pinyin": "suibin",
"suffix": "县",
"code": "230422",
"sort": "8"
},
{
"id": "1136",
"name": "尖山",
"parent_id": "186",
"first_letter": "j",
"shorthand": "js",
"pinyin": "jianshan",
"suffix": "区",
"code": "230502",
"sort": "1"
},
{
"id": "1137",
"name": "岭东",
"parent_id": "186",
"first_letter": "l",
"shorthand": "ld",
"pinyin": "lingdong",
"suffix": "区",
"code": "230503",
"sort": "2"
},
{
"id": "1138",
"name": "四方台",
"parent_id": "186",
"first_letter": "s",
"shorthand": "sft",
"pinyin": "sifangtai",
"suffix": "区",
"code": "230505",
"sort": "3"
},
{
"id": "1139",
"name": "宝山",
"parent_id": "186",
"first_letter": "b",
"shorthand": "bs",
"pinyin": "baoshan",
"suffix": "区",
"code": "230506",
"sort": "4"
},
{
"id": "1140",
"name": "集贤",
"parent_id": "186",
"first_letter": "j",
"shorthand": "jx",
"pinyin": "jixian",
"suffix": "县",
"code": "230521",
"sort": "5"
},
{
"id": "1141",
"name": "友谊",
"parent_id": "186",
"first_letter": "y",
"shorthand": "yy",
"pinyin": "youyi",
"suffix": "县",
"code": "230522",
"sort": "6"
},
{
"id": "1142",
"name": "宝清",
"parent_id": "186",
"first_letter": "b",
"shorthand": "bq",
"pinyin": "baoqing",
"suffix": "县",
"code": "230523",
"sort": "7"
},
{
"id": "1143",
"name": "饶河",
"parent_id": "186",
"first_letter": "r",
"shorthand": "rh",
"pinyin": "raohe",
"suffix": "县",
"code": "230524",
"sort": "8"
},
{
"id": "1144",
"name": "萨尔图",
"parent_id": "187",
"first_letter": "s",
"shorthand": "set",
"pinyin": "saertu",
"suffix": "区",
"code": "230602",
"sort": "1"
},
{
"id": "1145",
"name": "龙凤",
"parent_id": "187",
"first_letter": "l",
"shorthand": "lf",
"pinyin": "longfeng",
"suffix": "区",
"code": "230603",
"sort": "2"
},
{
"id": "1146",
"name": "让胡路",
"parent_id": "187",
"first_letter": "r",
"shorthand": "rhl",
"pinyin": "ranghulu",
"suffix": "区",
"code": "230604",
"sort": "3"
},
{
"id": "1147",
"name": "红岗",
"parent_id": "187",
"first_letter": "h",
"shorthand": "hg",
"pinyin": "honggang",
"suffix": "区",
"code": "230605",
"sort": "4"
},
{
"id": "1148",
"name": "大同",
"parent_id": "187",
"first_letter": "d",
"shorthand": "dt",
"pinyin": "datong",
"suffix": "区",
"code": "230606",
"sort": "5"
},
{
"id": "1149",
"name": "肇州",
"parent_id": "187",
"first_letter": "z",
"shorthand": "zz",
"pinyin": "zhaozhou",
"suffix": "县",
"code": "230621",
"sort": "6"
},
{
"id": "1150",
"name": "肇源",
"parent_id": "187",
"first_letter": "z",
"shorthand": "zy",
"pinyin": "zhaoyuan",
"suffix": "县",
"code": "230622",
"sort": "7"
},
{
"id": "1151",
"name": "林甸",
"parent_id": "187",
"first_letter": "l",
"shorthand": "ld",
"pinyin": "lindian",
"suffix": "县",
"code": "230623",
"sort": "8"
},
{
"id": "1152",
"name": "杜尔伯特",
"parent_id": "187",
"first_letter": "d",
"shorthand": "debt",
"pinyin": "duerbote",
"suffix": "自治县",
"code": "230624",
"sort": "9"
},
{
"id": "1153",
"name": "伊春",
"parent_id": "188",
"first_letter": "y",
"shorthand": "yc",
"pinyin": "yichun",
"suffix": "区",
"code": "230702",
"sort": "1"
},
{
"id": "1154",
"name": "南岔",
"parent_id": "188",
"first_letter": "n",
"shorthand": "nc",
"pinyin": "nancha",
"suffix": "区",
"code": "230703",
"sort": "2"
},
{
"id": "1155",
"name": "友好",
"parent_id": "188",
"first_letter": "y",
"shorthand": "yh",
"pinyin": "youhao",
"suffix": "区",
"code": "230704",
"sort": "3"
},
{
"id": "1156",
"name": "西林",
"parent_id": "188",
"first_letter": "x",
"shorthand": "xl",
"pinyin": "xilin",
"suffix": "区",
"code": "230705",
"sort": "4"
},
{
"id": "1157",
"name": "翠峦",
"parent_id": "188",
"first_letter": "c",
"shorthand": "cl",
"pinyin": "cuiluan",
"suffix": "区",
"code": "230706",
"sort": "5"
},
{
"id": "1158",
"name": "新青",
"parent_id": "188",
"first_letter": "x",
"shorthand": "xq",
"pinyin": "xinqing",
"suffix": "区",
"code": "230707",
"sort": "6"
},
{
"id": "1159",
"name": "美溪",
"parent_id": "188",
"first_letter": "m",
"shorthand": "mx",
"pinyin": "meixi",
"suffix": "区",
"code": "230708",
"sort": "7"
},
{
"id": "1160",
"name": "金山屯",
"parent_id": "188",
"first_letter": "j",
"shorthand": "jst",
"pinyin": "jinshantun",
"suffix": "区",
"code": "230709",
"sort": "8"
},
{
"id": "1161",
"name": "五营",
"parent_id": "188",
"first_letter": "w",
"shorthand": "wy",
"pinyin": "wuying",
"suffix": "区",
"code": "230710",
"sort": "9"
},
{
"id": "1162",
"name": "乌马河",
"parent_id": "188",
"first_letter": "w",
"shorthand": "wmh",
"pinyin": "wumahe",
"suffix": "区",
"code": "230711",
"sort": "10"
},
{
"id": "1163",
"name": "汤旺河",
"parent_id": "188",
"first_letter": "t",
"shorthand": "twh",
"pinyin": "tangwanghe",
"suffix": "区",
"code": "230712",
"sort": "11"
},
{
"id": "1164",
"name": "带岭",
"parent_id": "188",
"first_letter": "d",
"shorthand": "dl",
"pinyin": "dailing",
"suffix": "区",
"code": "230713",
"sort": "12"
},
{
"id": "1165",
"name": "乌伊岭",
"parent_id": "188",
"first_letter": "w",
"shorthand": "wyl",
"pinyin": "wuyiling",
"suffix": "区",
"code": "230714",
"sort": "13"
},
{
"id": "1166",
"name": "红星",
"parent_id": "188",
"first_letter": "h",
"shorthand": "hx",
"pinyin": "hongxing",
"suffix": "区",
"code": "230715",
"sort": "14"
},
{
"id": "1167",
"name": "上甘岭",
"parent_id": "188",
"first_letter": "s",
"shorthand": "sgl",
"pinyin": "shangganling",
"suffix": "区",
"code": "230716",
"sort": "15"
},
{
"id": "1168",
"name": "嘉荫",
"parent_id": "188",
"first_letter": "j",
"shorthand": "jy",
"pinyin": "jiayin",
"suffix": "县",
"code": "230722",
"sort": "16"
},
{
"id": "1169",
"name": "铁力",
"parent_id": "188",
"first_letter": "t",
"shorthand": "tl",
"pinyin": "tieli",
"suffix": "市",
"code": "230781",
"sort": "17"
},
{
"id": "1170",
"name": "向阳",
"parent_id": "189",
"first_letter": "x",
"shorthand": "xy",
"pinyin": "xiangyang",
"suffix": "区",
"code": "230803",
"sort": "1"
},
{
"id": "1171",
"name": "前进",
"parent_id": "189",
"first_letter": "q",
"shorthand": "qj",
"pinyin": "qianjin",
"suffix": "区",
"code": "230804",
"sort": "2"
},
{
"id": "1172",
"name": "东风",
"parent_id": "189",
"first_letter": "d",
"shorthand": "df",
"pinyin": "dongfeng",
"suffix": "区",
"code": "230805",
"sort": "3"
},
{
"id": "1173",
"name": "郊区",
"parent_id": "189",
"first_letter": "j",
"shorthand": "jq",
"pinyin": "jiaoqu",
"suffix": "",
"code": "230811",
"sort": "4"
},
{
"id": "1174",
"name": "桦南",
"parent_id": "189",
"first_letter": "h",
"shorthand": "hn",
"pinyin": "huanan",
"suffix": "县",
"code": "230822",
"sort": "5"
},
{
"id": "1175",
"name": "桦川",
"parent_id": "189",
"first_letter": "h",
"shorthand": "hc",
"pinyin": "huachuan",
"suffix": "县",
"code": "230826",
"sort": "6"
},
{
"id": "1176",
"name": "汤原",
"parent_id": "189",
"first_letter": "t",
"shorthand": "ty",
"pinyin": "tangyuan",
"suffix": "县",
"code": "230828",
"sort": "7"
},
{
"id": "1177",
"name": "抚远",
"parent_id": "189",
"first_letter": "f",
"shorthand": "fy",
"pinyin": "fuyuan",
"suffix": "县",
"code": "230833",
"sort": "8"
},
{
"id": "1178",
"name": "同江",
"parent_id": "189",
"first_letter": "t",
"shorthand": "tj",
"pinyin": "tongjiang",
"suffix": "市",
"code": "230881",
"sort": "9"
},
{
"id": "1179",
"name": "富锦",
"parent_id": "189",
"first_letter": "f",
"shorthand": "fj",
"pinyin": "fujin",
"suffix": "市",
"code": "230882",
"sort": "10"
},
{
"id": "1180",
"name": "新兴",
"parent_id": "190",
"first_letter": "x",
"shorthand": "xx",
"pinyin": "xinxing",
"suffix": "区",
"code": "230902",
"sort": "1"
},
{
"id": "1181",
"name": "桃山",
"parent_id": "190",
"first_letter": "t",
"shorthand": "ts",
"pinyin": "taoshan",
"suffix": "区",
"code": "230903",
"sort": "2"
},
{
"id": "1182",
"name": "茄子河",
"parent_id": "190",
"first_letter": "q",
"shorthand": "qzh",
"pinyin": "qiezihe",
"suffix": "区",
"code": "230904",
"sort": "3"
},
{
"id": "1183",
"name": "勃利",
"parent_id": "190",
"first_letter": "b",
"shorthand": "bl",
"pinyin": "boli",
"suffix": "县",
"code": "230921",
"sort": "4"
},
{
"id": "1184",
"name": "东安",
"parent_id": "191",
"first_letter": "d",
"shorthand": "da",
"pinyin": "dongan",
"suffix": "区",
"code": "231002",
"sort": "1"
},
{
"id": "1185",
"name": "阳明",
"parent_id": "191",
"first_letter": "y",
"shorthand": "ym",
"pinyin": "yangming",
"suffix": "区",
"code": "231003",
"sort": "2"
},
{
"id": "1186",
"name": "爱民",
"parent_id": "191",
"first_letter": "a",
"shorthand": "am",
"pinyin": "aimin",
"suffix": "区",
"code": "231004",
"sort": "3"
},
{
"id": "1187",
"name": "西安",
"parent_id": "191",
"first_letter": "x",
"shorthand": "xa",
"pinyin": "xian",
"suffix": "区",
"code": "231005",
"sort": "4"
},
{
"id": "1188",
"name": "东宁",
"parent_id": "191",
"first_letter": "d",
"shorthand": "dn",
"pinyin": "dongning",
"suffix": "县",
"code": "231024",
"sort": "5"
},
{
"id": "1189",
"name": "林口",
"parent_id": "191",
"first_letter": "l",
"shorthand": "lk",
"pinyin": "linkou",
"suffix": "县",
"code": "231025",
"sort": "6"
},
{
"id": "1190",
"name": "绥芬河",
"parent_id": "191",
"first_letter": "s",
"shorthand": "sfh",
"pinyin": "suifenhe",
"suffix": "市",
"code": "231081",
"sort": "7"
},
{
"id": "1191",
"name": "海林",
"parent_id": "191",
"first_letter": "h",
"shorthand": "hl",
"pinyin": "hailin",
"suffix": "市",
"code": "231083",
"sort": "8"
},
{
"id": "1192",
"name": "宁安",
"parent_id": "191",
"first_letter": "n",
"shorthand": "na",
"pinyin": "ningan",
"suffix": "市",
"code": "231084",
"sort": "9"
},
{
"id": "1193",
"name": "穆棱",
"parent_id": "191",
"first_letter": "m",
"shorthand": "ml",
"pinyin": "muleng",
"suffix": "市",
"code": "231085",
"sort": "10"
},
{
"id": "1194",
"name": "爱辉",
"parent_id": "192",
"first_letter": "a",
"shorthand": "ah",
"pinyin": "aihui",
"suffix": "区",
"code": "231102",
"sort": "1"
},
{
"id": "1195",
"name": "嫩江",
"parent_id": "192",
"first_letter": "n",
"shorthand": "nj",
"pinyin": "nenjiang",
"suffix": "县",
"code": "231121",
"sort": "2"
},
{
"id": "1196",
"name": "逊克",
"parent_id": "192",
"first_letter": "x",
"shorthand": "xk",
"pinyin": "xunke",
"suffix": "县",
"code": "231123",
"sort": "3"
},
{
"id": "1197",
"name": "孙吴",
"parent_id": "192",
"first_letter": "s",
"shorthand": "sw",
"pinyin": "sunwu",
"suffix": "县",
"code": "231124",
"sort": "4"
},
{
"id": "1198",
"name": "北安",
"parent_id": "192",
"first_letter": "b",
"shorthand": "ba",
"pinyin": "beian",
"suffix": "市",
"code": "231181",
"sort": "5"
},
{
"id": "1199",
"name": "五大连池",
"parent_id": "192",
"first_letter": "w",
"shorthand": "wdlc",
"pinyin": "wudalianchi",
"suffix": "市",
"code": "231182",
"sort": "6"
},
{
"id": "1200",
"name": "北林",
"parent_id": "193",
"first_letter": "b",
"shorthand": "bl",
"pinyin": "beilin",
"suffix": "区",
"code": "231202",
"sort": "1"
},
{
"id": "1201",
"name": "望奎",
"parent_id": "193",
"first_letter": "w",
"shorthand": "wk",
"pinyin": "wangkui",
"suffix": "县",
"code": "231221",
"sort": "2"
},
{
"id": "1202",
"name": "兰西",
"parent_id": "193",
"first_letter": "l",
"shorthand": "lx",
"pinyin": "lanxi",
"suffix": "县",
"code": "231222",
"sort": "3"
},
{
"id": "1203",
"name": "青冈",
"parent_id": "193",
"first_letter": "q",
"shorthand": "qg",
"pinyin": "qinggang",
"suffix": "县",
"code": "231223",
"sort": "4"
},
{
"id": "1204",
"name": "庆安",
"parent_id": "193",
"first_letter": "q",
"shorthand": "qa",
"pinyin": "qingan",
"suffix": "县",
"code": "231224",
"sort": "5"
},
{
"id": "1205",
"name": "明水",
"parent_id": "193",
"first_letter": "m",
"shorthand": "ms",
"pinyin": "mingshui",
"suffix": "县",
"code": "231225",
"sort": "6"
},
{
"id": "1206",
"name": "绥棱",
"parent_id": "193",
"first_letter": "s",
"shorthand": "sl",
"pinyin": "suileng",
"suffix": "县",
"code": "231226",
"sort": "7"
},
{
"id": "1207",
"name": "安达",
"parent_id": "193",
"first_letter": "a",
"shorthand": "ad",
"pinyin": "anda",
"suffix": "市",
"code": "231281",
"sort": "8"
},
{
"id": "1208",
"name": "肇东",
"parent_id": "193",
"first_letter": "z",
"shorthand": "zd",
"pinyin": "zhaodong",
"suffix": "市",
"code": "231282",
"sort": "9"
},
{
"id": "1209",
"name": "海伦",
"parent_id": "193",
"first_letter": "h",
"shorthand": "hl",
"pinyin": "hailun",
"suffix": "市",
"code": "231283",
"sort": "10"
},
{
"id": "1210",
"name": "加格达奇",
"parent_id": "194",
"first_letter": "j",
"shorthand": "jgdq",
"pinyin": "jiagedaqi",
"suffix": "区",
"code": "232701",
"sort": "1"
},
{
"id": "1211",
"name": "松岭",
"parent_id": "194",
"first_letter": "s",
"shorthand": "sl",
"pinyin": "songling",
"suffix": "区",
"code": "232702",
"sort": "2"
},
{
"id": "1212",
"name": "新林",
"parent_id": "194",
"first_letter": "x",
"shorthand": "xl",
"pinyin": "xinlin",
"suffix": "区",
"code": "232703",
"sort": "3"
},
{
"id": "1213",
"name": "呼中",
"parent_id": "194",
"first_letter": "h",
"shorthand": "hz",
"pinyin": "huzhong",
"suffix": "区",
"code": "232704",
"sort": "4"
},
{
"id": "1214",
"name": "呼玛",
"parent_id": "194",
"first_letter": "h",
"shorthand": "hm",
"pinyin": "huma",
"suffix": "县",
"code": "232721",
"sort": "5"
},
{
"id": "1215",
"name": "塔河",
"parent_id": "194",
"first_letter": "t",
"shorthand": "th",
"pinyin": "tahe",
"suffix": "县",
"code": "232722",
"sort": "6"
},
{
"id": "1216",
"name": "漠河",
"parent_id": "194",
"first_letter": "m",
"shorthand": "mh",
"pinyin": "mohe",
"suffix": "县",
"code": "232723",
"sort": "7"
},
{
"id": "1217",
"name": "玄武",
"parent_id": "195",
"first_letter": "x",
"shorthand": "xw",
"pinyin": "xuanwu",
"suffix": "区",
"code": "320102",
"sort": "1"
},
{
"id": "1218",
"name": "秦淮",
"parent_id": "195",
"first_letter": "q",
"shorthand": "qh",
"pinyin": "qinhuai",
"suffix": "区",
"code": "320104",
"sort": "2"
},
{
"id": "1219",
"name": "建邺",
"parent_id": "195",
"first_letter": "j",
"shorthand": "jy",
"pinyin": "jianye",
"suffix": "区",
"code": "320105",
"sort": "3"
},
{
"id": "1220",
"name": "鼓楼",
"parent_id": "195",
"first_letter": "g",
"shorthand": "gl",
"pinyin": "gulou",
"suffix": "区",
"code": "320106",
"sort": "4"
},
{
"id": "1221",
"name": "浦口",
"parent_id": "195",
"first_letter": "p",
"shorthand": "pk",
"pinyin": "pukou",
"suffix": "区",
"code": "320111",
"sort": "5"
},
{
"id": "1222",
"name": "栖霞",
"parent_id": "195",
"first_letter": "q",
"shorthand": "qx",
"pinyin": "qixia",
"suffix": "区",
"code": "320113",
"sort": "6"
},
{
"id": "1223",
"name": "雨花台",
"parent_id": "195",
"first_letter": "y",
"shorthand": "yht",
"pinyin": "yuhuatai",
"suffix": "区",
"code": "320114",
"sort": "7"
},
{
"id": "1224",
"name": "江宁",
"parent_id": "195",
"first_letter": "j",
"shorthand": "jn",
"pinyin": "jiangning",
"suffix": "区",
"code": "320115",
"sort": "8"
},
{
"id": "1225",
"name": "六合",
"parent_id": "195",
"first_letter": "l",
"shorthand": "lh",
"pinyin": "liuhe",
"suffix": "区",
"code": "320116",
"sort": "9"
},
{
"id": "1226",
"name": "溧水",
"parent_id": "195",
"first_letter": "l",
"shorthand": "ls",
"pinyin": "lishui",
"suffix": "区",
"code": "320124",
"sort": "10"
},
{
"id": "1227",
"name": "高淳",
"parent_id": "195",
"first_letter": "g",
"shorthand": "gc",
"pinyin": "gaochun",
"suffix": "区",
"code": "320125",
"sort": "11"
},
{
"id": "1228",
"name": "崇安",
"parent_id": "196",
"first_letter": "c",
"shorthand": "ca",
"pinyin": "chongan",
"suffix": "区",
"code": "320202",
"sort": "1"
},
{
"id": "1229",
"name": "南长",
"parent_id": "196",
"first_letter": "n",
"shorthand": "nz",
"pinyin": "nanzhang",
"suffix": "区",
"code": "320203",
"sort": "2"
},
{
"id": "1230",
"name": "北塘",
"parent_id": "196",
"first_letter": "b",
"shorthand": "bt",
"pinyin": "beitang",
"suffix": "区",
"code": "320204",
"sort": "3"
},
{
"id": "1231",
"name": "锡山",
"parent_id": "196",
"first_letter": "x",
"shorthand": "xs",
"pinyin": "xishan",
"suffix": "区",
"code": "320205",
"sort": "4"
},
{
"id": "1232",
"name": "惠山",
"parent_id": "196",
"first_letter": "h",
"shorthand": "hs",
"pinyin": "huishan",
"suffix": "区",
"code": "320206",
"sort": "5"
},
{
"id": "1233",
"name": "滨湖",
"parent_id": "196",
"first_letter": "b",
"shorthand": "bh",
"pinyin": "binhu",
"suffix": "区",
"code": "320211",
"sort": "6"
},
{
"id": "1234",
"name": "江阴",
"parent_id": "196",
"first_letter": "j",
"shorthand": "jy",
"pinyin": "jiangyin",
"suffix": "市",
"code": "320281",
"sort": "7"
},
{
"id": "1235",
"name": "宜兴",
"parent_id": "196",
"first_letter": "y",
"shorthand": "yx",
"pinyin": "yixing",
"suffix": "市",
"code": "320282",
"sort": "8"
},
{
"id": "1236",
"name": "鼓楼",
"parent_id": "197",
"first_letter": "g",
"shorthand": "gl",
"pinyin": "gulou",
"suffix": "区",
"code": "320302",
"sort": "1"
},
{
"id": "1237",
"name": "云龙",
"parent_id": "197",
"first_letter": "y",
"shorthand": "yl",
"pinyin": "yunlong",
"suffix": "区",
"code": "320303",
"sort": "2"
},
{
"id": "1238",
"name": "贾汪",
"parent_id": "197",
"first_letter": "j",
"shorthand": "jw",
"pinyin": "jiawang",
"suffix": "区",
"code": "320305",
"sort": "3"
},
{
"id": "1239",
"name": "泉山",
"parent_id": "197",
"first_letter": "q",
"shorthand": "qs",
"pinyin": "quanshan",
"suffix": "区",
"code": "320311",
"sort": "4"
},
{
"id": "1240",
"name": "铜山",
"parent_id": "197",
"first_letter": "t",
"shorthand": "ts",
"pinyin": "tongshan",
"suffix": "区",
"code": "320312",
"sort": "5"
},
{
"id": "1241",
"name": "丰县",
"parent_id": "197",
"first_letter": "f",
"shorthand": "fx",
"pinyin": "fengxian",
"suffix": "",
"code": "320321",
"sort": "6"
},
{
"id": "1242",
"name": "沛县",
"parent_id": "197",
"first_letter": "p",
"shorthand": "px",
"pinyin": "peixian",
"suffix": "",
"code": "320322",
"sort": "7"
},
{
"id": "1243",
"name": "睢宁",
"parent_id": "197",
"first_letter": "s",
"shorthand": "sn",
"pinyin": "suining",
"suffix": "县",
"code": "320324",
"sort": "8"
},
{
"id": "1244",
"name": "新沂",
"parent_id": "197",
"first_letter": "x",
"shorthand": "xy",
"pinyin": "xinyi",
"suffix": "市",
"code": "320381",
"sort": "9"
},
{
"id": "1245",
"name": "邳州",
"parent_id": "197",
"first_letter": "p",
"shorthand": "pz",
"pinyin": "pizhou",
"suffix": "市",
"code": "320382",
"sort": "10"
},
{
"id": "1246",
"name": "天宁",
"parent_id": "198",
"first_letter": "t",
"shorthand": "tn",
"pinyin": "tianning",
"suffix": "区",
"code": "320402",
"sort": "1"
},
{
"id": "1247",
"name": "钟楼",
"parent_id": "198",
"first_letter": "z",
"shorthand": "zl",
"pinyin": "zhonglou",
"suffix": "区",
"code": "320404",
"sort": "2"
},
{
"id": "1248",
"name": "戚墅堰",
"parent_id": "198",
"first_letter": "q",
"shorthand": "qsy",
"pinyin": "qishuyan",
"suffix": "区",
"code": "320405",
"sort": "3"
},
{
"id": "1249",
"name": "新北",
"parent_id": "198",
"first_letter": "x",
"shorthand": "xb",
"pinyin": "xinbei",
"suffix": "区",
"code": "320411",
"sort": "4"
},
{
"id": "1250",
"name": "武进",
"parent_id": "198",
"first_letter": "w",
"shorthand": "wj",
"pinyin": "wujin",
"suffix": "区",
"code": "320412",
"sort": "5"
},
{
"id": "1251",
"name": "溧阳",
"parent_id": "198",
"first_letter": "l",
"shorthand": "ly",
"pinyin": "liyang",
"suffix": "市",
"code": "320481",
"sort": "6"
},
{
"id": "1252",
"name": "金坛",
"parent_id": "198",
"first_letter": "j",
"shorthand": "jt",
"pinyin": "jintan",
"suffix": "市",
"code": "320482",
"sort": "7"
},
{
"id": "1253",
"name": "虎丘",
"parent_id": "199",
"first_letter": "h",
"shorthand": "hq",
"pinyin": "huqiu",
"suffix": "区",
"code": "320505",
"sort": "1"
},
{
"id": "1254",
"name": "吴中",
"parent_id": "199",
"first_letter": "w",
"shorthand": "wz",
"pinyin": "wuzhong",
"suffix": "区",
"code": "320506",
"sort": "2"
},
{
"id": "1255",
"name": "相城",
"parent_id": "199",
"first_letter": "x",
"shorthand": "xc",
"pinyin": "xiangcheng",
"suffix": "区",
"code": "320507",
"sort": "3"
},
{
"id": "1256",
"name": "姑苏",
"parent_id": "199",
"first_letter": "g",
"shorthand": "gs",
"pinyin": "gusu",
"suffix": "区",
"code": "320508",
"sort": "4"
},
{
"id": "1257",
"name": "吴江",
"parent_id": "199",
"first_letter": "w",
"shorthand": "wj",
"pinyin": "wujiang",
"suffix": "市",
"code": "320509",
"sort": "5"
},
{
"id": "1258",
"name": "常熟",
"parent_id": "199",
"first_letter": "c",
"shorthand": "cs",
"pinyin": "changshu",
"suffix": "市",
"code": "320581",
"sort": "6"
},
{
"id": "1259",
"name": "张家港",
"parent_id": "199",
"first_letter": "z",
"shorthand": "zjg",
"pinyin": "zhangjiagang",
"suffix": "市",
"code": "320582",
"sort": "7"
},
{
"id": "1260",
"name": "昆山",
"parent_id": "199",
"first_letter": "k",
"shorthand": "ks",
"pinyin": "kunshan",
"suffix": "市",
"code": "320583",
"sort": "8"
},
{
"id": "1261",
"name": "太仓",
"parent_id": "199",
"first_letter": "t",
"shorthand": "tc",
"pinyin": "taicang",
"suffix": "市",
"code": "320585",
"sort": "9"
},
{
"id": "1262",
"name": "崇川",
"parent_id": "200",
"first_letter": "c",
"shorthand": "cc",
"pinyin": "chongchuan",
"suffix": "区",
"code": "320602",
"sort": "1"
},
{
"id": "1263",
"name": "港闸",
"parent_id": "200",
"first_letter": "g",
"shorthand": "gz",
"pinyin": "gangzha",
"suffix": "区",
"code": "320611",
"sort": "2"
},
{
"id": "1264",
"name": "通州",
"parent_id": "200",
"first_letter": "t",
"short
gitextract_z1th4j80/
├── .gitignore
├── README.md
├── bankType.js
├── cities.js
├── data/
│ └── banks.json
├── index.js
├── package.json
├── provinces.js
└── src/
├── index.js
└── package.json
SYMBOL INDEX (3 symbols across 1 files) FILE: src/index.js constant MERCHANT_ID (line 9) | const MERCHANT_ID = 123456; constant TOKEN (line 10) | const TOKEN = ''; constant COOKIE (line 11) | const COOKIE = '';
Condensed preview — 10 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (773K chars).
[
{
"path": ".gitignore",
"chars": 31,
"preview": "node_modules\n.DS_Store\n.vscode\n"
},
{
"path": "README.md",
"chars": 1866,
"preview": "# wechat-banks\n\n从微信商户后台爬出来的全国各地银行数据,共计 101370 条。你可以 [点击这里](https://raw.githubusercontent.com/yuche/wechat-banks/master/d"
},
{
"path": "bankType.js",
"chars": 2511,
"preview": "module.exports = [\n {\"value\": \"1001\", \"name\": \"招商银行\", \"accNoParttern\": [/^(\\d{13}|\\d{15,21})$/, /^(\\d{10}|\\d{12}|\\d{1"
},
{
"path": "cities.js",
"chars": 551913,
"preview": "module.exports = [\n{\n\"id\": \"1\",\n\"name\": \"北京\",\n\"parent_id\": \"0\",\n\"first_letter\": \"b\",\n\"shorthand\": \"bj\",\n\"pinyin\": \"beiji"
},
{
"path": "index.js",
"chars": 130,
"preview": "module.exports = {\n bankType: require('./bankType'),\n cities: require('./cities') ,\n provinces: require('./prov"
},
{
"path": "package.json",
"chars": 297,
"preview": "{\n \"name\": \"wechat-banks\",\n \"version\": \"1.0.0\",\n \"description\": \"Chinese banks list stolen from wechat\",\n \"main\": \"i"
},
{
"path": "provinces.js",
"chars": 19659,
"preview": "module.exports = [\n {\"name\": \"北京市\", \"value\": \"1\", \"children\": [\n {\"name\": \"北京\", \"value\": \"10\"}\n "
},
{
"path": "src/index.js",
"chars": 2599,
"preview": "const axios = require('axios');\nconst async = require('async');\nconst fs = require('fs');\nconst qs = require('qs');\ncons"
},
{
"path": "src/package.json",
"chars": 270,
"preview": "{\n \"name\": \"src\",\n \"version\": \"1.0.0\",\n \"description\": \"\",\n \"main\": \"index.js\",\n \"scripts\": {\n \"test\": \"echo \\\"E"
}
]
// ... and 1 more files (download for full content)
About this extraction
This page contains the full source code of the yuche/wechat-banks GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 10 files (17.4 MB), approximately 227.4k tokens, and a symbol index with 3 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.
Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.