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", "shorthand": "tz", "pinyin": "tongzhou", "suffix": "区", "code": "320612", "sort": "3" }, { "id": "1265", "name": "海安", "parent_id": "200", "first_letter": "h", "shorthand": "ha", "pinyin": "haian", "suffix": "县", "code": "320621", "sort": "4" }, { "id": "1266", "name": "如东", "parent_id": "200", "first_letter": "r", "shorthand": "rd", "pinyin": "rudong", "suffix": "县", "code": "320623", "sort": "5" }, { "id": "1267", "name": "启东", "parent_id": "200", "first_letter": "q", "shorthand": "qd", "pinyin": "qidong", "suffix": "市", "code": "320681", "sort": "6" }, { "id": "1268", "name": "如皋", "parent_id": "200", "first_letter": "r", "shorthand": "rg", "pinyin": "rugao", "suffix": "市", "code": "320682", "sort": "7" }, { "id": "1269", "name": "海门", "parent_id": "200", "first_letter": "h", "shorthand": "hm", "pinyin": "haimen", "suffix": "市", "code": "320684", "sort": "8" }, { "id": "1270", "name": "连云", "parent_id": "201", "first_letter": "l", "shorthand": "ly", "pinyin": "lianyun", "suffix": "区", "code": "320703", "sort": "1" }, { "id": "1272", "name": "海州", "parent_id": "201", "first_letter": "h", "shorthand": "hz", "pinyin": "haizhou", "suffix": "区", "code": "320706", "sort": "2" }, { "id": "1273", "name": "赣榆", "parent_id": "201", "first_letter": "g", "shorthand": "gy", "pinyin": "ganyu", "suffix": "区", "code": "320721", "sort": "3" }, { "id": "1274", "name": "东海", "parent_id": "201", "first_letter": "d", "shorthand": "dh", "pinyin": "donghai", "suffix": "县", "code": "320722", "sort": "4" }, { "id": "1275", "name": "灌云", "parent_id": "201", "first_letter": "g", "shorthand": "gy", "pinyin": "guanyun", "suffix": "县", "code": "320723", "sort": "5" }, { "id": "1276", "name": "灌南", "parent_id": "201", "first_letter": "g", "shorthand": "gn", "pinyin": "guannan", "suffix": "县", "code": "320724", "sort": "6" }, { "id": "1277", "name": "清河", "parent_id": "202", "first_letter": "q", "shorthand": "qh", "pinyin": "qinghe", "suffix": "区", "code": "320802", "sort": "1" }, { "id": "1278", "name": "淮安", "parent_id": "202", "first_letter": "h", "shorthand": "ha", "pinyin": "huaian", "suffix": "区", "code": "320803", "sort": "2" }, { "id": "1279", "name": "淮阴", "parent_id": "202", "first_letter": "h", "shorthand": "hy", "pinyin": "huaiyin", "suffix": "区", "code": "320804", "sort": "3" }, { "id": "1280", "name": "清浦", "parent_id": "202", "first_letter": "q", "shorthand": "qp", "pinyin": "qingpu", "suffix": "区", "code": "320811", "sort": "4" }, { "id": "1281", "name": "涟水", "parent_id": "202", "first_letter": "l", "shorthand": "ls", "pinyin": "lianshui", "suffix": "县", "code": "320826", "sort": "5" }, { "id": "1282", "name": "洪泽", "parent_id": "202", "first_letter": "h", "shorthand": "hz", "pinyin": "hongze", "suffix": "县", "code": "320829", "sort": "6" }, { "id": "1283", "name": "盱眙", "parent_id": "202", "first_letter": "x", "shorthand": "xy", "pinyin": "xuyi", "suffix": "县", "code": "320830", "sort": "7" }, { "id": "1284", "name": "金湖", "parent_id": "202", "first_letter": "j", "shorthand": "jh", "pinyin": "jinhu", "suffix": "县", "code": "320831", "sort": "8" }, { "id": "1285", "name": "亭湖", "parent_id": "203", "first_letter": "t", "shorthand": "th", "pinyin": "tinghu", "suffix": "区", "code": "320902", "sort": "1" }, { "id": "1286", "name": "盐都", "parent_id": "203", "first_letter": "y", "shorthand": "yd", "pinyin": "yandou", "suffix": "区", "code": "320903", "sort": "2" }, { "id": "1287", "name": "响水", "parent_id": "203", "first_letter": "x", "shorthand": "xs", "pinyin": "xiangshui", "suffix": "县", "code": "320921", "sort": "3" }, { "id": "1288", "name": "滨海", "parent_id": "203", "first_letter": "b", "shorthand": "bh", "pinyin": "binhai", "suffix": "县", "code": "320922", "sort": "4" }, { "id": "1289", "name": "阜宁", "parent_id": "203", "first_letter": "f", "shorthand": "fn", "pinyin": "funing", "suffix": "县", "code": "320923", "sort": "5" }, { "id": "1290", "name": "射阳", "parent_id": "203", "first_letter": "s", "shorthand": "sy", "pinyin": "sheyang", "suffix": "县", "code": "320924", "sort": "6" }, { "id": "1291", "name": "建湖", "parent_id": "203", "first_letter": "j", "shorthand": "jh", "pinyin": "jianhu", "suffix": "县", "code": "320925", "sort": "7" }, { "id": "1292", "name": "东台", "parent_id": "203", "first_letter": "d", "shorthand": "dt", "pinyin": "dongtai", "suffix": "市", "code": "320981", "sort": "8" }, { "id": "1293", "name": "大丰", "parent_id": "203", "first_letter": "d", "shorthand": "df", "pinyin": "dafeng", "suffix": "市", "code": "320982", "sort": "9" }, { "id": "1294", "name": "广陵", "parent_id": "204", "first_letter": "g", "shorthand": "gl", "pinyin": "guangling", "suffix": "区", "code": "321002", "sort": "1" }, { "id": "1295", "name": "邗江", "parent_id": "204", "first_letter": "h", "shorthand": "hj", "pinyin": "hanjiang", "suffix": "区", "code": "321003", "sort": "2" }, { "id": "1296", "name": "江都", "parent_id": "204", "first_letter": "j", "shorthand": "jd", "pinyin": "jiangdou", "suffix": "区", "code": "321012", "sort": "3" }, { "id": "1297", "name": "宝应", "parent_id": "204", "first_letter": "b", "shorthand": "by", "pinyin": "baoying", "suffix": "县", "code": "321023", "sort": "4" }, { "id": "1298", "name": "仪征", "parent_id": "204", "first_letter": "y", "shorthand": "yz", "pinyin": "yizheng", "suffix": "市", "code": "321081", "sort": "5" }, { "id": "1299", "name": "高邮", "parent_id": "204", "first_letter": "g", "shorthand": "gy", "pinyin": "gaoyou", "suffix": "市", "code": "321084", "sort": "6" }, { "id": "1300", "name": "京口", "parent_id": "205", "first_letter": "j", "shorthand": "jk", "pinyin": "jingkou", "suffix": "区", "code": "321102", "sort": "1" }, { "id": "1301", "name": "润州", "parent_id": "205", "first_letter": "r", "shorthand": "rz", "pinyin": "runzhou", "suffix": "区", "code": "321111", "sort": "2" }, { "id": "1302", "name": "丹徒", "parent_id": "205", "first_letter": "d", "shorthand": "dt", "pinyin": "dantu", "suffix": "区", "code": "321112", "sort": "3" }, { "id": "1303", "name": "丹阳", "parent_id": "205", "first_letter": "d", "shorthand": "dy", "pinyin": "danyang", "suffix": "市", "code": "321181", "sort": "4" }, { "id": "1304", "name": "扬中", "parent_id": "205", "first_letter": "y", "shorthand": "yz", "pinyin": "yangzhong", "suffix": "市", "code": "321182", "sort": "5" }, { "id": "1305", "name": "句容", "parent_id": "205", "first_letter": "j", "shorthand": "jr", "pinyin": "jurong", "suffix": "市", "code": "321183", "sort": "6" }, { "id": "1306", "name": "海陵", "parent_id": "206", "first_letter": "h", "shorthand": "hl", "pinyin": "hailing", "suffix": "区", "code": "321202", "sort": "1" }, { "id": "1307", "name": "高港", "parent_id": "206", "first_letter": "g", "shorthand": "gg", "pinyin": "gaogang", "suffix": "区", "code": "321203", "sort": "2" }, { "id": "1308", "name": "兴化", "parent_id": "206", "first_letter": "x", "shorthand": "xh", "pinyin": "xinghua", "suffix": "市", "code": "321281", "sort": "3" }, { "id": "1309", "name": "靖江", "parent_id": "206", "first_letter": "j", "shorthand": "jj", "pinyin": "jingjiang", "suffix": "市", "code": "321282", "sort": "4" }, { "id": "1310", "name": "泰兴", "parent_id": "206", "first_letter": "t", "shorthand": "tx", "pinyin": "taixing", "suffix": "市", "code": "321283", "sort": "5" }, { "id": "1311", "name": "姜堰", "parent_id": "206", "first_letter": "j", "shorthand": "jy", "pinyin": "jiangyan", "suffix": "区", "code": "321284", "sort": "6" }, { "id": "1312", "name": "宿城", "parent_id": "207", "first_letter": "s", "shorthand": "sc", "pinyin": "sucheng", "suffix": "区", "code": "321302", "sort": "1" }, { "id": "1313", "name": "宿豫", "parent_id": "207", "first_letter": "s", "shorthand": "sy", "pinyin": "suyu", "suffix": "区", "code": "321311", "sort": "2" }, { "id": "1314", "name": "沭阳", "parent_id": "207", "first_letter": "s", "shorthand": "sy", "pinyin": "shuyang", "suffix": "县", "code": "321322", "sort": "3" }, { "id": "1315", "name": "泗阳", "parent_id": "207", "first_letter": "s", "shorthand": "sy", "pinyin": "siyang", "suffix": "县", "code": "321323", "sort": "4" }, { "id": "1316", "name": "泗洪", "parent_id": "207", "first_letter": "s", "shorthand": "sh", "pinyin": "sihong", "suffix": "县", "code": "321324", "sort": "5" }, { "id": "1317", "name": "上城", "parent_id": "208", "first_letter": "s", "shorthand": "sc", "pinyin": "shangcheng", "suffix": "区", "code": "330102", "sort": "1" }, { "id": "1318", "name": "下城", "parent_id": "208", "first_letter": "x", "shorthand": "xc", "pinyin": "xiacheng", "suffix": "区", "code": "330103", "sort": "2" }, { "id": "1319", "name": "江干", "parent_id": "208", "first_letter": "j", "shorthand": "jg", "pinyin": "jianggan", "suffix": "区", "code": "330104", "sort": "3" }, { "id": "1320", "name": "拱墅", "parent_id": "208", "first_letter": "g", "shorthand": "gs", "pinyin": "gongshu", "suffix": "区", "code": "330105", "sort": "4" }, { "id": "1321", "name": "西湖", "parent_id": "208", "first_letter": "x", "shorthand": "xh", "pinyin": "xihu", "suffix": "区", "code": "330106", "sort": "5" }, { "id": "1322", "name": "滨江", "parent_id": "208", "first_letter": "b", "shorthand": "bj", "pinyin": "binjiang", "suffix": "区", "code": "330108", "sort": "6" }, { "id": "1323", "name": "萧山", "parent_id": "208", "first_letter": "x", "shorthand": "xs", "pinyin": "xiaoshan", "suffix": "区", "code": "330109", "sort": "7" }, { "id": "1324", "name": "余杭", "parent_id": "208", "first_letter": "y", "shorthand": "yh", "pinyin": "yuhang", "suffix": "区", "code": "330110", "sort": "8" }, { "id": "1325", "name": "桐庐", "parent_id": "208", "first_letter": "t", "shorthand": "tl", "pinyin": "tonglu", "suffix": "县", "code": "330122", "sort": "9" }, { "id": "1326", "name": "淳安", "parent_id": "208", "first_letter": "c", "shorthand": "ca", "pinyin": "chunan", "suffix": "县", "code": "330127", "sort": "11" }, { "id": "1327", "name": "建德", "parent_id": "208", "first_letter": "j", "shorthand": "jd", "pinyin": "jiande", "suffix": "市", "code": "330182", "sort": "12" }, { "id": "1328", "name": "富阳", "parent_id": "208", "first_letter": "f", "shorthand": "fy", "pinyin": "fuyang", "suffix": "区", "code": "330183", "sort": "10" }, { "id": "1329", "name": "临安", "parent_id": "208", "first_letter": "l", "shorthand": "la", "pinyin": "linan", "suffix": "市", "code": "330185", "sort": "13" }, { "id": "1330", "name": "海曙", "parent_id": "209", "first_letter": "h", "shorthand": "hs", "pinyin": "haishu", "suffix": "区", "code": "330203", "sort": "1" }, { "id": "1331", "name": "江东", "parent_id": "209", "first_letter": "j", "shorthand": "jd", "pinyin": "jiangdong", "suffix": "区", "code": "330204", "sort": "2" }, { "id": "1332", "name": "江北", "parent_id": "209", "first_letter": "j", "shorthand": "jb", "pinyin": "jiangbei", "suffix": "区", "code": "330205", "sort": "3" }, { "id": "1333", "name": "北仑", "parent_id": "209", "first_letter": "b", "shorthand": "bl", "pinyin": "beilun", "suffix": "区", "code": "330206", "sort": "4" }, { "id": "1334", "name": "镇海", "parent_id": "209", "first_letter": "z", "shorthand": "zh", "pinyin": "zhenhai", "suffix": "区", "code": "330211", "sort": "5" }, { "id": "1335", "name": "鄞州", "parent_id": "209", "first_letter": "y", "shorthand": "yz", "pinyin": "yinzhou", "suffix": "区", "code": "330212", "sort": "6" }, { "id": "1336", "name": "象山", "parent_id": "209", "first_letter": "x", "shorthand": "xs", "pinyin": "xiangshan", "suffix": "县", "code": "330225", "sort": "7" }, { "id": "1337", "name": "宁海", "parent_id": "209", "first_letter": "n", "shorthand": "nh", "pinyin": "ninghai", "suffix": "县", "code": "330226", "sort": "8" }, { "id": "1338", "name": "余姚", "parent_id": "209", "first_letter": "y", "shorthand": "yy", "pinyin": "yuyao", "suffix": "市", "code": "330281", "sort": "9" }, { "id": "1339", "name": "慈溪", "parent_id": "209", "first_letter": "c", "shorthand": "cx", "pinyin": "cixi", "suffix": "市", "code": "330282", "sort": "10" }, { "id": "1340", "name": "奉化", "parent_id": "209", "first_letter": "f", "shorthand": "fh", "pinyin": "fenghua", "suffix": "市", "code": "330283", "sort": "11" }, { "id": "1341", "name": "鹿城", "parent_id": "210", "first_letter": "l", "shorthand": "lc", "pinyin": "lucheng", "suffix": "区", "code": "330302", "sort": "1" }, { "id": "1342", "name": "龙湾", "parent_id": "210", "first_letter": "l", "shorthand": "lw", "pinyin": "longwan", "suffix": "区", "code": "330303", "sort": "2" }, { "id": "1343", "name": "瓯海", "parent_id": "210", "first_letter": "o", "shorthand": "oh", "pinyin": "ouhai", "suffix": "区", "code": "330304", "sort": "3" }, { "id": "1344", "name": "洞头", "parent_id": "210", "first_letter": "d", "shorthand": "dt", "pinyin": "dongtou", "suffix": "县", "code": "330322", "sort": "4" }, { "id": "1345", "name": "永嘉", "parent_id": "210", "first_letter": "y", "shorthand": "yj", "pinyin": "yongjia", "suffix": "县", "code": "330324", "sort": "5" }, { "id": "1346", "name": "平阳", "parent_id": "210", "first_letter": "p", "shorthand": "py", "pinyin": "pingyang", "suffix": "县", "code": "330326", "sort": "6" }, { "id": "1347", "name": "苍南", "parent_id": "210", "first_letter": "c", "shorthand": "cn", "pinyin": "cangnan", "suffix": "县", "code": "330327", "sort": "7" }, { "id": "1348", "name": "文成", "parent_id": "210", "first_letter": "w", "shorthand": "wc", "pinyin": "wencheng", "suffix": "县", "code": "330328", "sort": "8" }, { "id": "1349", "name": "泰顺", "parent_id": "210", "first_letter": "t", "shorthand": "ts", "pinyin": "taishun", "suffix": "县", "code": "330329", "sort": "9" }, { "id": "1350", "name": "瑞安", "parent_id": "210", "first_letter": "r", "shorthand": "ra", "pinyin": "ruian", "suffix": "市", "code": "330381", "sort": "10" }, { "id": "1351", "name": "乐清", "parent_id": "210", "first_letter": "l", "shorthand": "lq", "pinyin": "leqing", "suffix": "市", "code": "330382", "sort": "11" }, { "id": "1352", "name": "南湖", "parent_id": "211", "first_letter": "n", "shorthand": "nh", "pinyin": "nanhu", "suffix": "区", "code": "330402", "sort": "1" }, { "id": "1353", "name": "秀洲", "parent_id": "211", "first_letter": "x", "shorthand": "xz", "pinyin": "xiuzhou", "suffix": "区", "code": "330411", "sort": "2" }, { "id": "1354", "name": "嘉善", "parent_id": "211", "first_letter": "j", "shorthand": "js", "pinyin": "jiashan", "suffix": "县", "code": "330421", "sort": "3" }, { "id": "1355", "name": "海盐", "parent_id": "211", "first_letter": "h", "shorthand": "hy", "pinyin": "haiyan", "suffix": "县", "code": "330424", "sort": "4" }, { "id": "1356", "name": "海宁", "parent_id": "211", "first_letter": "h", "shorthand": "hn", "pinyin": "haining", "suffix": "市", "code": "330481", "sort": "5" }, { "id": "1357", "name": "平湖", "parent_id": "211", "first_letter": "p", "shorthand": "ph", "pinyin": "pinghu", "suffix": "市", "code": "330482", "sort": "6" }, { "id": "1358", "name": "桐乡", "parent_id": "211", "first_letter": "t", "shorthand": "tx", "pinyin": "tongxiang", "suffix": "市", "code": "330483", "sort": "7" }, { "id": "1359", "name": "吴兴", "parent_id": "212", "first_letter": "w", "shorthand": "wx", "pinyin": "wuxing", "suffix": "区", "code": "330502", "sort": "1" }, { "id": "1360", "name": "南浔", "parent_id": "212", "first_letter": "n", "shorthand": "nx", "pinyin": "nanxun", "suffix": "区", "code": "330503", "sort": "2" }, { "id": "1361", "name": "德清", "parent_id": "212", "first_letter": "d", "shorthand": "dq", "pinyin": "deqing", "suffix": "县", "code": "330521", "sort": "3" }, { "id": "1362", "name": "长兴", "parent_id": "212", "first_letter": "z", "shorthand": "zx", "pinyin": "zhangxing", "suffix": "县", "code": "330522", "sort": "4" }, { "id": "1363", "name": "安吉", "parent_id": "212", "first_letter": "a", "shorthand": "aj", "pinyin": "anji", "suffix": "县", "code": "330523", "sort": "5" }, { "id": "1364", "name": "越城", "parent_id": "213", "first_letter": "y", "shorthand": "yc", "pinyin": "yuecheng", "suffix": "区", "code": "330602", "sort": "1" }, { "id": "1365", "name": "柯桥", "parent_id": "213", "first_letter": "k", "shorthand": "kq", "pinyin": "keqiao", "suffix": "区", "code": "330603", "sort": "2" }, { "id": "1366", "name": "新昌", "parent_id": "213", "first_letter": "x", "shorthand": "xc", "pinyin": "xinchang", "suffix": "县", "code": "330624", "sort": "4" }, { "id": "1367", "name": "诸暨", "parent_id": "213", "first_letter": "z", "shorthand": "zj", "pinyin": "zhuji", "suffix": "市", "code": "330681", "sort": "5" }, { "id": "1368", "name": "上虞", "parent_id": "213", "first_letter": "s", "shorthand": "sy", "pinyin": "shangyu", "suffix": "区", "code": "330604", "sort": "3" }, { "id": "1369", "name": "嵊州", "parent_id": "213", "first_letter": "s", "shorthand": "sz", "pinyin": "shengzhou", "suffix": "市", "code": "330683", "sort": "6" }, { "id": "1370", "name": "婺城", "parent_id": "214", "first_letter": "w", "shorthand": "wc", "pinyin": "wucheng", "suffix": "区", "code": "330702", "sort": "1" }, { "id": "1371", "name": "金东", "parent_id": "214", "first_letter": "j", "shorthand": "jd", "pinyin": "jindong", "suffix": "区", "code": "330703", "sort": "2" }, { "id": "1372", "name": "武义", "parent_id": "214", "first_letter": "w", "shorthand": "wy", "pinyin": "wuyi", "suffix": "县", "code": "330723", "sort": "3" }, { "id": "1373", "name": "浦江", "parent_id": "214", "first_letter": "p", "shorthand": "pj", "pinyin": "pujiang", "suffix": "县", "code": "330726", "sort": "4" }, { "id": "1374", "name": "磐安", "parent_id": "214", "first_letter": "p", "shorthand": "pa", "pinyin": "panan", "suffix": "县", "code": "330727", "sort": "5" }, { "id": "1375", "name": "兰溪", "parent_id": "214", "first_letter": "l", "shorthand": "lx", "pinyin": "lanxi", "suffix": "市", "code": "330781", "sort": "6" }, { "id": "1376", "name": "义乌", "parent_id": "214", "first_letter": "y", "shorthand": "yw", "pinyin": "yiwu", "suffix": "市", "code": "330782", "sort": "7" }, { "id": "1377", "name": "东阳", "parent_id": "214", "first_letter": "d", "shorthand": "dy", "pinyin": "dongyang", "suffix": "市", "code": "330783", "sort": "8" }, { "id": "1378", "name": "永康", "parent_id": "214", "first_letter": "y", "shorthand": "yk", "pinyin": "yongkang", "suffix": "市", "code": "330784", "sort": "9" }, { "id": "1379", "name": "柯城", "parent_id": "215", "first_letter": "k", "shorthand": "kc", "pinyin": "kecheng", "suffix": "区", "code": "330802", "sort": "1" }, { "id": "1380", "name": "衢江", "parent_id": "215", "first_letter": "q", "shorthand": "qj", "pinyin": "qujiang", "suffix": "区", "code": "330803", "sort": "2" }, { "id": "1381", "name": "常山", "parent_id": "215", "first_letter": "c", "shorthand": "cs", "pinyin": "changshan", "suffix": "县", "code": "330822", "sort": "3" }, { "id": "1382", "name": "开化", "parent_id": "215", "first_letter": "k", "shorthand": "kh", "pinyin": "kaihua", "suffix": "县", "code": "330824", "sort": "4" }, { "id": "1383", "name": "龙游", "parent_id": "215", "first_letter": "l", "shorthand": "ly", "pinyin": "longyou", "suffix": "县", "code": "330825", "sort": "5" }, { "id": "1384", "name": "江山", "parent_id": "215", "first_letter": "j", "shorthand": "js", "pinyin": "jiangshan", "suffix": "市", "code": "330881", "sort": "6" }, { "id": "1385", "name": "定海", "parent_id": "216", "first_letter": "d", "shorthand": "dh", "pinyin": "dinghai", "suffix": "区", "code": "330902", "sort": "1" }, { "id": "1386", "name": "普陀", "parent_id": "216", "first_letter": "p", "shorthand": "pt", "pinyin": "putuo", "suffix": "区", "code": "330903", "sort": "2" }, { "id": "1387", "name": "岱山", "parent_id": "216", "first_letter": "d", "shorthand": "ds", "pinyin": "daishan", "suffix": "县", "code": "330921", "sort": "3" }, { "id": "1388", "name": "嵊泗", "parent_id": "216", "first_letter": "s", "shorthand": "ss", "pinyin": "shengsi", "suffix": "县", "code": "330922", "sort": "4" }, { "id": "1389", "name": "椒江", "parent_id": "217", "first_letter": "j", "shorthand": "jj", "pinyin": "jiaojiang", "suffix": "区", "code": "331002", "sort": "1" }, { "id": "1390", "name": "黄岩", "parent_id": "217", "first_letter": "h", "shorthand": "hy", "pinyin": "huangyan", "suffix": "区", "code": "331003", "sort": "2" }, { "id": "1391", "name": "路桥", "parent_id": "217", "first_letter": "l", "shorthand": "lq", "pinyin": "luqiao", "suffix": "区", "code": "331004", "sort": "3" }, { "id": "1392", "name": "玉环", "parent_id": "217", "first_letter": "y", "shorthand": "yh", "pinyin": "yuhuan", "suffix": "县", "code": "331021", "sort": "4" }, { "id": "1393", "name": "三门", "parent_id": "217", "first_letter": "s", "shorthand": "sm", "pinyin": "sanmen", "suffix": "县", "code": "331022", "sort": "5" }, { "id": "1394", "name": "天台", "parent_id": "217", "first_letter": "t", "shorthand": "tt", "pinyin": "tiantai", "suffix": "县", "code": "331023", "sort": "6" }, { "id": "1395", "name": "仙居", "parent_id": "217", "first_letter": "x", "shorthand": "xj", "pinyin": "xianju", "suffix": "县", "code": "331024", "sort": "7" }, { "id": "1396", "name": "温岭", "parent_id": "217", "first_letter": "w", "shorthand": "wl", "pinyin": "wenling", "suffix": "市", "code": "331081", "sort": "8" }, { "id": "1397", "name": "临海", "parent_id": "217", "first_letter": "l", "shorthand": "lh", "pinyin": "linhai", "suffix": "市", "code": "331082", "sort": "9" }, { "id": "1398", "name": "莲都", "parent_id": "218", "first_letter": "l", "shorthand": "ld", "pinyin": "liandou", "suffix": "区", "code": "331102", "sort": "1" }, { "id": "1399", "name": "青田", "parent_id": "218", "first_letter": "q", "shorthand": "qt", "pinyin": "qingtian", "suffix": "县", "code": "331121", "sort": "2" }, { "id": "1400", "name": "缙云", "parent_id": "218", "first_letter": "j", "shorthand": "jy", "pinyin": "jinyun", "suffix": "县", "code": "331122", "sort": "3" }, { "id": "1401", "name": "遂昌", "parent_id": "218", "first_letter": "s", "shorthand": "sc", "pinyin": "suichang", "suffix": "县", "code": "331123", "sort": "4" }, { "id": "1402", "name": "松阳", "parent_id": "218", "first_letter": "s", "shorthand": "sy", "pinyin": "songyang", "suffix": "县", "code": "331124", "sort": "5" }, { "id": "1403", "name": "云和", "parent_id": "218", "first_letter": "y", "shorthand": "yh", "pinyin": "yunhe", "suffix": "县", "code": "331125", "sort": "6" }, { "id": "1404", "name": "庆元", "parent_id": "218", "first_letter": "q", "shorthand": "qy", "pinyin": "qingyuan", "suffix": "县", "code": "331126", "sort": "7" }, { "id": "1405", "name": "景宁", "parent_id": "218", "first_letter": "j", "shorthand": "jn", "pinyin": "jingning", "suffix": "自治县", "code": "331127", "sort": "8" }, { "id": "1406", "name": "龙泉", "parent_id": "218", "first_letter": "l", "shorthand": "lq", "pinyin": "longquan", "suffix": "市", "code": "331181", "sort": "9" }, { "id": "1407", "name": "瑶海", "parent_id": "219", "first_letter": "y", "shorthand": "yh", "pinyin": "yaohai", "suffix": "区", "code": "340102", "sort": "1" }, { "id": "1408", "name": "庐阳", "parent_id": "219", "first_letter": "l", "shorthand": "ly", "pinyin": "luyang", "suffix": "区", "code": "340103", "sort": "2" }, { "id": "1409", "name": "蜀山", "parent_id": "219", "first_letter": "s", "shorthand": "ss", "pinyin": "shushan", "suffix": "区", "code": "340104", "sort": "3" }, { "id": "1410", "name": "包河", "parent_id": "219", "first_letter": "b", "shorthand": "bh", "pinyin": "baohe", "suffix": "区", "code": "340111", "sort": "4" }, { "id": "1411", "name": "长丰", "parent_id": "219", "first_letter": "z", "shorthand": "zf", "pinyin": "zhangfeng", "suffix": "县", "code": "340121", "sort": "5" }, { "id": "1412", "name": "肥东", "parent_id": "219", "first_letter": "f", "shorthand": "fd", "pinyin": "feidong", "suffix": "县", "code": "340122", "sort": "6" }, { "id": "1413", "name": "肥西", "parent_id": "219", "first_letter": "f", "shorthand": "fx", "pinyin": "feixi", "suffix": "县", "code": "340123", "sort": "7" }, { "id": "1414", "name": "庐江", "parent_id": "219", "first_letter": "l", "shorthand": "lj", "pinyin": "lujiang", "suffix": "县", "code": "340124", "sort": "8" }, { "id": "1415", "name": "巢湖", "parent_id": "219", "first_letter": "c", "shorthand": "ch", "pinyin": "chaohu", "suffix": "市", "code": "340181", "sort": "9" }, { "id": "1416", "name": "镜湖", "parent_id": "220", "first_letter": "j", "shorthand": "jh", "pinyin": "jinghu", "suffix": "区", "code": "340202", "sort": "1" }, { "id": "1417", "name": "弋江", "parent_id": "220", "first_letter": "y", "shorthand": "yj", "pinyin": "yijiang", "suffix": "区", "code": "340203", "sort": "2" }, { "id": "1418", "name": "鸠江", "parent_id": "220", "first_letter": "j", "shorthand": "jj", "pinyin": "jiujiang", "suffix": "区", "code": "340207", "sort": "3" }, { "id": "1419", "name": "三山", "parent_id": "220", "first_letter": "s", "shorthand": "ss", "pinyin": "sanshan", "suffix": "区", "code": "340208", "sort": "4" }, { "id": "1420", "name": "芜湖", "parent_id": "220", "first_letter": "w", "shorthand": "wh", "pinyin": "wuhu", "suffix": "县", "code": "340221", "sort": "5" }, { "id": "1421", "name": "繁昌", "parent_id": "220", "first_letter": "f", "shorthand": "fc", "pinyin": "fanchang", "suffix": "县", "code": "340222", "sort": "6" }, { "id": "1422", "name": "南陵", "parent_id": "220", "first_letter": "n", "shorthand": "nl", "pinyin": "nanling", "suffix": "县", "code": "340223", "sort": "7" }, { "id": "1423", "name": "无为", "parent_id": "220", "first_letter": "w", "shorthand": "ww", "pinyin": "wuwei", "suffix": "县", "code": "340225", "sort": "8" }, { "id": "1424", "name": "龙子湖", "parent_id": "221", "first_letter": "l", "shorthand": "lzh", "pinyin": "longzihu", "suffix": "区", "code": "340302", "sort": "1" }, { "id": "1425", "name": "蚌山", "parent_id": "221", "first_letter": "b", "shorthand": "bs", "pinyin": "bangshan", "suffix": "区", "code": "340303", "sort": "2" }, { "id": "1426", "name": "禹会", "parent_id": "221", "first_letter": "y", "shorthand": "yh", "pinyin": "yuhui", "suffix": "区", "code": "340304", "sort": "3" }, { "id": "1427", "name": "淮上", "parent_id": "221", "first_letter": "h", "shorthand": "hs", "pinyin": "huaishang", "suffix": "区", "code": "340311", "sort": "4" }, { "id": "1428", "name": "怀远", "parent_id": "221", "first_letter": "h", "shorthand": "hy", "pinyin": "huaiyuan", "suffix": "县", "code": "340321", "sort": "5" }, { "id": "1429", "name": "五河", "parent_id": "221", "first_letter": "w", "shorthand": "wh", "pinyin": "wuhe", "suffix": "县", "code": "340322", "sort": "6" }, { "id": "1430", "name": "固镇", "parent_id": "221", "first_letter": "g", "shorthand": "gz", "pinyin": "guzhen", "suffix": "县", "code": "340323", "sort": "7" }, { "id": "1431", "name": "大通", "parent_id": "222", "first_letter": "d", "shorthand": "dt", "pinyin": "datong", "suffix": "区", "code": "340402", "sort": "1" }, { "id": "1432", "name": "田家庵", "parent_id": "222", "first_letter": "t", "shorthand": "tja", "pinyin": "tianjiaan", "suffix": "区", "code": "340403", "sort": "2" }, { "id": "1433", "name": "谢家集", "parent_id": "222", "first_letter": "x", "shorthand": "xjj", "pinyin": "xiejiaji", "suffix": "区", "code": "340404", "sort": "3" }, { "id": "1434", "name": "八公山", "parent_id": "222", "first_letter": "b", "shorthand": "bgs", "pinyin": "bagongshan", "suffix": "区", "code": "340405", "sort": "4" }, { "id": "1435", "name": "潘集", "parent_id": "222", "first_letter": "p", "shorthand": "pj", "pinyin": "panji", "suffix": "区", "code": "340406", "sort": "5" }, { "id": "1436", "name": "凤台", "parent_id": "222", "first_letter": "f", "shorthand": "ft", "pinyin": "fengtai", "suffix": "县", "code": "340421", "sort": "6" }, { "id": "1437", "name": "花山", "parent_id": "223", "first_letter": "h", "shorthand": "hs", "pinyin": "huashan", "suffix": "区", "code": "340503", "sort": "1" }, { "id": "1438", "name": "雨山", "parent_id": "223", "first_letter": "y", "shorthand": "ys", "pinyin": "yushan", "suffix": "区", "code": "340504", "sort": "2" }, { "id": "1439", "name": "博望", "parent_id": "223", "first_letter": "b", "shorthand": "bw", "pinyin": "bowang", "suffix": "区", "code": "340506", "sort": "3" }, { "id": "1440", "name": "当涂", "parent_id": "223", "first_letter": "d", "shorthand": "dt", "pinyin": "dangtu", "suffix": "县", "code": "340521", "sort": "4" }, { "id": "1441", "name": "含山", "parent_id": "223", "first_letter": "h", "shorthand": "hs", "pinyin": "hanshan", "suffix": "县", "code": "340522", "sort": "5" }, { "id": "1442", "name": "和县", "parent_id": "223", "first_letter": "h", "shorthand": "hx", "pinyin": "hexian", "suffix": "", "code": "340523", "sort": "6" }, { "id": "1443", "name": "杜集", "parent_id": "224", "first_letter": "d", "shorthand": "dj", "pinyin": "duji", "suffix": "区", "code": "340602", "sort": "1" }, { "id": "1444", "name": "相山", "parent_id": "224", "first_letter": "x", "shorthand": "xs", "pinyin": "xiangshan", "suffix": "区", "code": "340603", "sort": "2" }, { "id": "1445", "name": "烈山", "parent_id": "224", "first_letter": "l", "shorthand": "ls", "pinyin": "lieshan", "suffix": "区", "code": "340604", "sort": "3" }, { "id": "1446", "name": "濉溪", "parent_id": "224", "first_letter": "s", "shorthand": "sx", "pinyin": "suixi", "suffix": "县", "code": "340621", "sort": "4" }, { "id": "1447", "name": "铜官山", "parent_id": "225", "first_letter": "t", "shorthand": "tgs", "pinyin": "tongguanshan", "suffix": "区", "code": "340702", "sort": "1" }, { "id": "1448", "name": "狮子山", "parent_id": "225", "first_letter": "s", "shorthand": "szs", "pinyin": "shizishan", "suffix": "区", "code": "340703", "sort": "2" }, { "id": "1449", "name": "郊区", "parent_id": "225", "first_letter": "j", "shorthand": "jq", "pinyin": "jiaoqu", "suffix": "", "code": "340711", "sort": "3" }, { "id": "1450", "name": "铜陵", "parent_id": "225", "first_letter": "t", "shorthand": "tl", "pinyin": "tongling", "suffix": "县", "code": "340721", "sort": "4" }, { "id": "1451", "name": "迎江", "parent_id": "226", "first_letter": "y", "shorthand": "yj", "pinyin": "yingjiang", "suffix": "区", "code": "340802", "sort": "1" }, { "id": "1452", "name": "大观", "parent_id": "226", "first_letter": "d", "shorthand": "dg", "pinyin": "daguan", "suffix": "区", "code": "340803", "sort": "2" }, { "id": "1453", "name": "宜秀", "parent_id": "226", "first_letter": "y", "shorthand": "yx", "pinyin": "yixiu", "suffix": "区", "code": "340811", "sort": "3" }, { "id": "1454", "name": "怀宁", "parent_id": "226", "first_letter": "h", "shorthand": "hn", "pinyin": "huaining", "suffix": "县", "code": "340822", "sort": "4" }, { "id": "1455", "name": "枞阳", "parent_id": "226", "first_letter": "z", "shorthand": "zy", "pinyin": "zongyang", "suffix": "县", "code": "340823", "sort": "5" }, { "id": "1456", "name": "潜山", "parent_id": "226", "first_letter": "q", "shorthand": "qs", "pinyin": "qianshan", "suffix": "县", "code": "340824", "sort": "6" }, { "id": "1457", "name": "太湖", "parent_id": "226", "first_letter": "t", "shorthand": "th", "pinyin": "taihu", "suffix": "县", "code": "340825", "sort": "7" }, { "id": "1458", "name": "宿松", "parent_id": "226", "first_letter": "s", "shorthand": "ss", "pinyin": "susong", "suffix": "县", "code": "340826", "sort": "8" }, { "id": "1459", "name": "望江", "parent_id": "226", "first_letter": "w", "shorthand": "wj", "pinyin": "wangjiang", "suffix": "县", "code": "340827", "sort": "9" }, { "id": "1460", "name": "岳西", "parent_id": "226", "first_letter": "y", "shorthand": "yx", "pinyin": "yuexi", "suffix": "县", "code": "340828", "sort": "10" }, { "id": "1461", "name": "桐城", "parent_id": "226", "first_letter": "t", "shorthand": "tc", "pinyin": "tongcheng", "suffix": "市", "code": "340881", "sort": "11" }, { "id": "1462", "name": "屯溪", "parent_id": "227", "first_letter": "t", "shorthand": "tx", "pinyin": "tunxi", "suffix": "区", "code": "341002", "sort": "1" }, { "id": "1463", "name": "黄山", "parent_id": "227", "first_letter": "h", "shorthand": "hs", "pinyin": "huangshan", "suffix": "区", "code": "341003", "sort": "2" }, { "id": "1464", "name": "徽州", "parent_id": "227", "first_letter": "h", "shorthand": "hz", "pinyin": "huizhou", "suffix": "区", "code": "341004", "sort": "3" }, { "id": "1465", "name": "歙县", "parent_id": "227", "first_letter": "s", "shorthand": "sx", "pinyin": "shexian", "suffix": "", "code": "341021", "sort": "4" }, { "id": "1466", "name": "休宁", "parent_id": "227", "first_letter": "x", "shorthand": "xn", "pinyin": "xiuning", "suffix": "县", "code": "341022", "sort": "5" }, { "id": "1467", "name": "黟县", "parent_id": "227", "first_letter": "y", "shorthand": "yx", "pinyin": "yixian", "suffix": "", "code": "341023", "sort": "6" }, { "id": "1468", "name": "祁门", "parent_id": "227", "first_letter": "q", "shorthand": "qm", "pinyin": "qimen", "suffix": "县", "code": "341024", "sort": "7" }, { "id": "1469", "name": "琅玡", "parent_id": "228", "first_letter": "l", "shorthand": "ly", "pinyin": "langya", "suffix": "区", "code": "341102", "sort": "1" }, { "id": "1470", "name": "南谯", "parent_id": "228", "first_letter": "n", "shorthand": "nq", "pinyin": "nanqiao", "suffix": "区", "code": "341103", "sort": "2" }, { "id": "1471", "name": "来安", "parent_id": "228", "first_letter": "l", "shorthand": "la", "pinyin": "laian", "suffix": "县", "code": "341122", "sort": "3" }, { "id": "1472", "name": "全椒", "parent_id": "228", "first_letter": "q", "shorthand": "qj", "pinyin": "quanjiao", "suffix": "县", "code": "341124", "sort": "4" }, { "id": "1473", "name": "定远", "parent_id": "228", "first_letter": "d", "shorthand": "dy", "pinyin": "dingyuan", "suffix": "县", "code": "341125", "sort": "5" }, { "id": "1474", "name": "凤阳", "parent_id": "228", "first_letter": "f", "shorthand": "fy", "pinyin": "fengyang", "suffix": "县", "code": "341126", "sort": "6" }, { "id": "1475", "name": "天长", "parent_id": "228", "first_letter": "t", "shorthand": "tz", "pinyin": "tianzhang", "suffix": "市", "code": "341181", "sort": "7" }, { "id": "1476", "name": "明光", "parent_id": "228", "first_letter": "m", "shorthand": "mg", "pinyin": "mingguang", "suffix": "市", "code": "341182", "sort": "8" }, { "id": "1477", "name": "颍州", "parent_id": "229", "first_letter": "y", "shorthand": "yz", "pinyin": "yingzhou", "suffix": "区", "code": "341202", "sort": "1" }, { "id": "1478", "name": "颍东", "parent_id": "229", "first_letter": "y", "shorthand": "yd", "pinyin": "yingdong", "suffix": "区", "code": "341203", "sort": "2" }, { "id": "1479", "name": "颍泉", "parent_id": "229", "first_letter": "y", "shorthand": "yq", "pinyin": "yingquan", "suffix": "区", "code": "341204", "sort": "3" }, { "id": "1480", "name": "临泉", "parent_id": "229", "first_letter": "l", "shorthand": "lq", "pinyin": "linquan", "suffix": "县", "code": "341221", "sort": "4" }, { "id": "1481", "name": "太和", "parent_id": "229", "first_letter": "t", "shorthand": "th", "pinyin": "taihe", "suffix": "县", "code": "341222", "sort": "5" }, { "id": "1482", "name": "阜南", "parent_id": "229", "first_letter": "f", "shorthand": "fn", "pinyin": "funan", "suffix": "县", "code": "341225", "sort": "6" }, { "id": "1483", "name": "颖上", "parent_id": "229", "first_letter": "y", "shorthand": "ys", "pinyin": "yingshang", "suffix": "县", "code": "341226", "sort": "7" }, { "id": "1484", "name": "界首", "parent_id": "229", "first_letter": "j", "shorthand": "js", "pinyin": "jieshou", "suffix": "市", "code": "341282", "sort": "8" }, { "id": "1485", "name": "埇桥", "parent_id": "230", "first_letter": "y", "shorthand": "yq", "pinyin": "yongqiao", "suffix": "区", "code": "341302", "sort": "1" }, { "id": "1486", "name": "砀山", "parent_id": "230", "first_letter": "d", "shorthand": "ds", "pinyin": "dangshan", "suffix": "县", "code": "341321", "sort": "2" }, { "id": "1487", "name": "萧县", "parent_id": "230", "first_letter": "x", "shorthand": "xx", "pinyin": "xiaoxian", "suffix": "", "code": "341322", "sort": "3" }, { "id": "1488", "name": "灵璧", "parent_id": "230", "first_letter": "l", "shorthand": "lb", "pinyin": "lingbi", "suffix": "县", "code": "341323", "sort": "4" }, { "id": "1489", "name": "泗县", "parent_id": "230", "first_letter": "s", "shorthand": "sx", "pinyin": "sixian", "suffix": "", "code": "341324", "sort": "5" }, { "id": "1490", "name": "金安", "parent_id": "231", "first_letter": "j", "shorthand": "ja", "pinyin": "jinan", "suffix": "区", "code": "341502", "sort": "1" }, { "id": "1491", "name": "裕安", "parent_id": "231", "first_letter": "y", "shorthand": "ya", "pinyin": "yuan", "suffix": "区", "code": "341503", "sort": "2" }, { "id": "1492", "name": "寿县", "parent_id": "231", "first_letter": "s", "shorthand": "sx", "pinyin": "shouxian", "suffix": "", "code": "341521", "sort": "3" }, { "id": "1493", "name": "霍邱", "parent_id": "231", "first_letter": "h", "shorthand": "hq", "pinyin": "huoqiu", "suffix": "县", "code": "341522", "sort": "4" }, { "id": "1494", "name": "舒城", "parent_id": "231", "first_letter": "s", "shorthand": "sc", "pinyin": "shucheng", "suffix": "县", "code": "341523", "sort": "5" }, { "id": "1495", "name": "金寨", "parent_id": "231", "first_letter": "j", "shorthand": "jz", "pinyin": "jinzhai", "suffix": "县", "code": "341524", "sort": "6" }, { "id": "1496", "name": "霍山", "parent_id": "231", "first_letter": "h", "shorthand": "hs", "pinyin": "huoshan", "suffix": "县", "code": "341525", "sort": "7" }, { "id": "1497", "name": "谯城", "parent_id": "232", "first_letter": "q", "shorthand": "qc", "pinyin": "qiaocheng", "suffix": "区", "code": "341602", "sort": "1" }, { "id": "1498", "name": "涡阳", "parent_id": "232", "first_letter": "w", "shorthand": "wy", "pinyin": "woyang", "suffix": "县", "code": "341621", "sort": "2" }, { "id": "1499", "name": "蒙城", "parent_id": "232", "first_letter": "m", "shorthand": "mc", "pinyin": "mengcheng", "suffix": "县", "code": "341622", "sort": "3" }, { "id": "1500", "name": "利辛", "parent_id": "232", "first_letter": "l", "shorthand": "lx", "pinyin": "lixin", "suffix": "县", "code": "341623", "sort": "4" }, { "id": "1501", "name": "贵池", "parent_id": "233", "first_letter": "g", "shorthand": "gc", "pinyin": "guichi", "suffix": "区", "code": "341702", "sort": "1" }, { "id": "1502", "name": "东至", "parent_id": "233", "first_letter": "d", "shorthand": "dz", "pinyin": "dongzhi", "suffix": "县", "code": "341721", "sort": "2" }, { "id": "1503", "name": "石台", "parent_id": "233", "first_letter": "s", "shorthand": "st", "pinyin": "shitai", "suffix": "县", "code": "341722", "sort": "3" }, { "id": "1504", "name": "青阳", "parent_id": "233", "first_letter": "q", "shorthand": "qy", "pinyin": "qingyang", "suffix": "县", "code": "341723", "sort": "4" }, { "id": "1505", "name": "宣州", "parent_id": "234", "first_letter": "x", "shorthand": "xz", "pinyin": "xuanzhou", "suffix": "区", "code": "341802", "sort": "1" }, { "id": "1506", "name": "郎溪", "parent_id": "234", "first_letter": "l", "shorthand": "lx", "pinyin": "langxi", "suffix": "县", "code": "341821", "sort": "2" }, { "id": "1507", "name": "广德", "parent_id": "234", "first_letter": "g", "shorthand": "gd", "pinyin": "guangde", "suffix": "县", "code": "341822", "sort": "3" }, { "id": "1508", "name": "泾县", "parent_id": "234", "first_letter": "j", "shorthand": "jx", "pinyin": "jingxian", "suffix": "", "code": "341823", "sort": "4" }, { "id": "1509", "name": "绩溪", "parent_id": "234", "first_letter": "j", "shorthand": "jx", "pinyin": "jixi", "suffix": "县", "code": "341824", "sort": "5" }, { "id": "1510", "name": "旌德", "parent_id": "234", "first_letter": "j", "shorthand": "jd", "pinyin": "jingde", "suffix": "县", "code": "341825", "sort": "6" }, { "id": "1511", "name": "宁国", "parent_id": "234", "first_letter": "n", "shorthand": "ng", "pinyin": "ningguo", "suffix": "市", "code": "341881", "sort": "7" }, { "id": "1512", "name": "鼓楼", "parent_id": "235", "first_letter": "g", "shorthand": "gl", "pinyin": "gulou", "suffix": "区", "code": "350102", "sort": "1" }, { "id": "1513", "name": "台江", "parent_id": "235", "first_letter": "t", "shorthand": "tj", "pinyin": "taijiang", "suffix": "区", "code": "350103", "sort": "2" }, { "id": "1514", "name": "仓山", "parent_id": "235", "first_letter": "c", "shorthand": "cs", "pinyin": "cangshan", "suffix": "区", "code": "350104", "sort": "3" }, { "id": "1515", "name": "马尾", "parent_id": "235", "first_letter": "m", "shorthand": "mw", "pinyin": "mawei", "suffix": "区", "code": "350105", "sort": "4" }, { "id": "1516", "name": "晋安", "parent_id": "235", "first_letter": "j", "shorthand": "ja", "pinyin": "jinan", "suffix": "区", "code": "350111", "sort": "5" }, { "id": "1517", "name": "闽侯", "parent_id": "235", "first_letter": "m", "shorthand": "mh", "pinyin": "minhou", "suffix": "县", "code": "350121", "sort": "6" }, { "id": "1518", "name": "连江", "parent_id": "235", "first_letter": "l", "shorthand": "lj", "pinyin": "lianjiang", "suffix": "县", "code": "350122", "sort": "7" }, { "id": "1519", "name": "罗源", "parent_id": "235", "first_letter": "l", "shorthand": "ly", "pinyin": "luoyuan", "suffix": "县", "code": "350123", "sort": "8" }, { "id": "1520", "name": "闽清", "parent_id": "235", "first_letter": "m", "shorthand": "mq", "pinyin": "minqing", "suffix": "县", "code": "350124", "sort": "9" }, { "id": "1521", "name": "永泰", "parent_id": "235", "first_letter": "y", "shorthand": "yt", "pinyin": "yongtai", "suffix": "县", "code": "350125", "sort": "10" }, { "id": "1522", "name": "平潭", "parent_id": "235", "first_letter": "p", "shorthand": "pt", "pinyin": "pingtan", "suffix": "县", "code": "350128", "sort": "11" }, { "id": "1523", "name": "福清", "parent_id": "235", "first_letter": "f", "shorthand": "fq", "pinyin": "fuqing", "suffix": "市", "code": "350181", "sort": "12" }, { "id": "1524", "name": "长乐", "parent_id": "235", "first_letter": "z", "shorthand": "zl", "pinyin": "zhangle", "suffix": "市", "code": "350182", "sort": "13" }, { "id": "1525", "name": "思明", "parent_id": "236", "first_letter": "s", "shorthand": "sm", "pinyin": "siming", "suffix": "区", "code": "350203", "sort": "1" }, { "id": "1526", "name": "海沧", "parent_id": "236", "first_letter": "h", "shorthand": "hc", "pinyin": "haicang", "suffix": "区", "code": "350205", "sort": "2" }, { "id": "1527", "name": "湖里", "parent_id": "236", "first_letter": "h", "shorthand": "hl", "pinyin": "huli", "suffix": "区", "code": "350206", "sort": "3" }, { "id": "1528", "name": "集美", "parent_id": "236", "first_letter": "j", "shorthand": "jm", "pinyin": "jimei", "suffix": "区", "code": "350211", "sort": "4" }, { "id": "1529", "name": "同安", "parent_id": "236", "first_letter": "t", "shorthand": "ta", "pinyin": "tongan", "suffix": "区", "code": "350212", "sort": "5" }, { "id": "1530", "name": "翔安", "parent_id": "236", "first_letter": "x", "shorthand": "xa", "pinyin": "xiangan", "suffix": "区", "code": "350213", "sort": "6" }, { "id": "1531", "name": "城厢", "parent_id": "237", "first_letter": "c", "shorthand": "cx", "pinyin": "chengxiang", "suffix": "区", "code": "350302", "sort": "1" }, { "id": "1532", "name": "涵江", "parent_id": "237", "first_letter": "h", "shorthand": "hj", "pinyin": "hanjiang", "suffix": "区", "code": "350303", "sort": "2" }, { "id": "1533", "name": "荔城", "parent_id": "237", "first_letter": "l", "shorthand": "lc", "pinyin": "licheng", "suffix": "区", "code": "350304", "sort": "3" }, { "id": "1534", "name": "秀屿", "parent_id": "237", "first_letter": "x", "shorthand": "xy", "pinyin": "xiuyu", "suffix": "区", "code": "350305", "sort": "4" }, { "id": "1535", "name": "仙游", "parent_id": "237", "first_letter": "x", "shorthand": "xy", "pinyin": "xianyou", "suffix": "县", "code": "350322", "sort": "5" }, { "id": "1536", "name": "梅列", "parent_id": "238", "first_letter": "m", "shorthand": "ml", "pinyin": "meilie", "suffix": "区", "code": "350402", "sort": "1" }, { "id": "1537", "name": "三元", "parent_id": "238", "first_letter": "s", "shorthand": "sy", "pinyin": "sanyuan", "suffix": "区", "code": "350403", "sort": "2" }, { "id": "1538", "name": "明溪", "parent_id": "238", "first_letter": "m", "shorthand": "mx", "pinyin": "mingxi", "suffix": "县", "code": "350421", "sort": "3" }, { "id": "1539", "name": "清流", "parent_id": "238", "first_letter": "q", "shorthand": "ql", "pinyin": "qingliu", "suffix": "县", "code": "350423", "sort": "4" }, { "id": "1540", "name": "宁化", "parent_id": "238", "first_letter": "n", "shorthand": "nh", "pinyin": "ninghua", "suffix": "县", "code": "350424", "sort": "5" }, { "id": "1541", "name": "大田", "parent_id": "238", "first_letter": "d", "shorthand": "dt", "pinyin": "datian", "suffix": "县", "code": "350425", "sort": "6" }, { "id": "1542", "name": "尤溪", "parent_id": "238", "first_letter": "y", "shorthand": "yx", "pinyin": "youxi", "suffix": "县", "code": "350426", "sort": "7" }, { "id": "1543", "name": "沙县", "parent_id": "238", "first_letter": "s", "shorthand": "sx", "pinyin": "shaxian", "suffix": "", "code": "350427", "sort": "8" }, { "id": "1544", "name": "将乐", "parent_id": "238", "first_letter": "j", "shorthand": "jl", "pinyin": "jiangle", "suffix": "县", "code": "350428", "sort": "9" }, { "id": "1545", "name": "泰宁", "parent_id": "238", "first_letter": "t", "shorthand": "tn", "pinyin": "taining", "suffix": "县", "code": "350429", "sort": "10" }, { "id": "1546", "name": "建宁", "parent_id": "238", "first_letter": "j", "shorthand": "jn", "pinyin": "jianning", "suffix": "县", "code": "350430", "sort": "11" }, { "id": "1547", "name": "永安", "parent_id": "238", "first_letter": "y", "shorthand": "ya", "pinyin": "yongan", "suffix": "市", "code": "350481", "sort": "12" }, { "id": "1548", "name": "鲤城", "parent_id": "239", "first_letter": "l", "shorthand": "lc", "pinyin": "licheng", "suffix": "区", "code": "350502", "sort": "1" }, { "id": "1549", "name": "丰泽", "parent_id": "239", "first_letter": "f", "shorthand": "fz", "pinyin": "fengze", "suffix": "区", "code": "350503", "sort": "2" }, { "id": "1550", "name": "洛江", "parent_id": "239", "first_letter": "l", "shorthand": "lj", "pinyin": "luojiang", "suffix": "区", "code": "350504", "sort": "3" }, { "id": "1551", "name": "泉港", "parent_id": "239", "first_letter": "q", "shorthand": "qg", "pinyin": "quangang", "suffix": "区", "code": "350505", "sort": "4" }, { "id": "1552", "name": "惠安", "parent_id": "239", "first_letter": "h", "shorthand": "ha", "pinyin": "huian", "suffix": "县", "code": "350521", "sort": "5" }, { "id": "1553", "name": "安溪", "parent_id": "239", "first_letter": "a", "shorthand": "ax", "pinyin": "anxi", "suffix": "县", "code": "350524", "sort": "6" }, { "id": "1554", "name": "永春", "parent_id": "239", "first_letter": "y", "shorthand": "yc", "pinyin": "yongchun", "suffix": "县", "code": "350525", "sort": "7" }, { "id": "1555", "name": "德化", "parent_id": "239", "first_letter": "d", "shorthand": "dh", "pinyin": "dehua", "suffix": "县", "code": "350526", "sort": "8" }, { "id": "1556", "name": "金门", "parent_id": "239", "first_letter": "j", "shorthand": "jm", "pinyin": "jinmen", "suffix": "县", "code": "350527", "sort": "9" }, { "id": "1557", "name": "石狮", "parent_id": "239", "first_letter": "s", "shorthand": "ss", "pinyin": "shishi", "suffix": "市", "code": "350581", "sort": "10" }, { "id": "1558", "name": "晋江", "parent_id": "239", "first_letter": "j", "shorthand": "jj", "pinyin": "jinjiang", "suffix": "市", "code": "350582", "sort": "11" }, { "id": "1559", "name": "南安", "parent_id": "239", "first_letter": "n", "shorthand": "na", "pinyin": "nanan", "suffix": "市", "code": "350583", "sort": "12" }, { "id": "1560", "name": "芗城", "parent_id": "240", "first_letter": "x", "shorthand": "xc", "pinyin": "xiangcheng", "suffix": "区", "code": "350602", "sort": "1" }, { "id": "1561", "name": "龙文", "parent_id": "240", "first_letter": "l", "shorthand": "lw", "pinyin": "longwen", "suffix": "区", "code": "350603", "sort": "2" }, { "id": "1562", "name": "云霄", "parent_id": "240", "first_letter": "y", "shorthand": "yx", "pinyin": "yunxiao", "suffix": "县", "code": "350622", "sort": "3" }, { "id": "1563", "name": "漳浦", "parent_id": "240", "first_letter": "z", "shorthand": "zp", "pinyin": "zhangpu", "suffix": "县", "code": "350623", "sort": "4" }, { "id": "1564", "name": "诏安", "parent_id": "240", "first_letter": "z", "shorthand": "za", "pinyin": "zhaoan", "suffix": "县", "code": "350624", "sort": "5" }, { "id": "1565", "name": "长泰", "parent_id": "240", "first_letter": "z", "shorthand": "zt", "pinyin": "zhangtai", "suffix": "县", "code": "350625", "sort": "6" }, { "id": "1566", "name": "东山", "parent_id": "240", "first_letter": "d", "shorthand": "ds", "pinyin": "dongshan", "suffix": "县", "code": "350626", "sort": "7" }, { "id": "1567", "name": "南靖", "parent_id": "240", "first_letter": "n", "shorthand": "nj", "pinyin": "nanjing", "suffix": "县", "code": "350627", "sort": "8" }, { "id": "1568", "name": "平和", "parent_id": "240", "first_letter": "p", "shorthand": "ph", "pinyin": "pinghe", "suffix": "县", "code": "350628", "sort": "9" }, { "id": "1569", "name": "华安", "parent_id": "240", "first_letter": "h", "shorthand": "ha", "pinyin": "huaan", "suffix": "县", "code": "350629", "sort": "10" }, { "id": "1570", "name": "龙海", "parent_id": "240", "first_letter": "l", "shorthand": "lh", "pinyin": "longhai", "suffix": "市", "code": "350681", "sort": "11" }, { "id": "1571", "name": "延平", "parent_id": "241", "first_letter": "y", "shorthand": "yp", "pinyin": "yanping", "suffix": "区", "code": "350702", "sort": "1" }, { "id": "1572", "name": "顺昌", "parent_id": "241", "first_letter": "s", "shorthand": "sc", "pinyin": "shunchang", "suffix": "县", "code": "350721", "sort": "3" }, { "id": "1573", "name": "浦城", "parent_id": "241", "first_letter": "p", "shorthand": "pc", "pinyin": "pucheng", "suffix": "县", "code": "350722", "sort": "4" }, { "id": "1574", "name": "光泽", "parent_id": "241", "first_letter": "g", "shorthand": "gz", "pinyin": "guangze", "suffix": "县", "code": "350723", "sort": "5" }, { "id": "1575", "name": "松溪", "parent_id": "241", "first_letter": "s", "shorthand": "sx", "pinyin": "songxi", "suffix": "县", "code": "350724", "sort": "6" }, { "id": "1576", "name": "政和", "parent_id": "241", "first_letter": "z", "shorthand": "zh", "pinyin": "zhenghe", "suffix": "县", "code": "350725", "sort": "7" }, { "id": "1577", "name": "邵武", "parent_id": "241", "first_letter": "s", "shorthand": "sw", "pinyin": "shaowu", "suffix": "市", "code": "350781", "sort": "8" }, { "id": "1578", "name": "武夷山", "parent_id": "241", "first_letter": "w", "shorthand": "wys", "pinyin": "wuyishan", "suffix": "市", "code": "350782", "sort": "9" }, { "id": "1579", "name": "建瓯", "parent_id": "241", "first_letter": "j", "shorthand": "jo", "pinyin": "jianou", "suffix": "市", "code": "350783", "sort": "10" }, { "id": "1580", "name": "建阳", "parent_id": "241", "first_letter": "j", "shorthand": "jy", "pinyin": "jianyang", "suffix": "区", "code": "350703", "sort": "2" }, { "id": "1581", "name": "新罗", "parent_id": "242", "first_letter": "x", "shorthand": "xl", "pinyin": "xinluo", "suffix": "区", "code": "350802", "sort": "1" }, { "id": "1582", "name": "长汀", "parent_id": "242", "first_letter": "z", "shorthand": "zt", "pinyin": "zhangting", "suffix": "县", "code": "350821", "sort": "3" }, { "id": "1583", "name": "永定", "parent_id": "242", "first_letter": "y", "shorthand": "yd", "pinyin": "yongding", "suffix": "区", "code": "350803", "sort": "2" }, { "id": "1584", "name": "上杭", "parent_id": "242", "first_letter": "s", "shorthand": "sh", "pinyin": "shanghang", "suffix": "县", "code": "350823", "sort": "4" }, { "id": "1585", "name": "武平", "parent_id": "242", "first_letter": "w", "shorthand": "wp", "pinyin": "wuping", "suffix": "县", "code": "350824", "sort": "5" }, { "id": "1586", "name": "连城", "parent_id": "242", "first_letter": "l", "shorthand": "lc", "pinyin": "liancheng", "suffix": "县", "code": "350825", "sort": "6" }, { "id": "1587", "name": "漳平", "parent_id": "242", "first_letter": "z", "shorthand": "zp", "pinyin": "zhangping", "suffix": "市", "code": "350881", "sort": "7" }, { "id": "1588", "name": "蕉城", "parent_id": "243", "first_letter": "j", "shorthand": "jc", "pinyin": "jiaocheng", "suffix": "区", "code": "350902", "sort": "1" }, { "id": "1589", "name": "霞浦", "parent_id": "243", "first_letter": "x", "shorthand": "xp", "pinyin": "xiapu", "suffix": "县", "code": "350921", "sort": "2" }, { "id": "1590", "name": "古田", "parent_id": "243", "first_letter": "g", "shorthand": "gt", "pinyin": "gutian", "suffix": "县", "code": "350922", "sort": "3" }, { "id": "1591", "name": "屏南", "parent_id": "243", "first_letter": "p", "shorthand": "pn", "pinyin": "pingnan", "suffix": "县", "code": "350923", "sort": "4" }, { "id": "1592", "name": "寿宁", "parent_id": "243", "first_letter": "s", "shorthand": "sn", "pinyin": "shouning", "suffix": "县", "code": "350924", "sort": "5" }, { "id": "1593", "name": "周宁", "parent_id": "243", "first_letter": "z", "shorthand": "zn", "pinyin": "zhouning", "suffix": "县", "code": "350925", "sort": "6" }, { "id": "1594", "name": "柘荣", "parent_id": "243", "first_letter": "z", "shorthand": "zr", "pinyin": "zherong", "suffix": "县", "code": "350926", "sort": "7" }, { "id": "1595", "name": "福安", "parent_id": "243", "first_letter": "f", "shorthand": "fa", "pinyin": "fuan", "suffix": "市", "code": "350981", "sort": "8" }, { "id": "1596", "name": "福鼎", "parent_id": "243", "first_letter": "f", "shorthand": "fd", "pinyin": "fuding", "suffix": "市", "code": "350982", "sort": "9" }, { "id": "1597", "name": "东湖", "parent_id": "244", "first_letter": "d", "shorthand": "dh", "pinyin": "donghu", "suffix": "区", "code": "360102", "sort": "1" }, { "id": "1598", "name": "西湖", "parent_id": "244", "first_letter": "x", "shorthand": "xh", "pinyin": "xihu", "suffix": "区", "code": "360103", "sort": "2" }, { "id": "1599", "name": "青云谱", "parent_id": "244", "first_letter": "q", "shorthand": "qyp", "pinyin": "qingyunpu", "suffix": "区", "code": "360104", "sort": "3" }, { "id": "1600", "name": "湾里", "parent_id": "244", "first_letter": "w", "shorthand": "wl", "pinyin": "wanli", "suffix": "区", "code": "360105", "sort": "4" }, { "id": "1601", "name": "青山湖", "parent_id": "244", "first_letter": "q", "shorthand": "qsh", "pinyin": "qingshanhu", "suffix": "区", "code": "360111", "sort": "5" }, { "id": "1602", "name": "南昌", "parent_id": "244", "first_letter": "n", "shorthand": "nc", "pinyin": "nanchang", "suffix": "县", "code": "360121", "sort": "6" }, { "id": "1603", "name": "新建", "parent_id": "244", "first_letter": "x", "shorthand": "xj", "pinyin": "xinjian", "suffix": "县", "code": "360122", "sort": "7" }, { "id": "1604", "name": "安义", "parent_id": "244", "first_letter": "a", "shorthand": "ay", "pinyin": "anyi", "suffix": "县", "code": "360123", "sort": "8" }, { "id": "1605", "name": "进贤", "parent_id": "244", "first_letter": "j", "shorthand": "jx", "pinyin": "jinxian", "suffix": "县", "code": "360124", "sort": "9" }, { "id": "1606", "name": "昌江", "parent_id": "245", "first_letter": "c", "shorthand": "cj", "pinyin": "changjiang", "suffix": "区", "code": "360202", "sort": "1" }, { "id": "1607", "name": "珠山", "parent_id": "245", "first_letter": "z", "shorthand": "zs", "pinyin": "zhushan", "suffix": "区", "code": "360203", "sort": "2" }, { "id": "1608", "name": "浮梁", "parent_id": "245", "first_letter": "f", "shorthand": "fl", "pinyin": "fuliang", "suffix": "县", "code": "360222", "sort": "3" }, { "id": "1609", "name": "乐平", "parent_id": "245", "first_letter": "l", "shorthand": "lp", "pinyin": "leping", "suffix": "市", "code": "360281", "sort": "4" }, { "id": "1610", "name": "安源", "parent_id": "246", "first_letter": "a", "shorthand": "ay", "pinyin": "anyuan", "suffix": "区", "code": "360302", "sort": "1" }, { "id": "1611", "name": "湘东", "parent_id": "246", "first_letter": "x", "shorthand": "xd", "pinyin": "xiangdong", "suffix": "区", "code": "360313", "sort": "2" }, { "id": "1612", "name": "莲花", "parent_id": "246", "first_letter": "l", "shorthand": "lh", "pinyin": "lianhua", "suffix": "县", "code": "360321", "sort": "3" }, { "id": "1613", "name": "上栗", "parent_id": "246", "first_letter": "s", "shorthand": "sl", "pinyin": "shangli", "suffix": "县", "code": "360322", "sort": "4" }, { "id": "1614", "name": "芦溪", "parent_id": "246", "first_letter": "l", "shorthand": "lx", "pinyin": "luxi", "suffix": "县", "code": "360323", "sort": "5" }, { "id": "1615", "name": "庐山", "parent_id": "247", "first_letter": "l", "shorthand": "ls", "pinyin": "lushan", "suffix": "区", "code": "360402", "sort": "1" }, { "id": "1616", "name": "浔阳", "parent_id": "247", "first_letter": "x", "shorthand": "xy", "pinyin": "xunyang", "suffix": "区", "code": "360403", "sort": "2" }, { "id": "1617", "name": "九江", "parent_id": "247", "first_letter": "j", "shorthand": "jj", "pinyin": "jiujiang", "suffix": "县", "code": "360421", "sort": "3" }, { "id": "1618", "name": "武宁", "parent_id": "247", "first_letter": "w", "shorthand": "wn", "pinyin": "wuning", "suffix": "县", "code": "360423", "sort": "4" }, { "id": "1619", "name": "修水", "parent_id": "247", "first_letter": "x", "shorthand": "xs", "pinyin": "xiushui", "suffix": "县", "code": "360424", "sort": "5" }, { "id": "1620", "name": "永修", "parent_id": "247", "first_letter": "y", "shorthand": "yx", "pinyin": "yongxiu", "suffix": "县", "code": "360425", "sort": "6" }, { "id": "1621", "name": "德安", "parent_id": "247", "first_letter": "d", "shorthand": "da", "pinyin": "dean", "suffix": "县", "code": "360426", "sort": "7" }, { "id": "1622", "name": "星子", "parent_id": "247", "first_letter": "x", "shorthand": "xz", "pinyin": "xingzi", "suffix": "县", "code": "360427", "sort": "8" }, { "id": "1623", "name": "都昌", "parent_id": "247", "first_letter": "d", "shorthand": "dc", "pinyin": "douchang", "suffix": "县", "code": "360428", "sort": "9" }, { "id": "1624", "name": "湖口", "parent_id": "247", "first_letter": "h", "shorthand": "hk", "pinyin": "hukou", "suffix": "县", "code": "360429", "sort": "10" }, { "id": "1625", "name": "彭泽", "parent_id": "247", "first_letter": "p", "shorthand": "pz", "pinyin": "pengze", "suffix": "县", "code": "360430", "sort": "11" }, { "id": "1626", "name": "瑞昌", "parent_id": "247", "first_letter": "r", "shorthand": "rc", "pinyin": "ruichang", "suffix": "市", "code": "360481", "sort": "12" }, { "id": "1627", "name": "共青城", "parent_id": "247", "first_letter": "g", "shorthand": "gqc", "pinyin": "gongqingcheng", "suffix": "市", "code": "360482", "sort": "13" }, { "id": "1628", "name": "渝水", "parent_id": "248", "first_letter": "y", "shorthand": "ys", "pinyin": "yushui", "suffix": "区", "code": "360502", "sort": "1" }, { "id": "1629", "name": "分宜", "parent_id": "248", "first_letter": "f", "shorthand": "fy", "pinyin": "fenyi", "suffix": "县", "code": "360521", "sort": "2" }, { "id": "1630", "name": "月湖", "parent_id": "249", "first_letter": "y", "shorthand": "yh", "pinyin": "yuehu", "suffix": "区", "code": "360602", "sort": "1" }, { "id": "1631", "name": "余江", "parent_id": "249", "first_letter": "y", "shorthand": "yj", "pinyin": "yujiang", "suffix": "县", "code": "360622", "sort": "2" }, { "id": "1632", "name": "贵溪", "parent_id": "249", "first_letter": "g", "shorthand": "gx", "pinyin": "guixi", "suffix": "市", "code": "360681", "sort": "3" }, { "id": "1633", "name": "章贡", "parent_id": "250", "first_letter": "z", "shorthand": "zg", "pinyin": "zhanggong", "suffix": "区", "code": "360702", "sort": "1" }, { "id": "1634", "name": "赣县", "parent_id": "250", "first_letter": "g", "shorthand": "gx", "pinyin": "ganxian", "suffix": "", "code": "360721", "sort": "2" }, { "id": "1635", "name": "信丰", "parent_id": "250", "first_letter": "x", "shorthand": "xf", "pinyin": "xinfeng", "suffix": "县", "code": "360722", "sort": "3" }, { "id": "1636", "name": "大余", "parent_id": "250", "first_letter": "d", "shorthand": "dy", "pinyin": "dayu", "suffix": "县", "code": "360723", "sort": "4" }, { "id": "1637", "name": "上犹", "parent_id": "250", "first_letter": "s", "shorthand": "sy", "pinyin": "shangyou", "suffix": "县", "code": "360724", "sort": "5" }, { "id": "1638", "name": "崇义", "parent_id": "250", "first_letter": "c", "shorthand": "cy", "pinyin": "chongyi", "suffix": "县", "code": "360725", "sort": "6" }, { "id": "1639", "name": "安远", "parent_id": "250", "first_letter": "a", "shorthand": "ay", "pinyin": "anyuan", "suffix": "县", "code": "360726", "sort": "7" }, { "id": "1640", "name": "龙南", "parent_id": "250", "first_letter": "l", "shorthand": "ln", "pinyin": "longnan", "suffix": "县", "code": "360727", "sort": "8" }, { "id": "1641", "name": "定南", "parent_id": "250", "first_letter": "d", "shorthand": "dn", "pinyin": "dingnan", "suffix": "县", "code": "360728", "sort": "9" }, { "id": "1642", "name": "全南", "parent_id": "250", "first_letter": "q", "shorthand": "qn", "pinyin": "quannan", "suffix": "县", "code": "360729", "sort": "10" }, { "id": "1643", "name": "宁都", "parent_id": "250", "first_letter": "n", "shorthand": "nd", "pinyin": "ningdou", "suffix": "县", "code": "360730", "sort": "11" }, { "id": "1644", "name": "于都", "parent_id": "250", "first_letter": "y", "shorthand": "yd", "pinyin": "yudou", "suffix": "县", "code": "360731", "sort": "12" }, { "id": "1645", "name": "兴国", "parent_id": "250", "first_letter": "x", "shorthand": "xg", "pinyin": "xingguo", "suffix": "县", "code": "360732", "sort": "13" }, { "id": "1646", "name": "会昌", "parent_id": "250", "first_letter": "h", "shorthand": "hc", "pinyin": "huichang", "suffix": "县", "code": "360733", "sort": "14" }, { "id": "1647", "name": "寻乌", "parent_id": "250", "first_letter": "x", "shorthand": "xw", "pinyin": "xunwu", "suffix": "县", "code": "360734", "sort": "15" }, { "id": "1648", "name": "石城", "parent_id": "250", "first_letter": "s", "shorthand": "sc", "pinyin": "shicheng", "suffix": "县", "code": "360735", "sort": "16" }, { "id": "1649", "name": "瑞金", "parent_id": "250", "first_letter": "r", "shorthand": "rj", "pinyin": "ruijin", "suffix": "市", "code": "360781", "sort": "17" }, { "id": "1650", "name": "南康", "parent_id": "250", "first_letter": "n", "shorthand": "nk", "pinyin": "nankang", "suffix": "区", "code": "360782", "sort": "18" }, { "id": "1651", "name": "吉州", "parent_id": "251", "first_letter": "j", "shorthand": "jz", "pinyin": "jizhou", "suffix": "区", "code": "360802", "sort": "1" }, { "id": "1652", "name": "青原", "parent_id": "251", "first_letter": "q", "shorthand": "qy", "pinyin": "qingyuan", "suffix": "区", "code": "360803", "sort": "2" }, { "id": "1653", "name": "吉安", "parent_id": "251", "first_letter": "j", "shorthand": "ja", "pinyin": "jian", "suffix": "县", "code": "360821", "sort": "3" }, { "id": "1654", "name": "吉水", "parent_id": "251", "first_letter": "j", "shorthand": "js", "pinyin": "jishui", "suffix": "县", "code": "360822", "sort": "4" }, { "id": "1655", "name": "峡江", "parent_id": "251", "first_letter": "x", "shorthand": "xj", "pinyin": "xiajiang", "suffix": "县", "code": "360823", "sort": "5" }, { "id": "1656", "name": "新干", "parent_id": "251", "first_letter": "x", "shorthand": "xg", "pinyin": "xingan", "suffix": "县", "code": "360824", "sort": "6" }, { "id": "1657", "name": "永丰", "parent_id": "251", "first_letter": "y", "shorthand": "yf", "pinyin": "yongfeng", "suffix": "县", "code": "360825", "sort": "7" }, { "id": "1658", "name": "泰和", "parent_id": "251", "first_letter": "t", "shorthand": "th", "pinyin": "taihe", "suffix": "县", "code": "360826", "sort": "8" }, { "id": "1659", "name": "遂川", "parent_id": "251", "first_letter": "s", "shorthand": "sc", "pinyin": "suichuan", "suffix": "县", "code": "360827", "sort": "9" }, { "id": "1660", "name": "万安", "parent_id": "251", "first_letter": "w", "shorthand": "wa", "pinyin": "wanan", "suffix": "县", "code": "360828", "sort": "10" }, { "id": "1661", "name": "安福", "parent_id": "251", "first_letter": "a", "shorthand": "af", "pinyin": "anfu", "suffix": "县", "code": "360829", "sort": "11" }, { "id": "1662", "name": "永新", "parent_id": "251", "first_letter": "y", "shorthand": "yx", "pinyin": "yongxin", "suffix": "县", "code": "360830", "sort": "12" }, { "id": "1663", "name": "井冈山", "parent_id": "251", "first_letter": "j", "shorthand": "jgs", "pinyin": "jinggangshan", "suffix": "市", "code": "360881", "sort": "13" }, { "id": "1664", "name": "袁州", "parent_id": "252", "first_letter": "y", "shorthand": "yz", "pinyin": "yuanzhou", "suffix": "区", "code": "360902", "sort": "1" }, { "id": "1665", "name": "奉新", "parent_id": "252", "first_letter": "f", "shorthand": "fx", "pinyin": "fengxin", "suffix": "县", "code": "360921", "sort": "2" }, { "id": "1666", "name": "万载", "parent_id": "252", "first_letter": "w", "shorthand": "wz", "pinyin": "wanzai", "suffix": "县", "code": "360922", "sort": "3" }, { "id": "1667", "name": "上高", "parent_id": "252", "first_letter": "s", "shorthand": "sg", "pinyin": "shanggao", "suffix": "县", "code": "360923", "sort": "4" }, { "id": "1668", "name": "宜丰", "parent_id": "252", "first_letter": "y", "shorthand": "yf", "pinyin": "yifeng", "suffix": "县", "code": "360924", "sort": "5" }, { "id": "1669", "name": "靖安", "parent_id": "252", "first_letter": "j", "shorthand": "ja", "pinyin": "jingan", "suffix": "县", "code": "360925", "sort": "6" }, { "id": "1670", "name": "铜鼓", "parent_id": "252", "first_letter": "t", "shorthand": "tg", "pinyin": "tonggu", "suffix": "县", "code": "360926", "sort": "7" }, { "id": "1671", "name": "丰城", "parent_id": "252", "first_letter": "f", "shorthand": "fc", "pinyin": "fengcheng", "suffix": "市", "code": "360981", "sort": "8" }, { "id": "1672", "name": "樟树", "parent_id": "252", "first_letter": "z", "shorthand": "zs", "pinyin": "zhangshu", "suffix": "市", "code": "360982", "sort": "9" }, { "id": "1673", "name": "高安", "parent_id": "252", "first_letter": "g", "shorthand": "ga", "pinyin": "gaoan", "suffix": "市", "code": "360983", "sort": "10" }, { "id": "1674", "name": "临川", "parent_id": "253", "first_letter": "l", "shorthand": "lc", "pinyin": "linchuan", "suffix": "区", "code": "361002", "sort": "1" }, { "id": "1675", "name": "南城", "parent_id": "253", "first_letter": "n", "shorthand": "nc", "pinyin": "nancheng", "suffix": "县", "code": "361021", "sort": "2" }, { "id": "1676", "name": "黎川", "parent_id": "253", "first_letter": "l", "shorthand": "lc", "pinyin": "lichuan", "suffix": "县", "code": "361022", "sort": "3" }, { "id": "1677", "name": "南丰", "parent_id": "253", "first_letter": "n", "shorthand": "nf", "pinyin": "nanfeng", "suffix": "县", "code": "361023", "sort": "4" }, { "id": "1678", "name": "崇仁", "parent_id": "253", "first_letter": "c", "shorthand": "cr", "pinyin": "chongren", "suffix": "县", "code": "361024", "sort": "5" }, { "id": "1679", "name": "乐安", "parent_id": "253", "first_letter": "l", "shorthand": "la", "pinyin": "lean", "suffix": "县", "code": "361025", "sort": "6" }, { "id": "1680", "name": "宜黄", "parent_id": "253", "first_letter": "y", "shorthand": "yh", "pinyin": "yihuang", "suffix": "县", "code": "361026", "sort": "7" }, { "id": "1681", "name": "金溪", "parent_id": "253", "first_letter": "j", "shorthand": "jx", "pinyin": "jinxi", "suffix": "县", "code": "361027", "sort": "8" }, { "id": "1682", "name": "资溪", "parent_id": "253", "first_letter": "z", "shorthand": "zx", "pinyin": "zixi", "suffix": "县", "code": "361028", "sort": "9" }, { "id": "1683", "name": "东乡", "parent_id": "253", "first_letter": "d", "shorthand": "dx", "pinyin": "dongxiang", "suffix": "县", "code": "361029", "sort": "10" }, { "id": "1684", "name": "广昌", "parent_id": "253", "first_letter": "g", "shorthand": "gc", "pinyin": "guangchang", "suffix": "县", "code": "361030", "sort": "11" }, { "id": "1685", "name": "信州", "parent_id": "254", "first_letter": "x", "shorthand": "xz", "pinyin": "xinzhou", "suffix": "区", "code": "361102", "sort": "1" }, { "id": "1686", "name": "上饶", "parent_id": "254", "first_letter": "s", "shorthand": "sr", "pinyin": "shangrao", "suffix": "县", "code": "361121", "sort": "3" }, { "id": "1687", "name": "广丰", "parent_id": "254", "first_letter": "g", "shorthand": "gf", "pinyin": "guangfeng", "suffix": "区", "code": "361122", "sort": "2" }, { "id": "1688", "name": "玉山", "parent_id": "254", "first_letter": "y", "shorthand": "ys", "pinyin": "yushan", "suffix": "县", "code": "361123", "sort": "4" }, { "id": "1689", "name": "铅山", "parent_id": "254", "first_letter": "q", "shorthand": "qs", "pinyin": "qianshan", "suffix": "县", "code": "361124", "sort": "5" }, { "id": "1690", "name": "横峰", "parent_id": "254", "first_letter": "h", "shorthand": "hf", "pinyin": "hengfeng", "suffix": "县", "code": "361125", "sort": "6" }, { "id": "1691", "name": "弋阳", "parent_id": "254", "first_letter": "y", "shorthand": "yy", "pinyin": "yiyang", "suffix": "县", "code": "361126", "sort": "7" }, { "id": "1692", "name": "余干", "parent_id": "254", "first_letter": "y", "shorthand": "yg", "pinyin": "yugan", "suffix": "县", "code": "361127", "sort": "8" }, { "id": "1693", "name": "鄱阳", "parent_id": "254", "first_letter": "p", "shorthand": "py", "pinyin": "poyang", "suffix": "县", "code": "361128", "sort": "9" }, { "id": "1694", "name": "万年", "parent_id": "254", "first_letter": "w", "shorthand": "wn", "pinyin": "wannian", "suffix": "县", "code": "361129", "sort": "10" }, { "id": "1695", "name": "婺源", "parent_id": "254", "first_letter": "w", "shorthand": "wy", "pinyin": "wuyuan", "suffix": "县", "code": "361130", "sort": "11" }, { "id": "1696", "name": "德兴", "parent_id": "254", "first_letter": "d", "shorthand": "dx", "pinyin": "dexing", "suffix": "市", "code": "361181", "sort": "12" }, { "id": "1697", "name": "历下", "parent_id": "255", "first_letter": "l", "shorthand": "lx", "pinyin": "lixia", "suffix": "区", "code": "370102", "sort": "1" }, { "id": "1698", "name": "市中", "parent_id": "255", "first_letter": "s", "shorthand": "sz", "pinyin": "shizhong", "suffix": "区", "code": "370103", "sort": "2" }, { "id": "1699", "name": "槐荫", "parent_id": "255", "first_letter": "h", "shorthand": "hy", "pinyin": "huaiyin", "suffix": "区", "code": "370104", "sort": "3" }, { "id": "1700", "name": "天桥", "parent_id": "255", "first_letter": "t", "shorthand": "tq", "pinyin": "tianqiao", "suffix": "区", "code": "370105", "sort": "4" }, { "id": "1701", "name": "历城", "parent_id": "255", "first_letter": "l", "shorthand": "lc", "pinyin": "licheng", "suffix": "区", "code": "370112", "sort": "5" }, { "id": "1702", "name": "长清", "parent_id": "255", "first_letter": "z", "shorthand": "zq", "pinyin": "zhangqing", "suffix": "区", "code": "370113", "sort": "6" }, { "id": "1703", "name": "平阴", "parent_id": "255", "first_letter": "p", "shorthand": "py", "pinyin": "pingyin", "suffix": "县", "code": "370124", "sort": "7" }, { "id": "1704", "name": "济阳", "parent_id": "255", "first_letter": "j", "shorthand": "jy", "pinyin": "jiyang", "suffix": "县", "code": "370125", "sort": "8" }, { "id": "1705", "name": "商河", "parent_id": "255", "first_letter": "s", "shorthand": "sh", "pinyin": "shanghe", "suffix": "县", "code": "370126", "sort": "9" }, { "id": "1706", "name": "章丘", "parent_id": "255", "first_letter": "z", "shorthand": "zq", "pinyin": "zhangqiu", "suffix": "市", "code": "370181", "sort": "10" }, { "id": "1707", "name": "市南", "parent_id": "256", "first_letter": "s", "shorthand": "sn", "pinyin": "shinan", "suffix": "区", "code": "370202", "sort": "1" }, { "id": "1708", "name": "市北", "parent_id": "256", "first_letter": "s", "shorthand": "sb", "pinyin": "shibei", "suffix": "区", "code": "370203", "sort": "2" }, { "id": "1709", "name": "黄岛", "parent_id": "256", "first_letter": "h", "shorthand": "hd", "pinyin": "huangdao", "suffix": "区", "code": "370211", "sort": "3" }, { "id": "1710", "name": "崂山", "parent_id": "256", "first_letter": "l", "shorthand": "ls", "pinyin": "laoshan", "suffix": "区", "code": "370212", "sort": "4" }, { "id": "1711", "name": "李沧", "parent_id": "256", "first_letter": "l", "shorthand": "lc", "pinyin": "licang", "suffix": "区", "code": "370213", "sort": "5" }, { "id": "1712", "name": "城阳", "parent_id": "256", "first_letter": "c", "shorthand": "cy", "pinyin": "chengyang", "suffix": "区", "code": "370214", "sort": "6" }, { "id": "1713", "name": "胶州", "parent_id": "256", "first_letter": "j", "shorthand": "jz", "pinyin": "jiaozhou", "suffix": "市", "code": "370281", "sort": "7" }, { "id": "1714", "name": "即墨", "parent_id": "256", "first_letter": "j", "shorthand": "jm", "pinyin": "jimo", "suffix": "市", "code": "370282", "sort": "8" }, { "id": "1715", "name": "平度", "parent_id": "256", "first_letter": "p", "shorthand": "pd", "pinyin": "pingdu", "suffix": "市", "code": "370283", "sort": "9" }, { "id": "1716", "name": "莱西", "parent_id": "256", "first_letter": "l", "shorthand": "lx", "pinyin": "laixi", "suffix": "市", "code": "370285", "sort": "10" }, { "id": "1717", "name": "淄川", "parent_id": "257", "first_letter": "z", "shorthand": "zc", "pinyin": "zichuan", "suffix": "区", "code": "370302", "sort": "1" }, { "id": "1718", "name": "张店", "parent_id": "257", "first_letter": "z", "shorthand": "zd", "pinyin": "zhangdian", "suffix": "区", "code": "370303", "sort": "2" }, { "id": "1719", "name": "博山", "parent_id": "257", "first_letter": "b", "shorthand": "bs", "pinyin": "boshan", "suffix": "区", "code": "370304", "sort": "3" }, { "id": "1720", "name": "临淄", "parent_id": "257", "first_letter": "l", "shorthand": "lz", "pinyin": "linzi", "suffix": "区", "code": "370305", "sort": "4" }, { "id": "1721", "name": "周村", "parent_id": "257", "first_letter": "z", "shorthand": "zc", "pinyin": "zhoucun", "suffix": "区", "code": "370306", "sort": "5" }, { "id": "1722", "name": "桓台", "parent_id": "257", "first_letter": "h", "shorthand": "ht", "pinyin": "huantai", "suffix": "县", "code": "370321", "sort": "6" }, { "id": "1723", "name": "高青", "parent_id": "257", "first_letter": "g", "shorthand": "gq", "pinyin": "gaoqing", "suffix": "县", "code": "370322", "sort": "7" }, { "id": "1724", "name": "沂源", "parent_id": "257", "first_letter": "y", "shorthand": "yy", "pinyin": "yiyuan", "suffix": "县", "code": "370323", "sort": "8" }, { "id": "1725", "name": "市中", "parent_id": "258", "first_letter": "s", "shorthand": "sz", "pinyin": "shizhong", "suffix": "区", "code": "370402", "sort": "1" }, { "id": "1726", "name": "薛城", "parent_id": "258", "first_letter": "x", "shorthand": "xc", "pinyin": "xuecheng", "suffix": "区", "code": "370403", "sort": "2" }, { "id": "1727", "name": "峄城", "parent_id": "258", "first_letter": "y", "shorthand": "yc", "pinyin": "yicheng", "suffix": "区", "code": "370404", "sort": "3" }, { "id": "1728", "name": "台儿庄", "parent_id": "258", "first_letter": "t", "shorthand": "tez", "pinyin": "taierzhuang", "suffix": "区", "code": "370405", "sort": "4" }, { "id": "1729", "name": "山亭", "parent_id": "258", "first_letter": "s", "shorthand": "st", "pinyin": "shanting", "suffix": "区", "code": "370406", "sort": "5" }, { "id": "1730", "name": "滕州", "parent_id": "258", "first_letter": "t", "shorthand": "tz", "pinyin": "tengzhou", "suffix": "市", "code": "370481", "sort": "6" }, { "id": "1731", "name": "东营", "parent_id": "259", "first_letter": "d", "shorthand": "dy", "pinyin": "dongying", "suffix": "区", "code": "370502", "sort": "1" }, { "id": "1732", "name": "河口", "parent_id": "259", "first_letter": "h", "shorthand": "hk", "pinyin": "hekou", "suffix": "区", "code": "370503", "sort": "2" }, { "id": "1733", "name": "垦利", "parent_id": "259", "first_letter": "k", "shorthand": "kl", "pinyin": "kenli", "suffix": "县", "code": "370521", "sort": "3" }, { "id": "1734", "name": "利津", "parent_id": "259", "first_letter": "l", "shorthand": "lj", "pinyin": "lijin", "suffix": "县", "code": "370522", "sort": "4" }, { "id": "1735", "name": "广饶", "parent_id": "259", "first_letter": "g", "shorthand": "gr", "pinyin": "guangrao", "suffix": "县", "code": "370523", "sort": "5" }, { "id": "1736", "name": "芝罘", "parent_id": "260", "first_letter": "z", "shorthand": "zf", "pinyin": "zhifu", "suffix": "区", "code": "370602", "sort": "1" }, { "id": "1737", "name": "福山", "parent_id": "260", "first_letter": "f", "shorthand": "fs", "pinyin": "fushan", "suffix": "区", "code": "370611", "sort": "2" }, { "id": "1738", "name": "牟平", "parent_id": "260", "first_letter": "m", "shorthand": "mp", "pinyin": "mouping", "suffix": "区", "code": "370612", "sort": "3" }, { "id": "1739", "name": "莱山", "parent_id": "260", "first_letter": "l", "shorthand": "ls", "pinyin": "laishan", "suffix": "区", "code": "370613", "sort": "4" }, { "id": "1740", "name": "长岛", "parent_id": "260", "first_letter": "z", "shorthand": "zd", "pinyin": "zhangdao", "suffix": "县", "code": "370634", "sort": "5" }, { "id": "1741", "name": "龙口", "parent_id": "260", "first_letter": "l", "shorthand": "lk", "pinyin": "longkou", "suffix": "市", "code": "370681", "sort": "6" }, { "id": "1742", "name": "莱阳", "parent_id": "260", "first_letter": "l", "shorthand": "ly", "pinyin": "laiyang", "suffix": "市", "code": "370682", "sort": "7" }, { "id": "1743", "name": "莱州", "parent_id": "260", "first_letter": "l", "shorthand": "lz", "pinyin": "laizhou", "suffix": "市", "code": "370683", "sort": "8" }, { "id": "1744", "name": "蓬莱", "parent_id": "260", "first_letter": "p", "shorthand": "pl", "pinyin": "penglai", "suffix": "市", "code": "370684", "sort": "9" }, { "id": "1745", "name": "招远", "parent_id": "260", "first_letter": "z", "shorthand": "zy", "pinyin": "zhaoyuan", "suffix": "市", "code": "370685", "sort": "10" }, { "id": "1746", "name": "栖霞", "parent_id": "260", "first_letter": "q", "shorthand": "qx", "pinyin": "qixia", "suffix": "市", "code": "370686", "sort": "11" }, { "id": "1747", "name": "海阳", "parent_id": "260", "first_letter": "h", "shorthand": "hy", "pinyin": "haiyang", "suffix": "市", "code": "370687", "sort": "12" }, { "id": "1748", "name": "潍城", "parent_id": "261", "first_letter": "w", "shorthand": "wc", "pinyin": "weicheng", "suffix": "区", "code": "370702", "sort": "1" }, { "id": "1749", "name": "寒亭", "parent_id": "261", "first_letter": "h", "shorthand": "ht", "pinyin": "hanting", "suffix": "区", "code": "370703", "sort": "2" }, { "id": "1750", "name": "坊子", "parent_id": "261", "first_letter": "f", "shorthand": "fz", "pinyin": "fangzi", "suffix": "区", "code": "370704", "sort": "3" }, { "id": "1751", "name": "奎文", "parent_id": "261", "first_letter": "k", "shorthand": "kw", "pinyin": "kuiwen", "suffix": "区", "code": "370705", "sort": "4" }, { "id": "1752", "name": "临朐", "parent_id": "261", "first_letter": "l", "shorthand": "lq", "pinyin": "linqu", "suffix": "县", "code": "370724", "sort": "5" }, { "id": "1753", "name": "昌乐", "parent_id": "261", "first_letter": "c", "shorthand": "cl", "pinyin": "changle", "suffix": "县", "code": "370725", "sort": "6" }, { "id": "1754", "name": "青州", "parent_id": "261", "first_letter": "q", "shorthand": "qz", "pinyin": "qingzhou", "suffix": "市", "code": "370781", "sort": "7" }, { "id": "1755", "name": "诸城", "parent_id": "261", "first_letter": "z", "shorthand": "zc", "pinyin": "zhucheng", "suffix": "市", "code": "370782", "sort": "8" }, { "id": "1756", "name": "寿光", "parent_id": "261", "first_letter": "s", "shorthand": "sg", "pinyin": "shouguang", "suffix": "市", "code": "370783", "sort": "9" }, { "id": "1757", "name": "安丘", "parent_id": "261", "first_letter": "a", "shorthand": "aq", "pinyin": "anqiu", "suffix": "市", "code": "370784", "sort": "10" }, { "id": "1758", "name": "高密", "parent_id": "261", "first_letter": "g", "shorthand": "gm", "pinyin": "gaomi", "suffix": "市", "code": "370785", "sort": "11" }, { "id": "1759", "name": "昌邑", "parent_id": "261", "first_letter": "c", "shorthand": "cy", "pinyin": "changyi", "suffix": "市", "code": "370786", "sort": "12" }, { "id": "1761", "name": "任城", "parent_id": "262", "first_letter": "r", "shorthand": "rc", "pinyin": "rencheng", "suffix": "区", "code": "370811", "sort": "1" }, { "id": "1762", "name": "微山", "parent_id": "262", "first_letter": "w", "shorthand": "ws", "pinyin": "weishan", "suffix": "县", "code": "370826", "sort": "3" }, { "id": "1763", "name": "鱼台", "parent_id": "262", "first_letter": "y", "shorthand": "yt", "pinyin": "yutai", "suffix": "县", "code": "370827", "sort": "4" }, { "id": "1764", "name": "金乡", "parent_id": "262", "first_letter": "j", "shorthand": "jx", "pinyin": "jinxiang", "suffix": "县", "code": "370828", "sort": "5" }, { "id": "1765", "name": "嘉祥", "parent_id": "262", "first_letter": "j", "shorthand": "jx", "pinyin": "jiaxiang", "suffix": "县", "code": "370829", "sort": "6" }, { "id": "1766", "name": "汶上", "parent_id": "262", "first_letter": "w", "shorthand": "ws", "pinyin": "wenshang", "suffix": "县", "code": "370830", "sort": "7" }, { "id": "1767", "name": "泗水", "parent_id": "262", "first_letter": "s", "shorthand": "ss", "pinyin": "sishui", "suffix": "县", "code": "370831", "sort": "8" }, { "id": "1768", "name": "梁山", "parent_id": "262", "first_letter": "l", "shorthand": "ls", "pinyin": "liangshan", "suffix": "县", "code": "370832", "sort": "9" }, { "id": "1769", "name": "曲阜", "parent_id": "262", "first_letter": "q", "shorthand": "qf", "pinyin": "qufu", "suffix": "市", "code": "370881", "sort": "10" }, { "id": "1770", "name": "兖州", "parent_id": "262", "first_letter": "y", "shorthand": "yz", "pinyin": "yanzhou", "suffix": "区", "code": "370812", "sort": "2" }, { "id": "1771", "name": "邹城", "parent_id": "262", "first_letter": "z", "shorthand": "zc", "pinyin": "zoucheng", "suffix": "市", "code": "370883", "sort": "11" }, { "id": "1772", "name": "泰山", "parent_id": "263", "first_letter": "t", "shorthand": "ts", "pinyin": "taishan", "suffix": "区", "code": "370902", "sort": "1" }, { "id": "1773", "name": "岱岳", "parent_id": "263", "first_letter": "d", "shorthand": "dy", "pinyin": "daiyue", "suffix": "区", "code": "370911", "sort": "2" }, { "id": "1774", "name": "宁阳", "parent_id": "263", "first_letter": "n", "shorthand": "ny", "pinyin": "ningyang", "suffix": "县", "code": "370921", "sort": "3" }, { "id": "1775", "name": "东平", "parent_id": "263", "first_letter": "d", "shorthand": "dp", "pinyin": "dongping", "suffix": "县", "code": "370923", "sort": "4" }, { "id": "1776", "name": "新泰", "parent_id": "263", "first_letter": "x", "shorthand": "xt", "pinyin": "xintai", "suffix": "市", "code": "370982", "sort": "5" }, { "id": "1777", "name": "肥城", "parent_id": "263", "first_letter": "f", "shorthand": "fc", "pinyin": "feicheng", "suffix": "市", "code": "370983", "sort": "6" }, { "id": "1778", "name": "环翠", "parent_id": "264", "first_letter": "h", "shorthand": "hc", "pinyin": "huancui", "suffix": "区", "code": "371002", "sort": "1" }, { "id": "1779", "name": "文登", "parent_id": "264", "first_letter": "w", "shorthand": "wd", "pinyin": "wendeng", "suffix": "区", "code": "371003", "sort": "2" }, { "id": "1780", "name": "荣成", "parent_id": "264", "first_letter": "r", "shorthand": "rc", "pinyin": "rongcheng", "suffix": "市", "code": "371082", "sort": "3" }, { "id": "1781", "name": "乳山", "parent_id": "264", "first_letter": "r", "shorthand": "rs", "pinyin": "rushan", "suffix": "市", "code": "371083", "sort": "4" }, { "id": "1782", "name": "东港", "parent_id": "265", "first_letter": "d", "shorthand": "dg", "pinyin": "donggang", "suffix": "区", "code": "371102", "sort": "1" }, { "id": "1783", "name": "岚山", "parent_id": "265", "first_letter": "l", "shorthand": "ls", "pinyin": "lanshan", "suffix": "区", "code": "371103", "sort": "2" }, { "id": "1784", "name": "五莲", "parent_id": "265", "first_letter": "w", "shorthand": "wl", "pinyin": "wulian", "suffix": "县", "code": "371121", "sort": "3" }, { "id": "1785", "name": "莒县", "parent_id": "265", "first_letter": "j", "shorthand": "jx", "pinyin": "juxian", "suffix": "", "code": "371122", "sort": "4" }, { "id": "1786", "name": "莱城", "parent_id": "266", "first_letter": "l", "shorthand": "lc", "pinyin": "laicheng", "suffix": "区", "code": "371202", "sort": "1" }, { "id": "1787", "name": "钢城", "parent_id": "266", "first_letter": "g", "shorthand": "gc", "pinyin": "gangcheng", "suffix": "区", "code": "371203", "sort": "2" }, { "id": "1788", "name": "兰山", "parent_id": "267", "first_letter": "l", "shorthand": "ls", "pinyin": "lanshan", "suffix": "区", "code": "371302", "sort": "1" }, { "id": "1789", "name": "罗庄", "parent_id": "267", "first_letter": "l", "shorthand": "lz", "pinyin": "luozhuang", "suffix": "区", "code": "371311", "sort": "2" }, { "id": "1790", "name": "河东", "parent_id": "267", "first_letter": "h", "shorthand": "hd", "pinyin": "hedong", "suffix": "区", "code": "371312", "sort": "3" }, { "id": "1791", "name": "沂南", "parent_id": "267", "first_letter": "y", "shorthand": "yn", "pinyin": "yinan", "suffix": "县", "code": "371321", "sort": "4" }, { "id": "1792", "name": "郯城", "parent_id": "267", "first_letter": "t", "shorthand": "tc", "pinyin": "tancheng", "suffix": "县", "code": "371322", "sort": "5" }, { "id": "1793", "name": "沂水", "parent_id": "267", "first_letter": "y", "shorthand": "ys", "pinyin": "yishui", "suffix": "县", "code": "371323", "sort": "6" }, { "id": "1794", "name": "兰陵", "parent_id": "267", "first_letter": "l", "shorthand": "ll", "pinyin": "lanling", "suffix": "县", "code": "371324", "sort": "7" }, { "id": "1795", "name": "费县", "parent_id": "267", "first_letter": "f", "shorthand": "fx", "pinyin": "feixian", "suffix": "", "code": "371325", "sort": "8" }, { "id": "1796", "name": "平邑", "parent_id": "267", "first_letter": "p", "shorthand": "py", "pinyin": "pingyi", "suffix": "县", "code": "371326", "sort": "9" }, { "id": "1797", "name": "莒南", "parent_id": "267", "first_letter": "j", "shorthand": "jn", "pinyin": "junan", "suffix": "县", "code": "371327", "sort": "10" }, { "id": "1798", "name": "蒙阴", "parent_id": "267", "first_letter": "m", "shorthand": "my", "pinyin": "mengyin", "suffix": "县", "code": "371328", "sort": "11" }, { "id": "1799", "name": "临沭", "parent_id": "267", "first_letter": "l", "shorthand": "ls", "pinyin": "linshu", "suffix": "县", "code": "371329", "sort": "12" }, { "id": "1800", "name": "德城", "parent_id": "268", "first_letter": "d", "shorthand": "dc", "pinyin": "decheng", "suffix": "区", "code": "371402", "sort": "1" }, { "id": "1801", "name": "陵城", "parent_id": "268", "first_letter": "l", "shorthand": "lc", "pinyin": "lingcheng", "suffix": "区", "code": "371403", "sort": "2" }, { "id": "1802", "name": "宁津", "parent_id": "268", "first_letter": "n", "shorthand": "nj", "pinyin": "ningjin", "suffix": "县", "code": "371422", "sort": "3" }, { "id": "1803", "name": "庆云", "parent_id": "268", "first_letter": "q", "shorthand": "qy", "pinyin": "qingyun", "suffix": "县", "code": "371423", "sort": "4" }, { "id": "1804", "name": "临邑", "parent_id": "268", "first_letter": "l", "shorthand": "ly", "pinyin": "linyi", "suffix": "县", "code": "371424", "sort": "5" }, { "id": "1805", "name": "齐河", "parent_id": "268", "first_letter": "q", "shorthand": "qh", "pinyin": "qihe", "suffix": "县", "code": "371425", "sort": "6" }, { "id": "1806", "name": "平原", "parent_id": "268", "first_letter": "p", "shorthand": "py", "pinyin": "pingyuan", "suffix": "县", "code": "371426", "sort": "7" }, { "id": "1807", "name": "夏津", "parent_id": "268", "first_letter": "x", "shorthand": "xj", "pinyin": "xiajin", "suffix": "县", "code": "371427", "sort": "8" }, { "id": "1808", "name": "武城", "parent_id": "268", "first_letter": "w", "shorthand": "wc", "pinyin": "wucheng", "suffix": "县", "code": "371428", "sort": "9" }, { "id": "1809", "name": "乐陵", "parent_id": "268", "first_letter": "l", "shorthand": "ll", "pinyin": "leling", "suffix": "市", "code": "371481", "sort": "10" }, { "id": "1810", "name": "禹城", "parent_id": "268", "first_letter": "y", "shorthand": "yc", "pinyin": "yucheng", "suffix": "市", "code": "371482", "sort": "11" }, { "id": "1811", "name": "东昌府", "parent_id": "269", "first_letter": "d", "shorthand": "dcf", "pinyin": "dongchangfu", "suffix": "区", "code": "371502", "sort": "1" }, { "id": "1812", "name": "阳谷", "parent_id": "269", "first_letter": "y", "shorthand": "yg", "pinyin": "yanggu", "suffix": "县", "code": "371521", "sort": "2" }, { "id": "1813", "name": "莘县", "parent_id": "269", "first_letter": "x", "shorthand": "xx", "pinyin": "xinxian", "suffix": "", "code": "371522", "sort": "3" }, { "id": "1814", "name": "茌平", "parent_id": "269", "first_letter": "c", "shorthand": "cp", "pinyin": "chiping", "suffix": "县", "code": "371523", "sort": "4" }, { "id": "1815", "name": "东阿", "parent_id": "269", "first_letter": "d", "shorthand": "da", "pinyin": "donga", "suffix": "县", "code": "371524", "sort": "5" }, { "id": "1816", "name": "冠县", "parent_id": "269", "first_letter": "g", "shorthand": "gx", "pinyin": "guanxian", "suffix": "", "code": "371525", "sort": "6" }, { "id": "1817", "name": "高唐", "parent_id": "269", "first_letter": "g", "shorthand": "gt", "pinyin": "gaotang", "suffix": "县", "code": "371526", "sort": "7" }, { "id": "1818", "name": "临清", "parent_id": "269", "first_letter": "l", "shorthand": "lq", "pinyin": "linqing", "suffix": "市", "code": "371581", "sort": "8" }, { "id": "1819", "name": "滨城", "parent_id": "270", "first_letter": "b", "shorthand": "bc", "pinyin": "bincheng", "suffix": "区", "code": "371602", "sort": "1" }, { "id": "1820", "name": "惠民", "parent_id": "270", "first_letter": "h", "shorthand": "hm", "pinyin": "huimin", "suffix": "县", "code": "371621", "sort": "2" }, { "id": "1821", "name": "阳信", "parent_id": "270", "first_letter": "y", "shorthand": "yx", "pinyin": "yangxin", "suffix": "县", "code": "371622", "sort": "3" }, { "id": "1822", "name": "无棣", "parent_id": "270", "first_letter": "w", "shorthand": "wd", "pinyin": "wudi", "suffix": "县", "code": "371623", "sort": "4" }, { "id": "1823", "name": "沾化", "parent_id": "270", "first_letter": "z", "shorthand": "zh", "pinyin": "zhanhua", "suffix": "区", "code": "371624", "sort": "5" }, { "id": "1824", "name": "博兴", "parent_id": "270", "first_letter": "b", "shorthand": "bx", "pinyin": "boxing", "suffix": "县", "code": "371625", "sort": "6" }, { "id": "1825", "name": "邹平", "parent_id": "270", "first_letter": "z", "shorthand": "zp", "pinyin": "zouping", "suffix": "县", "code": "371626", "sort": "7" }, { "id": "1826", "name": "牡丹", "parent_id": "271", "first_letter": "m", "shorthand": "md", "pinyin": "mudan", "suffix": "区", "code": "371702", "sort": "1" }, { "id": "1827", "name": "曹县", "parent_id": "271", "first_letter": "c", "shorthand": "cx", "pinyin": "caoxian", "suffix": "", "code": "371721", "sort": "2" }, { "id": "1828", "name": "单县", "parent_id": "271", "first_letter": "d", "shorthand": "dx", "pinyin": "danxian", "suffix": "", "code": "371722", "sort": "3" }, { "id": "1829", "name": "成武", "parent_id": "271", "first_letter": "c", "shorthand": "cw", "pinyin": "chengwu", "suffix": "县", "code": "371723", "sort": "4" }, { "id": "1830", "name": "巨野", "parent_id": "271", "first_letter": "j", "shorthand": "jy", "pinyin": "juye", "suffix": "县", "code": "371724", "sort": "5" }, { "id": "1831", "name": "郓城", "parent_id": "271", "first_letter": "y", "shorthand": "yc", "pinyin": "yuncheng", "suffix": "县", "code": "371725", "sort": "6" }, { "id": "1832", "name": "鄄城", "parent_id": "271", "first_letter": "j", "shorthand": "jc", "pinyin": "juancheng", "suffix": "县", "code": "371726", "sort": "7" }, { "id": "1833", "name": "定陶", "parent_id": "271", "first_letter": "d", "shorthand": "dt", "pinyin": "dingtao", "suffix": "县", "code": "371727", "sort": "8" }, { "id": "1834", "name": "东明", "parent_id": "271", "first_letter": "d", "shorthand": "dm", "pinyin": "dongming", "suffix": "县", "code": "371728", "sort": "9" }, { "id": "1835", "name": "中原", "parent_id": "272", "first_letter": "z", "shorthand": "zy", "pinyin": "zhongyuan", "suffix": "区", "code": "410102", "sort": "1" }, { "id": "1836", "name": "二七", "parent_id": "272", "first_letter": "e", "shorthand": "eq", "pinyin": "erqi", "suffix": "区", "code": "410103", "sort": "2" }, { "id": "1837", "name": "管城", "parent_id": "272", "first_letter": "g", "shorthand": "gc", "pinyin": "guancheng", "suffix": "区", "code": "410104", "sort": "3" }, { "id": "1838", "name": "金水", "parent_id": "272", "first_letter": "j", "shorthand": "js", "pinyin": "jinshui", "suffix": "区", "code": "410105", "sort": "4" }, { "id": "1839", "name": "上街", "parent_id": "272", "first_letter": "s", "shorthand": "sj", "pinyin": "shangjie", "suffix": "区", "code": "410106", "sort": "5" }, { "id": "1840", "name": "惠济", "parent_id": "272", "first_letter": "h", "shorthand": "hj", "pinyin": "huiji", "suffix": "区", "code": "410108", "sort": "6" }, { "id": "1841", "name": "中牟", "parent_id": "272", "first_letter": "z", "shorthand": "zm", "pinyin": "zhongmou", "suffix": "县", "code": "410122", "sort": "7" }, { "id": "1842", "name": "巩义", "parent_id": "272", "first_letter": "g", "shorthand": "gy", "pinyin": "gongyi", "suffix": "市", "code": "410181", "sort": "8" }, { "id": "1843", "name": "荥阳", "parent_id": "272", "first_letter": "y", "shorthand": "yy", "pinyin": "yingyang", "suffix": "市", "code": "410182", "sort": "9" }, { "id": "1844", "name": "新密", "parent_id": "272", "first_letter": "x", "shorthand": "xm", "pinyin": "xinmi", "suffix": "市", "code": "410183", "sort": "10" }, { "id": "1845", "name": "新郑", "parent_id": "272", "first_letter": "x", "shorthand": "xz", "pinyin": "xinzheng", "suffix": "市", "code": "410184", "sort": "11" }, { "id": "1846", "name": "登封", "parent_id": "272", "first_letter": "d", "shorthand": "df", "pinyin": "dengfeng", "suffix": "市", "code": "410185", "sort": "12" }, { "id": "1847", "name": "龙亭", "parent_id": "273", "first_letter": "l", "shorthand": "lt", "pinyin": "longting", "suffix": "区", "code": "410202", "sort": "1" }, { "id": "1848", "name": "顺河", "parent_id": "273", "first_letter": "s", "shorthand": "sh", "pinyin": "shunhe", "suffix": "区", "code": "410203", "sort": "2" }, { "id": "1849", "name": "鼓楼", "parent_id": "273", "first_letter": "g", "shorthand": "gl", "pinyin": "gulou", "suffix": "区", "code": "410204", "sort": "3" }, { "id": "1850", "name": "禹王台", "parent_id": "273", "first_letter": "y", "shorthand": "ywt", "pinyin": "yuwangtai", "suffix": "区", "code": "410205", "sort": "4" }, { "id": "1852", "name": "杞县", "parent_id": "273", "first_letter": "q", "shorthand": "qx", "pinyin": "qixian", "suffix": "", "code": "410221", "sort": "6" }, { "id": "1853", "name": "通许", "parent_id": "273", "first_letter": "t", "shorthand": "tx", "pinyin": "tongxu", "suffix": "县", "code": "410222", "sort": "7" }, { "id": "1854", "name": "尉氏", "parent_id": "273", "first_letter": "w", "shorthand": "ws", "pinyin": "weishi", "suffix": "县", "code": "410223", "sort": "8" }, { "id": "1855", "name": "祥符", "parent_id": "273", "first_letter": "x", "shorthand": "xf", "pinyin": "kaifeng", "suffix": "区", "code": "410212", "sort": "5" }, { "id": "1856", "name": "兰考", "parent_id": "273", "first_letter": "l", "shorthand": "lk", "pinyin": "lankao", "suffix": "县", "code": "410225", "sort": "9" }, { "id": "1857", "name": "老城", "parent_id": "274", "first_letter": "l", "shorthand": "lc", "pinyin": "laocheng", "suffix": "区", "code": "410302", "sort": "1" }, { "id": "1858", "name": "西工", "parent_id": "274", "first_letter": "x", "shorthand": "xg", "pinyin": "xigong", "suffix": "区", "code": "410303", "sort": "2" }, { "id": "1859", "name": "瀍河", "parent_id": "274", "first_letter": "c", "shorthand": "ch", "pinyin": "chanhe", "suffix": "区", "code": "410304", "sort": "3" }, { "id": "1860", "name": "涧西", "parent_id": "274", "first_letter": "j", "shorthand": "jx", "pinyin": "jianxi", "suffix": "区", "code": "410305", "sort": "4" }, { "id": "1861", "name": "吉利", "parent_id": "274", "first_letter": "j", "shorthand": "jl", "pinyin": "jili", "suffix": "区", "code": "410306", "sort": "5" }, { "id": "1862", "name": "洛龙", "parent_id": "274", "first_letter": "l", "shorthand": "ll", "pinyin": "luolong", "suffix": "区", "code": "410311", "sort": "6" }, { "id": "1863", "name": "孟津", "parent_id": "274", "first_letter": "m", "shorthand": "mj", "pinyin": "mengjin", "suffix": "县", "code": "410322", "sort": "7" }, { "id": "1864", "name": "新安", "parent_id": "274", "first_letter": "x", "shorthand": "xa", "pinyin": "xinan", "suffix": "县", "code": "410323", "sort": "8" }, { "id": "1865", "name": "栾川", "parent_id": "274", "first_letter": "l", "shorthand": "lc", "pinyin": "luanchuan", "suffix": "县", "code": "410324", "sort": "9" }, { "id": "1866", "name": "嵩县", "parent_id": "274", "first_letter": "s", "shorthand": "sx", "pinyin": "songxian", "suffix": "", "code": "410325", "sort": "10" }, { "id": "1867", "name": "汝阳", "parent_id": "274", "first_letter": "r", "shorthand": "ry", "pinyin": "ruyang", "suffix": "县", "code": "410326", "sort": "11" }, { "id": "1868", "name": "宜阳", "parent_id": "274", "first_letter": "y", "shorthand": "yy", "pinyin": "yiyang", "suffix": "县", "code": "410327", "sort": "12" }, { "id": "1869", "name": "洛宁", "parent_id": "274", "first_letter": "l", "shorthand": "ln", "pinyin": "luoning", "suffix": "县", "code": "410328", "sort": "13" }, { "id": "1870", "name": "伊川", "parent_id": "274", "first_letter": "y", "shorthand": "yc", "pinyin": "yichuan", "suffix": "县", "code": "410329", "sort": "14" }, { "id": "1871", "name": "偃师", "parent_id": "274", "first_letter": "y", "shorthand": "ys", "pinyin": "yanshi", "suffix": "市", "code": "410381", "sort": "15" }, { "id": "1872", "name": "新华", "parent_id": "275", "first_letter": "x", "shorthand": "xh", "pinyin": "xinhua", "suffix": "区", "code": "410402", "sort": "1" }, { "id": "1873", "name": "卫东", "parent_id": "275", "first_letter": "w", "shorthand": "wd", "pinyin": "weidong", "suffix": "区", "code": "410403", "sort": "2" }, { "id": "1874", "name": "石龙", "parent_id": "275", "first_letter": "s", "shorthand": "sl", "pinyin": "shilong", "suffix": "区", "code": "410404", "sort": "3" }, { "id": "1875", "name": "湛河", "parent_id": "275", "first_letter": "z", "shorthand": "zh", "pinyin": "zhanhe", "suffix": "区", "code": "410411", "sort": "4" }, { "id": "1876", "name": "宝丰", "parent_id": "275", "first_letter": "b", "shorthand": "bf", "pinyin": "baofeng", "suffix": "县", "code": "410421", "sort": "5" }, { "id": "1877", "name": "叶县", "parent_id": "275", "first_letter": "y", "shorthand": "yx", "pinyin": "yexian", "suffix": "", "code": "410422", "sort": "6" }, { "id": "1878", "name": "鲁山", "parent_id": "275", "first_letter": "l", "shorthand": "ls", "pinyin": "lushan", "suffix": "县", "code": "410423", "sort": "7" }, { "id": "1879", "name": "郏县", "parent_id": "275", "first_letter": "j", "shorthand": "jx", "pinyin": "jiaxian", "suffix": "", "code": "410425", "sort": "8" }, { "id": "1880", "name": "舞钢", "parent_id": "275", "first_letter": "w", "shorthand": "wg", "pinyin": "wugang", "suffix": "市", "code": "410481", "sort": "9" }, { "id": "1881", "name": "汝州", "parent_id": "275", "first_letter": "r", "shorthand": "rz", "pinyin": "ruzhou", "suffix": "市", "code": "410482", "sort": "10" }, { "id": "1882", "name": "文峰", "parent_id": "276", "first_letter": "w", "shorthand": "wf", "pinyin": "wenfeng", "suffix": "区", "code": "410502", "sort": "1" }, { "id": "1883", "name": "北关", "parent_id": "276", "first_letter": "b", "shorthand": "bg", "pinyin": "beiguan", "suffix": "区", "code": "410503", "sort": "2" }, { "id": "1884", "name": "殷都", "parent_id": "276", "first_letter": "y", "shorthand": "yd", "pinyin": "yindou", "suffix": "区", "code": "410505", "sort": "3" }, { "id": "1885", "name": "龙安", "parent_id": "276", "first_letter": "l", "shorthand": "la", "pinyin": "longan", "suffix": "区", "code": "410506", "sort": "4" }, { "id": "1886", "name": "安阳", "parent_id": "276", "first_letter": "a", "shorthand": "ay", "pinyin": "anyang", "suffix": "县", "code": "410522", "sort": "5" }, { "id": "1887", "name": "汤阴", "parent_id": "276", "first_letter": "t", "shorthand": "ty", "pinyin": "tangyin", "suffix": "县", "code": "410523", "sort": "6" }, { "id": "1888", "name": "滑县", "parent_id": "276", "first_letter": "h", "shorthand": "hx", "pinyin": "huaxian", "suffix": "", "code": "410526", "sort": "7" }, { "id": "1889", "name": "内黄", "parent_id": "276", "first_letter": "n", "shorthand": "nh", "pinyin": "neihuang", "suffix": "县", "code": "410527", "sort": "8" }, { "id": "1890", "name": "林州", "parent_id": "276", "first_letter": "l", "shorthand": "lz", "pinyin": "linzhou", "suffix": "市", "code": "410581", "sort": "9" }, { "id": "1891", "name": "鹤山", "parent_id": "277", "first_letter": "h", "shorthand": "hs", "pinyin": "heshan", "suffix": "区", "code": "410602", "sort": "1" }, { "id": "1892", "name": "山城", "parent_id": "277", "first_letter": "s", "shorthand": "sc", "pinyin": "shancheng", "suffix": "区", "code": "410603", "sort": "2" }, { "id": "1893", "name": "淇滨", "parent_id": "277", "first_letter": "q", "shorthand": "qb", "pinyin": "qibin", "suffix": "区", "code": "410611", "sort": "3" }, { "id": "1894", "name": "浚县", "parent_id": "277", "first_letter": "j", "shorthand": "jx", "pinyin": "junxian", "suffix": "", "code": "410621", "sort": "4" }, { "id": "1895", "name": "淇县", "parent_id": "277", "first_letter": "q", "shorthand": "qx", "pinyin": "qixian", "suffix": "", "code": "410622", "sort": "5" }, { "id": "1896", "name": "红旗", "parent_id": "278", "first_letter": "h", "shorthand": "hq", "pinyin": "hongqi", "suffix": "区", "code": "410702", "sort": "1" }, { "id": "1897", "name": "卫滨", "parent_id": "278", "first_letter": "w", "shorthand": "wb", "pinyin": "weibin", "suffix": "区", "code": "410703", "sort": "2" }, { "id": "1898", "name": "凤泉", "parent_id": "278", "first_letter": "f", "shorthand": "fq", "pinyin": "fengquan", "suffix": "区", "code": "410704", "sort": "3" }, { "id": "1899", "name": "牧野", "parent_id": "278", "first_letter": "m", "shorthand": "my", "pinyin": "muye", "suffix": "区", "code": "410711", "sort": "4" }, { "id": "1900", "name": "新乡", "parent_id": "278", "first_letter": "x", "shorthand": "xx", "pinyin": "xinxiang", "suffix": "县", "code": "410721", "sort": "5" }, { "id": "1901", "name": "获嘉", "parent_id": "278", "first_letter": "h", "shorthand": "hj", "pinyin": "huojia", "suffix": "县", "code": "410724", "sort": "6" }, { "id": "1902", "name": "原阳", "parent_id": "278", "first_letter": "y", "shorthand": "yy", "pinyin": "yuanyang", "suffix": "县", "code": "410725", "sort": "7" }, { "id": "1903", "name": "延津", "parent_id": "278", "first_letter": "y", "shorthand": "yj", "pinyin": "yanjin", "suffix": "县", "code": "410726", "sort": "8" }, { "id": "1904", "name": "封丘", "parent_id": "278", "first_letter": "f", "shorthand": "fq", "pinyin": "fengqiu", "suffix": "县", "code": "410727", "sort": "9" }, { "id": "1905", "name": "长垣", "parent_id": "278", "first_letter": "z", "shorthand": "zy", "pinyin": "zhangyuan", "suffix": "县", "code": "410728", "sort": "10" }, { "id": "1906", "name": "卫辉", "parent_id": "278", "first_letter": "w", "shorthand": "wh", "pinyin": "weihui", "suffix": "市", "code": "410781", "sort": "11" }, { "id": "1907", "name": "辉县", "parent_id": "278", "first_letter": "h", "shorthand": "hx", "pinyin": "huixian", "suffix": "市", "code": "410782", "sort": "12" }, { "id": "1908", "name": "解放", "parent_id": "279", "first_letter": "j", "shorthand": "jf", "pinyin": "jiefang", "suffix": "区", "code": "410802", "sort": "1" }, { "id": "1909", "name": "中站", "parent_id": "279", "first_letter": "z", "shorthand": "zz", "pinyin": "zhongzhan", "suffix": "区", "code": "410803", "sort": "2" }, { "id": "1910", "name": "马村", "parent_id": "279", "first_letter": "m", "shorthand": "mc", "pinyin": "macun", "suffix": "区", "code": "410804", "sort": "3" }, { "id": "1911", "name": "山阳", "parent_id": "279", "first_letter": "s", "shorthand": "sy", "pinyin": "shanyang", "suffix": "区", "code": "410811", "sort": "4" }, { "id": "1912", "name": "修武", "parent_id": "279", "first_letter": "x", "shorthand": "xw", "pinyin": "xiuwu", "suffix": "县", "code": "410821", "sort": "5" }, { "id": "1913", "name": "博爱", "parent_id": "279", "first_letter": "b", "shorthand": "ba", "pinyin": "boai", "suffix": "县", "code": "410822", "sort": "6" }, { "id": "1914", "name": "武陟", "parent_id": "279", "first_letter": "w", "shorthand": "wz", "pinyin": "wuzhi", "suffix": "县", "code": "410823", "sort": "7" }, { "id": "1915", "name": "温县", "parent_id": "279", "first_letter": "w", "shorthand": "wx", "pinyin": "wenxian", "suffix": "", "code": "410825", "sort": "8" }, { "id": "1916", "name": "沁阳", "parent_id": "279", "first_letter": "q", "shorthand": "qy", "pinyin": "qinyang", "suffix": "市", "code": "410882", "sort": "9" }, { "id": "1917", "name": "孟州", "parent_id": "279", "first_letter": "m", "shorthand": "mz", "pinyin": "mengzhou", "suffix": "市", "code": "410883", "sort": "10" }, { "id": "1918", "name": "华龙", "parent_id": "280", "first_letter": "h", "shorthand": "hl", "pinyin": "hualong", "suffix": "区", "code": "410902", "sort": "1" }, { "id": "1919", "name": "清丰", "parent_id": "280", "first_letter": "q", "shorthand": "qf", "pinyin": "qingfeng", "suffix": "县", "code": "410922", "sort": "2" }, { "id": "1920", "name": "南乐", "parent_id": "280", "first_letter": "n", "shorthand": "nl", "pinyin": "nanle", "suffix": "县", "code": "410923", "sort": "3" }, { "id": "1921", "name": "范县", "parent_id": "280", "first_letter": "f", "shorthand": "fx", "pinyin": "fanxian", "suffix": "", "code": "410926", "sort": "4" }, { "id": "1922", "name": "台前", "parent_id": "280", "first_letter": "t", "shorthand": "tq", "pinyin": "taiqian", "suffix": "县", "code": "410927", "sort": "5" }, { "id": "1923", "name": "濮阳", "parent_id": "280", "first_letter": "p", "shorthand": "py", "pinyin": "puyang", "suffix": "县", "code": "410928", "sort": "6" }, { "id": "1924", "name": "魏都", "parent_id": "281", "first_letter": "w", "shorthand": "wd", "pinyin": "weidou", "suffix": "区", "code": "411002", "sort": "1" }, { "id": "1925", "name": "许昌", "parent_id": "281", "first_letter": "x", "shorthand": "xc", "pinyin": "xuchang", "suffix": "县", "code": "411023", "sort": "2" }, { "id": "1926", "name": "鄢陵", "parent_id": "281", "first_letter": "y", "shorthand": "yl", "pinyin": "yanling", "suffix": "县", "code": "411024", "sort": "3" }, { "id": "1927", "name": "襄城", "parent_id": "281", "first_letter": "x", "shorthand": "xc", "pinyin": "xiangcheng", "suffix": "县", "code": "411025", "sort": "4" }, { "id": "1928", "name": "禹州", "parent_id": "281", "first_letter": "y", "shorthand": "yz", "pinyin": "yuzhou", "suffix": "市", "code": "411081", "sort": "5" }, { "id": "1929", "name": "长葛", "parent_id": "281", "first_letter": "z", "shorthand": "zg", "pinyin": "zhangge", "suffix": "市", "code": "411082", "sort": "6" }, { "id": "1930", "name": "源汇", "parent_id": "282", "first_letter": "y", "shorthand": "yh", "pinyin": "yuanhui", "suffix": "区", "code": "411102", "sort": "1" }, { "id": "1931", "name": "郾城", "parent_id": "282", "first_letter": "y", "shorthand": "yc", "pinyin": "yancheng", "suffix": "区", "code": "411103", "sort": "2" }, { "id": "1932", "name": "召陵", "parent_id": "282", "first_letter": "z", "shorthand": "zl", "pinyin": "zhaoling", "suffix": "区", "code": "411104", "sort": "3" }, { "id": "1933", "name": "舞阳", "parent_id": "282", "first_letter": "w", "shorthand": "wy", "pinyin": "wuyang", "suffix": "县", "code": "411121", "sort": "4" }, { "id": "1934", "name": "临颍", "parent_id": "282", "first_letter": "l", "shorthand": "ly", "pinyin": "linying", "suffix": "县", "code": "411122", "sort": "5" }, { "id": "1935", "name": "湖滨", "parent_id": "283", "first_letter": "h", "shorthand": "hb", "pinyin": "hubin", "suffix": "区", "code": "411202", "sort": "1" }, { "id": "1936", "name": "渑池", "parent_id": "283", "first_letter": "m", "shorthand": "mc", "pinyin": "mianchi", "suffix": "县", "code": "411221", "sort": "3" }, { "id": "1937", "name": "陕州", "parent_id": "283", "first_letter": "s", "shorthand": "sz", "pinyin": "shanzhou", "suffix": "区", "code": "411222", "sort": "2" }, { "id": "1938", "name": "卢氏", "parent_id": "283", "first_letter": "l", "shorthand": "ls", "pinyin": "lushi", "suffix": "县", "code": "411224", "sort": "4" }, { "id": "1939", "name": "义马", "parent_id": "283", "first_letter": "y", "shorthand": "ym", "pinyin": "yima", "suffix": "市", "code": "411281", "sort": "5" }, { "id": "1940", "name": "灵宝", "parent_id": "283", "first_letter": "l", "shorthand": "lb", "pinyin": "lingbao", "suffix": "市", "code": "411282", "sort": "6" }, { "id": "1941", "name": "宛城", "parent_id": "284", "first_letter": "w", "shorthand": "wc", "pinyin": "wancheng", "suffix": "区", "code": "411302", "sort": "1" }, { "id": "1942", "name": "卧龙", "parent_id": "284", "first_letter": "w", "shorthand": "wl", "pinyin": "wolong", "suffix": "区", "code": "411303", "sort": "2" }, { "id": "1943", "name": "南召", "parent_id": "284", "first_letter": "n", "shorthand": "nz", "pinyin": "nanzhao", "suffix": "县", "code": "411321", "sort": "3" }, { "id": "1944", "name": "方城", "parent_id": "284", "first_letter": "f", "shorthand": "fc", "pinyin": "fangcheng", "suffix": "县", "code": "411322", "sort": "4" }, { "id": "1945", "name": "西峡", "parent_id": "284", "first_letter": "x", "shorthand": "xx", "pinyin": "xixia", "suffix": "县", "code": "411323", "sort": "5" }, { "id": "1946", "name": "镇平", "parent_id": "284", "first_letter": "z", "shorthand": "zp", "pinyin": "zhenping", "suffix": "县", "code": "411324", "sort": "6" }, { "id": "1947", "name": "内乡", "parent_id": "284", "first_letter": "n", "shorthand": "nx", "pinyin": "neixiang", "suffix": "县", "code": "411325", "sort": "7" }, { "id": "1948", "name": "淅川", "parent_id": "284", "first_letter": "x", "shorthand": "xc", "pinyin": "xichuan", "suffix": "县", "code": "411326", "sort": "8" }, { "id": "1949", "name": "社旗", "parent_id": "284", "first_letter": "s", "shorthand": "sq", "pinyin": "sheqi", "suffix": "县", "code": "411327", "sort": "9" }, { "id": "1950", "name": "唐河", "parent_id": "284", "first_letter": "t", "shorthand": "th", "pinyin": "tanghe", "suffix": "县", "code": "411328", "sort": "10" }, { "id": "1951", "name": "新野", "parent_id": "284", "first_letter": "x", "shorthand": "xy", "pinyin": "xinye", "suffix": "县", "code": "411329", "sort": "11" }, { "id": "1952", "name": "桐柏", "parent_id": "284", "first_letter": "t", "shorthand": "tb", "pinyin": "tongbo", "suffix": "县", "code": "411330", "sort": "12" }, { "id": "1953", "name": "邓州", "parent_id": "284", "first_letter": "d", "shorthand": "dz", "pinyin": "dengzhou", "suffix": "市", "code": "411381", "sort": "13" }, { "id": "1954", "name": "粱园", "parent_id": "285", "first_letter": "l", "shorthand": "ly", "pinyin": "liangyuan", "suffix": "区", "code": "411402", "sort": "1" }, { "id": "1955", "name": "睢阳", "parent_id": "285", "first_letter": "s", "shorthand": "sy", "pinyin": "suiyang", "suffix": "区", "code": "411403", "sort": "2" }, { "id": "1956", "name": "民权", "parent_id": "285", "first_letter": "m", "shorthand": "mq", "pinyin": "minquan", "suffix": "县", "code": "411421", "sort": "3" }, { "id": "1957", "name": "睢县", "parent_id": "285", "first_letter": "s", "shorthand": "sx", "pinyin": "suixian", "suffix": "", "code": "411422", "sort": "4" }, { "id": "1958", "name": "宁陵", "parent_id": "285", "first_letter": "n", "shorthand": "nl", "pinyin": "ningling", "suffix": "县", "code": "411423", "sort": "5" }, { "id": "1959", "name": "柘城", "parent_id": "285", "first_letter": "z", "shorthand": "zc", "pinyin": "zhecheng", "suffix": "县", "code": "411424", "sort": "6" }, { "id": "1960", "name": "虞城", "parent_id": "285", "first_letter": "y", "shorthand": "yc", "pinyin": "yucheng", "suffix": "县", "code": "411425", "sort": "7" }, { "id": "1961", "name": "夏邑", "parent_id": "285", "first_letter": "x", "shorthand": "xy", "pinyin": "xiayi", "suffix": "县", "code": "411426", "sort": "8" }, { "id": "1962", "name": "永城", "parent_id": "285", "first_letter": "y", "shorthand": "yc", "pinyin": "yongcheng", "suffix": "市", "code": "411481", "sort": "9" }, { "id": "1963", "name": "浉河", "parent_id": "286", "first_letter": "s", "shorthand": "sh", "pinyin": "shihe", "suffix": "区", "code": "411502", "sort": "1" }, { "id": "1964", "name": "平桥", "parent_id": "286", "first_letter": "p", "shorthand": "pq", "pinyin": "pingqiao", "suffix": "区", "code": "411503", "sort": "2" }, { "id": "1965", "name": "罗山", "parent_id": "286", "first_letter": "l", "shorthand": "ls", "pinyin": "luoshan", "suffix": "县", "code": "411521", "sort": "3" }, { "id": "1966", "name": "光山", "parent_id": "286", "first_letter": "g", "shorthand": "gs", "pinyin": "guangshan", "suffix": "县", "code": "411522", "sort": "4" }, { "id": "1967", "name": "新县", "parent_id": "286", "first_letter": "x", "shorthand": "xx", "pinyin": "xinxian", "suffix": "", "code": "411523", "sort": "5" }, { "id": "1968", "name": "商城", "parent_id": "286", "first_letter": "s", "shorthand": "sc", "pinyin": "shangcheng", "suffix": "县", "code": "411524", "sort": "6" }, { "id": "1969", "name": "固始", "parent_id": "286", "first_letter": "g", "shorthand": "gs", "pinyin": "gushi", "suffix": "县", "code": "411525", "sort": "7" }, { "id": "1970", "name": "潢川", "parent_id": "286", "first_letter": "h", "shorthand": "hc", "pinyin": "huangchuan", "suffix": "县", "code": "411526", "sort": "8" }, { "id": "1971", "name": "淮滨", "parent_id": "286", "first_letter": "h", "shorthand": "hb", "pinyin": "huaibin", "suffix": "县", "code": "411527", "sort": "9" }, { "id": "1972", "name": "息县", "parent_id": "286", "first_letter": "x", "shorthand": "xx", "pinyin": "xixian", "suffix": "", "code": "411528", "sort": "10" }, { "id": "1973", "name": "川汇", "parent_id": "287", "first_letter": "c", "shorthand": "ch", "pinyin": "chuanhui", "suffix": "区", "code": "411602", "sort": "1" }, { "id": "1974", "name": "扶沟", "parent_id": "287", "first_letter": "f", "shorthand": "fg", "pinyin": "fugou", "suffix": "县", "code": "411621", "sort": "2" }, { "id": "1975", "name": "西华", "parent_id": "287", "first_letter": "x", "shorthand": "xh", "pinyin": "xihua", "suffix": "县", "code": "411622", "sort": "3" }, { "id": "1976", "name": "商水", "parent_id": "287", "first_letter": "s", "shorthand": "ss", "pinyin": "shangshui", "suffix": "县", "code": "411623", "sort": "4" }, { "id": "1977", "name": "沈丘", "parent_id": "287", "first_letter": "s", "shorthand": "sq", "pinyin": "shenqiu", "suffix": "县", "code": "411624", "sort": "5" }, { "id": "1978", "name": "郸城", "parent_id": "287", "first_letter": "d", "shorthand": "dc", "pinyin": "dancheng", "suffix": "县", "code": "411625", "sort": "6" }, { "id": "1979", "name": "淮阳", "parent_id": "287", "first_letter": "h", "shorthand": "hy", "pinyin": "huaiyang", "suffix": "县", "code": "411626", "sort": "7" }, { "id": "1980", "name": "太康", "parent_id": "287", "first_letter": "t", "shorthand": "tk", "pinyin": "taikang", "suffix": "县", "code": "411627", "sort": "8" }, { "id": "1981", "name": "鹿邑", "parent_id": "287", "first_letter": "l", "shorthand": "ly", "pinyin": "luyi", "suffix": "县", "code": "411628", "sort": "9" }, { "id": "1982", "name": "项城", "parent_id": "287", "first_letter": "x", "shorthand": "xc", "pinyin": "xiangcheng", "suffix": "市", "code": "411681", "sort": "10" }, { "id": "1983", "name": "驿城", "parent_id": "288", "first_letter": "y", "shorthand": "yc", "pinyin": "yicheng", "suffix": "区", "code": "411702", "sort": "1" }, { "id": "1984", "name": "西平", "parent_id": "288", "first_letter": "x", "shorthand": "xp", "pinyin": "xiping", "suffix": "县", "code": "411721", "sort": "2" }, { "id": "1985", "name": "上蔡", "parent_id": "288", "first_letter": "s", "shorthand": "sc", "pinyin": "shangcai", "suffix": "县", "code": "411722", "sort": "3" }, { "id": "1986", "name": "平舆", "parent_id": "288", "first_letter": "p", "shorthand": "py", "pinyin": "pingyu", "suffix": "县", "code": "411723", "sort": "4" }, { "id": "1987", "name": "正阳", "parent_id": "288", "first_letter": "z", "shorthand": "zy", "pinyin": "zhengyang", "suffix": "县", "code": "411724", "sort": "5" }, { "id": "1988", "name": "确山", "parent_id": "288", "first_letter": "q", "shorthand": "qs", "pinyin": "queshan", "suffix": "县", "code": "411725", "sort": "6" }, { "id": "1989", "name": "泌阳", "parent_id": "288", "first_letter": "m", "shorthand": "my", "pinyin": "miyang", "suffix": "县", "code": "411726", "sort": "7" }, { "id": "1990", "name": "汝南", "parent_id": "288", "first_letter": "r", "shorthand": "rn", "pinyin": "runan", "suffix": "县", "code": "411727", "sort": "8" }, { "id": "1991", "name": "遂平", "parent_id": "288", "first_letter": "s", "shorthand": "sp", "pinyin": "suiping", "suffix": "县", "code": "411728", "sort": "9" }, { "id": "1992", "name": "新蔡", "parent_id": "288", "first_letter": "x", "shorthand": "xc", "pinyin": "xincai", "suffix": "县", "code": "411729", "sort": "10" }, { "id": "1993", "name": "江岸", "parent_id": "290", "first_letter": "j", "shorthand": "ja", "pinyin": "jiangan", "suffix": "区", "code": "420102", "sort": "1" }, { "id": "1994", "name": "江汉", "parent_id": "290", "first_letter": "j", "shorthand": "jh", "pinyin": "jianghan", "suffix": "区", "code": "420103", "sort": "2" }, { "id": "1995", "name": "硚口", "parent_id": "290", "first_letter": "q", "shorthand": "qk", "pinyin": "qiaokou", "suffix": "区", "code": "420104", "sort": "3" }, { "id": "1996", "name": "汉阳", "parent_id": "290", "first_letter": "h", "shorthand": "hy", "pinyin": "hanyang", "suffix": "区", "code": "420105", "sort": "4" }, { "id": "1997", "name": "武昌", "parent_id": "290", "first_letter": "w", "shorthand": "wc", "pinyin": "wuchang", "suffix": "区", "code": "420106", "sort": "5" }, { "id": "1998", "name": "青山", "parent_id": "290", "first_letter": "q", "shorthand": "qs", "pinyin": "qingshan", "suffix": "区", "code": "420107", "sort": "6" }, { "id": "1999", "name": "洪山", "parent_id": "290", "first_letter": "h", "shorthand": "hs", "pinyin": "hongshan", "suffix": "区", "code": "420111", "sort": "7" }, { "id": "2000", "name": "东西湖", "parent_id": "290", "first_letter": "d", "shorthand": "dxh", "pinyin": "dongxihu", "suffix": "区", "code": "420112", "sort": "8" }, { "id": "2001", "name": "汉南", "parent_id": "290", "first_letter": "h", "shorthand": "hn", "pinyin": "hannan", "suffix": "区", "code": "420113", "sort": "9" }, { "id": "2002", "name": "蔡甸", "parent_id": "290", "first_letter": "c", "shorthand": "cd", "pinyin": "caidian", "suffix": "区", "code": "420114", "sort": "10" }, { "id": "2003", "name": "江夏", "parent_id": "290", "first_letter": "j", "shorthand": "jx", "pinyin": "jiangxia", "suffix": "区", "code": "420115", "sort": "11" }, { "id": "2004", "name": "黄陂", "parent_id": "290", "first_letter": "h", "shorthand": "hp", "pinyin": "huangpo", "suffix": "区", "code": "420116", "sort": "12" }, { "id": "2005", "name": "新洲", "parent_id": "290", "first_letter": "x", "shorthand": "xz", "pinyin": "xinzhou", "suffix": "区", "code": "420117", "sort": "13" }, { "id": "2006", "name": "黄石港", "parent_id": "291", "first_letter": "h", "shorthand": "hsg", "pinyin": "huangshigang", "suffix": "区", "code": "420202", "sort": "1" }, { "id": "2007", "name": "西塞山", "parent_id": "291", "first_letter": "x", "shorthand": "xss", "pinyin": "xisaishan", "suffix": "区", "code": "420203", "sort": "2" }, { "id": "2008", "name": "下陆", "parent_id": "291", "first_letter": "x", "shorthand": "xl", "pinyin": "xialu", "suffix": "区", "code": "420204", "sort": "3" }, { "id": "2009", "name": "铁山", "parent_id": "291", "first_letter": "t", "shorthand": "ts", "pinyin": "tieshan", "suffix": "区", "code": "420205", "sort": "4" }, { "id": "2010", "name": "阳新", "parent_id": "291", "first_letter": "y", "shorthand": "yx", "pinyin": "yangxin", "suffix": "县", "code": "420222", "sort": "5" }, { "id": "2011", "name": "大冶", "parent_id": "291", "first_letter": "d", "shorthand": "dy", "pinyin": "daye", "suffix": "市", "code": "420281", "sort": "6" }, { "id": "2012", "name": "茅箭", "parent_id": "292", "first_letter": "m", "shorthand": "mj", "pinyin": "maojian", "suffix": "区", "code": "420302", "sort": "1" }, { "id": "2013", "name": "张湾", "parent_id": "292", "first_letter": "z", "shorthand": "zw", "pinyin": "zhangwan", "suffix": "区", "code": "420303", "sort": "2" }, { "id": "2014", "name": "郧阳", "parent_id": "292", "first_letter": "y", "shorthand": "yy", "pinyin": "yunyang", "suffix": "区", "code": "420304", "sort": "3" }, { "id": "2015", "name": "郧西", "parent_id": "292", "first_letter": "y", "shorthand": "yx", "pinyin": "yunxi", "suffix": "县", "code": "420322", "sort": "4" }, { "id": "2016", "name": "竹山", "parent_id": "292", "first_letter": "z", "shorthand": "zs", "pinyin": "zhushan", "suffix": "县", "code": "420323", "sort": "5" }, { "id": "2017", "name": "竹溪", "parent_id": "292", "first_letter": "z", "shorthand": "zx", "pinyin": "zhuxi", "suffix": "县", "code": "420324", "sort": "6" }, { "id": "2018", "name": "房县", "parent_id": "292", "first_letter": "f", "shorthand": "fx", "pinyin": "fangxian", "suffix": "", "code": "420325", "sort": "7" }, { "id": "2019", "name": "丹江口", "parent_id": "292", "first_letter": "d", "shorthand": "djk", "pinyin": "danjiangkou", "suffix": "市", "code": "420381", "sort": "8" }, { "id": "2020", "name": "西陵", "parent_id": "293", "first_letter": "x", "shorthand": "xl", "pinyin": "xiling", "suffix": "区", "code": "420502", "sort": "1" }, { "id": "2021", "name": "伍家岗", "parent_id": "293", "first_letter": "w", "shorthand": "wjg", "pinyin": "wujiagang", "suffix": "区", "code": "420503", "sort": "2" }, { "id": "2022", "name": "点军", "parent_id": "293", "first_letter": "d", "shorthand": "dj", "pinyin": "dianjun", "suffix": "区", "code": "420504", "sort": "3" }, { "id": "2023", "name": "虢亭", "parent_id": "293", "first_letter": "g", "shorthand": "gt", "pinyin": "guoting", "suffix": "区", "code": "420505", "sort": "4" }, { "id": "2024", "name": "夷陵", "parent_id": "293", "first_letter": "y", "shorthand": "yl", "pinyin": "yiling", "suffix": "区", "code": "420506", "sort": "5" }, { "id": "2025", "name": "远安", "parent_id": "293", "first_letter": "y", "shorthand": "ya", "pinyin": "yuanan", "suffix": "县", "code": "420525", "sort": "6" }, { "id": "2026", "name": "兴山", "parent_id": "293", "first_letter": "x", "shorthand": "xs", "pinyin": "xingshan", "suffix": "县", "code": "420526", "sort": "7" }, { "id": "2027", "name": "秭归", "parent_id": "293", "first_letter": "z", "shorthand": "zg", "pinyin": "zigui", "suffix": "县", "code": "420527", "sort": "8" }, { "id": "2028", "name": "长阳", "parent_id": "293", "first_letter": "z", "shorthand": "zy", "pinyin": "zhangyang", "suffix": "自治县", "code": "420528", "sort": "9" }, { "id": "2029", "name": "五峰", "parent_id": "293", "first_letter": "w", "shorthand": "wf", "pinyin": "wufeng", "suffix": "自治县", "code": "420529", "sort": "10" }, { "id": "2030", "name": "宜都", "parent_id": "293", "first_letter": "y", "shorthand": "yd", "pinyin": "yidou", "suffix": "市", "code": "420581", "sort": "11" }, { "id": "2031", "name": "当阳", "parent_id": "293", "first_letter": "d", "shorthand": "dy", "pinyin": "dangyang", "suffix": "市", "code": "420582", "sort": "12" }, { "id": "2032", "name": "枝江", "parent_id": "293", "first_letter": "z", "shorthand": "zj", "pinyin": "zhijiang", "suffix": "市", "code": "420583", "sort": "13" }, { "id": "2033", "name": "襄城", "parent_id": "294", "first_letter": "x", "shorthand": "xc", "pinyin": "xiangcheng", "suffix": "区", "code": "420602", "sort": "1" }, { "id": "2034", "name": "樊城", "parent_id": "294", "first_letter": "f", "shorthand": "fc", "pinyin": "fancheng", "suffix": "区", "code": "420606", "sort": "2" }, { "id": "2035", "name": "襄州", "parent_id": "294", "first_letter": "x", "shorthand": "xz", "pinyin": "xiangzhou", "suffix": "区", "code": "420607", "sort": "3" }, { "id": "2036", "name": "南漳", "parent_id": "294", "first_letter": "n", "shorthand": "nz", "pinyin": "nanzhang", "suffix": "县", "code": "420624", "sort": "4" }, { "id": "2037", "name": "谷城", "parent_id": "294", "first_letter": "g", "shorthand": "gc", "pinyin": "gucheng", "suffix": "县", "code": "420625", "sort": "5" }, { "id": "2038", "name": "保康", "parent_id": "294", "first_letter": "b", "shorthand": "bk", "pinyin": "baokang", "suffix": "县", "code": "420626", "sort": "6" }, { "id": "2039", "name": "老河口", "parent_id": "294", "first_letter": "l", "shorthand": "lhk", "pinyin": "laohekou", "suffix": "市", "code": "420682", "sort": "7" }, { "id": "2040", "name": "枣阳", "parent_id": "294", "first_letter": "z", "shorthand": "zy", "pinyin": "zaoyang", "suffix": "市", "code": "420683", "sort": "8" }, { "id": "2041", "name": "宜城", "parent_id": "294", "first_letter": "y", "shorthand": "yc", "pinyin": "yicheng", "suffix": "市", "code": "420684", "sort": "9" }, { "id": "2042", "name": "粱子湖", "parent_id": "295", "first_letter": "l", "shorthand": "lzh", "pinyin": "liangzihu", "suffix": "区", "code": "420702", "sort": "1" }, { "id": "2043", "name": "华容", "parent_id": "295", "first_letter": "h", "shorthand": "hr", "pinyin": "huarong", "suffix": "区", "code": "420703", "sort": "2" }, { "id": "2044", "name": "鄂城", "parent_id": "295", "first_letter": "e", "shorthand": "ec", "pinyin": "echeng", "suffix": "区", "code": "420704", "sort": "3" }, { "id": "2045", "name": "东宝", "parent_id": "296", "first_letter": "d", "shorthand": "db", "pinyin": "dongbao", "suffix": "区", "code": "420802", "sort": "1" }, { "id": "2046", "name": "掇刀", "parent_id": "296", "first_letter": "d", "shorthand": "dd", "pinyin": "duodao", "suffix": "区", "code": "420804", "sort": "2" }, { "id": "2047", "name": "京山", "parent_id": "296", "first_letter": "j", "shorthand": "js", "pinyin": "jingshan", "suffix": "县", "code": "420821", "sort": "3" }, { "id": "2048", "name": "沙洋", "parent_id": "296", "first_letter": "s", "shorthand": "sy", "pinyin": "shayang", "suffix": "县", "code": "420822", "sort": "4" }, { "id": "2049", "name": "钟祥", "parent_id": "296", "first_letter": "z", "shorthand": "zx", "pinyin": "zhongxiang", "suffix": "市", "code": "420881", "sort": "5" }, { "id": "2050", "name": "孝南", "parent_id": "297", "first_letter": "x", "shorthand": "xn", "pinyin": "xiaonan", "suffix": "区", "code": "420902", "sort": "1" }, { "id": "2051", "name": "大悟", "parent_id": "297", "first_letter": "d", "shorthand": "dw", "pinyin": "dawu", "suffix": "县", "code": "420922", "sort": "2" }, { "id": "2052", "name": "云梦", "parent_id": "297", "first_letter": "y", "shorthand": "ym", "pinyin": "yunmeng", "suffix": "县", "code": "420923", "sort": "3" }, { "id": "2053", "name": "应城", "parent_id": "297", "first_letter": "y", "shorthand": "yc", "pinyin": "yingcheng", "suffix": "市", "code": "420981", "sort": "4" }, { "id": "2054", "name": "安陆", "parent_id": "297", "first_letter": "a", "shorthand": "al", "pinyin": "anlu", "suffix": "市", "code": "420982", "sort": "5" }, { "id": "2055", "name": "汉川", "parent_id": "297", "first_letter": "h", "shorthand": "hc", "pinyin": "hanchuan", "suffix": "市", "code": "420984", "sort": "6" }, { "id": "2056", "name": "沙市", "parent_id": "298", "first_letter": "s", "shorthand": "ss", "pinyin": "shashi", "suffix": "区", "code": "421002", "sort": "1" }, { "id": "2057", "name": "荆州", "parent_id": "298", "first_letter": "j", "shorthand": "jz", "pinyin": "jingzhou", "suffix": "区", "code": "421003", "sort": "2" }, { "id": "2058", "name": "公安", "parent_id": "298", "first_letter": "g", "shorthand": "ga", "pinyin": "gongan", "suffix": "县", "code": "421022", "sort": "3" }, { "id": "2059", "name": "监利", "parent_id": "298", "first_letter": "j", "shorthand": "jl", "pinyin": "jianli", "suffix": "县", "code": "421023", "sort": "4" }, { "id": "2060", "name": "江陵", "parent_id": "298", "first_letter": "j", "shorthand": "jl", "pinyin": "jiangling", "suffix": "县", "code": "421024", "sort": "5" }, { "id": "2061", "name": "石首", "parent_id": "298", "first_letter": "s", "shorthand": "ss", "pinyin": "shishou", "suffix": "市", "code": "421081", "sort": "6" }, { "id": "2062", "name": "洪湖", "parent_id": "298", "first_letter": "h", "shorthand": "hh", "pinyin": "honghu", "suffix": "市", "code": "421083", "sort": "7" }, { "id": "2063", "name": "松滋", "parent_id": "298", "first_letter": "s", "shorthand": "sz", "pinyin": "songzi", "suffix": "市", "code": "421087", "sort": "8" }, { "id": "2064", "name": "黄州", "parent_id": "299", "first_letter": "h", "shorthand": "hz", "pinyin": "huangzhou", "suffix": "区", "code": "421102", "sort": "1" }, { "id": "2065", "name": "团风", "parent_id": "299", "first_letter": "t", "shorthand": "tf", "pinyin": "tuanfeng", "suffix": "县", "code": "421121", "sort": "2" }, { "id": "2066", "name": "红安", "parent_id": "299", "first_letter": "h", "shorthand": "ha", "pinyin": "hongan", "suffix": "县", "code": "421122", "sort": "3" }, { "id": "2067", "name": "罗田", "parent_id": "299", "first_letter": "l", "shorthand": "lt", "pinyin": "luotian", "suffix": "县", "code": "421123", "sort": "4" }, { "id": "2068", "name": "英山", "parent_id": "299", "first_letter": "y", "shorthand": "ys", "pinyin": "yingshan", "suffix": "县", "code": "421124", "sort": "5" }, { "id": "2069", "name": "浠水", "parent_id": "299", "first_letter": "x", "shorthand": "xs", "pinyin": "xishui", "suffix": "县", "code": "421125", "sort": "6" }, { "id": "2070", "name": "蕲春", "parent_id": "299", "first_letter": "q", "shorthand": "qc", "pinyin": "qichun", "suffix": "县", "code": "421126", "sort": "7" }, { "id": "2071", "name": "黄梅", "parent_id": "299", "first_letter": "h", "shorthand": "hm", "pinyin": "huangmei", "suffix": "县", "code": "421127", "sort": "8" }, { "id": "2072", "name": "麻城", "parent_id": "299", "first_letter": "m", "shorthand": "mc", "pinyin": "macheng", "suffix": "市", "code": "421181", "sort": "9" }, { "id": "2073", "name": "武穴", "parent_id": "299", "first_letter": "w", "shorthand": "wx", "pinyin": "wuxue", "suffix": "市", "code": "421182", "sort": "10" }, { "id": "2074", "name": "咸安", "parent_id": "300", "first_letter": "x", "shorthand": "xa", "pinyin": "xianan", "suffix": "区", "code": "421202", "sort": "1" }, { "id": "2075", "name": "嘉鱼", "parent_id": "300", "first_letter": "j", "shorthand": "jy", "pinyin": "jiayu", "suffix": "县", "code": "421221", "sort": "2" }, { "id": "2076", "name": "通城", "parent_id": "300", "first_letter": "t", "shorthand": "tc", "pinyin": "tongcheng", "suffix": "县", "code": "421222", "sort": "3" }, { "id": "2077", "name": "崇阳", "parent_id": "300", "first_letter": "c", "shorthand": "cy", "pinyin": "chongyang", "suffix": "县", "code": "421223", "sort": "4" }, { "id": "2078", "name": "通山", "parent_id": "300", "first_letter": "t", "shorthand": "ts", "pinyin": "tongshan", "suffix": "县", "code": "421224", "sort": "5" }, { "id": "2079", "name": "赤壁", "parent_id": "300", "first_letter": "c", "shorthand": "cb", "pinyin": "chibi", "suffix": "市", "code": "421281", "sort": "6" }, { "id": "2080", "name": "曾都", "parent_id": "301", "first_letter": "c", "shorthand": "cd", "pinyin": "cengdou", "suffix": "区", "code": "421303", "sort": "1" }, { "id": "2081", "name": "随县", "parent_id": "301", "first_letter": "s", "shorthand": "sx", "pinyin": "suixian", "suffix": "", "code": "421321", "sort": "2" }, { "id": "2082", "name": "广水", "parent_id": "301", "first_letter": "g", "shorthand": "gs", "pinyin": "guangshui", "suffix": "市", "code": "421381", "sort": "3" }, { "id": "2083", "name": "恩施", "parent_id": "302", "first_letter": "e", "shorthand": "es", "pinyin": "enshi", "suffix": "市", "code": "422801", "sort": "1" }, { "id": "2084", "name": "利川", "parent_id": "302", "first_letter": "l", "shorthand": "lc", "pinyin": "lichuan", "suffix": "市", "code": "422802", "sort": "2" }, { "id": "2085", "name": "建始", "parent_id": "302", "first_letter": "j", "shorthand": "js", "pinyin": "jianshi", "suffix": "县", "code": "422822", "sort": "3" }, { "id": "2086", "name": "巴东", "parent_id": "302", "first_letter": "b", "shorthand": "bd", "pinyin": "badong", "suffix": "县", "code": "422823", "sort": "4" }, { "id": "2087", "name": "宣恩", "parent_id": "302", "first_letter": "x", "shorthand": "xe", "pinyin": "xuanen", "suffix": "县", "code": "422825", "sort": "5" }, { "id": "2088", "name": "咸丰", "parent_id": "302", "first_letter": "x", "shorthand": "xf", "pinyin": "xianfeng", "suffix": "县", "code": "422826", "sort": "6" }, { "id": "2089", "name": "来凤", "parent_id": "302", "first_letter": "l", "shorthand": "lf", "pinyin": "laifeng", "suffix": "县", "code": "422827", "sort": "7" }, { "id": "2090", "name": "鹤峰", "parent_id": "302", "first_letter": "h", "shorthand": "hf", "pinyin": "hefeng", "suffix": "县", "code": "422828", "sort": "8" }, { "id": "2091", "name": "芙蓉", "parent_id": "307", "first_letter": "f", "shorthand": "fr", "pinyin": "furong", "suffix": "区", "code": "430102", "sort": "1" }, { "id": "2092", "name": "天心", "parent_id": "307", "first_letter": "t", "shorthand": "tx", "pinyin": "tianxin", "suffix": "区", "code": "430103", "sort": "2" }, { "id": "2093", "name": "岳麓", "parent_id": "307", "first_letter": "y", "shorthand": "yl", "pinyin": "yuelu", "suffix": "区", "code": "430104", "sort": "3" }, { "id": "2094", "name": "开福", "parent_id": "307", "first_letter": "k", "shorthand": "kf", "pinyin": "kaifu", "suffix": "区", "code": "430105", "sort": "4" }, { "id": "2095", "name": "雨花", "parent_id": "307", "first_letter": "y", "shorthand": "yh", "pinyin": "yuhua", "suffix": "区", "code": "430111", "sort": "5" }, { "id": "2096", "name": "望城", "parent_id": "307", "first_letter": "w", "shorthand": "wc", "pinyin": "wangcheng", "suffix": "区", "code": "430112", "sort": "6" }, { "id": "2097", "name": "长沙", "parent_id": "307", "first_letter": "z", "shorthand": "zs", "pinyin": "zhangsha", "suffix": "县", "code": "430121", "sort": "7" }, { "id": "2098", "name": "宁乡", "parent_id": "307", "first_letter": "n", "shorthand": "nx", "pinyin": "ningxiang", "suffix": "县", "code": "430124", "sort": "8" }, { "id": "2099", "name": "浏阳", "parent_id": "307", "first_letter": "l", "shorthand": "ly", "pinyin": "liuyang", "suffix": "市", "code": "430181", "sort": "9" }, { "id": "2100", "name": "荷塘", "parent_id": "308", "first_letter": "h", "shorthand": "ht", "pinyin": "hetang", "suffix": "区", "code": "430202", "sort": "1" }, { "id": "2101", "name": "芦淞", "parent_id": "308", "first_letter": "l", "shorthand": "ls", "pinyin": "lusong", "suffix": "区", "code": "430203", "sort": "2" }, { "id": "2102", "name": "石峰", "parent_id": "308", "first_letter": "s", "shorthand": "sf", "pinyin": "shifeng", "suffix": "区", "code": "430204", "sort": "3" }, { "id": "2103", "name": "天元", "parent_id": "308", "first_letter": "t", "shorthand": "ty", "pinyin": "tianyuan", "suffix": "区", "code": "430211", "sort": "4" }, { "id": "2104", "name": "株洲", "parent_id": "308", "first_letter": "z", "shorthand": "zz", "pinyin": "zhuzhou", "suffix": "县", "code": "430221", "sort": "5" }, { "id": "2105", "name": "攸县", "parent_id": "308", "first_letter": "y", "shorthand": "yx", "pinyin": "youxian", "suffix": "", "code": "430223", "sort": "6" }, { "id": "2106", "name": "茶陵", "parent_id": "308", "first_letter": "c", "shorthand": "cl", "pinyin": "chaling", "suffix": "县", "code": "430224", "sort": "7" }, { "id": "2107", "name": "炎陵", "parent_id": "308", "first_letter": "y", "shorthand": "yl", "pinyin": "yanling", "suffix": "县", "code": "430225", "sort": "8" }, { "id": "2108", "name": "醴陵", "parent_id": "308", "first_letter": "l", "shorthand": "ll", "pinyin": "liling", "suffix": "市", "code": "430281", "sort": "9" }, { "id": "2109", "name": "雨湖", "parent_id": "309", "first_letter": "y", "shorthand": "yh", "pinyin": "yuhu", "suffix": "区", "code": "430302", "sort": "1" }, { "id": "2110", "name": "岳塘", "parent_id": "309", "first_letter": "y", "shorthand": "yt", "pinyin": "yuetang", "suffix": "区", "code": "430304", "sort": "2" }, { "id": "2111", "name": "湘潭", "parent_id": "309", "first_letter": "x", "shorthand": "xt", "pinyin": "xiangtan", "suffix": "县", "code": "430321", "sort": "3" }, { "id": "2112", "name": "湘乡", "parent_id": "309", "first_letter": "x", "shorthand": "xx", "pinyin": "xiangxiang", "suffix": "市", "code": "430381", "sort": "4" }, { "id": "2113", "name": "韶山", "parent_id": "309", "first_letter": "s", "shorthand": "ss", "pinyin": "shaoshan", "suffix": "市", "code": "430382", "sort": "5" }, { "id": "2114", "name": "珠晖", "parent_id": "310", "first_letter": "z", "shorthand": "zh", "pinyin": "zhuhui", "suffix": "区", "code": "430405", "sort": "1" }, { "id": "2115", "name": "雁峰", "parent_id": "310", "first_letter": "y", "shorthand": "yf", "pinyin": "yanfeng", "suffix": "区", "code": "430406", "sort": "2" }, { "id": "2116", "name": "石鼓", "parent_id": "310", "first_letter": "s", "shorthand": "sg", "pinyin": "shigu", "suffix": "区", "code": "430407", "sort": "3" }, { "id": "2117", "name": "蒸湘", "parent_id": "310", "first_letter": "z", "shorthand": "zx", "pinyin": "zhengxiang", "suffix": "区", "code": "430408", "sort": "4" }, { "id": "2118", "name": "南岳", "parent_id": "310", "first_letter": "n", "shorthand": "ny", "pinyin": "nanyue", "suffix": "区", "code": "430412", "sort": "5" }, { "id": "2119", "name": "衡阳", "parent_id": "310", "first_letter": "h", "shorthand": "hy", "pinyin": "hengyang", "suffix": "县", "code": "430421", "sort": "6" }, { "id": "2120", "name": "衡南", "parent_id": "310", "first_letter": "h", "shorthand": "hn", "pinyin": "hengnan", "suffix": "县", "code": "430422", "sort": "7" }, { "id": "2121", "name": "衡山", "parent_id": "310", "first_letter": "h", "shorthand": "hs", "pinyin": "hengshan", "suffix": "县", "code": "430423", "sort": "8" }, { "id": "2122", "name": "衡东", "parent_id": "310", "first_letter": "h", "shorthand": "hd", "pinyin": "hengdong", "suffix": "县", "code": "430424", "sort": "9" }, { "id": "2123", "name": "祁东", "parent_id": "310", "first_letter": "q", "shorthand": "qd", "pinyin": "qidong", "suffix": "县", "code": "430426", "sort": "10" }, { "id": "2124", "name": "耒阳", "parent_id": "310", "first_letter": "l", "shorthand": "ly", "pinyin": "leiyang", "suffix": "市", "code": "430481", "sort": "11" }, { "id": "2125", "name": "常宁", "parent_id": "310", "first_letter": "c", "shorthand": "cn", "pinyin": "changning", "suffix": "市", "code": "430482", "sort": "12" }, { "id": "2126", "name": "双清", "parent_id": "311", "first_letter": "s", "shorthand": "sq", "pinyin": "shuangqing", "suffix": "区", "code": "430502", "sort": "1" }, { "id": "2127", "name": "大祥", "parent_id": "311", "first_letter": "d", "shorthand": "dx", "pinyin": "daxiang", "suffix": "区", "code": "430503", "sort": "2" }, { "id": "2128", "name": "北塔", "parent_id": "311", "first_letter": "b", "shorthand": "bt", "pinyin": "beita", "suffix": "区", "code": "430511", "sort": "3" }, { "id": "2129", "name": "邵东", "parent_id": "311", "first_letter": "s", "shorthand": "sd", "pinyin": "shaodong", "suffix": "县", "code": "430521", "sort": "4" }, { "id": "2130", "name": "新邵", "parent_id": "311", "first_letter": "x", "shorthand": "xs", "pinyin": "xinshao", "suffix": "县", "code": "430522", "sort": "5" }, { "id": "2131", "name": "邵阳", "parent_id": "311", "first_letter": "s", "shorthand": "sy", "pinyin": "shaoyang", "suffix": "县", "code": "430523", "sort": "6" }, { "id": "2132", "name": "隆回", "parent_id": "311", "first_letter": "l", "shorthand": "lh", "pinyin": "longhui", "suffix": "县", "code": "430524", "sort": "7" }, { "id": "2133", "name": "洞口", "parent_id": "311", "first_letter": "d", "shorthand": "dk", "pinyin": "dongkou", "suffix": "县", "code": "430525", "sort": "8" }, { "id": "2134", "name": "绥宁", "parent_id": "311", "first_letter": "s", "shorthand": "sn", "pinyin": "suining", "suffix": "县", "code": "430527", "sort": "9" }, { "id": "2135", "name": "新宁", "parent_id": "311", "first_letter": "x", "shorthand": "xn", "pinyin": "xinning", "suffix": "县", "code": "430528", "sort": "10" }, { "id": "2136", "name": "城步", "parent_id": "311", "first_letter": "c", "shorthand": "cb", "pinyin": "chengbu", "suffix": "自治县", "code": "430529", "sort": "11" }, { "id": "2137", "name": "武冈", "parent_id": "311", "first_letter": "w", "shorthand": "wg", "pinyin": "wugang", "suffix": "市", "code": "430581", "sort": "12" }, { "id": "2138", "name": "岳阳楼", "parent_id": "312", "first_letter": "y", "shorthand": "yyl", "pinyin": "yueyanglou", "suffix": "区", "code": "430602", "sort": "1" }, { "id": "2139", "name": "云溪", "parent_id": "312", "first_letter": "y", "shorthand": "yx", "pinyin": "yunxi", "suffix": "区", "code": "430603", "sort": "2" }, { "id": "2140", "name": "君山", "parent_id": "312", "first_letter": "j", "shorthand": "js", "pinyin": "junshan", "suffix": "区", "code": "430611", "sort": "3" }, { "id": "2141", "name": "岳阳", "parent_id": "312", "first_letter": "y", "shorthand": "yy", "pinyin": "yueyang", "suffix": "县", "code": "430621", "sort": "4" }, { "id": "2142", "name": "华容", "parent_id": "312", "first_letter": "h", "shorthand": "hr", "pinyin": "huarong", "suffix": "县", "code": "430623", "sort": "5" }, { "id": "2143", "name": "湘阴", "parent_id": "312", "first_letter": "x", "shorthand": "xy", "pinyin": "xiangyin", "suffix": "县", "code": "430624", "sort": "6" }, { "id": "2144", "name": "平江", "parent_id": "312", "first_letter": "p", "shorthand": "pj", "pinyin": "pingjiang", "suffix": "县", "code": "430626", "sort": "7" }, { "id": "2145", "name": "汨罗", "parent_id": "312", "first_letter": "m", "shorthand": "ml", "pinyin": "miluo", "suffix": "市", "code": "430681", "sort": "8" }, { "id": "2146", "name": "临湘", "parent_id": "312", "first_letter": "l", "shorthand": "lx", "pinyin": "linxiang", "suffix": "市", "code": "430682", "sort": "9" }, { "id": "2147", "name": "武陵", "parent_id": "313", "first_letter": "w", "shorthand": "wl", "pinyin": "wuling", "suffix": "区", "code": "430702", "sort": "1" }, { "id": "2148", "name": "鼎城", "parent_id": "313", "first_letter": "d", "shorthand": "dc", "pinyin": "dingcheng", "suffix": "区", "code": "430703", "sort": "2" }, { "id": "2149", "name": "安乡", "parent_id": "313", "first_letter": "a", "shorthand": "ax", "pinyin": "anxiang", "suffix": "县", "code": "430721", "sort": "3" }, { "id": "2150", "name": "汉寿", "parent_id": "313", "first_letter": "h", "shorthand": "hs", "pinyin": "hanshou", "suffix": "县", "code": "430722", "sort": "4" }, { "id": "2151", "name": "澧县", "parent_id": "313", "first_letter": "l", "shorthand": "lx", "pinyin": "lixian", "suffix": "", "code": "430723", "sort": "5" }, { "id": "2152", "name": "临澧", "parent_id": "313", "first_letter": "l", "shorthand": "ll", "pinyin": "linli", "suffix": "县", "code": "430724", "sort": "6" }, { "id": "2153", "name": "桃源", "parent_id": "313", "first_letter": "t", "shorthand": "ty", "pinyin": "taoyuan", "suffix": "县", "code": "430725", "sort": "7" }, { "id": "2154", "name": "石门", "parent_id": "313", "first_letter": "s", "shorthand": "sm", "pinyin": "shimen", "suffix": "县", "code": "430726", "sort": "8" }, { "id": "2155", "name": "津市", "parent_id": "313", "first_letter": "j", "shorthand": "js", "pinyin": "jinshi", "suffix": "市", "code": "430781", "sort": "9" }, { "id": "2156", "name": "永定", "parent_id": "314", "first_letter": "y", "shorthand": "yd", "pinyin": "yongding", "suffix": "区", "code": "430802", "sort": "1" }, { "id": "2157", "name": "武陵源", "parent_id": "314", "first_letter": "w", "shorthand": "wly", "pinyin": "wulingyuan", "suffix": "区", "code": "430811", "sort": "2" }, { "id": "2158", "name": "慈利", "parent_id": "314", "first_letter": "c", "shorthand": "cl", "pinyin": "cili", "suffix": "县", "code": "430821", "sort": "3" }, { "id": "2159", "name": "桑植", "parent_id": "314", "first_letter": "s", "shorthand": "sz", "pinyin": "sangzhi", "suffix": "县", "code": "430822", "sort": "4" }, { "id": "2160", "name": "资阳", "parent_id": "315", "first_letter": "z", "shorthand": "zy", "pinyin": "ziyang", "suffix": "区", "code": "430902", "sort": "1" }, { "id": "2161", "name": "赫山", "parent_id": "315", "first_letter": "h", "shorthand": "hs", "pinyin": "heshan", "suffix": "区", "code": "430903", "sort": "2" }, { "id": "2162", "name": "南县", "parent_id": "315", "first_letter": "n", "shorthand": "nx", "pinyin": "nanxian", "suffix": "", "code": "430921", "sort": "3" }, { "id": "2163", "name": "桃江", "parent_id": "315", "first_letter": "t", "shorthand": "tj", "pinyin": "taojiang", "suffix": "县", "code": "430922", "sort": "4" }, { "id": "2164", "name": "安化", "parent_id": "315", "first_letter": "a", "shorthand": "ah", "pinyin": "anhua", "suffix": "县", "code": "430923", "sort": "5" }, { "id": "2165", "name": "沅江", "parent_id": "315", "first_letter": "y", "shorthand": "yj", "pinyin": "yuanjiang", "suffix": "市", "code": "430981", "sort": "6" }, { "id": "2166", "name": "北湖", "parent_id": "316", "first_letter": "b", "shorthand": "bh", "pinyin": "beihu", "suffix": "区", "code": "431002", "sort": "1" }, { "id": "2167", "name": "苏仙", "parent_id": "316", "first_letter": "s", "shorthand": "sx", "pinyin": "suxian", "suffix": "区", "code": "431003", "sort": "2" }, { "id": "2168", "name": "桂阳", "parent_id": "316", "first_letter": "g", "shorthand": "gy", "pinyin": "guiyang", "suffix": "县", "code": "431021", "sort": "3" }, { "id": "2169", "name": "宜章", "parent_id": "316", "first_letter": "y", "shorthand": "yz", "pinyin": "yizhang", "suffix": "县", "code": "431022", "sort": "4" }, { "id": "2170", "name": "永兴", "parent_id": "316", "first_letter": "y", "shorthand": "yx", "pinyin": "yongxing", "suffix": "县", "code": "431023", "sort": "5" }, { "id": "2171", "name": "嘉禾", "parent_id": "316", "first_letter": "j", "shorthand": "jh", "pinyin": "jiahe", "suffix": "县", "code": "431024", "sort": "6" }, { "id": "2172", "name": "临武", "parent_id": "316", "first_letter": "l", "shorthand": "lw", "pinyin": "linwu", "suffix": "县", "code": "431025", "sort": "7" }, { "id": "2173", "name": "汝城", "parent_id": "316", "first_letter": "r", "shorthand": "rc", "pinyin": "rucheng", "suffix": "县", "code": "431026", "sort": "8" }, { "id": "2174", "name": "桂东", "parent_id": "316", "first_letter": "g", "shorthand": "gd", "pinyin": "guidong", "suffix": "县", "code": "431027", "sort": "9" }, { "id": "2175", "name": "安仁", "parent_id": "316", "first_letter": "a", "shorthand": "ar", "pinyin": "anren", "suffix": "县", "code": "431028", "sort": "10" }, { "id": "2176", "name": "资兴", "parent_id": "316", "first_letter": "z", "shorthand": "zx", "pinyin": "zixing", "suffix": "市", "code": "431081", "sort": "11" }, { "id": "2177", "name": "零陵", "parent_id": "317", "first_letter": "l", "shorthand": "ll", "pinyin": "lingling", "suffix": "区", "code": "431102", "sort": "1" }, { "id": "2178", "name": "冷水滩", "parent_id": "317", "first_letter": "l", "shorthand": "lst", "pinyin": "lengshuitan", "suffix": "区", "code": "431103", "sort": "2" }, { "id": "2179", "name": "祁阳", "parent_id": "317", "first_letter": "q", "shorthand": "qy", "pinyin": "qiyang", "suffix": "县", "code": "431121", "sort": "3" }, { "id": "2180", "name": "东安", "parent_id": "317", "first_letter": "d", "shorthand": "da", "pinyin": "dongan", "suffix": "县", "code": "431122", "sort": "4" }, { "id": "2181", "name": "双牌", "parent_id": "317", "first_letter": "s", "shorthand": "sp", "pinyin": "shuangpai", "suffix": "县", "code": "431123", "sort": "5" }, { "id": "2182", "name": "道县", "parent_id": "317", "first_letter": "d", "shorthand": "dx", "pinyin": "daoxian", "suffix": "", "code": "431124", "sort": "6" }, { "id": "2183", "name": "江永", "parent_id": "317", "first_letter": "j", "shorthand": "jy", "pinyin": "jiangyong", "suffix": "县", "code": "431125", "sort": "7" }, { "id": "2184", "name": "宁远", "parent_id": "317", "first_letter": "n", "shorthand": "ny", "pinyin": "ningyuan", "suffix": "县", "code": "431126", "sort": "8" }, { "id": "2185", "name": "蓝山", "parent_id": "317", "first_letter": "l", "shorthand": "ls", "pinyin": "lanshan", "suffix": "县", "code": "431127", "sort": "9" }, { "id": "2186", "name": "新田", "parent_id": "317", "first_letter": "x", "shorthand": "xt", "pinyin": "xintian", "suffix": "县", "code": "431128", "sort": "10" }, { "id": "2187", "name": "江华", "parent_id": "317", "first_letter": "j", "shorthand": "jh", "pinyin": "jianghua", "suffix": "自治县", "code": "431129", "sort": "11" }, { "id": "2188", "name": "鹤城", "parent_id": "318", "first_letter": "h", "shorthand": "hc", "pinyin": "hecheng", "suffix": "区", "code": "431202", "sort": "1" }, { "id": "2189", "name": "中方", "parent_id": "318", "first_letter": "z", "shorthand": "zf", "pinyin": "zhongfang", "suffix": "县", "code": "431221", "sort": "2" }, { "id": "2190", "name": "沅陵", "parent_id": "318", "first_letter": "y", "shorthand": "yl", "pinyin": "yuanling", "suffix": "县", "code": "431222", "sort": "3" }, { "id": "2191", "name": "辰溪", "parent_id": "318", "first_letter": "c", "shorthand": "cx", "pinyin": "chenxi", "suffix": "县", "code": "431223", "sort": "4" }, { "id": "2192", "name": "溆浦", "parent_id": "318", "first_letter": "x", "shorthand": "xp", "pinyin": "xupu", "suffix": "县", "code": "431224", "sort": "5" }, { "id": "2193", "name": "会同", "parent_id": "318", "first_letter": "h", "shorthand": "ht", "pinyin": "huitong", "suffix": "县", "code": "431225", "sort": "6" }, { "id": "2194", "name": "麻阳", "parent_id": "318", "first_letter": "m", "shorthand": "my", "pinyin": "mayang", "suffix": "自治县", "code": "431226", "sort": "7" }, { "id": "2195", "name": "新晃", "parent_id": "318", "first_letter": "x", "shorthand": "xh", "pinyin": "xinhuang", "suffix": "自治县", "code": "431227", "sort": "8" }, { "id": "2196", "name": "芷江", "parent_id": "318", "first_letter": "z", "shorthand": "zj", "pinyin": "zhijiang", "suffix": "自治县", "code": "431228", "sort": "9" }, { "id": "2197", "name": "靖州", "parent_id": "318", "first_letter": "j", "shorthand": "jz", "pinyin": "jingzhou", "suffix": "自治县", "code": "431229", "sort": "10" }, { "id": "2198", "name": "通道", "parent_id": "318", "first_letter": "t", "shorthand": "td", "pinyin": "tongdao", "suffix": "自治县", "code": "431230", "sort": "11" }, { "id": "2199", "name": "洪江", "parent_id": "318", "first_letter": "h", "shorthand": "hj", "pinyin": "hongjiang", "suffix": "市", "code": "431281", "sort": "12" }, { "id": "2200", "name": "娄星", "parent_id": "319", "first_letter": "l", "shorthand": "lx", "pinyin": "louxing", "suffix": "区", "code": "431302", "sort": "1" }, { "id": "2201", "name": "双峰", "parent_id": "319", "first_letter": "s", "shorthand": "sf", "pinyin": "shuangfeng", "suffix": "县", "code": "431321", "sort": "2" }, { "id": "2202", "name": "新化", "parent_id": "319", "first_letter": "x", "shorthand": "xh", "pinyin": "xinhua", "suffix": "县", "code": "431322", "sort": "3" }, { "id": "2203", "name": "冷水江", "parent_id": "319", "first_letter": "l", "shorthand": "lsj", "pinyin": "lengshuijiang", "suffix": "市", "code": "431381", "sort": "4" }, { "id": "2204", "name": "涟源", "parent_id": "319", "first_letter": "l", "shorthand": "ly", "pinyin": "lianyuan", "suffix": "市", "code": "431382", "sort": "5" }, { "id": "2205", "name": "吉首", "parent_id": "320", "first_letter": "j", "shorthand": "js", "pinyin": "jishou", "suffix": "市", "code": "433101", "sort": "1" }, { "id": "2206", "name": "泸溪", "parent_id": "320", "first_letter": "l", "shorthand": "lx", "pinyin": "luxi", "suffix": "县", "code": "433122", "sort": "2" }, { "id": "2207", "name": "凤凰", "parent_id": "320", "first_letter": "f", "shorthand": "fh", "pinyin": "fenghuang", "suffix": "县", "code": "433123", "sort": "3" }, { "id": "2208", "name": "花垣", "parent_id": "320", "first_letter": "h", "shorthand": "hy", "pinyin": "huayuan", "suffix": "县", "code": "433124", "sort": "4" }, { "id": "2209", "name": "保靖", "parent_id": "320", "first_letter": "b", "shorthand": "bj", "pinyin": "baojing", "suffix": "县", "code": "433125", "sort": "5" }, { "id": "2210", "name": "古丈", "parent_id": "320", "first_letter": "g", "shorthand": "gz", "pinyin": "guzhang", "suffix": "县", "code": "433126", "sort": "6" }, { "id": "2211", "name": "永顺", "parent_id": "320", "first_letter": "y", "shorthand": "ys", "pinyin": "yongshun", "suffix": "县", "code": "433127", "sort": "7" }, { "id": "2212", "name": "龙山", "parent_id": "320", "first_letter": "l", "shorthand": "ls", "pinyin": "longshan", "suffix": "县", "code": "433130", "sort": "8" }, { "id": "2213", "name": "荔湾", "parent_id": "321", "first_letter": "l", "shorthand": "lw", "pinyin": "liwan", "suffix": "区", "code": "440103", "sort": "1" }, { "id": "2214", "name": "越秀", "parent_id": "321", "first_letter": "y", "shorthand": "yx", "pinyin": "yuexiu", "suffix": "区", "code": "440104", "sort": "2" }, { "id": "2215", "name": "海珠", "parent_id": "321", "first_letter": "h", "shorthand": "hz", "pinyin": "haizhu", "suffix": "区", "code": "440105", "sort": "3" }, { "id": "2216", "name": "天河", "parent_id": "321", "first_letter": "t", "shorthand": "th", "pinyin": "tianhe", "suffix": "区", "code": "440106", "sort": "4" }, { "id": "2217", "name": "白云", "parent_id": "321", "first_letter": "b", "shorthand": "by", "pinyin": "baiyun", "suffix": "区", "code": "440111", "sort": "5" }, { "id": "2218", "name": "黄埔", "parent_id": "321", "first_letter": "h", "shorthand": "hp", "pinyin": "huangpu", "suffix": "区", "code": "440112", "sort": "6" }, { "id": "2219", "name": "番禺", "parent_id": "321", "first_letter": "f", "shorthand": "fy", "pinyin": "fanyu", "suffix": "区", "code": "440113", "sort": "7" }, { "id": "2220", "name": "花都", "parent_id": "321", "first_letter": "h", "shorthand": "hd", "pinyin": "huadou", "suffix": "区", "code": "440114", "sort": "8" }, { "id": "2221", "name": "南沙", "parent_id": "321", "first_letter": "n", "shorthand": "ns", "pinyin": "nansha", "suffix": "区", "code": "440115", "sort": "9" }, { "id": "2223", "name": "增城", "parent_id": "321", "first_letter": "z", "shorthand": "zc", "pinyin": "zengcheng", "suffix": "区", "code": "440118", "sort": "12" }, { "id": "2224", "name": "从化", "parent_id": "321", "first_letter": "c", "shorthand": "ch", "pinyin": "conghua", "suffix": "区", "code": "440117", "sort": "11" }, { "id": "2225", "name": "武江", "parent_id": "322", "first_letter": "w", "shorthand": "wj", "pinyin": "wujiang", "suffix": "区", "code": "440203", "sort": "1" }, { "id": "2226", "name": "浈江", "parent_id": "322", "first_letter": "z", "shorthand": "zj", "pinyin": "zhenjiang", "suffix": "区", "code": "440204", "sort": "2" }, { "id": "2227", "name": "曲江", "parent_id": "322", "first_letter": "q", "shorthand": "qj", "pinyin": "qujiang", "suffix": "区", "code": "440205", "sort": "3" }, { "id": "2228", "name": "始兴", "parent_id": "322", "first_letter": "s", "shorthand": "sx", "pinyin": "shixing", "suffix": "县", "code": "440222", "sort": "4" }, { "id": "2229", "name": "仁化", "parent_id": "322", "first_letter": "r", "shorthand": "rh", "pinyin": "renhua", "suffix": "县", "code": "440224", "sort": "5" }, { "id": "2230", "name": "翁源", "parent_id": "322", "first_letter": "w", "shorthand": "wy", "pinyin": "wengyuan", "suffix": "县", "code": "440229", "sort": "6" }, { "id": "2231", "name": "乳源", "parent_id": "322", "first_letter": "r", "shorthand": "ry", "pinyin": "ruyuan", "suffix": "自治县", "code": "440232", "sort": "7" }, { "id": "2232", "name": "新丰", "parent_id": "322", "first_letter": "x", "shorthand": "xf", "pinyin": "xinfeng", "suffix": "县", "code": "440233", "sort": "8" }, { "id": "2233", "name": "乐昌", "parent_id": "322", "first_letter": "l", "shorthand": "lc", "pinyin": "lechang", "suffix": "市", "code": "440281", "sort": "9" }, { "id": "2234", "name": "南雄", "parent_id": "322", "first_letter": "n", "shorthand": "nx", "pinyin": "nanxiong", "suffix": "市", "code": "440282", "sort": "10" }, { "id": "2235", "name": "罗湖", "parent_id": "323", "first_letter": "l", "shorthand": "lh", "pinyin": "luohu", "suffix": "区", "code": "440303", "sort": "1" }, { "id": "2236", "name": "福田", "parent_id": "323", "first_letter": "f", "shorthand": "ft", "pinyin": "futian", "suffix": "区", "code": "440304", "sort": "2" }, { "id": "2237", "name": "南山", "parent_id": "323", "first_letter": "n", "shorthand": "ns", "pinyin": "nanshan", "suffix": "区", "code": "440305", "sort": "3" }, { "id": "2238", "name": "宝安", "parent_id": "323", "first_letter": "b", "shorthand": "ba", "pinyin": "baoan", "suffix": "区", "code": "440306", "sort": "4" }, { "id": "2239", "name": "龙岗", "parent_id": "323", "first_letter": "l", "shorthand": "lg", "pinyin": "longgang", "suffix": "区", "code": "440307", "sort": "5" }, { "id": "2240", "name": "盐田", "parent_id": "323", "first_letter": "y", "shorthand": "yt", "pinyin": "yantian", "suffix": "区", "code": "440308", "sort": "6" }, { "id": "2241", "name": "香洲", "parent_id": "324", "first_letter": "x", "shorthand": "xz", "pinyin": "xiangzhou", "suffix": "区", "code": "440402", "sort": "1" }, { "id": "2242", "name": "斗门", "parent_id": "324", "first_letter": "d", "shorthand": "dm", "pinyin": "doumen", "suffix": "区", "code": "440403", "sort": "2" }, { "id": "2243", "name": "金湾", "parent_id": "324", "first_letter": "j", "shorthand": "jw", "pinyin": "jinwan", "suffix": "区", "code": "440404", "sort": "3" }, { "id": "2244", "name": "龙湖", "parent_id": "325", "first_letter": "l", "shorthand": "lh", "pinyin": "longhu", "suffix": "区", "code": "440507", "sort": "1" }, { "id": "2245", "name": "金平", "parent_id": "325", "first_letter": "j", "shorthand": "jp", "pinyin": "jinping", "suffix": "区", "code": "440511", "sort": "2" }, { "id": "2246", "name": "濠江", "parent_id": "325", "first_letter": "h", "shorthand": "hj", "pinyin": "haojiang", "suffix": "区", "code": "440512", "sort": "3" }, { "id": "2247", "name": "潮阳", "parent_id": "325", "first_letter": "c", "shorthand": "cy", "pinyin": "chaoyang", "suffix": "区", "code": "440513", "sort": "4" }, { "id": "2248", "name": "潮南", "parent_id": "325", "first_letter": "c", "shorthand": "cn", "pinyin": "chaonan", "suffix": "区", "code": "440514", "sort": "5" }, { "id": "2249", "name": "澄海", "parent_id": "325", "first_letter": "c", "shorthand": "ch", "pinyin": "chenghai", "suffix": "区", "code": "440515", "sort": "6" }, { "id": "2250", "name": "南澳", "parent_id": "325", "first_letter": "n", "shorthand": "na", "pinyin": "nanao", "suffix": "县", "code": "440523", "sort": "7" }, { "id": "2251", "name": "禅城", "parent_id": "326", "first_letter": "s", "shorthand": "sc", "pinyin": "shancheng", "suffix": "区", "code": "440604", "sort": "1" }, { "id": "2252", "name": "南海", "parent_id": "326", "first_letter": "n", "shorthand": "nh", "pinyin": "nanhai", "suffix": "区", "code": "440605", "sort": "2" }, { "id": "2253", "name": "顺德", "parent_id": "326", "first_letter": "s", "shorthand": "sd", "pinyin": "shunde", "suffix": "区", "code": "440606", "sort": "3" }, { "id": "2254", "name": "三水", "parent_id": "326", "first_letter": "s", "shorthand": "ss", "pinyin": "sanshui", "suffix": "区", "code": "440607", "sort": "4" }, { "id": "2255", "name": "高明", "parent_id": "326", "first_letter": "g", "shorthand": "gm", "pinyin": "gaoming", "suffix": "区", "code": "440608", "sort": "5" }, { "id": "2256", "name": "蓬江", "parent_id": "327", "first_letter": "p", "shorthand": "pj", "pinyin": "pengjiang", "suffix": "区", "code": "440703", "sort": "1" }, { "id": "2257", "name": "江海", "parent_id": "327", "first_letter": "j", "shorthand": "jh", "pinyin": "jianghai", "suffix": "区", "code": "440704", "sort": "2" }, { "id": "2258", "name": "新会", "parent_id": "327", "first_letter": "x", "shorthand": "xh", "pinyin": "xinhui", "suffix": "区", "code": "440705", "sort": "3" }, { "id": "2259", "name": "台山", "parent_id": "327", "first_letter": "t", "shorthand": "ts", "pinyin": "taishan", "suffix": "市", "code": "440781", "sort": "4" }, { "id": "2260", "name": "开平", "parent_id": "327", "first_letter": "k", "shorthand": "kp", "pinyin": "kaiping", "suffix": "市", "code": "440783", "sort": "5" }, { "id": "2261", "name": "鹤山", "parent_id": "327", "first_letter": "h", "shorthand": "hs", "pinyin": "heshan", "suffix": "市", "code": "440784", "sort": "6" }, { "id": "2262", "name": "恩平", "parent_id": "327", "first_letter": "e", "shorthand": "ep", "pinyin": "enping", "suffix": "市", "code": "440785", "sort": "7" }, { "id": "2263", "name": "赤坎", "parent_id": "328", "first_letter": "c", "shorthand": "ck", "pinyin": "chikan", "suffix": "区", "code": "440802", "sort": "1" }, { "id": "2264", "name": "霞山", "parent_id": "328", "first_letter": "x", "shorthand": "xs", "pinyin": "xiashan", "suffix": "区", "code": "440803", "sort": "2" }, { "id": "2265", "name": "坡头", "parent_id": "328", "first_letter": "p", "shorthand": "pt", "pinyin": "potou", "suffix": "区", "code": "440804", "sort": "3" }, { "id": "2266", "name": "麻章", "parent_id": "328", "first_letter": "m", "shorthand": "mz", "pinyin": "mazhang", "suffix": "区", "code": "440811", "sort": "4" }, { "id": "2267", "name": "遂溪", "parent_id": "328", "first_letter": "s", "shorthand": "sx", "pinyin": "suixi", "suffix": "县", "code": "440823", "sort": "5" }, { "id": "2268", "name": "徐闻", "parent_id": "328", "first_letter": "x", "shorthand": "xw", "pinyin": "xuwen", "suffix": "县", "code": "440825", "sort": "6" }, { "id": "2269", "name": "廉江", "parent_id": "328", "first_letter": "l", "shorthand": "lj", "pinyin": "lianjiang", "suffix": "市", "code": "440881", "sort": "7" }, { "id": "2270", "name": "雷州", "parent_id": "328", "first_letter": "l", "shorthand": "lz", "pinyin": "leizhou", "suffix": "市", "code": "440882", "sort": "8" }, { "id": "2271", "name": "吴川", "parent_id": "328", "first_letter": "w", "shorthand": "wc", "pinyin": "wuchuan", "suffix": "市", "code": "440883", "sort": "9" }, { "id": "2272", "name": "茂南", "parent_id": "329", "first_letter": "m", "shorthand": "mn", "pinyin": "maonan", "suffix": "区", "code": "440902", "sort": "1" }, { "id": "2274", "name": "电白", "parent_id": "329", "first_letter": "d", "shorthand": "db", "pinyin": "dianbai", "suffix": "区", "code": "440904", "sort": "2" }, { "id": "2275", "name": "高州", "parent_id": "329", "first_letter": "g", "shorthand": "gz", "pinyin": "gaozhou", "suffix": "市", "code": "440981", "sort": "3" }, { "id": "2276", "name": "化州", "parent_id": "329", "first_letter": "h", "shorthand": "hz", "pinyin": "huazhou", "suffix": "市", "code": "440982", "sort": "4" }, { "id": "2277", "name": "信宜", "parent_id": "329", "first_letter": "x", "shorthand": "xy", "pinyin": "xinyi", "suffix": "市", "code": "440983", "sort": "5" }, { "id": "2278", "name": "端州", "parent_id": "330", "first_letter": "d", "shorthand": "dz", "pinyin": "duanzhou", "suffix": "区", "code": "441202", "sort": "1" }, { "id": "2279", "name": "鼎湖", "parent_id": "330", "first_letter": "d", "shorthand": "dh", "pinyin": "dinghu", "suffix": "区", "code": "441203", "sort": "2" }, { "id": "2280", "name": "广宁", "parent_id": "330", "first_letter": "g", "shorthand": "gn", "pinyin": "guangning", "suffix": "县", "code": "441223", "sort": "3" }, { "id": "2281", "name": "怀集", "parent_id": "330", "first_letter": "h", "shorthand": "hj", "pinyin": "huaiji", "suffix": "县", "code": "441224", "sort": "4" }, { "id": "2282", "name": "封开", "parent_id": "330", "first_letter": "f", "shorthand": "fk", "pinyin": "fengkai", "suffix": "县", "code": "441225", "sort": "5" }, { "id": "2283", "name": "德庆", "parent_id": "330", "first_letter": "d", "shorthand": "dq", "pinyin": "deqing", "suffix": "县", "code": "441226", "sort": "6" }, { "id": "2284", "name": "高要", "parent_id": "330", "first_letter": "g", "shorthand": "gy", "pinyin": "gaoyao", "suffix": "市", "code": "441283", "sort": "7" }, { "id": "2285", "name": "四会", "parent_id": "330", "first_letter": "s", "shorthand": "sh", "pinyin": "sihui", "suffix": "市", "code": "441284", "sort": "8" }, { "id": "2286", "name": "惠城", "parent_id": "331", "first_letter": "h", "shorthand": "hc", "pinyin": "huicheng", "suffix": "区", "code": "441302", "sort": "1" }, { "id": "2287", "name": "惠阳", "parent_id": "331", "first_letter": "h", "shorthand": "hy", "pinyin": "huiyang", "suffix": "区", "code": "441303", "sort": "2" }, { "id": "2288", "name": "博罗", "parent_id": "331", "first_letter": "b", "shorthand": "bl", "pinyin": "boluo", "suffix": "县", "code": "441322", "sort": "3" }, { "id": "2289", "name": "惠东", "parent_id": "331", "first_letter": "h", "shorthand": "hd", "pinyin": "huidong", "suffix": "县", "code": "441323", "sort": "4" }, { "id": "2290", "name": "龙门", "parent_id": "331", "first_letter": "l", "shorthand": "lm", "pinyin": "longmen", "suffix": "县", "code": "441324", "sort": "5" }, { "id": "2291", "name": "梅江", "parent_id": "332", "first_letter": "m", "shorthand": "mj", "pinyin": "meijiang", "suffix": "区", "code": "441402", "sort": "1" }, { "id": "2292", "name": "梅县", "parent_id": "332", "first_letter": "m", "shorthand": "mx", "pinyin": "meixian", "suffix": "区", "code": "441403", "sort": "2" }, { "id": "2293", "name": "大埔", "parent_id": "332", "first_letter": "d", "shorthand": "dp", "pinyin": "dapu", "suffix": "县", "code": "441422", "sort": "3" }, { "id": "2294", "name": "丰顺", "parent_id": "332", "first_letter": "f", "shorthand": "fs", "pinyin": "fengshun", "suffix": "县", "code": "441423", "sort": "4" }, { "id": "2295", "name": "五华", "parent_id": "332", "first_letter": "w", "shorthand": "wh", "pinyin": "wuhua", "suffix": "县", "code": "441424", "sort": "5" }, { "id": "2296", "name": "平远", "parent_id": "332", "first_letter": "p", "shorthand": "py", "pinyin": "pingyuan", "suffix": "县", "code": "441426", "sort": "6" }, { "id": "2297", "name": "蕉岭", "parent_id": "332", "first_letter": "j", "shorthand": "jl", "pinyin": "jiaoling", "suffix": "县", "code": "441427", "sort": "7" }, { "id": "2298", "name": "兴宁", "parent_id": "332", "first_letter": "x", "shorthand": "xn", "pinyin": "xingning", "suffix": "市", "code": "441481", "sort": "8" }, { "id": "2299", "name": "城区", "parent_id": "333", "first_letter": "c", "shorthand": "cq", "pinyin": "chengqu", "suffix": "区", "code": "441502", "sort": "1" }, { "id": "2300", "name": "海丰", "parent_id": "333", "first_letter": "h", "shorthand": "hf", "pinyin": "haifeng", "suffix": "县", "code": "441521", "sort": "2" }, { "id": "2301", "name": "陆河", "parent_id": "333", "first_letter": "l", "shorthand": "lh", "pinyin": "luhe", "suffix": "县", "code": "441523", "sort": "3" }, { "id": "2302", "name": "陆丰", "parent_id": "333", "first_letter": "l", "shorthand": "lf", "pinyin": "lufeng", "suffix": "市", "code": "441581", "sort": "4" }, { "id": "2303", "name": "源城", "parent_id": "334", "first_letter": "y", "shorthand": "yc", "pinyin": "yuancheng", "suffix": "区", "code": "441602", "sort": "1" }, { "id": "2304", "name": "紫金", "parent_id": "334", "first_letter": "z", "shorthand": "zj", "pinyin": "zijin", "suffix": "县", "code": "441621", "sort": "2" }, { "id": "2305", "name": "龙川", "parent_id": "334", "first_letter": "l", "shorthand": "lc", "pinyin": "longchuan", "suffix": "县", "code": "441622", "sort": "3" }, { "id": "2306", "name": "连平", "parent_id": "334", "first_letter": "l", "shorthand": "lp", "pinyin": "lianping", "suffix": "县", "code": "441623", "sort": "4" }, { "id": "2307", "name": "和平", "parent_id": "334", "first_letter": "h", "shorthand": "hp", "pinyin": "heping", "suffix": "县", "code": "441624", "sort": "5" }, { "id": "2308", "name": "东源", "parent_id": "334", "first_letter": "d", "shorthand": "dy", "pinyin": "dongyuan", "suffix": "县", "code": "441625", "sort": "6" }, { "id": "2309", "name": "江城", "parent_id": "335", "first_letter": "j", "shorthand": "jc", "pinyin": "jiangcheng", "suffix": "区", "code": "441702", "sort": "1" }, { "id": "2310", "name": "阳西", "parent_id": "335", "first_letter": "y", "shorthand": "yx", "pinyin": "yangxi", "suffix": "县", "code": "441721", "sort": "2" }, { "id": "2311", "name": "阳东", "parent_id": "335", "first_letter": "y", "shorthand": "yd", "pinyin": "yangdong", "suffix": "区", "code": "441723", "sort": "3" }, { "id": "2312", "name": "阳春", "parent_id": "335", "first_letter": "y", "shorthand": "yc", "pinyin": "yangchun", "suffix": "市", "code": "441781", "sort": "4" }, { "id": "2313", "name": "清城", "parent_id": "336", "first_letter": "q", "shorthand": "qc", "pinyin": "qingcheng", "suffix": "区", "code": "441802", "sort": "1" }, { "id": "2314", "name": "佛冈", "parent_id": "336", "first_letter": "f", "shorthand": "fg", "pinyin": "fogang", "suffix": "县", "code": "441821", "sort": "2" }, { "id": "2315", "name": "阳山", "parent_id": "336", "first_letter": "y", "shorthand": "ys", "pinyin": "yangshan", "suffix": "县", "code": "441823", "sort": "3" }, { "id": "2316", "name": "连山", "parent_id": "336", "first_letter": "l", "shorthand": "ls", "pinyin": "lianshan", "suffix": "自治县", "code": "441825", "sort": "4" }, { "id": "2317", "name": "连南", "parent_id": "336", "first_letter": "l", "shorthand": "ln", "pinyin": "liannan", "suffix": "自治县", "code": "441826", "sort": "5" }, { "id": "2318", "name": "清新", "parent_id": "336", "first_letter": "q", "shorthand": "qx", "pinyin": "qingxin", "suffix": "县", "code": "441827", "sort": "6" }, { "id": "2319", "name": "英德", "parent_id": "336", "first_letter": "y", "shorthand": "yd", "pinyin": "yingde", "suffix": "市", "code": "441881", "sort": "7" }, { "id": "2320", "name": "连州", "parent_id": "336", "first_letter": "l", "shorthand": "lz", "pinyin": "lianzhou", "suffix": "市", "code": "441882", "sort": "8" }, { "id": "2321", "name": "湘桥", "parent_id": "339", "first_letter": "x", "shorthand": "xq", "pinyin": "xiangqiao", "suffix": "区", "code": "445102", "sort": "1" }, { "id": "2322", "name": "潮安", "parent_id": "339", "first_letter": "c", "shorthand": "ca", "pinyin": "chaoan", "suffix": "区", "code": "445121", "sort": "2" }, { "id": "2323", "name": "饶平", "parent_id": "339", "first_letter": "r", "shorthand": "rp", "pinyin": "raoping", "suffix": "县", "code": "445122", "sort": "3" }, { "id": "2324", "name": "榕城", "parent_id": "340", "first_letter": "r", "shorthand": "rc", "pinyin": "rongcheng", "suffix": "区", "code": "445202", "sort": "1" }, { "id": "2325", "name": "揭东", "parent_id": "340", "first_letter": "j", "shorthand": "jd", "pinyin": "jiedong", "suffix": "县", "code": "445221", "sort": "2" }, { "id": "2326", "name": "揭西", "parent_id": "340", "first_letter": "j", "shorthand": "jx", "pinyin": "jiexi", "suffix": "县", "code": "445222", "sort": "3" }, { "id": "2327", "name": "惠来", "parent_id": "340", "first_letter": "h", "shorthand": "hl", "pinyin": "huilai", "suffix": "县", "code": "445224", "sort": "4" }, { "id": "2328", "name": "普宁", "parent_id": "340", "first_letter": "p", "shorthand": "pn", "pinyin": "puning", "suffix": "市", "code": "445281", "sort": "5" }, { "id": "2329", "name": "云城", "parent_id": "341", "first_letter": "y", "shorthand": "yc", "pinyin": "yuncheng", "suffix": "区", "code": "445302", "sort": "1" }, { "id": "2330", "name": "新兴", "parent_id": "341", "first_letter": "x", "shorthand": "xx", "pinyin": "xinxing", "suffix": "县", "code": "445321", "sort": "3" }, { "id": "2331", "name": "郁南", "parent_id": "341", "first_letter": "y", "shorthand": "yn", "pinyin": "yunan", "suffix": "县", "code": "445322", "sort": "4" }, { "id": "2333", "name": "罗定", "parent_id": "341", "first_letter": "l", "shorthand": "ld", "pinyin": "luoding", "suffix": "市", "code": "445381", "sort": "5" }, { "id": "2334", "name": "兴宁", "parent_id": "342", "first_letter": "x", "shorthand": "xn", "pinyin": "xingning", "suffix": "区", "code": "450102", "sort": "1" }, { "id": "2335", "name": "青秀", "parent_id": "342", "first_letter": "q", "shorthand": "qx", "pinyin": "qingxiu", "suffix": "区", "code": "450103", "sort": "2" }, { "id": "2336", "name": "江南", "parent_id": "342", "first_letter": "j", "shorthand": "jn", "pinyin": "jiangnan", "suffix": "区", "code": "450105", "sort": "3" }, { "id": "2337", "name": "西乡塘", "parent_id": "342", "first_letter": "x", "shorthand": "xxt", "pinyin": "xixiangtang", "suffix": "区", "code": "450107", "sort": "4" }, { "id": "2338", "name": "良庆", "parent_id": "342", "first_letter": "l", "shorthand": "lq", "pinyin": "liangqing", "suffix": "区", "code": "450108", "sort": "5" }, { "id": "2339", "name": "邕宁", "parent_id": "342", "first_letter": "y", "shorthand": "yn", "pinyin": "yongning", "suffix": "区", "code": "450109", "sort": "6" }, { "id": "2340", "name": "武鸣", "parent_id": "342", "first_letter": "w", "shorthand": "wm", "pinyin": "wuming", "suffix": "区", "code": "450122", "sort": "7" }, { "id": "2341", "name": "隆安", "parent_id": "342", "first_letter": "l", "shorthand": "la", "pinyin": "longan", "suffix": "县", "code": "450123", "sort": "8" }, { "id": "2342", "name": "马山", "parent_id": "342", "first_letter": "m", "shorthand": "ms", "pinyin": "mashan", "suffix": "县", "code": "450124", "sort": "9" }, { "id": "2343", "name": "上林", "parent_id": "342", "first_letter": "s", "shorthand": "sl", "pinyin": "shanglin", "suffix": "县", "code": "450125", "sort": "10" }, { "id": "2344", "name": "宾阳", "parent_id": "342", "first_letter": "b", "shorthand": "by", "pinyin": "binyang", "suffix": "县", "code": "450126", "sort": "11" }, { "id": "2345", "name": "横县", "parent_id": "342", "first_letter": "h", "shorthand": "hx", "pinyin": "hengxian", "suffix": "", "code": "450127", "sort": "12" }, { "id": "2346", "name": "城中", "parent_id": "343", "first_letter": "c", "shorthand": "cz", "pinyin": "chengzhong", "suffix": "区", "code": "450202", "sort": "1" }, { "id": "2347", "name": "鱼峰", "parent_id": "343", "first_letter": "y", "shorthand": "yf", "pinyin": "yufeng", "suffix": "区", "code": "450203", "sort": "2" }, { "id": "2348", "name": "柳南", "parent_id": "343", "first_letter": "l", "shorthand": "ln", "pinyin": "liunan", "suffix": "区", "code": "450204", "sort": "3" }, { "id": "2349", "name": "柳北", "parent_id": "343", "first_letter": "l", "shorthand": "lb", "pinyin": "liubei", "suffix": "区", "code": "450205", "sort": "4" }, { "id": "2350", "name": "柳江", "parent_id": "343", "first_letter": "l", "shorthand": "lj", "pinyin": "liujiang", "suffix": "县", "code": "450221", "sort": "5" }, { "id": "2351", "name": "柳城", "parent_id": "343", "first_letter": "l", "shorthand": "lc", "pinyin": "liucheng", "suffix": "县", "code": "450222", "sort": "6" }, { "id": "2352", "name": "鹿寨", "parent_id": "343", "first_letter": "l", "shorthand": "lz", "pinyin": "luzhai", "suffix": "县", "code": "450223", "sort": "7" }, { "id": "2353", "name": "融安", "parent_id": "343", "first_letter": "r", "shorthand": "ra", "pinyin": "rongan", "suffix": "县", "code": "450224", "sort": "8" }, { "id": "2354", "name": "融水", "parent_id": "343", "first_letter": "r", "shorthand": "rs", "pinyin": "rongshui", "suffix": "自治县", "code": "450225", "sort": "9" }, { "id": "2355", "name": "三江", "parent_id": "343", "first_letter": "s", "shorthand": "sj", "pinyin": "sanjiang", "suffix": "自治县", "code": "450226", "sort": "10" }, { "id": "2356", "name": "秀峰", "parent_id": "344", "first_letter": "x", "shorthand": "xf", "pinyin": "xiufeng", "suffix": "区", "code": "450302", "sort": "1" }, { "id": "2357", "name": "叠彩", "parent_id": "344", "first_letter": "d", "shorthand": "dc", "pinyin": "diecai", "suffix": "区", "code": "450303", "sort": "2" }, { "id": "2358", "name": "象山", "parent_id": "344", "first_letter": "x", "shorthand": "xs", "pinyin": "xiangshan", "suffix": "区", "code": "450304", "sort": "3" }, { "id": "2359", "name": "七星", "parent_id": "344", "first_letter": "q", "shorthand": "qx", "pinyin": "qixing", "suffix": "区", "code": "450305", "sort": "4" }, { "id": "2360", "name": "雁山", "parent_id": "344", "first_letter": "y", "shorthand": "ys", "pinyin": "yanshan", "suffix": "区", "code": "450311", "sort": "5" }, { "id": "2361", "name": "阳朔", "parent_id": "344", "first_letter": "y", "shorthand": "ys", "pinyin": "yangshuo", "suffix": "县", "code": "450321", "sort": "6" }, { "id": "2362", "name": "临桂", "parent_id": "344", "first_letter": "l", "shorthand": "lg", "pinyin": "lingui", "suffix": "区", "code": "450322", "sort": "7" }, { "id": "2363", "name": "灵川", "parent_id": "344", "first_letter": "l", "shorthand": "lc", "pinyin": "lingchuan", "suffix": "县", "code": "450323", "sort": "8" }, { "id": "2364", "name": "全州", "parent_id": "344", "first_letter": "q", "shorthand": "qz", "pinyin": "quanzhou", "suffix": "县", "code": "450324", "sort": "9" }, { "id": "2365", "name": "兴安", "parent_id": "344", "first_letter": "x", "shorthand": "xa", "pinyin": "xingan", "suffix": "县", "code": "450325", "sort": "10" }, { "id": "2366", "name": "永福", "parent_id": "344", "first_letter": "y", "shorthand": "yf", "pinyin": "yongfu", "suffix": "县", "code": "450326", "sort": "11" }, { "id": "2367", "name": "灌阳", "parent_id": "344", "first_letter": "g", "shorthand": "gy", "pinyin": "guanyang", "suffix": "县", "code": "450327", "sort": "12" }, { "id": "2368", "name": "龙胜", "parent_id": "344", "first_letter": "l", "shorthand": "ls", "pinyin": "longsheng", "suffix": "自治县", "code": "450328", "sort": "13" }, { "id": "2369", "name": "资源", "parent_id": "344", "first_letter": "z", "shorthand": "zy", "pinyin": "ziyuan", "suffix": "县", "code": "450329", "sort": "14" }, { "id": "2370", "name": "平乐", "parent_id": "344", "first_letter": "p", "shorthand": "pl", "pinyin": "pingle", "suffix": "县", "code": "450330", "sort": "15" }, { "id": "2371", "name": "荔浦", "parent_id": "344", "first_letter": "l", "shorthand": "lp", "pinyin": "lipu", "suffix": "县", "code": "450331", "sort": "16" }, { "id": "2372", "name": "恭城", "parent_id": "344", "first_letter": "g", "shorthand": "gc", "pinyin": "gongcheng", "suffix": "自治县", "code": "450332", "sort": "17" }, { "id": "2374", "name": "万秀", "parent_id": "345", "first_letter": "w", "shorthand": "wx", "pinyin": "wanxiu", "suffix": "区", "code": "450403", "sort": "2" }, { "id": "2375", "name": "长洲", "parent_id": "345", "first_letter": "z", "shorthand": "zz", "pinyin": "zhangzhou", "suffix": "区", "code": "450405", "sort": "3" }, { "id": "2376", "name": "苍梧", "parent_id": "345", "first_letter": "c", "shorthand": "cw", "pinyin": "cangwu", "suffix": "县", "code": "450421", "sort": "4" }, { "id": "2377", "name": "藤县", "parent_id": "345", "first_letter": "t", "shorthand": "tx", "pinyin": "tengxian", "suffix": "", "code": "450422", "sort": "5" }, { "id": "2378", "name": "蒙山", "parent_id": "345", "first_letter": "m", "shorthand": "ms", "pinyin": "mengshan", "suffix": "县", "code": "450423", "sort": "6" }, { "id": "2379", "name": "岑溪", "parent_id": "345", "first_letter": "c", "shorthand": "cx", "pinyin": "cenxi", "suffix": "市", "code": "450481", "sort": "7" }, { "id": "2380", "name": "海城", "parent_id": "346", "first_letter": "h", "shorthand": "hc", "pinyin": "haicheng", "suffix": "区", "code": "450502", "sort": "1" }, { "id": "2381", "name": "银海", "parent_id": "346", "first_letter": "y", "shorthand": "yh", "pinyin": "yinhai", "suffix": "区", "code": "450503", "sort": "2" }, { "id": "2382", "name": "铁山港", "parent_id": "346", "first_letter": "t", "shorthand": "tsg", "pinyin": "tieshangang", "suffix": "区", "code": "450512", "sort": "3" }, { "id": "2383", "name": "合浦", "parent_id": "346", "first_letter": "h", "shorthand": "hp", "pinyin": "hepu", "suffix": "县", "code": "450521", "sort": "4" }, { "id": "2384", "name": "港口", "parent_id": "347", "first_letter": "g", "shorthand": "gk", "pinyin": "gangkou", "suffix": "区", "code": "450602", "sort": "1" }, { "id": "2385", "name": "防城", "parent_id": "347", "first_letter": "f", "shorthand": "fc", "pinyin": "fangcheng", "suffix": "区", "code": "450603", "sort": "2" }, { "id": "2386", "name": "上思", "parent_id": "347", "first_letter": "s", "shorthand": "ss", "pinyin": "shangsi", "suffix": "县", "code": "450621", "sort": "3" }, { "id": "2387", "name": "东兴", "parent_id": "347", "first_letter": "d", "shorthand": "dx", "pinyin": "dongxing", "suffix": "市", "code": "450681", "sort": "4" }, { "id": "2388", "name": "钦南", "parent_id": "348", "first_letter": "q", "shorthand": "qn", "pinyin": "qinnan", "suffix": "区", "code": "450702", "sort": "1" }, { "id": "2389", "name": "钦北", "parent_id": "348", "first_letter": "q", "shorthand": "qb", "pinyin": "qinbei", "suffix": "区", "code": "450703", "sort": "2" }, { "id": "2390", "name": "灵山", "parent_id": "348", "first_letter": "l", "shorthand": "ls", "pinyin": "lingshan", "suffix": "县", "code": "450721", "sort": "3" }, { "id": "2391", "name": "浦北", "parent_id": "348", "first_letter": "p", "shorthand": "pb", "pinyin": "pubei", "suffix": "县", "code": "450722", "sort": "4" }, { "id": "2392", "name": "港北", "parent_id": "349", "first_letter": "g", "shorthand": "gb", "pinyin": "gangbei", "suffix": "区", "code": "450802", "sort": "1" }, { "id": "2393", "name": "港南", "parent_id": "349", "first_letter": "g", "shorthand": "gn", "pinyin": "gangnan", "suffix": "区", "code": "450803", "sort": "2" }, { "id": "2394", "name": "覃塘", "parent_id": "349", "first_letter": "t", "shorthand": "tt", "pinyin": "tantang", "suffix": "区", "code": "450804", "sort": "3" }, { "id": "2395", "name": "桂平", "parent_id": "349", "first_letter": "g", "shorthand": "gp", "pinyin": "guiping", "suffix": "市", "code": "450821", "sort": "4" }, { "id": "2396", "name": "平南", "parent_id": "349", "first_letter": "p", "shorthand": "pn", "pinyin": "pingnan", "suffix": "县", "code": "450881", "sort": "5" }, { "id": "2397", "name": "玉州", "parent_id": "350", "first_letter": "y", "shorthand": "yz", "pinyin": "yuzhou", "suffix": "区", "code": "450902", "sort": "1" }, { "id": "2398", "name": "容县", "parent_id": "350", "first_letter": "r", "shorthand": "rx", "pinyin": "rongxian", "suffix": "", "code": "450921", "sort": "3" }, { "id": "2399", "name": "陆川", "parent_id": "350", "first_letter": "l", "shorthand": "lc", "pinyin": "luchuan", "suffix": "县", "code": "450922", "sort": "4" }, { "id": "2400", "name": "博白", "parent_id": "350", "first_letter": "b", "shorthand": "bb", "pinyin": "bobai", "suffix": "县", "code": "450923", "sort": "5" }, { "id": "2401", "name": "兴业", "parent_id": "350", "first_letter": "x", "shorthand": "xy", "pinyin": "xingye", "suffix": "县", "code": "450924", "sort": "6" }, { "id": "2402", "name": "北流", "parent_id": "350", "first_letter": "b", "shorthand": "bl", "pinyin": "beiliu", "suffix": "市", "code": "450981", "sort": "7" }, { "id": "2403", "name": "右江", "parent_id": "351", "first_letter": "y", "shorthand": "yj", "pinyin": "youjiang", "suffix": "区", "code": "451002", "sort": "1" }, { "id": "2404", "name": "田阳", "parent_id": "351", "first_letter": "t", "shorthand": "ty", "pinyin": "tianyang", "suffix": "县", "code": "451021", "sort": "2" }, { "id": "2405", "name": "田东", "parent_id": "351", "first_letter": "t", "shorthand": "td", "pinyin": "tiandong", "suffix": "县", "code": "451022", "sort": "3" }, { "id": "2406", "name": "平果", "parent_id": "351", "first_letter": "p", "shorthand": "pg", "pinyin": "pingguo", "suffix": "县", "code": "451023", "sort": "4" }, { "id": "2407", "name": "德保", "parent_id": "351", "first_letter": "d", "shorthand": "db", "pinyin": "debao", "suffix": "县", "code": "451024", "sort": "5" }, { "id": "2408", "name": "靖西", "parent_id": "351", "first_letter": "j", "shorthand": "jx", "pinyin": "jingxi", "suffix": "县", "code": "451025", "sort": "6" }, { "id": "2409", "name": "那坡", "parent_id": "351", "first_letter": "n", "shorthand": "np", "pinyin": "neipo", "suffix": "县", "code": "451026", "sort": "7" }, { "id": "2410", "name": "凌云", "parent_id": "351", "first_letter": "l", "shorthand": "ly", "pinyin": "lingyun", "suffix": "县", "code": "451027", "sort": "8" }, { "id": "2411", "name": "乐业", "parent_id": "351", "first_letter": "l", "shorthand": "ly", "pinyin": "leye", "suffix": "县", "code": "451028", "sort": "9" }, { "id": "2412", "name": "田林", "parent_id": "351", "first_letter": "t", "shorthand": "tl", "pinyin": "tianlin", "suffix": "县", "code": "451029", "sort": "10" }, { "id": "2413", "name": "西林", "parent_id": "351", "first_letter": "x", "shorthand": "xl", "pinyin": "xilin", "suffix": "县", "code": "451030", "sort": "11" }, { "id": "2414", "name": "隆林", "parent_id": "351", "first_letter": "l", "shorthand": "ll", "pinyin": "longlin", "suffix": "自治县", "code": "451031", "sort": "12" }, { "id": "2415", "name": "八步", "parent_id": "352", "first_letter": "b", "shorthand": "bb", "pinyin": "babu", "suffix": "区", "code": "451102", "sort": "1" }, { "id": "2416", "name": "昭平", "parent_id": "352", "first_letter": "z", "shorthand": "zp", "pinyin": "zhaoping", "suffix": "县", "code": "451121", "sort": "2" }, { "id": "2417", "name": "钟山", "parent_id": "352", "first_letter": "z", "shorthand": "zs", "pinyin": "zhongshan", "suffix": "县", "code": "451122", "sort": "3" }, { "id": "2418", "name": "富川", "parent_id": "352", "first_letter": "f", "shorthand": "fc", "pinyin": "fuchuan", "suffix": "自治县", "code": "451123", "sort": "4" }, { "id": "2419", "name": "金城江", "parent_id": "353", "first_letter": "j", "shorthand": "jcj", "pinyin": "jinchengjiang", "suffix": "区", "code": "451202", "sort": "1" }, { "id": "2420", "name": "南丹", "parent_id": "353", "first_letter": "n", "shorthand": "nd", "pinyin": "nandan", "suffix": "县", "code": "451221", "sort": "2" }, { "id": "2421", "name": "天峨", "parent_id": "353", "first_letter": "t", "shorthand": "te", "pinyin": "tiane", "suffix": "县", "code": "451222", "sort": "3" }, { "id": "2422", "name": "凤山", "parent_id": "353", "first_letter": "f", "shorthand": "fs", "pinyin": "fengshan", "suffix": "县", "code": "451223", "sort": "4" }, { "id": "2423", "name": "东兰", "parent_id": "353", "first_letter": "d", "shorthand": "dl", "pinyin": "donglan", "suffix": "县", "code": "451224", "sort": "5" }, { "id": "2424", "name": "罗城", "parent_id": "353", "first_letter": "l", "shorthand": "lc", "pinyin": "luocheng", "suffix": "自治县", "code": "451225", "sort": "6" }, { "id": "2425", "name": "环江", "parent_id": "353", "first_letter": "h", "shorthand": "hj", "pinyin": "huanjiang", "suffix": "自治县", "code": "451226", "sort": "7" }, { "id": "2426", "name": "巴马", "parent_id": "353", "first_letter": "b", "shorthand": "bm", "pinyin": "bama", "suffix": "自治县", "code": "451227", "sort": "8" }, { "id": "2427", "name": "都安", "parent_id": "353", "first_letter": "d", "shorthand": "da", "pinyin": "douan", "suffix": "自治县", "code": "451228", "sort": "9" }, { "id": "2428", "name": "大化", "parent_id": "353", "first_letter": "d", "shorthand": "dh", "pinyin": "dahua", "suffix": "自治县", "code": "451229", "sort": "10" }, { "id": "2429", "name": "宜州", "parent_id": "353", "first_letter": "y", "shorthand": "yz", "pinyin": "yizhou", "suffix": "市", "code": "451281", "sort": "11" }, { "id": "2430", "name": "兴宾", "parent_id": "354", "first_letter": "x", "shorthand": "xb", "pinyin": "xingbin", "suffix": "区", "code": "451302", "sort": "1" }, { "id": "2431", "name": "忻城", "parent_id": "354", "first_letter": "x", "shorthand": "xc", "pinyin": "xincheng", "suffix": "县", "code": "451321", "sort": "2" }, { "id": "2432", "name": "象州", "parent_id": "354", "first_letter": "x", "shorthand": "xz", "pinyin": "xiangzhou", "suffix": "县", "code": "451322", "sort": "3" }, { "id": "2433", "name": "武宣", "parent_id": "354", "first_letter": "w", "shorthand": "wx", "pinyin": "wuxuan", "suffix": "县", "code": "451323", "sort": "4" }, { "id": "2434", "name": "金秀", "parent_id": "354", "first_letter": "j", "shorthand": "jx", "pinyin": "jinxiu", "suffix": "自治县", "code": "451324", "sort": "5" }, { "id": "2435", "name": "合山", "parent_id": "354", "first_letter": "h", "shorthand": "hs", "pinyin": "heshan", "suffix": "市", "code": "451381", "sort": "6" }, { "id": "2436", "name": "江州", "parent_id": "355", "first_letter": "j", "shorthand": "jz", "pinyin": "jiangzhou", "suffix": "区", "code": "451402", "sort": "1" }, { "id": "2437", "name": "扶绥", "parent_id": "355", "first_letter": "f", "shorthand": "fs", "pinyin": "fusui", "suffix": "县", "code": "451421", "sort": "2" }, { "id": "2438", "name": "宁明", "parent_id": "355", "first_letter": "n", "shorthand": "nm", "pinyin": "ningming", "suffix": "县", "code": "451422", "sort": "3" }, { "id": "2439", "name": "龙州", "parent_id": "355", "first_letter": "l", "shorthand": "lz", "pinyin": "longzhou", "suffix": "县", "code": "451423", "sort": "4" }, { "id": "2440", "name": "大新", "parent_id": "355", "first_letter": "d", "shorthand": "dx", "pinyin": "daxin", "suffix": "县", "code": "451424", "sort": "5" }, { "id": "2441", "name": "天等", "parent_id": "355", "first_letter": "t", "shorthand": "td", "pinyin": "tiandeng", "suffix": "县", "code": "451425", "sort": "6" }, { "id": "2442", "name": "凭祥", "parent_id": "355", "first_letter": "p", "shorthand": "px", "pinyin": "pingxiang", "suffix": "市", "code": "451481", "sort": "7" }, { "id": "2443", "name": "秀英", "parent_id": "356", "first_letter": "x", "shorthand": "xy", "pinyin": "xiuying", "suffix": "区", "code": "460105", "sort": "1" }, { "id": "2444", "name": "龙华", "parent_id": "356", "first_letter": "l", "shorthand": "lh", "pinyin": "longhua", "suffix": "区", "code": "460106", "sort": "2" }, { "id": "2445", "name": "琼山", "parent_id": "356", "first_letter": "q", "shorthand": "qs", "pinyin": "qiongshan", "suffix": "区", "code": "460107", "sort": "3" }, { "id": "2446", "name": "美兰", "parent_id": "356", "first_letter": "m", "shorthand": "ml", "pinyin": "meilan", "suffix": "区", "code": "460108", "sort": "4" }, { "id": "2447", "name": "锦江", "parent_id": "375", "first_letter": "j", "shorthand": "jj", "pinyin": "jinjiang", "suffix": "区", "code": "510104", "sort": "1" }, { "id": "2448", "name": "青羊", "parent_id": "375", "first_letter": "q", "shorthand": "qy", "pinyin": "qingyang", "suffix": "区", "code": "510105", "sort": "2" }, { "id": "2449", "name": "金牛", "parent_id": "375", "first_letter": "j", "shorthand": "jn", "pinyin": "jinniu", "suffix": "区", "code": "510106", "sort": "3" }, { "id": "2450", "name": "武侯", "parent_id": "375", "first_letter": "w", "shorthand": "wh", "pinyin": "wuhou", "suffix": "区", "code": "510107", "sort": "4" }, { "id": "2451", "name": "成华", "parent_id": "375", "first_letter": "c", "shorthand": "ch", "pinyin": "chenghua", "suffix": "区", "code": "510108", "sort": "5" }, { "id": "2452", "name": "龙泉驿", "parent_id": "375", "first_letter": "l", "shorthand": "lqy", "pinyin": "longquanyi", "suffix": "区", "code": "510112", "sort": "6" }, { "id": "2453", "name": "青白江", "parent_id": "375", "first_letter": "q", "shorthand": "qbj", "pinyin": "qingbaijiang", "suffix": "区", "code": "510113", "sort": "7" }, { "id": "2454", "name": "新都", "parent_id": "375", "first_letter": "x", "shorthand": "xd", "pinyin": "xindou", "suffix": "区", "code": "510114", "sort": "8" }, { "id": "2455", "name": "温江", "parent_id": "375", "first_letter": "w", "shorthand": "wj", "pinyin": "wenjiang", "suffix": "区", "code": "510115", "sort": "9" }, { "id": "2456", "name": "金堂", "parent_id": "375", "first_letter": "j", "shorthand": "jt", "pinyin": "jintang", "suffix": "县", "code": "510121", "sort": "10" }, { "id": "2457", "name": "双流", "parent_id": "375", "first_letter": "s", "shorthand": "sl", "pinyin": "shuangliu", "suffix": "县", "code": "510122", "sort": "11" }, { "id": "2458", "name": "郫县", "parent_id": "375", "first_letter": "p", "shorthand": "px", "pinyin": "pixian", "suffix": "", "code": "510124", "sort": "12" }, { "id": "2459", "name": "大邑", "parent_id": "375", "first_letter": "d", "shorthand": "dy", "pinyin": "dayi", "suffix": "县", "code": "510129", "sort": "13" }, { "id": "2460", "name": "蒲江", "parent_id": "375", "first_letter": "p", "shorthand": "pj", "pinyin": "pujiang", "suffix": "县", "code": "510131", "sort": "14" }, { "id": "2461", "name": "新津", "parent_id": "375", "first_letter": "x", "shorthand": "xj", "pinyin": "xinjin", "suffix": "县", "code": "510132", "sort": "15" }, { "id": "2462", "name": "都江堰", "parent_id": "375", "first_letter": "d", "shorthand": "djy", "pinyin": "doujiangyan", "suffix": "市", "code": "510181", "sort": "16" }, { "id": "2463", "name": "彭州", "parent_id": "375", "first_letter": "p", "shorthand": "pz", "pinyin": "pengzhou", "suffix": "市", "code": "510182", "sort": "17" }, { "id": "2464", "name": "邛崃", "parent_id": "375", "first_letter": "q", "shorthand": "ql", "pinyin": "qionglai", "suffix": "市", "code": "510183", "sort": "18" }, { "id": "2465", "name": "崇州", "parent_id": "375", "first_letter": "c", "shorthand": "cz", "pinyin": "chongzhou", "suffix": "市", "code": "510184", "sort": "19" }, { "id": "2466", "name": "自流井", "parent_id": "376", "first_letter": "z", "shorthand": "zlj", "pinyin": "ziliujing", "suffix": "区", "code": "510302", "sort": "1" }, { "id": "2467", "name": "贡井", "parent_id": "376", "first_letter": "g", "shorthand": "gj", "pinyin": "gongjing", "suffix": "区", "code": "510303", "sort": "2" }, { "id": "2468", "name": "大安", "parent_id": "376", "first_letter": "d", "shorthand": "da", "pinyin": "daan", "suffix": "区", "code": "510304", "sort": "3" }, { "id": "2469", "name": "沿滩", "parent_id": "376", "first_letter": "y", "shorthand": "yt", "pinyin": "yantan", "suffix": "区", "code": "510311", "sort": "4" }, { "id": "2470", "name": "荣县", "parent_id": "376", "first_letter": "r", "shorthand": "rx", "pinyin": "rongxian", "suffix": "", "code": "510321", "sort": "5" }, { "id": "2471", "name": "富顺", "parent_id": "376", "first_letter": "f", "shorthand": "fs", "pinyin": "fushun", "suffix": "县", "code": "510322", "sort": "6" }, { "id": "2472", "name": "东区", "parent_id": "377", "first_letter": "d", "shorthand": "dq", "pinyin": "dongqu", "suffix": "", "code": "510402", "sort": "1" }, { "id": "2473", "name": "西区", "parent_id": "377", "first_letter": "x", "shorthand": "xq", "pinyin": "xiqu", "suffix": "", "code": "510403", "sort": "2" }, { "id": "2474", "name": "仁和", "parent_id": "377", "first_letter": "r", "shorthand": "rh", "pinyin": "renhe", "suffix": "区", "code": "510411", "sort": "3" }, { "id": "2475", "name": "米易", "parent_id": "377", "first_letter": "m", "shorthand": "my", "pinyin": "miyi", "suffix": "县", "code": "510421", "sort": "4" }, { "id": "2476", "name": "盐边", "parent_id": "377", "first_letter": "y", "shorthand": "yb", "pinyin": "yanbian", "suffix": "县", "code": "510422", "sort": "5" }, { "id": "2477", "name": "江阳", "parent_id": "378", "first_letter": "j", "shorthand": "jy", "pinyin": "jiangyang", "suffix": "区", "code": "510502", "sort": "1" }, { "id": "2478", "name": "纳溪", "parent_id": "378", "first_letter": "n", "shorthand": "nx", "pinyin": "naxi", "suffix": "区", "code": "510503", "sort": "2" }, { "id": "2479", "name": "龙马潭", "parent_id": "378", "first_letter": "l", "shorthand": "lmt", "pinyin": "longmatan", "suffix": "区", "code": "510504", "sort": "3" }, { "id": "2480", "name": "泸县", "parent_id": "378", "first_letter": "l", "shorthand": "lx", "pinyin": "luxian", "suffix": "", "code": "510521", "sort": "4" }, { "id": "2481", "name": "合江", "parent_id": "378", "first_letter": "h", "shorthand": "hj", "pinyin": "hejiang", "suffix": "县", "code": "510522", "sort": "5" }, { "id": "2482", "name": "叙永", "parent_id": "378", "first_letter": "x", "shorthand": "xy", "pinyin": "xuyong", "suffix": "县", "code": "510524", "sort": "6" }, { "id": "2483", "name": "古蔺", "parent_id": "378", "first_letter": "g", "shorthand": "gl", "pinyin": "gulin", "suffix": "县", "code": "510525", "sort": "7" }, { "id": "2484", "name": "旌阳", "parent_id": "379", "first_letter": "j", "shorthand": "jy", "pinyin": "jingyang", "suffix": "区", "code": "510603", "sort": "1" }, { "id": "2485", "name": "中江", "parent_id": "379", "first_letter": "z", "shorthand": "zj", "pinyin": "zhongjiang", "suffix": "县", "code": "510623", "sort": "2" }, { "id": "2486", "name": "罗江", "parent_id": "379", "first_letter": "l", "shorthand": "lj", "pinyin": "luojiang", "suffix": "县", "code": "510626", "sort": "3" }, { "id": "2487", "name": "广汉", "parent_id": "379", "first_letter": "g", "shorthand": "gh", "pinyin": "guanghan", "suffix": "市", "code": "510681", "sort": "4" }, { "id": "2488", "name": "什邡", "parent_id": "379", "first_letter": "s", "shorthand": "sf", "pinyin": "shenfang", "suffix": "市", "code": "510682", "sort": "5" }, { "id": "2489", "name": "绵竹", "parent_id": "379", "first_letter": "m", "shorthand": "mz", "pinyin": "mianzhu", "suffix": "市", "code": "510683", "sort": "6" }, { "id": "2490", "name": "涪城", "parent_id": "380", "first_letter": "f", "shorthand": "fc", "pinyin": "fucheng", "suffix": "区", "code": "510703", "sort": "1" }, { "id": "2491", "name": "游仙", "parent_id": "380", "first_letter": "y", "shorthand": "yx", "pinyin": "youxian", "suffix": "区", "code": "510704", "sort": "2" }, { "id": "2492", "name": "三台", "parent_id": "380", "first_letter": "s", "shorthand": "st", "pinyin": "santai", "suffix": "县", "code": "510722", "sort": "3" }, { "id": "2493", "name": "盐亭", "parent_id": "380", "first_letter": "y", "shorthand": "yt", "pinyin": "yanting", "suffix": "县", "code": "510723", "sort": "4" }, { "id": "2494", "name": "安县", "parent_id": "380", "first_letter": "a", "shorthand": "ax", "pinyin": "anxian", "suffix": "", "code": "510724", "sort": "5" }, { "id": "2495", "name": "梓潼", "parent_id": "380", "first_letter": "z", "shorthand": "zt", "pinyin": "zitong", "suffix": "县", "code": "510725", "sort": "6" }, { "id": "2496", "name": "北川", "parent_id": "380", "first_letter": "b", "shorthand": "bc", "pinyin": "beichuan", "suffix": "自治县", "code": "510726", "sort": "7" }, { "id": "2497", "name": "平武", "parent_id": "380", "first_letter": "p", "shorthand": "pw", "pinyin": "pingwu", "suffix": "县", "code": "510727", "sort": "8" }, { "id": "2498", "name": "江油", "parent_id": "380", "first_letter": "j", "shorthand": "jy", "pinyin": "jiangyou", "suffix": "市", "code": "510781", "sort": "9" }, { "id": "2499", "name": "利州", "parent_id": "381", "first_letter": "l", "shorthand": "lz", "pinyin": "lizhou", "suffix": "区", "code": "510802", "sort": "1" }, { "id": "2500", "name": "昭化", "parent_id": "381", "first_letter": "z", "shorthand": "zh", "pinyin": "zhaohua", "suffix": "区", "code": "510811", "sort": "2" }, { "id": "2501", "name": "朝天", "parent_id": "381", "first_letter": "c", "shorthand": "ct", "pinyin": "chaotian", "suffix": "区", "code": "510812", "sort": "3" }, { "id": "2502", "name": "旺苍", "parent_id": "381", "first_letter": "w", "shorthand": "wc", "pinyin": "wangcang", "suffix": "县", "code": "510821", "sort": "4" }, { "id": "2503", "name": "青川", "parent_id": "381", "first_letter": "q", "shorthand": "qc", "pinyin": "qingchuan", "suffix": "县", "code": "510822", "sort": "5" }, { "id": "2504", "name": "剑阁", "parent_id": "381", "first_letter": "j", "shorthand": "jg", "pinyin": "jiange", "suffix": "县", "code": "510823", "sort": "6" }, { "id": "2505", "name": "苍溪", "parent_id": "381", "first_letter": "c", "shorthand": "cx", "pinyin": "cangxi", "suffix": "县", "code": "510824", "sort": "7" }, { "id": "2506", "name": "船山", "parent_id": "382", "first_letter": "c", "shorthand": "cs", "pinyin": "chuanshan", "suffix": "区", "code": "510903", "sort": "1" }, { "id": "2507", "name": "安居", "parent_id": "382", "first_letter": "a", "shorthand": "aj", "pinyin": "anju", "suffix": "区", "code": "510904", "sort": "2" }, { "id": "2508", "name": "蓬溪", "parent_id": "382", "first_letter": "p", "shorthand": "px", "pinyin": "pengxi", "suffix": "县", "code": "510921", "sort": "3" }, { "id": "2509", "name": "射洪", "parent_id": "382", "first_letter": "s", "shorthand": "sh", "pinyin": "shehong", "suffix": "县", "code": "510922", "sort": "4" }, { "id": "2510", "name": "大英", "parent_id": "382", "first_letter": "d", "shorthand": "dy", "pinyin": "daying", "suffix": "县", "code": "510923", "sort": "5" }, { "id": "2511", "name": "市中", "parent_id": "383", "first_letter": "s", "shorthand": "sz", "pinyin": "shizhong", "suffix": "区", "code": "511002", "sort": "1" }, { "id": "2512", "name": "东兴", "parent_id": "383", "first_letter": "d", "shorthand": "dx", "pinyin": "dongxing", "suffix": "区", "code": "511011", "sort": "2" }, { "id": "2513", "name": "威远", "parent_id": "383", "first_letter": "w", "shorthand": "wy", "pinyin": "weiyuan", "suffix": "县", "code": "511024", "sort": "3" }, { "id": "2514", "name": "资中", "parent_id": "383", "first_letter": "z", "shorthand": "zz", "pinyin": "zizhong", "suffix": "县", "code": "511025", "sort": "4" }, { "id": "2515", "name": "隆昌", "parent_id": "383", "first_letter": "l", "shorthand": "lc", "pinyin": "longchang", "suffix": "县", "code": "511028", "sort": "5" }, { "id": "2516", "name": "市中", "parent_id": "384", "first_letter": "s", "shorthand": "sz", "pinyin": "shizhong", "suffix": "区", "code": "511102", "sort": "1" }, { "id": "2517", "name": "沙湾", "parent_id": "384", "first_letter": "s", "shorthand": "sw", "pinyin": "shawan", "suffix": "区", "code": "511111", "sort": "2" }, { "id": "2518", "name": "五通桥", "parent_id": "384", "first_letter": "w", "shorthand": "wtq", "pinyin": "wutongqiao", "suffix": "区", "code": "511112", "sort": "3" }, { "id": "2519", "name": "金口河", "parent_id": "384", "first_letter": "j", "shorthand": "jkh", "pinyin": "jinkouhe", "suffix": "区", "code": "511113", "sort": "4" }, { "id": "2520", "name": "犍为", "parent_id": "384", "first_letter": "j", "shorthand": "jw", "pinyin": "jianwei", "suffix": "县", "code": "511123", "sort": "5" }, { "id": "2521", "name": "井研", "parent_id": "384", "first_letter": "j", "shorthand": "jy", "pinyin": "jingyan", "suffix": "县", "code": "511124", "sort": "6" }, { "id": "2522", "name": "夹江", "parent_id": "384", "first_letter": "j", "shorthand": "jj", "pinyin": "jiajiang", "suffix": "县", "code": "511126", "sort": "7" }, { "id": "2523", "name": "沐川", "parent_id": "384", "first_letter": "m", "shorthand": "mc", "pinyin": "muchuan", "suffix": "县", "code": "511129", "sort": "8" }, { "id": "2524", "name": "峨边", "parent_id": "384", "first_letter": "e", "shorthand": "eb", "pinyin": "ebian", "suffix": "自治县", "code": "511132", "sort": "9" }, { "id": "2525", "name": "马边", "parent_id": "384", "first_letter": "m", "shorthand": "mb", "pinyin": "mabian", "suffix": "自治县", "code": "511133", "sort": "10" }, { "id": "2526", "name": "峨眉山", "parent_id": "384", "first_letter": "e", "shorthand": "ems", "pinyin": "emeishan", "suffix": "市", "code": "511181", "sort": "11" }, { "id": "2527", "name": "顺庆", "parent_id": "385", "first_letter": "s", "shorthand": "sq", "pinyin": "shunqing", "suffix": "区", "code": "511302", "sort": "1" }, { "id": "2528", "name": "高坪", "parent_id": "385", "first_letter": "g", "shorthand": "gp", "pinyin": "gaoping", "suffix": "区", "code": "511303", "sort": "2" }, { "id": "2529", "name": "嘉陵", "parent_id": "385", "first_letter": "j", "shorthand": "jl", "pinyin": "jialing", "suffix": "区", "code": "511304", "sort": "3" }, { "id": "2530", "name": "南部", "parent_id": "385", "first_letter": "n", "shorthand": "nb", "pinyin": "nanbu", "suffix": "县", "code": "511321", "sort": "4" }, { "id": "2531", "name": "营山", "parent_id": "385", "first_letter": "y", "shorthand": "ys", "pinyin": "yingshan", "suffix": "县", "code": "511322", "sort": "5" }, { "id": "2532", "name": "蓬安", "parent_id": "385", "first_letter": "p", "shorthand": "pa", "pinyin": "pengan", "suffix": "县", "code": "511323", "sort": "6" }, { "id": "2533", "name": "仪陇", "parent_id": "385", "first_letter": "y", "shorthand": "yl", "pinyin": "yilong", "suffix": "县", "code": "511324", "sort": "7" }, { "id": "2534", "name": "西充", "parent_id": "385", "first_letter": "x", "shorthand": "xc", "pinyin": "xichong", "suffix": "县", "code": "511325", "sort": "8" }, { "id": "2535", "name": "阆中", "parent_id": "385", "first_letter": "l", "shorthand": "lz", "pinyin": "langzhong", "suffix": "市", "code": "511381", "sort": "9" }, { "id": "2536", "name": "东坡", "parent_id": "386", "first_letter": "d", "shorthand": "dp", "pinyin": "dongpo", "suffix": "区", "code": "511402", "sort": "1" }, { "id": "2537", "name": "仁寿", "parent_id": "386", "first_letter": "r", "shorthand": "rs", "pinyin": "renshou", "suffix": "县", "code": "511421", "sort": "2" }, { "id": "2538", "name": "彭山", "parent_id": "386", "first_letter": "p", "shorthand": "ps", "pinyin": "pengshan", "suffix": "区", "code": "511422", "sort": "3" }, { "id": "2539", "name": "洪雅", "parent_id": "386", "first_letter": "h", "shorthand": "hy", "pinyin": "hongya", "suffix": "县", "code": "511423", "sort": "4" }, { "id": "2540", "name": "丹棱", "parent_id": "386", "first_letter": "d", "shorthand": "dl", "pinyin": "danleng", "suffix": "县", "code": "511424", "sort": "5" }, { "id": "2541", "name": "青神", "parent_id": "386", "first_letter": "q", "shorthand": "qs", "pinyin": "qingshen", "suffix": "县", "code": "511425", "sort": "6" }, { "id": "2542", "name": "翠屏", "parent_id": "387", "first_letter": "c", "shorthand": "cp", "pinyin": "cuiping", "suffix": "区", "code": "511502", "sort": "1" }, { "id": "2543", "name": "南溪", "parent_id": "387", "first_letter": "n", "shorthand": "nx", "pinyin": "nanxi", "suffix": "区", "code": "511503", "sort": "2" }, { "id": "2544", "name": "宜宾", "parent_id": "387", "first_letter": "y", "shorthand": "yb", "pinyin": "yibin", "suffix": "县", "code": "511521", "sort": "3" }, { "id": "2545", "name": "江安", "parent_id": "387", "first_letter": "j", "shorthand": "ja", "pinyin": "jiangan", "suffix": "县", "code": "511523", "sort": "4" }, { "id": "2546", "name": "长宁", "parent_id": "387", "first_letter": "z", "shorthand": "zn", "pinyin": "zhangning", "suffix": "县", "code": "511524", "sort": "5" }, { "id": "2547", "name": "高县", "parent_id": "387", "first_letter": "g", "shorthand": "gx", "pinyin": "gaoxian", "suffix": "", "code": "511525", "sort": "6" }, { "id": "2548", "name": "珙县", "parent_id": "387", "first_letter": "g", "shorthand": "gx", "pinyin": "gongxian", "suffix": "", "code": "511526", "sort": "7" }, { "id": "2549", "name": "筠连", "parent_id": "387", "first_letter": "y", "shorthand": "yl", "pinyin": "yunlian", "suffix": "县", "code": "511527", "sort": "8" }, { "id": "2550", "name": "兴文", "parent_id": "387", "first_letter": "x", "shorthand": "xw", "pinyin": "xingwen", "suffix": "县", "code": "511528", "sort": "9" }, { "id": "2551", "name": "屏山", "parent_id": "387", "first_letter": "p", "shorthand": "ps", "pinyin": "pingshan", "suffix": "县", "code": "511529", "sort": "10" }, { "id": "2552", "name": "广安", "parent_id": "388", "first_letter": "g", "shorthand": "ga", "pinyin": "guangan", "suffix": "区", "code": "511602", "sort": "1" }, { "id": "2553", "name": "岳池", "parent_id": "388", "first_letter": "y", "shorthand": "yc", "pinyin": "yuechi", "suffix": "县", "code": "511621", "sort": "3" }, { "id": "2554", "name": "武胜", "parent_id": "388", "first_letter": "w", "shorthand": "ws", "pinyin": "wusheng", "suffix": "县", "code": "511622", "sort": "4" }, { "id": "2555", "name": "邻水", "parent_id": "388", "first_letter": "l", "shorthand": "ls", "pinyin": "linshui", "suffix": "县", "code": "511623", "sort": "5" }, { "id": "2556", "name": "华蓥", "parent_id": "388", "first_letter": "h", "shorthand": "hy", "pinyin": "huaying", "suffix": "市", "code": "511681", "sort": "6" }, { "id": "2557", "name": "通川", "parent_id": "389", "first_letter": "t", "shorthand": "tc", "pinyin": "tongchuan", "suffix": "区", "code": "511702", "sort": "1" }, { "id": "2558", "name": "达川", "parent_id": "389", "first_letter": "d", "shorthand": "dc", "pinyin": "dachuan", "suffix": "区", "code": "511721", "sort": "2" }, { "id": "2559", "name": "宣汉", "parent_id": "389", "first_letter": "x", "shorthand": "xh", "pinyin": "xuanhan", "suffix": "县", "code": "511722", "sort": "3" }, { "id": "2560", "name": "开江", "parent_id": "389", "first_letter": "k", "shorthand": "kj", "pinyin": "kaijiang", "suffix": "县", "code": "511723", "sort": "4" }, { "id": "2561", "name": "大竹", "parent_id": "389", "first_letter": "d", "shorthand": "dz", "pinyin": "dazhu", "suffix": "县", "code": "511724", "sort": "5" }, { "id": "2562", "name": "渠县", "parent_id": "389", "first_letter": "q", "shorthand": "qx", "pinyin": "quxian", "suffix": "", "code": "511725", "sort": "6" }, { "id": "2563", "name": "万源", "parent_id": "389", "first_letter": "w", "shorthand": "wy", "pinyin": "wanyuan", "suffix": "市", "code": "511781", "sort": "7" }, { "id": "2564", "name": "雨城", "parent_id": "390", "first_letter": "y", "shorthand": "yc", "pinyin": "yucheng", "suffix": "区", "code": "511802", "sort": "1" }, { "id": "2565", "name": "名山", "parent_id": "390", "first_letter": "m", "shorthand": "ms", "pinyin": "mingshan", "suffix": "区", "code": "511803", "sort": "2" }, { "id": "2566", "name": "荥经", "parent_id": "390", "first_letter": "y", "shorthand": "yj", "pinyin": "yingjing", "suffix": "县", "code": "511822", "sort": "3" }, { "id": "2567", "name": "汉源", "parent_id": "390", "first_letter": "h", "shorthand": "hy", "pinyin": "hanyuan", "suffix": "县", "code": "511823", "sort": "4" }, { "id": "2568", "name": "石棉", "parent_id": "390", "first_letter": "s", "shorthand": "sm", "pinyin": "shimian", "suffix": "县", "code": "511824", "sort": "5" }, { "id": "2569", "name": "天全", "parent_id": "390", "first_letter": "t", "shorthand": "tq", "pinyin": "tianquan", "suffix": "县", "code": "511825", "sort": "6" }, { "id": "2570", "name": "芦山", "parent_id": "390", "first_letter": "l", "shorthand": "ls", "pinyin": "lushan", "suffix": "县", "code": "511826", "sort": "7" }, { "id": "2571", "name": "宝兴", "parent_id": "390", "first_letter": "b", "shorthand": "bx", "pinyin": "baoxing", "suffix": "县", "code": "511827", "sort": "8" }, { "id": "2572", "name": "巴州", "parent_id": "391", "first_letter": "b", "shorthand": "bz", "pinyin": "bazhou", "suffix": "区", "code": "511902", "sort": "1" }, { "id": "2573", "name": "通江", "parent_id": "391", "first_letter": "t", "shorthand": "tj", "pinyin": "tongjiang", "suffix": "县", "code": "511921", "sort": "2" }, { "id": "2574", "name": "南江", "parent_id": "391", "first_letter": "n", "shorthand": "nj", "pinyin": "nanjiang", "suffix": "县", "code": "511922", "sort": "3" }, { "id": "2575", "name": "平昌", "parent_id": "391", "first_letter": "p", "shorthand": "pc", "pinyin": "pingchang", "suffix": "县", "code": "511923", "sort": "4" }, { "id": "2576", "name": "雁江", "parent_id": "392", "first_letter": "y", "shorthand": "yj", "pinyin": "yanjiang", "suffix": "区", "code": "512002", "sort": "1" }, { "id": "2577", "name": "安岳", "parent_id": "392", "first_letter": "a", "shorthand": "ay", "pinyin": "anyue", "suffix": "县", "code": "512021", "sort": "2" }, { "id": "2578", "name": "乐至", "parent_id": "392", "first_letter": "l", "shorthand": "lz", "pinyin": "lezhi", "suffix": "县", "code": "512022", "sort": "3" }, { "id": "2579", "name": "简阳", "parent_id": "392", "first_letter": "j", "shorthand": "jy", "pinyin": "jianyang", "suffix": "市", "code": "512081", "sort": "4" }, { "id": "2580", "name": "马尔康", "parent_id": "393", "first_letter": "m", "shorthand": "mek", "pinyin": "maerkang", "suffix": "县", "code": "513229", "sort": "1" }, { "id": "2581", "name": "汶川", "parent_id": "393", "first_letter": "w", "shorthand": "wc", "pinyin": "wenchuan", "suffix": "县", "code": "513221", "sort": "2" }, { "id": "2582", "name": "理县", "parent_id": "393", "first_letter": "l", "shorthand": "lx", "pinyin": "lixian", "suffix": "", "code": "513222", "sort": "3" }, { "id": "2583", "name": "茂县", "parent_id": "393", "first_letter": "m", "shorthand": "mx", "pinyin": "maoxian", "suffix": "", "code": "513223", "sort": "4" }, { "id": "2584", "name": "松潘", "parent_id": "393", "first_letter": "s", "shorthand": "sp", "pinyin": "songpan", "suffix": "县", "code": "513224", "sort": "5" }, { "id": "2585", "name": "九寨沟", "parent_id": "393", "first_letter": "j", "shorthand": "jzg", "pinyin": "jiuzhaigou", "suffix": "县", "code": "513225", "sort": "6" }, { "id": "2586", "name": "金川", "parent_id": "393", "first_letter": "j", "shorthand": "jc", "pinyin": "jinchuan", "suffix": "县", "code": "513226", "sort": "7" }, { "id": "2587", "name": "小金", "parent_id": "393", "first_letter": "x", "shorthand": "xj", "pinyin": "xiaojin", "suffix": "县", "code": "513227", "sort": "8" }, { "id": "2588", "name": "黑水", "parent_id": "393", "first_letter": "h", "shorthand": "hs", "pinyin": "heishui", "suffix": "县", "code": "513228", "sort": "9" }, { "id": "2589", "name": "壤塘", "parent_id": "393", "first_letter": "r", "shorthand": "rt", "pinyin": "rangtang", "suffix": "县", "code": "513230", "sort": "10" }, { "id": "2590", "name": "阿坝", "parent_id": "393", "first_letter": "a", "shorthand": "ab", "pinyin": "aba", "suffix": "县", "code": "513231", "sort": "11" }, { "id": "2591", "name": "若尔盖", "parent_id": "393", "first_letter": "r", "shorthand": "reg", "pinyin": "ruoergai", "suffix": "县", "code": "513232", "sort": "12" }, { "id": "2592", "name": "红原", "parent_id": "393", "first_letter": "h", "shorthand": "hy", "pinyin": "hongyuan", "suffix": "县", "code": "513233", "sort": "13" }, { "id": "2593", "name": "康定", "parent_id": "394", "first_letter": "k", "shorthand": "kd", "pinyin": "kangding", "suffix": "市", "code": "513301", "sort": "1" }, { "id": "2594", "name": "泸定", "parent_id": "394", "first_letter": "l", "shorthand": "ld", "pinyin": "luding", "suffix": "县", "code": "513322", "sort": "2" }, { "id": "2595", "name": "丹巴", "parent_id": "394", "first_letter": "d", "shorthand": "db", "pinyin": "danba", "suffix": "县", "code": "513323", "sort": "3" }, { "id": "2596", "name": "九龙", "parent_id": "394", "first_letter": "j", "shorthand": "jl", "pinyin": "jiulong", "suffix": "县", "code": "513324", "sort": "4" }, { "id": "2597", "name": "雅江", "parent_id": "394", "first_letter": "y", "shorthand": "yj", "pinyin": "yajiang", "suffix": "县", "code": "513325", "sort": "5" }, { "id": "2598", "name": "道孚", "parent_id": "394", "first_letter": "d", "shorthand": "df", "pinyin": "daofu", "suffix": "县", "code": "513326", "sort": "6" }, { "id": "2599", "name": "炉霍", "parent_id": "394", "first_letter": "l", "shorthand": "lh", "pinyin": "luhuo", "suffix": "县", "code": "513327", "sort": "7" }, { "id": "2600", "name": "甘孜", "parent_id": "394", "first_letter": "g", "shorthand": "gz", "pinyin": "ganzi", "suffix": "县", "code": "513328", "sort": "8" }, { "id": "2601", "name": "新龙", "parent_id": "394", "first_letter": "x", "shorthand": "xl", "pinyin": "xinlong", "suffix": "县", "code": "513329", "sort": "9" }, { "id": "2602", "name": "德格", "parent_id": "394", "first_letter": "d", "shorthand": "dg", "pinyin": "dege", "suffix": "县", "code": "513330", "sort": "10" }, { "id": "2603", "name": "白玉", "parent_id": "394", "first_letter": "b", "shorthand": "by", "pinyin": "baiyu", "suffix": "县", "code": "513331", "sort": "11" }, { "id": "2604", "name": "石渠", "parent_id": "394", "first_letter": "s", "shorthand": "sq", "pinyin": "shiqu", "suffix": "县", "code": "513332", "sort": "12" }, { "id": "2605", "name": "色达", "parent_id": "394", "first_letter": "s", "shorthand": "sd", "pinyin": "seda", "suffix": "县", "code": "513333", "sort": "13" }, { "id": "2606", "name": "理塘", "parent_id": "394", "first_letter": "l", "shorthand": "lt", "pinyin": "litang", "suffix": "县", "code": "513334", "sort": "14" }, { "id": "2607", "name": "巴塘", "parent_id": "394", "first_letter": "b", "shorthand": "bt", "pinyin": "batang", "suffix": "县", "code": "513335", "sort": "15" }, { "id": "2608", "name": "乡城", "parent_id": "394", "first_letter": "x", "shorthand": "xc", "pinyin": "xiangcheng", "suffix": "县", "code": "513336", "sort": "16" }, { "id": "2609", "name": "稻城", "parent_id": "394", "first_letter": "d", "shorthand": "dc", "pinyin": "daocheng", "suffix": "县", "code": "513337", "sort": "17" }, { "id": "2610", "name": "得荣", "parent_id": "394", "first_letter": "d", "shorthand": "dr", "pinyin": "derong", "suffix": "县", "code": "513338", "sort": "18" }, { "id": "2611", "name": "西昌", "parent_id": "395", "first_letter": "x", "shorthand": "xc", "pinyin": "xichang", "suffix": "市", "code": "513401", "sort": "1" }, { "id": "2612", "name": "木里", "parent_id": "395", "first_letter": "m", "shorthand": "ml", "pinyin": "muli", "suffix": "自治县", "code": "513422", "sort": "2" }, { "id": "2613", "name": "盐源", "parent_id": "395", "first_letter": "y", "shorthand": "yy", "pinyin": "yanyuan", "suffix": "县", "code": "513423", "sort": "3" }, { "id": "2614", "name": "德昌", "parent_id": "395", "first_letter": "d", "shorthand": "dc", "pinyin": "dechang", "suffix": "县", "code": "513424", "sort": "4" }, { "id": "2615", "name": "会理", "parent_id": "395", "first_letter": "h", "shorthand": "hl", "pinyin": "huili", "suffix": "县", "code": "513425", "sort": "5" }, { "id": "2616", "name": "会东", "parent_id": "395", "first_letter": "h", "shorthand": "hd", "pinyin": "huidong", "suffix": "县", "code": "513426", "sort": "6" }, { "id": "2617", "name": "宁南", "parent_id": "395", "first_letter": "n", "shorthand": "nn", "pinyin": "ningnan", "suffix": "县", "code": "513427", "sort": "7" }, { "id": "2618", "name": "普格", "parent_id": "395", "first_letter": "p", "shorthand": "pg", "pinyin": "puge", "suffix": "县", "code": "513428", "sort": "8" }, { "id": "2619", "name": "布拖", "parent_id": "395", "first_letter": "b", "shorthand": "bt", "pinyin": "butuo", "suffix": "县", "code": "513429", "sort": "9" }, { "id": "2620", "name": "金阳", "parent_id": "395", "first_letter": "j", "shorthand": "jy", "pinyin": "jinyang", "suffix": "县", "code": "513430", "sort": "10" }, { "id": "2621", "name": "昭觉", "parent_id": "395", "first_letter": "z", "shorthand": "zj", "pinyin": "zhaojue", "suffix": "县", "code": "513431", "sort": "11" }, { "id": "2622", "name": "喜德", "parent_id": "395", "first_letter": "x", "shorthand": "xd", "pinyin": "xide", "suffix": "县", "code": "513432", "sort": "12" }, { "id": "2623", "name": "冕宁", "parent_id": "395", "first_letter": "m", "shorthand": "mn", "pinyin": "mianning", "suffix": "县", "code": "513433", "sort": "13" }, { "id": "2624", "name": "越西", "parent_id": "395", "first_letter": "y", "shorthand": "yx", "pinyin": "yuexi", "suffix": "县", "code": "513434", "sort": "14" }, { "id": "2625", "name": "甘洛", "parent_id": "395", "first_letter": "g", "shorthand": "gl", "pinyin": "ganluo", "suffix": "县", "code": "513435", "sort": "15" }, { "id": "2626", "name": "美姑", "parent_id": "395", "first_letter": "m", "shorthand": "mg", "pinyin": "meigu", "suffix": "县", "code": "513436", "sort": "16" }, { "id": "2627", "name": "雷波", "parent_id": "395", "first_letter": "l", "shorthand": "lb", "pinyin": "leibo", "suffix": "县", "code": "513437", "sort": "17" }, { "id": "2629", "name": "南明", "parent_id": "396", "first_letter": "n", "shorthand": "nm", "pinyin": "nanming", "suffix": "区", "code": "520102", "sort": "2" }, { "id": "2630", "name": "云岩", "parent_id": "396", "first_letter": "y", "shorthand": "yy", "pinyin": "yunyan", "suffix": "区", "code": "520103", "sort": "3" }, { "id": "2631", "name": "花溪", "parent_id": "396", "first_letter": "h", "shorthand": "hx", "pinyin": "huaxi", "suffix": "区", "code": "520111", "sort": "4" }, { "id": "2632", "name": "乌当", "parent_id": "396", "first_letter": "w", "shorthand": "wd", "pinyin": "wudang", "suffix": "区", "code": "520112", "sort": "5" }, { "id": "2633", "name": "白云", "parent_id": "396", "first_letter": "b", "shorthand": "by", "pinyin": "baiyun", "suffix": "区", "code": "520113", "sort": "6" }, { "id": "2634", "name": "开阳", "parent_id": "396", "first_letter": "k", "shorthand": "ky", "pinyin": "kaiyang", "suffix": "县", "code": "520121", "sort": "7" }, { "id": "2635", "name": "息烽", "parent_id": "396", "first_letter": "x", "shorthand": "xf", "pinyin": "xifeng", "suffix": "县", "code": "520122", "sort": "8" }, { "id": "2636", "name": "修文", "parent_id": "396", "first_letter": "x", "shorthand": "xw", "pinyin": "xiuwen", "suffix": "县", "code": "520123", "sort": "9" }, { "id": "2637", "name": "清镇", "parent_id": "396", "first_letter": "q", "shorthand": "qz", "pinyin": "qingzhen", "suffix": "市", "code": "520181", "sort": "10" }, { "id": "2638", "name": "钟山", "parent_id": "397", "first_letter": "z", "shorthand": "zs", "pinyin": "zhongshan", "suffix": "区", "code": "520201", "sort": "1" }, { "id": "2639", "name": "六枝特", "parent_id": "397", "first_letter": "l", "shorthand": "lzt", "pinyin": "liuzhite", "suffix": "区", "code": "520203", "sort": "2" }, { "id": "2640", "name": "水城", "parent_id": "397", "first_letter": "s", "shorthand": "sc", "pinyin": "shuicheng", "suffix": "县", "code": "520221", "sort": "3" }, { "id": "2641", "name": "盘县", "parent_id": "397", "first_letter": "p", "shorthand": "px", "pinyin": "panxian", "suffix": "", "code": "520222", "sort": "4" }, { "id": "2642", "name": "红花岗", "parent_id": "398", "first_letter": "h", "shorthand": "hhg", "pinyin": "honghuagang", "suffix": "区", "code": "520302", "sort": "1" }, { "id": "2643", "name": "汇川", "parent_id": "398", "first_letter": "h", "shorthand": "hc", "pinyin": "huichuan", "suffix": "区", "code": "520303", "sort": "2" }, { "id": "2644", "name": "遵义", "parent_id": "398", "first_letter": "z", "shorthand": "zy", "pinyin": "zunyi", "suffix": "县", "code": "520321", "sort": "3" }, { "id": "2645", "name": "桐梓", "parent_id": "398", "first_letter": "t", "shorthand": "tz", "pinyin": "tongzi", "suffix": "县", "code": "520322", "sort": "4" }, { "id": "2646", "name": "绥阳", "parent_id": "398", "first_letter": "s", "shorthand": "sy", "pinyin": "suiyang", "suffix": "县", "code": "520323", "sort": "5" }, { "id": "2647", "name": "正安", "parent_id": "398", "first_letter": "z", "shorthand": "za", "pinyin": "zhengan", "suffix": "县", "code": "520324", "sort": "6" }, { "id": "2648", "name": "道真", "parent_id": "398", "first_letter": "d", "shorthand": "dz", "pinyin": "daozhen", "suffix": "自治县", "code": "520325", "sort": "7" }, { "id": "2649", "name": "务川", "parent_id": "398", "first_letter": "w", "shorthand": "wc", "pinyin": "wuchuan", "suffix": "自治县", "code": "520326", "sort": "8" }, { "id": "2650", "name": "凤冈", "parent_id": "398", "first_letter": "f", "shorthand": "fg", "pinyin": "fenggang", "suffix": "县", "code": "520327", "sort": "9" }, { "id": "2651", "name": "湄潭", "parent_id": "398", "first_letter": "m", "shorthand": "mt", "pinyin": "meitan", "suffix": "县", "code": "520328", "sort": "10" }, { "id": "2652", "name": "余庆", "parent_id": "398", "first_letter": "y", "shorthand": "yq", "pinyin": "yuqing", "suffix": "县", "code": "520329", "sort": "11" }, { "id": "2653", "name": "习水", "parent_id": "398", "first_letter": "x", "shorthand": "xs", "pinyin": "xishui", "suffix": "县", "code": "520330", "sort": "12" }, { "id": "2654", "name": "赤水", "parent_id": "398", "first_letter": "c", "shorthand": "cs", "pinyin": "chishui", "suffix": "市", "code": "520381", "sort": "13" }, { "id": "2655", "name": "仁怀", "parent_id": "398", "first_letter": "r", "shorthand": "rh", "pinyin": "renhuai", "suffix": "市", "code": "520382", "sort": "14" }, { "id": "2656", "name": "西秀", "parent_id": "399", "first_letter": "x", "shorthand": "xx", "pinyin": "xixiu", "suffix": "区", "code": "520402", "sort": "1" }, { "id": "2657", "name": "平坝", "parent_id": "399", "first_letter": "p", "shorthand": "pb", "pinyin": "pingba", "suffix": "区", "code": "520403", "sort": "2" }, { "id": "2658", "name": "普定", "parent_id": "399", "first_letter": "p", "shorthand": "pd", "pinyin": "puding", "suffix": "县", "code": "520422", "sort": "3" }, { "id": "2659", "name": "镇宁", "parent_id": "399", "first_letter": "z", "shorthand": "zn", "pinyin": "zhenning", "suffix": "自治县", "code": "520423", "sort": "4" }, { "id": "2660", "name": "关岭", "parent_id": "399", "first_letter": "g", "shorthand": "gl", "pinyin": "guanling", "suffix": "自治县", "code": "520424", "sort": "5" }, { "id": "2661", "name": "紫云", "parent_id": "399", "first_letter": "z", "shorthand": "zy", "pinyin": "ziyun", "suffix": "自治县", "code": "520425", "sort": "6" }, { "id": "2662", "name": "七星关", "parent_id": "400", "first_letter": "q", "shorthand": "qxg", "pinyin": "qixingguan", "suffix": "区", "code": "520502", "sort": "1" }, { "id": "2663", "name": "大方", "parent_id": "400", "first_letter": "d", "shorthand": "df", "pinyin": "dafang", "suffix": "县", "code": "520521", "sort": "2" }, { "id": "2664", "name": "黔西", "parent_id": "400", "first_letter": "q", "shorthand": "qx", "pinyin": "qianxi", "suffix": "县", "code": "520522", "sort": "3" }, { "id": "2665", "name": "金沙", "parent_id": "400", "first_letter": "j", "shorthand": "js", "pinyin": "jinsha", "suffix": "县", "code": "520523", "sort": "4" }, { "id": "2666", "name": "织金", "parent_id": "400", "first_letter": "z", "shorthand": "zj", "pinyin": "zhijin", "suffix": "县", "code": "520524", "sort": "5" }, { "id": "2667", "name": "纳雍", "parent_id": "400", "first_letter": "n", "shorthand": "ny", "pinyin": "nayong", "suffix": "县", "code": "520525", "sort": "6" }, { "id": "2668", "name": "威宁", "parent_id": "400", "first_letter": "w", "shorthand": "wn", "pinyin": "weining", "suffix": "自治县", "code": "520526", "sort": "7" }, { "id": "2669", "name": "赫章", "parent_id": "400", "first_letter": "h", "shorthand": "hz", "pinyin": "hezhang", "suffix": "县", "code": "520527", "sort": "8" }, { "id": "2670", "name": "碧江", "parent_id": "401", "first_letter": "b", "shorthand": "bj", "pinyin": "bijiang", "suffix": "区", "code": "520602", "sort": "1" }, { "id": "2671", "name": "万山", "parent_id": "401", "first_letter": "w", "shorthand": "ws", "pinyin": "wanshan", "suffix": "区", "code": "520603", "sort": "2" }, { "id": "2672", "name": "江口", "parent_id": "401", "first_letter": "j", "shorthand": "jk", "pinyin": "jiangkou", "suffix": "县", "code": "520621", "sort": "3" }, { "id": "2673", "name": "玉屏", "parent_id": "401", "first_letter": "y", "shorthand": "yp", "pinyin": "yuping", "suffix": "自治县", "code": "520622", "sort": "4" }, { "id": "2674", "name": "石阡", "parent_id": "401", "first_letter": "s", "shorthand": "sq", "pinyin": "shiqian", "suffix": "县", "code": "520623", "sort": "5" }, { "id": "2675", "name": "思南", "parent_id": "401", "first_letter": "s", "shorthand": "sn", "pinyin": "sinan", "suffix": "县", "code": "520624", "sort": "6" }, { "id": "2676", "name": "印江", "parent_id": "401", "first_letter": "y", "shorthand": "yj", "pinyin": "yinjiang", "suffix": "自治县", "code": "520625", "sort": "7" }, { "id": "2677", "name": "德江", "parent_id": "401", "first_letter": "d", "shorthand": "dj", "pinyin": "dejiang", "suffix": "县", "code": "520626", "sort": "8" }, { "id": "2678", "name": "沿河", "parent_id": "401", "first_letter": "y", "shorthand": "yh", "pinyin": "yanhe", "suffix": "自治县", "code": "520627", "sort": "9" }, { "id": "2679", "name": "松桃", "parent_id": "401", "first_letter": "s", "shorthand": "st", "pinyin": "songtao", "suffix": "自治县", "code": "520628", "sort": "10" }, { "id": "2680", "name": "兴义", "parent_id": "402", "first_letter": "x", "shorthand": "xy", "pinyin": "xingyi", "suffix": "市", "code": "522301", "sort": "1" }, { "id": "2681", "name": "兴仁", "parent_id": "402", "first_letter": "x", "shorthand": "xr", "pinyin": "xingren", "suffix": "县", "code": "522322", "sort": "2" }, { "id": "2682", "name": "普安", "parent_id": "402", "first_letter": "p", "shorthand": "pa", "pinyin": "puan", "suffix": "县", "code": "522323", "sort": "3" }, { "id": "2683", "name": "晴隆", "parent_id": "402", "first_letter": "q", "shorthand": "ql", "pinyin": "qinglong", "suffix": "县", "code": "522324", "sort": "4" }, { "id": "2684", "name": "贞丰", "parent_id": "402", "first_letter": "z", "shorthand": "zf", "pinyin": "zhenfeng", "suffix": "县", "code": "522325", "sort": "5" }, { "id": "2685", "name": "望谟", "parent_id": "402", "first_letter": "w", "shorthand": "wm", "pinyin": "wangmo", "suffix": "县", "code": "522326", "sort": "6" }, { "id": "2686", "name": "册亨", "parent_id": "402", "first_letter": "c", "shorthand": "ch", "pinyin": "ceheng", "suffix": "县", "code": "522327", "sort": "7" }, { "id": "2687", "name": "安龙", "parent_id": "402", "first_letter": "a", "shorthand": "al", "pinyin": "anlong", "suffix": "县", "code": "522328", "sort": "8" }, { "id": "2688", "name": "凯里", "parent_id": "403", "first_letter": "k", "shorthand": "kl", "pinyin": "kaili", "suffix": "市", "code": "522601", "sort": "1" }, { "id": "2689", "name": "黄平", "parent_id": "403", "first_letter": "h", "shorthand": "hp", "pinyin": "huangping", "suffix": "县", "code": "522622", "sort": "2" }, { "id": "2690", "name": "施秉", "parent_id": "403", "first_letter": "s", "shorthand": "sb", "pinyin": "shibing", "suffix": "县", "code": "522623", "sort": "3" }, { "id": "2691", "name": "三穗", "parent_id": "403", "first_letter": "s", "shorthand": "ss", "pinyin": "sansui", "suffix": "县", "code": "522624", "sort": "4" }, { "id": "2692", "name": "镇远", "parent_id": "403", "first_letter": "z", "shorthand": "zy", "pinyin": "zhenyuan", "suffix": "县", "code": "522625", "sort": "5" }, { "id": "2693", "name": "岑巩", "parent_id": "403", "first_letter": "c", "shorthand": "cg", "pinyin": "cengong", "suffix": "县", "code": "522626", "sort": "6" }, { "id": "2694", "name": "天柱", "parent_id": "403", "first_letter": "t", "shorthand": "tz", "pinyin": "tianzhu", "suffix": "县", "code": "522627", "sort": "7" }, { "id": "2695", "name": "锦屏", "parent_id": "403", "first_letter": "j", "shorthand": "jp", "pinyin": "jinping", "suffix": "县", "code": "522628", "sort": "8" }, { "id": "2696", "name": "剑河", "parent_id": "403", "first_letter": "j", "shorthand": "jh", "pinyin": "jianhe", "suffix": "县", "code": "522629", "sort": "9" }, { "id": "2697", "name": "台江", "parent_id": "403", "first_letter": "t", "shorthand": "tj", "pinyin": "taijiang", "suffix": "县", "code": "522630", "sort": "10" }, { "id": "2698", "name": "黎平", "parent_id": "403", "first_letter": "l", "shorthand": "lp", "pinyin": "liping", "suffix": "县", "code": "522631", "sort": "11" }, { "id": "2699", "name": "榕江", "parent_id": "403", "first_letter": "r", "shorthand": "rj", "pinyin": "rongjiang", "suffix": "县", "code": "522632", "sort": "12" }, { "id": "2700", "name": "从江", "parent_id": "403", "first_letter": "c", "shorthand": "cj", "pinyin": "congjiang", "suffix": "县", "code": "522633", "sort": "13" }, { "id": "2701", "name": "雷山", "parent_id": "403", "first_letter": "l", "shorthand": "ls", "pinyin": "leishan", "suffix": "县", "code": "522634", "sort": "14" }, { "id": "2702", "name": "麻江", "parent_id": "403", "first_letter": "m", "shorthand": "mj", "pinyin": "majiang", "suffix": "县", "code": "522635", "sort": "15" }, { "id": "2703", "name": "丹寨", "parent_id": "403", "first_letter": "d", "shorthand": "dz", "pinyin": "danzhai", "suffix": "县", "code": "522636", "sort": "16" }, { "id": "2704", "name": "都匀", "parent_id": "404", "first_letter": "d", "shorthand": "dy", "pinyin": "douyun", "suffix": "市", "code": "522701", "sort": "1" }, { "id": "2705", "name": "福泉", "parent_id": "404", "first_letter": "f", "shorthand": "fq", "pinyin": "fuquan", "suffix": "市", "code": "522702", "sort": "2" }, { "id": "2706", "name": "荔波", "parent_id": "404", "first_letter": "l", "shorthand": "lb", "pinyin": "libo", "suffix": "县", "code": "522722", "sort": "3" }, { "id": "2707", "name": "贵定", "parent_id": "404", "first_letter": "g", "shorthand": "gd", "pinyin": "guiding", "suffix": "县", "code": "522723", "sort": "4" }, { "id": "2708", "name": "瓮安", "parent_id": "404", "first_letter": "w", "shorthand": "wa", "pinyin": "wengan", "suffix": "县", "code": "522725", "sort": "5" }, { "id": "2709", "name": "独山", "parent_id": "404", "first_letter": "d", "shorthand": "ds", "pinyin": "dushan", "suffix": "县", "code": "522726", "sort": "6" }, { "id": "2710", "name": "平塘", "parent_id": "404", "first_letter": "p", "shorthand": "pt", "pinyin": "pingtang", "suffix": "县", "code": "522727", "sort": "7" }, { "id": "2711", "name": "罗甸", "parent_id": "404", "first_letter": "l", "shorthand": "ld", "pinyin": "luodian", "suffix": "县", "code": "522728", "sort": "8" }, { "id": "2712", "name": "长顺", "parent_id": "404", "first_letter": "z", "shorthand": "zs", "pinyin": "zhangshun", "suffix": "县", "code": "522729", "sort": "9" }, { "id": "2713", "name": "龙里", "parent_id": "404", "first_letter": "l", "shorthand": "ll", "pinyin": "longli", "suffix": "县", "code": "522730", "sort": "10" }, { "id": "2714", "name": "惠水", "parent_id": "404", "first_letter": "h", "shorthand": "hs", "pinyin": "huishui", "suffix": "县", "code": "522731", "sort": "11" }, { "id": "2715", "name": "三都", "parent_id": "404", "first_letter": "s", "shorthand": "sd", "pinyin": "sandou", "suffix": "自治县", "code": "522732", "sort": "12" }, { "id": "2716", "name": "五华", "parent_id": "405", "first_letter": "w", "shorthand": "wh", "pinyin": "wuhua", "suffix": "区", "code": "530102", "sort": "1" }, { "id": "2717", "name": "盘龙", "parent_id": "405", "first_letter": "p", "shorthand": "pl", "pinyin": "panlong", "suffix": "区", "code": "530103", "sort": "2" }, { "id": "2718", "name": "官渡", "parent_id": "405", "first_letter": "g", "shorthand": "gd", "pinyin": "guandu", "suffix": "区", "code": "530111", "sort": "3" }, { "id": "2719", "name": "西山", "parent_id": "405", "first_letter": "x", "shorthand": "xs", "pinyin": "xishan", "suffix": "区", "code": "530112", "sort": "4" }, { "id": "2720", "name": "东川", "parent_id": "405", "first_letter": "d", "shorthand": "dc", "pinyin": "dongchuan", "suffix": "区", "code": "530113", "sort": "5" }, { "id": "2721", "name": "呈贡", "parent_id": "405", "first_letter": "c", "shorthand": "cg", "pinyin": "chenggong", "suffix": "区", "code": "530114", "sort": "6" }, { "id": "2722", "name": "晋宁", "parent_id": "405", "first_letter": "j", "shorthand": "jn", "pinyin": "jinning", "suffix": "县", "code": "530122", "sort": "7" }, { "id": "2723", "name": "富民", "parent_id": "405", "first_letter": "f", "shorthand": "fm", "pinyin": "fumin", "suffix": "县", "code": "530124", "sort": "8" }, { "id": "2724", "name": "宜良", "parent_id": "405", "first_letter": "y", "shorthand": "yl", "pinyin": "yiliang", "suffix": "县", "code": "530125", "sort": "9" }, { "id": "2725", "name": "石林", "parent_id": "405", "first_letter": "s", "shorthand": "sl", "pinyin": "shilin", "suffix": "自治县", "code": "530126", "sort": "10" }, { "id": "2726", "name": "嵩明", "parent_id": "405", "first_letter": "s", "shorthand": "sm", "pinyin": "songming", "suffix": "县", "code": "530127", "sort": "11" }, { "id": "2727", "name": "禄劝", "parent_id": "405", "first_letter": "l", "shorthand": "lq", "pinyin": "luquan", "suffix": "自治县", "code": "530128", "sort": "12" }, { "id": "2728", "name": "寻甸", "parent_id": "405", "first_letter": "x", "shorthand": "xd", "pinyin": "xundian", "suffix": "自治县", "code": "530129", "sort": "13" }, { "id": "2729", "name": "安宁", "parent_id": "405", "first_letter": "a", "shorthand": "an", "pinyin": "anning", "suffix": "市", "code": "530181", "sort": "14" }, { "id": "2730", "name": "麒麟", "parent_id": "406", "first_letter": "q", "shorthand": "ql", "pinyin": "qilin", "suffix": "区", "code": "530302", "sort": "1" }, { "id": "2731", "name": "马龙", "parent_id": "406", "first_letter": "m", "shorthand": "ml", "pinyin": "malong", "suffix": "县", "code": "530321", "sort": "2" }, { "id": "2732", "name": "陆良", "parent_id": "406", "first_letter": "l", "shorthand": "ll", "pinyin": "luliang", "suffix": "县", "code": "530322", "sort": "3" }, { "id": "2733", "name": "师宗", "parent_id": "406", "first_letter": "s", "shorthand": "sz", "pinyin": "shizong", "suffix": "县", "code": "530323", "sort": "4" }, { "id": "2734", "name": "罗平", "parent_id": "406", "first_letter": "l", "shorthand": "lp", "pinyin": "luoping", "suffix": "县", "code": "530324", "sort": "5" }, { "id": "2735", "name": "富源", "parent_id": "406", "first_letter": "f", "shorthand": "fy", "pinyin": "fuyuan", "suffix": "县", "code": "530325", "sort": "6" }, { "id": "2736", "name": "会泽", "parent_id": "406", "first_letter": "h", "shorthand": "hz", "pinyin": "huize", "suffix": "县", "code": "530326", "sort": "7" }, { "id": "2737", "name": "沾益", "parent_id": "406", "first_letter": "z", "shorthand": "zy", "pinyin": "zhanyi", "suffix": "县", "code": "530328", "sort": "8" }, { "id": "2738", "name": "宣威", "parent_id": "406", "first_letter": "x", "shorthand": "xw", "pinyin": "xuanwei", "suffix": "市", "code": "530381", "sort": "9" }, { "id": "2739", "name": "红塔", "parent_id": "407", "first_letter": "h", "shorthand": "ht", "pinyin": "hongta", "suffix": "区", "code": "530402", "sort": "1" }, { "id": "2740", "name": "江川", "parent_id": "407", "first_letter": "j", "shorthand": "jc", "pinyin": "jiangchuan", "suffix": "县", "code": "530421", "sort": "2" }, { "id": "2741", "name": "澄江", "parent_id": "407", "first_letter": "c", "shorthand": "cj", "pinyin": "chengjiang", "suffix": "县", "code": "530422", "sort": "3" }, { "id": "2742", "name": "通海", "parent_id": "407", "first_letter": "t", "shorthand": "th", "pinyin": "tonghai", "suffix": "县", "code": "530423", "sort": "4" }, { "id": "2743", "name": "华宁", "parent_id": "407", "first_letter": "h", "shorthand": "hn", "pinyin": "huaning", "suffix": "县", "code": "530424", "sort": "5" }, { "id": "2744", "name": "易门", "parent_id": "407", "first_letter": "y", "shorthand": "ym", "pinyin": "yimen", "suffix": "县", "code": "530425", "sort": "6" }, { "id": "2745", "name": "峨山", "parent_id": "407", "first_letter": "e", "shorthand": "es", "pinyin": "eshan", "suffix": "自治县", "code": "530426", "sort": "7" }, { "id": "2746", "name": "新平", "parent_id": "407", "first_letter": "x", "shorthand": "xp", "pinyin": "xinping", "suffix": "自治县", "code": "530427", "sort": "8" }, { "id": "2747", "name": "元江", "parent_id": "407", "first_letter": "y", "shorthand": "yj", "pinyin": "yuanjiang", "suffix": "自治县", "code": "530428", "sort": "9" }, { "id": "2748", "name": "昭阳", "parent_id": "408", "first_letter": "z", "shorthand": "zy", "pinyin": "zhaoyang", "suffix": "区", "code": "530602", "sort": "1" }, { "id": "2749", "name": "鲁甸", "parent_id": "408", "first_letter": "l", "shorthand": "ld", "pinyin": "ludian", "suffix": "县", "code": "530621", "sort": "2" }, { "id": "2750", "name": "巧家", "parent_id": "408", "first_letter": "q", "shorthand": "qj", "pinyin": "qiaojia", "suffix": "县", "code": "530622", "sort": "3" }, { "id": "2751", "name": "盐津", "parent_id": "408", "first_letter": "y", "shorthand": "yj", "pinyin": "yanjin", "suffix": "县", "code": "530623", "sort": "4" }, { "id": "2752", "name": "大关", "parent_id": "408", "first_letter": "d", "shorthand": "dg", "pinyin": "daguan", "suffix": "县", "code": "530624", "sort": "5" }, { "id": "2753", "name": "永善", "parent_id": "408", "first_letter": "y", "shorthand": "ys", "pinyin": "yongshan", "suffix": "县", "code": "530625", "sort": "6" }, { "id": "2754", "name": "绥江", "parent_id": "408", "first_letter": "s", "shorthand": "sj", "pinyin": "suijiang", "suffix": "县", "code": "530626", "sort": "7" }, { "id": "2755", "name": "镇雄", "parent_id": "408", "first_letter": "z", "shorthand": "zx", "pinyin": "zhenxiong", "suffix": "县", "code": "530627", "sort": "8" }, { "id": "2756", "name": "彝良", "parent_id": "408", "first_letter": "y", "shorthand": "yl", "pinyin": "yiliang", "suffix": "县", "code": "530628", "sort": "9" }, { "id": "2757", "name": "威信", "parent_id": "408", "first_letter": "w", "shorthand": "wx", "pinyin": "weixin", "suffix": "县", "code": "530629", "sort": "10" }, { "id": "2758", "name": "水富", "parent_id": "408", "first_letter": "s", "shorthand": "sf", "pinyin": "shuifu", "suffix": "县", "code": "530630", "sort": "11" }, { "id": "2759", "name": "古城", "parent_id": "409", "first_letter": "g", "shorthand": "gc", "pinyin": "gucheng", "suffix": "区", "code": "530702", "sort": "1" }, { "id": "2760", "name": "玉龙", "parent_id": "409", "first_letter": "y", "shorthand": "yl", "pinyin": "yulong", "suffix": "自治县", "code": "530721", "sort": "2" }, { "id": "2761", "name": "永胜", "parent_id": "409", "first_letter": "y", "shorthand": "ys", "pinyin": "yongsheng", "suffix": "县", "code": "530722", "sort": "3" }, { "id": "2762", "name": "华坪", "parent_id": "409", "first_letter": "h", "shorthand": "hp", "pinyin": "huaping", "suffix": "县", "code": "530723", "sort": "4" }, { "id": "2763", "name": "宁蒗", "parent_id": "409", "first_letter": "n", "shorthand": "nl", "pinyin": "ninglang", "suffix": "自治县", "code": "530724", "sort": "5" }, { "id": "2764", "name": "思茅", "parent_id": "410", "first_letter": "s", "shorthand": "sm", "pinyin": "simao", "suffix": "区", "code": "530802", "sort": "1" }, { "id": "2765", "name": "宁洱", "parent_id": "410", "first_letter": "n", "shorthand": "ne", "pinyin": "ninger", "suffix": "县", "code": "530821", "sort": "2" }, { "id": "2766", "name": "墨江", "parent_id": "410", "first_letter": "m", "shorthand": "mj", "pinyin": "mojiang", "suffix": "县", "code": "530822", "sort": "3" }, { "id": "2767", "name": "景东", "parent_id": "410", "first_letter": "j", "shorthand": "jd", "pinyin": "jingdong", "suffix": "县", "code": "530823", "sort": "4" }, { "id": "2768", "name": "景谷", "parent_id": "410", "first_letter": "j", "shorthand": "jg", "pinyin": "jinggu", "suffix": "县", "code": "530824", "sort": "5" }, { "id": "2769", "name": "镇沅", "parent_id": "410", "first_letter": "z", "shorthand": "zy", "pinyin": "zhenyuan", "suffix": "县", "code": "530825", "sort": "6" }, { "id": "2770", "name": "江城", "parent_id": "410", "first_letter": "j", "shorthand": "jc", "pinyin": "jiangcheng", "suffix": "县", "code": "530826", "sort": "7" }, { "id": "2771", "name": "孟连", "parent_id": "410", "first_letter": "m", "shorthand": "ml", "pinyin": "menglian", "suffix": "县", "code": "530827", "sort": "8" }, { "id": "2772", "name": "澜沧", "parent_id": "410", "first_letter": "l", "shorthand": "lc", "pinyin": "lancang", "suffix": "县", "code": "530828", "sort": "9" }, { "id": "2773", "name": "西盟", "parent_id": "410", "first_letter": "x", "shorthand": "xm", "pinyin": "ximeng", "suffix": "县", "code": "530829", "sort": "10" }, { "id": "2774", "name": "临翔", "parent_id": "411", "first_letter": "l", "shorthand": "lx", "pinyin": "linxiang", "suffix": "区", "code": "530902", "sort": "1" }, { "id": "2775", "name": "凤庆", "parent_id": "411", "first_letter": "f", "shorthand": "fq", "pinyin": "fengqing", "suffix": "县", "code": "530921", "sort": "2" }, { "id": "2776", "name": "云县", "parent_id": "411", "first_letter": "y", "shorthand": "yx", "pinyin": "yunxian", "suffix": "", "code": "530922", "sort": "3" }, { "id": "2777", "name": "永德", "parent_id": "411", "first_letter": "y", "shorthand": "yd", "pinyin": "yongde", "suffix": "县", "code": "530923", "sort": "4" }, { "id": "2778", "name": "镇康", "parent_id": "411", "first_letter": "z", "shorthand": "zk", "pinyin": "zhenkang", "suffix": "县", "code": "530924", "sort": "5" }, { "id": "2779", "name": "双江", "parent_id": "411", "first_letter": "s", "shorthand": "sj", "pinyin": "shuangjiang", "suffix": "自治县", "code": "530925", "sort": "6" }, { "id": "2780", "name": "耿马", "parent_id": "411", "first_letter": "g", "shorthand": "gm", "pinyin": "gengma", "suffix": "自治县", "code": "530926", "sort": "7" }, { "id": "2781", "name": "沧源", "parent_id": "411", "first_letter": "c", "shorthand": "cy", "pinyin": "cangyuan", "suffix": "自治县", "code": "530927", "sort": "8" }, { "id": "2782", "name": "楚雄", "parent_id": "412", "first_letter": "c", "shorthand": "cx", "pinyin": "chuxiong", "suffix": "市", "code": "532301", "sort": "1" }, { "id": "2783", "name": "双柏", "parent_id": "412", "first_letter": "s", "shorthand": "sb", "pinyin": "shuangbo", "suffix": "县", "code": "532322", "sort": "2" }, { "id": "2784", "name": "牟定", "parent_id": "412", "first_letter": "m", "shorthand": "md", "pinyin": "mouding", "suffix": "县", "code": "532323", "sort": "3" }, { "id": "2785", "name": "南华", "parent_id": "412", "first_letter": "n", "shorthand": "nh", "pinyin": "nanhua", "suffix": "县", "code": "532324", "sort": "4" }, { "id": "2786", "name": "姚安", "parent_id": "412", "first_letter": "y", "shorthand": "ya", "pinyin": "yaoan", "suffix": "县", "code": "532325", "sort": "5" }, { "id": "2787", "name": "大姚", "parent_id": "412", "first_letter": "d", "shorthand": "dy", "pinyin": "dayao", "suffix": "县", "code": "532326", "sort": "6" }, { "id": "2788", "name": "永仁", "parent_id": "412", "first_letter": "y", "shorthand": "yr", "pinyin": "yongren", "suffix": "县", "code": "532327", "sort": "7" }, { "id": "2789", "name": "元谋", "parent_id": "412", "first_letter": "y", "shorthand": "ym", "pinyin": "yuanmou", "suffix": "县", "code": "532328", "sort": "8" }, { "id": "2790", "name": "武定", "parent_id": "412", "first_letter": "w", "shorthand": "wd", "pinyin": "wuding", "suffix": "县", "code": "532329", "sort": "9" }, { "id": "2791", "name": "禄丰", "parent_id": "412", "first_letter": "l", "shorthand": "lf", "pinyin": "lufeng", "suffix": "县", "code": "532331", "sort": "10" }, { "id": "2792", "name": "个旧", "parent_id": "413", "first_letter": "g", "shorthand": "gj", "pinyin": "gejiu", "suffix": "市", "code": "532501", "sort": "1" }, { "id": "2793", "name": "开远", "parent_id": "413", "first_letter": "k", "shorthand": "ky", "pinyin": "kaiyuan", "suffix": "市", "code": "532502", "sort": "2" }, { "id": "2794", "name": "蒙自", "parent_id": "413", "first_letter": "m", "shorthand": "mz", "pinyin": "mengzi", "suffix": "市", "code": "532503", "sort": "3" }, { "id": "2795", "name": "屏边", "parent_id": "413", "first_letter": "p", "shorthand": "pb", "pinyin": "pingbian", "suffix": "自治县", "code": "532523", "sort": "4" }, { "id": "2796", "name": "建水", "parent_id": "413", "first_letter": "j", "shorthand": "js", "pinyin": "jianshui", "suffix": "县", "code": "532524", "sort": "5" }, { "id": "2797", "name": "石屏", "parent_id": "413", "first_letter": "s", "shorthand": "sp", "pinyin": "shiping", "suffix": "县", "code": "532525", "sort": "6" }, { "id": "2798", "name": "弥勒", "parent_id": "413", "first_letter": "m", "shorthand": "ml", "pinyin": "mile", "suffix": "市", "code": "532526", "sort": "7" }, { "id": "2799", "name": "泸西", "parent_id": "413", "first_letter": "l", "shorthand": "lx", "pinyin": "luxi", "suffix": "县", "code": "532527", "sort": "8" }, { "id": "2800", "name": "元阳", "parent_id": "413", "first_letter": "y", "shorthand": "yy", "pinyin": "yuanyang", "suffix": "县", "code": "532528", "sort": "9" }, { "id": "2801", "name": "红河", "parent_id": "413", "first_letter": "h", "shorthand": "hh", "pinyin": "honghe", "suffix": "县", "code": "532529", "sort": "10" }, { "id": "2802", "name": "金平", "parent_id": "413", "first_letter": "j", "shorthand": "jp", "pinyin": "jinping", "suffix": "自治县", "code": "532530", "sort": "11" }, { "id": "2803", "name": "绿春", "parent_id": "413", "first_letter": "l", "shorthand": "lc", "pinyin": "lu:chun", "suffix": "县", "code": "532531", "sort": "12" }, { "id": "2804", "name": "河口", "parent_id": "413", "first_letter": "h", "shorthand": "hk", "pinyin": "hekou", "suffix": "自治县", "code": "532532", "sort": "13" }, { "id": "2805", "name": "文山", "parent_id": "414", "first_letter": "w", "shorthand": "ws", "pinyin": "wenshan", "suffix": "县", "code": "532601", "sort": "1" }, { "id": "2806", "name": "砚山", "parent_id": "414", "first_letter": "y", "shorthand": "ys", "pinyin": "yanshan", "suffix": "县", "code": "532622", "sort": "2" }, { "id": "2807", "name": "西畴", "parent_id": "414", "first_letter": "x", "shorthand": "xc", "pinyin": "xichou", "suffix": "县", "code": "532623", "sort": "3" }, { "id": "2808", "name": "麻栗坡", "parent_id": "414", "first_letter": "m", "shorthand": "mlp", "pinyin": "malipo", "suffix": "县", "code": "532624", "sort": "4" }, { "id": "2809", "name": "马关", "parent_id": "414", "first_letter": "m", "shorthand": "mg", "pinyin": "maguan", "suffix": "县", "code": "532625", "sort": "5" }, { "id": "2810", "name": "丘北", "parent_id": "414", "first_letter": "q", "shorthand": "qb", "pinyin": "qiubei", "suffix": "县", "code": "532626", "sort": "6" }, { "id": "2811", "name": "广南", "parent_id": "414", "first_letter": "g", "shorthand": "gn", "pinyin": "guangnan", "suffix": "县", "code": "532627", "sort": "7" }, { "id": "2812", "name": "富宁", "parent_id": "414", "first_letter": "f", "shorthand": "fn", "pinyin": "funing", "suffix": "县", "code": "532628", "sort": "8" }, { "id": "2813", "name": "景洪", "parent_id": "415", "first_letter": "j", "shorthand": "jh", "pinyin": "jinghong", "suffix": "市", "code": "532801", "sort": "1" }, { "id": "2814", "name": "勐海", "parent_id": "415", "first_letter": "m", "shorthand": "mh", "pinyin": "menghai", "suffix": "县", "code": "532822", "sort": "2" }, { "id": "2815", "name": "勐腊", "parent_id": "415", "first_letter": "m", "shorthand": "ml", "pinyin": "mengla", "suffix": "县", "code": "532823", "sort": "3" }, { "id": "2816", "name": "大理", "parent_id": "416", "first_letter": "d", "shorthand": "dl", "pinyin": "dali", "suffix": "市", "code": "532901", "sort": "1" }, { "id": "2817", "name": "漾濞", "parent_id": "416", "first_letter": "y", "shorthand": "yb", "pinyin": "yangbi", "suffix": "自治县", "code": "532922", "sort": "2" }, { "id": "2818", "name": "祥云", "parent_id": "416", "first_letter": "x", "shorthand": "xy", "pinyin": "xiangyun", "suffix": "县", "code": "532923", "sort": "3" }, { "id": "2819", "name": "宾川", "parent_id": "416", "first_letter": "b", "shorthand": "bc", "pinyin": "binchuan", "suffix": "县", "code": "532924", "sort": "4" }, { "id": "2820", "name": "弥渡", "parent_id": "416", "first_letter": "m", "shorthand": "md", "pinyin": "midu", "suffix": "县", "code": "532925", "sort": "5" }, { "id": "2821", "name": "南涧", "parent_id": "416", "first_letter": "n", "shorthand": "nj", "pinyin": "nanjian", "suffix": "自治县", "code": "532926", "sort": "6" }, { "id": "2822", "name": "巍山", "parent_id": "416", "first_letter": "w", "shorthand": "ws", "pinyin": "weishan", "suffix": "自治县", "code": "532927", "sort": "7" }, { "id": "2823", "name": "永平", "parent_id": "416", "first_letter": "y", "shorthand": "yp", "pinyin": "yongping", "suffix": "县", "code": "532928", "sort": "8" }, { "id": "2824", "name": "云龙", "parent_id": "416", "first_letter": "y", "shorthand": "yl", "pinyin": "yunlong", "suffix": "县", "code": "532929", "sort": "9" }, { "id": "2825", "name": "洱源", "parent_id": "416", "first_letter": "e", "shorthand": "ey", "pinyin": "eryuan", "suffix": "县", "code": "532930", "sort": "10" }, { "id": "2826", "name": "剑川", "parent_id": "416", "first_letter": "j", "shorthand": "jc", "pinyin": "jianchuan", "suffix": "县", "code": "532931", "sort": "11" }, { "id": "2827", "name": "鹤庆", "parent_id": "416", "first_letter": "h", "shorthand": "hq", "pinyin": "heqing", "suffix": "县", "code": "532932", "sort": "12" }, { "id": "2828", "name": "瑞丽", "parent_id": "417", "first_letter": "r", "shorthand": "rl", "pinyin": "ruili", "suffix": "市", "code": "533102", "sort": "1" }, { "id": "2829", "name": "芒市", "parent_id": "417", "first_letter": "m", "shorthand": "ms", "pinyin": "mangshi", "suffix": "", "code": "533103", "sort": "2" }, { "id": "2830", "name": "梁河", "parent_id": "417", "first_letter": "l", "shorthand": "lh", "pinyin": "lianghe", "suffix": "县", "code": "533122", "sort": "3" }, { "id": "2831", "name": "盈江", "parent_id": "417", "first_letter": "y", "shorthand": "yj", "pinyin": "yingjiang", "suffix": "县", "code": "533123", "sort": "4" }, { "id": "2832", "name": "陇川", "parent_id": "417", "first_letter": "l", "shorthand": "lc", "pinyin": "longchuan", "suffix": "县", "code": "533124", "sort": "5" }, { "id": "2833", "name": "泸水", "parent_id": "418", "first_letter": "l", "shorthand": "ls", "pinyin": "lushui", "suffix": "县", "code": "533321", "sort": "1" }, { "id": "2834", "name": "福贡", "parent_id": "418", "first_letter": "f", "shorthand": "fg", "pinyin": "fugong", "suffix": "县", "code": "533323", "sort": "2" }, { "id": "2835", "name": "贡山", "parent_id": "418", "first_letter": "g", "shorthand": "gs", "pinyin": "gongshan", "suffix": "县", "code": "533324", "sort": "3" }, { "id": "2836", "name": "兰坪", "parent_id": "418", "first_letter": "l", "shorthand": "lp", "pinyin": "lanping", "suffix": "县", "code": "533325", "sort": "4" }, { "id": "2837", "name": "香格里拉", "parent_id": "419", "first_letter": "x", "shorthand": "xgll", "pinyin": "xianggelila", "suffix": "市", "code": "533421", "sort": "1" }, { "id": "2838", "name": "德钦", "parent_id": "419", "first_letter": "d", "shorthand": "dq", "pinyin": "deqin", "suffix": "县", "code": "533422", "sort": "2" }, { "id": "2839", "name": "维西", "parent_id": "419", "first_letter": "w", "shorthand": "wx", "pinyin": "weixi", "suffix": "县", "code": "533423", "sort": "3" }, { "id": "2840", "name": "隆阳", "parent_id": "420", "first_letter": "l", "shorthand": "ly", "pinyin": "longyang", "suffix": "区", "code": "530502", "sort": "1" }, { "id": "2841", "name": "施甸", "parent_id": "420", "first_letter": "s", "shorthand": "sd", "pinyin": "shidian", "suffix": "县", "code": "530521", "sort": "2" }, { "id": "2842", "name": "腾冲", "parent_id": "420", "first_letter": "t", "shorthand": "tc", "pinyin": "tengchong", "suffix": "县", "code": "530522", "sort": "3" }, { "id": "2843", "name": "龙陵", "parent_id": "420", "first_letter": "l", "shorthand": "ll", "pinyin": "longling", "suffix": "县", "code": "530523", "sort": "4" }, { "id": "2844", "name": "昌宁", "parent_id": "420", "first_letter": "c", "shorthand": "cn", "pinyin": "changning", "suffix": "县", "code": "530524", "sort": "5" }, { "id": "2845", "name": "城关", "parent_id": "421", "first_letter": "c", "shorthand": "cg", "pinyin": "chengguan", "suffix": "区", "code": "540102", "sort": "1" }, { "id": "2846", "name": "林周", "parent_id": "421", "first_letter": "l", "shorthand": "lz", "pinyin": "linzhou", "suffix": "县", "code": "540121", "sort": "2" }, { "id": "2847", "name": "当雄", "parent_id": "421", "first_letter": "d", "shorthand": "dx", "pinyin": "dangxiong", "suffix": "县", "code": "540122", "sort": "3" }, { "id": "2848", "name": "尼木", "parent_id": "421", "first_letter": "n", "shorthand": "nm", "pinyin": "nimu", "suffix": "县", "code": "540123", "sort": "4" }, { "id": "2849", "name": "曲水", "parent_id": "421", "first_letter": "q", "shorthand": "qs", "pinyin": "qushui", "suffix": "县", "code": "540124", "sort": "5" }, { "id": "2850", "name": "堆龙德庆", "parent_id": "421", "first_letter": "d", "shorthand": "dldq", "pinyin": "duilongdeqing", "suffix": "县", "code": "540125", "sort": "6" }, { "id": "2851", "name": "达孜", "parent_id": "421", "first_letter": "d", "shorthand": "dz", "pinyin": "dazi", "suffix": "县", "code": "540126", "sort": "7" }, { "id": "2852", "name": "墨竹工卡", "parent_id": "421", "first_letter": "m", "shorthand": "mzgk", "pinyin": "mozhugongka", "suffix": "县", "code": "540127", "sort": "8" }, { "id": "2853", "name": "卡若", "parent_id": "422", "first_letter": "k", "shorthand": "kr", "pinyin": "karuo", "suffix": "区", "code": "542121", "sort": "1" }, { "id": "2854", "name": "江达", "parent_id": "422", "first_letter": "j", "shorthand": "jd", "pinyin": "jiangda", "suffix": "县", "code": "542122", "sort": "2" }, { "id": "2855", "name": "贡觉", "parent_id": "422", "first_letter": "g", "shorthand": "gj", "pinyin": "gongjue", "suffix": "县", "code": "542123", "sort": "3" }, { "id": "2856", "name": "类乌齐", "parent_id": "422", "first_letter": "l", "shorthand": "lwq", "pinyin": "leiwuqi", "suffix": "县", "code": "542124", "sort": "4" }, { "id": "2857", "name": "丁青", "parent_id": "422", "first_letter": "d", "shorthand": "dq", "pinyin": "dingqing", "suffix": "县", "code": "542125", "sort": "5" }, { "id": "2858", "name": "察雅", "parent_id": "422", "first_letter": "c", "shorthand": "cy", "pinyin": "chaya", "suffix": "县", "code": "542126", "sort": "6" }, { "id": "2859", "name": "八宿", "parent_id": "422", "first_letter": "b", "shorthand": "bs", "pinyin": "basu", "suffix": "县", "code": "542127", "sort": "7" }, { "id": "2860", "name": "左贡", "parent_id": "422", "first_letter": "z", "shorthand": "zg", "pinyin": "zuogong", "suffix": "县", "code": "542128", "sort": "8" }, { "id": "2861", "name": "芒康", "parent_id": "422", "first_letter": "m", "shorthand": "mk", "pinyin": "mangkang", "suffix": "县", "code": "542129", "sort": "9" }, { "id": "2862", "name": "洛隆", "parent_id": "422", "first_letter": "l", "shorthand": "ll", "pinyin": "luolong", "suffix": "县", "code": "542132", "sort": "10" }, { "id": "2863", "name": "边坝", "parent_id": "422", "first_letter": "b", "shorthand": "bb", "pinyin": "bianba", "suffix": "县", "code": "542133", "sort": "11" }, { "id": "2864", "name": "乃东", "parent_id": "423", "first_letter": "n", "shorthand": "nd", "pinyin": "naidong", "suffix": "县", "code": "542221", "sort": "1" }, { "id": "2865", "name": "扎囊", "parent_id": "423", "first_letter": "z", "shorthand": "zn", "pinyin": "zhanang", "suffix": "县", "code": "542222", "sort": "2" }, { "id": "2866", "name": "贡嘎", "parent_id": "423", "first_letter": "g", "shorthand": "gg", "pinyin": "gongga", "suffix": "县", "code": "542223", "sort": "3" }, { "id": "2867", "name": "桑日", "parent_id": "423", "first_letter": "s", "shorthand": "sr", "pinyin": "sangri", "suffix": "县", "code": "542224", "sort": "4" }, { "id": "2868", "name": "琼结", "parent_id": "423", "first_letter": "q", "shorthand": "qj", "pinyin": "qiongjie", "suffix": "县", "code": "542225", "sort": "5" }, { "id": "2869", "name": "曲松", "parent_id": "423", "first_letter": "q", "shorthand": "qs", "pinyin": "qusong", "suffix": "县", "code": "542226", "sort": "6" }, { "id": "2870", "name": "措美", "parent_id": "423", "first_letter": "c", "shorthand": "cm", "pinyin": "cuomei", "suffix": "县", "code": "542227", "sort": "7" }, { "id": "2871", "name": "洛扎", "parent_id": "423", "first_letter": "l", "shorthand": "lz", "pinyin": "luozha", "suffix": "县", "code": "542228", "sort": "8" }, { "id": "2872", "name": "加查", "parent_id": "423", "first_letter": "j", "shorthand": "jc", "pinyin": "jiacha", "suffix": "县", "code": "542229", "sort": "9" }, { "id": "2873", "name": "隆子", "parent_id": "423", "first_letter": "l", "shorthand": "lz", "pinyin": "longzi", "suffix": "县", "code": "542231", "sort": "10" }, { "id": "2874", "name": "错那", "parent_id": "423", "first_letter": "c", "shorthand": "cn", "pinyin": "cuonei", "suffix": "县", "code": "542232", "sort": "11" }, { "id": "2875", "name": "浪卡子", "parent_id": "423", "first_letter": "l", "shorthand": "lkz", "pinyin": "langkazi", "suffix": "县", "code": "542233", "sort": "12" }, { "id": "2876", "name": "桑珠孜", "parent_id": "424", "first_letter": "s", "shorthand": "szz", "pinyin": "sangzhuzi", "suffix": "区", "code": "542301", "sort": "1" }, { "id": "2877", "name": "南木林", "parent_id": "424", "first_letter": "n", "shorthand": "nml", "pinyin": "nanmulin", "suffix": "县", "code": "542322", "sort": "2" }, { "id": "2878", "name": "江孜", "parent_id": "424", "first_letter": "j", "shorthand": "jz", "pinyin": "jiangzi", "suffix": "县", "code": "542323", "sort": "3" }, { "id": "2879", "name": "定日", "parent_id": "424", "first_letter": "d", "shorthand": "dr", "pinyin": "dingri", "suffix": "县", "code": "542324", "sort": "4" }, { "id": "2880", "name": "萨迦", "parent_id": "424", "first_letter": "s", "shorthand": "sj", "pinyin": "sajia", "suffix": "县", "code": "542325", "sort": "5" }, { "id": "2881", "name": "拉孜", "parent_id": "424", "first_letter": "l", "shorthand": "lz", "pinyin": "lazi", "suffix": "县", "code": "542326", "sort": "6" }, { "id": "2882", "name": "昂仁", "parent_id": "424", "first_letter": "a", "shorthand": "ar", "pinyin": "angren", "suffix": "县", "code": "542327", "sort": "7" }, { "id": "2883", "name": "谢通门", "parent_id": "424", "first_letter": "x", "shorthand": "xtm", "pinyin": "xietongmen", "suffix": "县", "code": "542328", "sort": "8" }, { "id": "2884", "name": "白朗", "parent_id": "424", "first_letter": "b", "shorthand": "bl", "pinyin": "bailang", "suffix": "县", "code": "542329", "sort": "9" }, { "id": "2885", "name": "仁布", "parent_id": "424", "first_letter": "r", "shorthand": "rb", "pinyin": "renbu", "suffix": "县", "code": "542330", "sort": "10" }, { "id": "2886", "name": "康马", "parent_id": "424", "first_letter": "k", "shorthand": "km", "pinyin": "kangma", "suffix": "县", "code": "542331", "sort": "11" }, { "id": "2887", "name": "定结", "parent_id": "424", "first_letter": "d", "shorthand": "dj", "pinyin": "dingjie", "suffix": "县", "code": "542332", "sort": "12" }, { "id": "2888", "name": "仲巴", "parent_id": "424", "first_letter": "z", "shorthand": "zb", "pinyin": "zhongba", "suffix": "县", "code": "542333", "sort": "13" }, { "id": "2889", "name": "亚东", "parent_id": "424", "first_letter": "y", "shorthand": "yd", "pinyin": "yadong", "suffix": "县", "code": "542334", "sort": "14" }, { "id": "2890", "name": "吉隆", "parent_id": "424", "first_letter": "j", "shorthand": "jl", "pinyin": "jilong", "suffix": "县", "code": "542335", "sort": "15" }, { "id": "2891", "name": "聂拉木", "parent_id": "424", "first_letter": "n", "shorthand": "nlm", "pinyin": "nielamu", "suffix": "县", "code": "542336", "sort": "16" }, { "id": "2892", "name": "萨嘎", "parent_id": "424", "first_letter": "s", "shorthand": "sg", "pinyin": "saga", "suffix": "县", "code": "542337", "sort": "17" }, { "id": "2893", "name": "岗巴", "parent_id": "424", "first_letter": "g", "shorthand": "gb", "pinyin": "gangba", "suffix": "县", "code": "542338", "sort": "18" }, { "id": "2894", "name": "双湖", "parent_id": "425", "first_letter": "s", "shorthand": "sh", "pinyin": "shuanghu", "suffix": "县", "code": "542431", "sort": "1" }, { "id": "2895", "name": "那曲", "parent_id": "425", "first_letter": "n", "shorthand": "nq", "pinyin": "neiqu", "suffix": "县", "code": "542421", "sort": "2" }, { "id": "2897", "name": "比如", "parent_id": "425", "first_letter": "b", "shorthand": "br", "pinyin": "biru", "suffix": "县", "code": "542423", "sort": "4" }, { "id": "2898", "name": "聂荣", "parent_id": "425", "first_letter": "n", "shorthand": "nr", "pinyin": "nierong", "suffix": "县", "code": "542424", "sort": "5" }, { "id": "2899", "name": "安多", "parent_id": "425", "first_letter": "a", "shorthand": "ad", "pinyin": "anduo", "suffix": "县", "code": "542425", "sort": "6" }, { "id": "2900", "name": "申扎", "parent_id": "425", "first_letter": "s", "shorthand": "sz", "pinyin": "shenzha", "suffix": "县", "code": "542426", "sort": "7" }, { "id": "2901", "name": "索县", "parent_id": "425", "first_letter": "s", "shorthand": "sx", "pinyin": "suoxian", "suffix": "", "code": "542427", "sort": "8" }, { "id": "2902", "name": "班戈", "parent_id": "425", "first_letter": "b", "shorthand": "bg", "pinyin": "bange", "suffix": "县", "code": "542428", "sort": "9" }, { "id": "2903", "name": "巴青", "parent_id": "425", "first_letter": "b", "shorthand": "bq", "pinyin": "baqing", "suffix": "县", "code": "542429", "sort": "10" }, { "id": "2904", "name": "尼玛", "parent_id": "425", "first_letter": "n", "shorthand": "nm", "pinyin": "nima", "suffix": "县", "code": "542430", "sort": "11" }, { "id": "2905", "name": "普兰", "parent_id": "426", "first_letter": "p", "shorthand": "pl", "pinyin": "pulan", "suffix": "县", "code": "542521", "sort": "1" }, { "id": "2906", "name": "札达", "parent_id": "426", "first_letter": "z", "shorthand": "zd", "pinyin": "zhada", "suffix": "县", "code": "542522", "sort": "2" }, { "id": "2907", "name": "噶尔", "parent_id": "426", "first_letter": "g", "shorthand": "ge", "pinyin": "gaer", "suffix": "县", "code": "542523", "sort": "3" }, { "id": "2908", "name": "日土", "parent_id": "426", "first_letter": "r", "shorthand": "rt", "pinyin": "ritu", "suffix": "县", "code": "542524", "sort": "4" }, { "id": "2909", "name": "革吉", "parent_id": "426", "first_letter": "g", "shorthand": "gj", "pinyin": "geji", "suffix": "县", "code": "542525", "sort": "5" }, { "id": "2910", "name": "改则", "parent_id": "426", "first_letter": "g", "shorthand": "gz", "pinyin": "gaize", "suffix": "县", "code": "542526", "sort": "6" }, { "id": "2911", "name": "措勤", "parent_id": "426", "first_letter": "c", "shorthand": "cq", "pinyin": "cuoqin", "suffix": "县", "code": "542527", "sort": "7" }, { "id": "2912", "name": "巴宜", "parent_id": "427", "first_letter": "b", "shorthand": "by", "pinyin": "bayi", "suffix": "县", "code": "540402", "sort": "1" }, { "id": "2913", "name": "工布江达", "parent_id": "427", "first_letter": "g", "shorthand": "gbjd", "pinyin": "gongbujiangda", "suffix": "县", "code": "542621", "sort": "2" }, { "id": "2919", "name": "新城", "parent_id": "428", "first_letter": "x", "shorthand": "xc", "pinyin": "xincheng", "suffix": "区", "code": "610102", "sort": "1" }, { "id": "2920", "name": "碑林", "parent_id": "428", "first_letter": "b", "shorthand": "bl", "pinyin": "beilin", "suffix": "区", "code": "610103", "sort": "2" }, { "id": "2921", "name": "莲湖", "parent_id": "428", "first_letter": "l", "shorthand": "lh", "pinyin": "lianhu", "suffix": "区", "code": "610104", "sort": "3" }, { "id": "2922", "name": "灞桥", "parent_id": "428", "first_letter": "b", "shorthand": "bq", "pinyin": "baqiao", "suffix": "区", "code": "610111", "sort": "4" }, { "id": "2923", "name": "未央", "parent_id": "428", "first_letter": "w", "shorthand": "wy", "pinyin": "weiyang", "suffix": "区", "code": "610112", "sort": "5" }, { "id": "2924", "name": "雁塔", "parent_id": "428", "first_letter": "y", "shorthand": "yt", "pinyin": "yanta", "suffix": "区", "code": "610113", "sort": "6" }, { "id": "2925", "name": "阎良", "parent_id": "428", "first_letter": "y", "shorthand": "yl", "pinyin": "yanliang", "suffix": "区", "code": "610114", "sort": "7" }, { "id": "2926", "name": "临潼", "parent_id": "428", "first_letter": "l", "shorthand": "lt", "pinyin": "lintong", "suffix": "区", "code": "610115", "sort": "8" }, { "id": "2927", "name": "长安", "parent_id": "428", "first_letter": "z", "shorthand": "za", "pinyin": "zhangan", "suffix": "区", "code": "610116", "sort": "9" }, { "id": "2928", "name": "蓝田", "parent_id": "428", "first_letter": "l", "shorthand": "lt", "pinyin": "lantian", "suffix": "县", "code": "610122", "sort": "11" }, { "id": "2929", "name": "周至", "parent_id": "428", "first_letter": "z", "shorthand": "zz", "pinyin": "zhouzhi", "suffix": "县", "code": "610124", "sort": "12" }, { "id": "2930", "name": "户县", "parent_id": "428", "first_letter": "h", "shorthand": "hx", "pinyin": "huxian", "suffix": "", "code": "610125", "sort": "13" }, { "id": "2931", "name": "高陵", "parent_id": "428", "first_letter": "g", "shorthand": "gl", "pinyin": "gaoling", "suffix": "区", "code": "610117", "sort": "10" }, { "id": "2932", "name": "王益", "parent_id": "429", "first_letter": "w", "shorthand": "wy", "pinyin": "wangyi", "suffix": "区", "code": "610202", "sort": "1" }, { "id": "2933", "name": "印台", "parent_id": "429", "first_letter": "y", "shorthand": "yt", "pinyin": "yintai", "suffix": "区", "code": "610203", "sort": "2" }, { "id": "2934", "name": "耀州", "parent_id": "429", "first_letter": "y", "shorthand": "yz", "pinyin": "yaozhou", "suffix": "区", "code": "610204", "sort": "3" }, { "id": "2935", "name": "宜君", "parent_id": "429", "first_letter": "y", "shorthand": "yj", "pinyin": "yijun", "suffix": "县", "code": "610222", "sort": "4" }, { "id": "2936", "name": "渭滨", "parent_id": "430", "first_letter": "w", "shorthand": "wb", "pinyin": "weibin", "suffix": "区", "code": "610302", "sort": "1" }, { "id": "2937", "name": "金台", "parent_id": "430", "first_letter": "j", "shorthand": "jt", "pinyin": "jintai", "suffix": "区", "code": "610303", "sort": "2" }, { "id": "2938", "name": "陈仓", "parent_id": "430", "first_letter": "c", "shorthand": "cc", "pinyin": "chencang", "suffix": "区", "code": "610304", "sort": "3" }, { "id": "2939", "name": "凤翔", "parent_id": "430", "first_letter": "f", "shorthand": "fx", "pinyin": "fengxiang", "suffix": "县", "code": "610322", "sort": "4" }, { "id": "2940", "name": "岐山", "parent_id": "430", "first_letter": "q", "shorthand": "qs", "pinyin": "qishan", "suffix": "县", "code": "610323", "sort": "5" }, { "id": "2941", "name": "扶风", "parent_id": "430", "first_letter": "f", "shorthand": "ff", "pinyin": "fufeng", "suffix": "县", "code": "610324", "sort": "6" }, { "id": "2942", "name": "眉县", "parent_id": "430", "first_letter": "m", "shorthand": "mx", "pinyin": "meixian", "suffix": "", "code": "610326", "sort": "7" }, { "id": "2943", "name": "陇县", "parent_id": "430", "first_letter": "l", "shorthand": "lx", "pinyin": "longxian", "suffix": "", "code": "610327", "sort": "8" }, { "id": "2944", "name": "千阳", "parent_id": "430", "first_letter": "q", "shorthand": "qy", "pinyin": "qianyang", "suffix": "县", "code": "610328", "sort": "9" }, { "id": "2945", "name": "麟游", "parent_id": "430", "first_letter": "l", "shorthand": "ly", "pinyin": "linyou", "suffix": "县", "code": "610329", "sort": "10" }, { "id": "2946", "name": "凤县", "parent_id": "430", "first_letter": "f", "shorthand": "fx", "pinyin": "fengxian", "suffix": "", "code": "610330", "sort": "11" }, { "id": "2947", "name": "太白", "parent_id": "430", "first_letter": "t", "shorthand": "tb", "pinyin": "taibai", "suffix": "县", "code": "610331", "sort": "12" }, { "id": "2948", "name": "秦都", "parent_id": "431", "first_letter": "q", "shorthand": "qd", "pinyin": "qindou", "suffix": "区", "code": "610402", "sort": "1" }, { "id": "2949", "name": "杨陵", "parent_id": "431", "first_letter": "y", "shorthand": "yl", "pinyin": "yangling", "suffix": "区", "code": "610403", "sort": "2" }, { "id": "2950", "name": "渭城", "parent_id": "431", "first_letter": "w", "shorthand": "wc", "pinyin": "weicheng", "suffix": "区", "code": "610404", "sort": "3" }, { "id": "2951", "name": "三原", "parent_id": "431", "first_letter": "s", "shorthand": "sy", "pinyin": "sanyuan", "suffix": "县", "code": "610422", "sort": "4" }, { "id": "2952", "name": "泾阳", "parent_id": "431", "first_letter": "j", "shorthand": "jy", "pinyin": "jingyang", "suffix": "县", "code": "610423", "sort": "5" }, { "id": "2953", "name": "乾县", "parent_id": "431", "first_letter": "q", "shorthand": "qx", "pinyin": "qianxian", "suffix": "", "code": "610424", "sort": "6" }, { "id": "2954", "name": "礼泉", "parent_id": "431", "first_letter": "l", "shorthand": "lq", "pinyin": "liquan", "suffix": "县", "code": "610425", "sort": "7" }, { "id": "2955", "name": "永寿", "parent_id": "431", "first_letter": "y", "shorthand": "ys", "pinyin": "yongshou", "suffix": "县", "code": "610426", "sort": "8" }, { "id": "2956", "name": "彬县", "parent_id": "431", "first_letter": "b", "shorthand": "bx", "pinyin": "binxian", "suffix": "", "code": "610427", "sort": "9" }, { "id": "2957", "name": "长武", "parent_id": "431", "first_letter": "z", "shorthand": "zw", "pinyin": "zhangwu", "suffix": "县", "code": "610428", "sort": "10" }, { "id": "2958", "name": "旬邑", "parent_id": "431", "first_letter": "x", "shorthand": "xy", "pinyin": "xunyi", "suffix": "县", "code": "610429", "sort": "11" }, { "id": "2959", "name": "淳化", "parent_id": "431", "first_letter": "c", "shorthand": "ch", "pinyin": "chunhua", "suffix": "县", "code": "610430", "sort": "12" }, { "id": "2960", "name": "武功", "parent_id": "431", "first_letter": "w", "shorthand": "wg", "pinyin": "wugong", "suffix": "县", "code": "610431", "sort": "13" }, { "id": "2961", "name": "兴平", "parent_id": "431", "first_letter": "x", "shorthand": "xp", "pinyin": "xingping", "suffix": "市", "code": "610481", "sort": "14" }, { "id": "2962", "name": "临渭", "parent_id": "432", "first_letter": "l", "shorthand": "lw", "pinyin": "linwei", "suffix": "区", "code": "610502", "sort": "1" }, { "id": "2963", "name": "华县", "parent_id": "432", "first_letter": "h", "shorthand": "hx", "pinyin": "huaxian", "suffix": "", "code": "610521", "sort": "2" }, { "id": "2964", "name": "潼关", "parent_id": "432", "first_letter": "t", "shorthand": "tg", "pinyin": "tongguan", "suffix": "县", "code": "610522", "sort": "3" }, { "id": "2965", "name": "大荔", "parent_id": "432", "first_letter": "d", "shorthand": "dl", "pinyin": "dali", "suffix": "县", "code": "610523", "sort": "4" }, { "id": "2966", "name": "合阳", "parent_id": "432", "first_letter": "h", "shorthand": "hy", "pinyin": "heyang", "suffix": "县", "code": "610524", "sort": "5" }, { "id": "2967", "name": "澄城", "parent_id": "432", "first_letter": "c", "shorthand": "cc", "pinyin": "chengcheng", "suffix": "县", "code": "610525", "sort": "6" }, { "id": "2968", "name": "蒲城", "parent_id": "432", "first_letter": "p", "shorthand": "pc", "pinyin": "pucheng", "suffix": "县", "code": "610526", "sort": "7" }, { "id": "2969", "name": "白水", "parent_id": "432", "first_letter": "b", "shorthand": "bs", "pinyin": "baishui", "suffix": "县", "code": "610527", "sort": "8" }, { "id": "2970", "name": "富平", "parent_id": "432", "first_letter": "f", "shorthand": "fp", "pinyin": "fuping", "suffix": "县", "code": "610528", "sort": "9" }, { "id": "2971", "name": "韩城", "parent_id": "432", "first_letter": "h", "shorthand": "hc", "pinyin": "hancheng", "suffix": "市", "code": "610581", "sort": "10" }, { "id": "2972", "name": "华阴", "parent_id": "432", "first_letter": "h", "shorthand": "hy", "pinyin": "huayin", "suffix": "市", "code": "610582", "sort": "11" }, { "id": "2973", "name": "宝塔", "parent_id": "433", "first_letter": "b", "shorthand": "bt", "pinyin": "baota", "suffix": "区", "code": "610602", "sort": "1" }, { "id": "2974", "name": "延长", "parent_id": "433", "first_letter": "y", "shorthand": "yz", "pinyin": "yanzhang", "suffix": "县", "code": "610621", "sort": "2" }, { "id": "2975", "name": "延川", "parent_id": "433", "first_letter": "y", "shorthand": "yc", "pinyin": "yanchuan", "suffix": "县", "code": "610622", "sort": "3" }, { "id": "2976", "name": "子长", "parent_id": "433", "first_letter": "z", "shorthand": "zz", "pinyin": "zizhang", "suffix": "县", "code": "610623", "sort": "4" }, { "id": "2977", "name": "安塞", "parent_id": "433", "first_letter": "a", "shorthand": "as", "pinyin": "ansai", "suffix": "县", "code": "610624", "sort": "5" }, { "id": "2978", "name": "志丹", "parent_id": "433", "first_letter": "z", "shorthand": "zd", "pinyin": "zhidan", "suffix": "县", "code": "610625", "sort": "6" }, { "id": "2979", "name": "吴起", "parent_id": "433", "first_letter": "w", "shorthand": "wq", "pinyin": "wuqi", "suffix": "县", "code": "610626", "sort": "7" }, { "id": "2980", "name": "甘泉", "parent_id": "433", "first_letter": "g", "shorthand": "gq", "pinyin": "ganquan", "suffix": "县", "code": "610627", "sort": "8" }, { "id": "2981", "name": "富县", "parent_id": "433", "first_letter": "f", "shorthand": "fx", "pinyin": "fuxian", "suffix": "", "code": "610628", "sort": "9" }, { "id": "2982", "name": "洛川", "parent_id": "433", "first_letter": "l", "shorthand": "lc", "pinyin": "luochuan", "suffix": "县", "code": "610629", "sort": "10" }, { "id": "2983", "name": "宜川", "parent_id": "433", "first_letter": "y", "shorthand": "yc", "pinyin": "yichuan", "suffix": "县", "code": "610630", "sort": "11" }, { "id": "2984", "name": "黄龙", "parent_id": "433", "first_letter": "h", "shorthand": "hl", "pinyin": "huanglong", "suffix": "县", "code": "610631", "sort": "12" }, { "id": "2985", "name": "黄陵", "parent_id": "433", "first_letter": "h", "shorthand": "hl", "pinyin": "huangling", "suffix": "县", "code": "610632", "sort": "13" }, { "id": "2986", "name": "汉台", "parent_id": "434", "first_letter": "h", "shorthand": "ht", "pinyin": "hantai", "suffix": "区", "code": "610702", "sort": "1" }, { "id": "2987", "name": "南郑", "parent_id": "434", "first_letter": "n", "shorthand": "nz", "pinyin": "nanzheng", "suffix": "县", "code": "610721", "sort": "2" }, { "id": "2988", "name": "城固", "parent_id": "434", "first_letter": "c", "shorthand": "cg", "pinyin": "chenggu", "suffix": "县", "code": "610722", "sort": "3" }, { "id": "2989", "name": "洋县", "parent_id": "434", "first_letter": "y", "shorthand": "yx", "pinyin": "yangxian", "suffix": "", "code": "610723", "sort": "4" }, { "id": "2990", "name": "西乡", "parent_id": "434", "first_letter": "x", "shorthand": "xx", "pinyin": "xixiang", "suffix": "县", "code": "610724", "sort": "5" }, { "id": "2991", "name": "勉县", "parent_id": "434", "first_letter": "m", "shorthand": "mx", "pinyin": "mianxian", "suffix": "", "code": "610725", "sort": "6" }, { "id": "2992", "name": "宁强", "parent_id": "434", "first_letter": "n", "shorthand": "nq", "pinyin": "ningqiang", "suffix": "县", "code": "610726", "sort": "7" }, { "id": "2993", "name": "略阳", "parent_id": "434", "first_letter": "l", "shorthand": "ly", "pinyin": "lu:eyang", "suffix": "县", "code": "610727", "sort": "8" }, { "id": "2994", "name": "镇巴", "parent_id": "434", "first_letter": "z", "shorthand": "zb", "pinyin": "zhenba", "suffix": "县", "code": "610728", "sort": "9" }, { "id": "2995", "name": "留坝", "parent_id": "434", "first_letter": "l", "shorthand": "lb", "pinyin": "liuba", "suffix": "县", "code": "610729", "sort": "10" }, { "id": "2996", "name": "佛坪", "parent_id": "434", "first_letter": "f", "shorthand": "fp", "pinyin": "foping", "suffix": "县", "code": "610730", "sort": "11" }, { "id": "2997", "name": "榆阳", "parent_id": "435", "first_letter": "y", "shorthand": "yy", "pinyin": "yuyang", "suffix": "区", "code": "610802", "sort": "1" }, { "id": "2998", "name": "神木", "parent_id": "435", "first_letter": "s", "shorthand": "sm", "pinyin": "shenmu", "suffix": "县", "code": "610821", "sort": "2" }, { "id": "2999", "name": "府谷", "parent_id": "435", "first_letter": "f", "shorthand": "fg", "pinyin": "fugu", "suffix": "县", "code": "610822", "sort": "3" }, { "id": "3000", "name": "横山", "parent_id": "435", "first_letter": "h", "shorthand": "hs", "pinyin": "hengshan", "suffix": "县", "code": "610823", "sort": "4" }, { "id": "3001", "name": "靖边", "parent_id": "435", "first_letter": "j", "shorthand": "jb", "pinyin": "jingbian", "suffix": "县", "code": "610824", "sort": "5" }, { "id": "3002", "name": "定边", "parent_id": "435", "first_letter": "d", "shorthand": "db", "pinyin": "dingbian", "suffix": "县", "code": "610825", "sort": "6" }, { "id": "3003", "name": "绥德", "parent_id": "435", "first_letter": "s", "shorthand": "sd", "pinyin": "suide", "suffix": "县", "code": "610826", "sort": "7" }, { "id": "3004", "name": "米脂", "parent_id": "435", "first_letter": "m", "shorthand": "mz", "pinyin": "mizhi", "suffix": "县", "code": "610827", "sort": "8" }, { "id": "3005", "name": "佳县", "parent_id": "435", "first_letter": "j", "shorthand": "jx", "pinyin": "jiaxian", "suffix": "", "code": "610828", "sort": "9" }, { "id": "3006", "name": "吴堡", "parent_id": "435", "first_letter": "w", "shorthand": "wb", "pinyin": "wubao", "suffix": "县", "code": "610829", "sort": "10" }, { "id": "3007", "name": "清涧", "parent_id": "435", "first_letter": "q", "shorthand": "qj", "pinyin": "qingjian", "suffix": "县", "code": "610830", "sort": "11" }, { "id": "3008", "name": "子洲", "parent_id": "435", "first_letter": "z", "shorthand": "zz", "pinyin": "zizhou", "suffix": "县", "code": "610831", "sort": "12" }, { "id": "3009", "name": "汉滨", "parent_id": "436", "first_letter": "h", "shorthand": "hb", "pinyin": "hanbin", "suffix": "区", "code": "610902", "sort": "1" }, { "id": "3010", "name": "汉阴", "parent_id": "436", "first_letter": "h", "shorthand": "hy", "pinyin": "hanyin", "suffix": "县", "code": "610921", "sort": "2" }, { "id": "3011", "name": "石泉", "parent_id": "436", "first_letter": "s", "shorthand": "sq", "pinyin": "shiquan", "suffix": "县", "code": "610922", "sort": "3" }, { "id": "3012", "name": "宁陕", "parent_id": "436", "first_letter": "n", "shorthand": "ns", "pinyin": "ningshan", "suffix": "县", "code": "610923", "sort": "4" }, { "id": "3013", "name": "紫阳", "parent_id": "436", "first_letter": "z", "shorthand": "zy", "pinyin": "ziyang", "suffix": "县", "code": "610924", "sort": "5" }, { "id": "3014", "name": "岚皋", "parent_id": "436", "first_letter": "l", "shorthand": "lg", "pinyin": "langao", "suffix": "县", "code": "610925", "sort": "6" }, { "id": "3015", "name": "平利", "parent_id": "436", "first_letter": "p", "shorthand": "pl", "pinyin": "pingli", "suffix": "县", "code": "610926", "sort": "7" }, { "id": "3016", "name": "镇坪", "parent_id": "436", "first_letter": "z", "shorthand": "zp", "pinyin": "zhenping", "suffix": "县", "code": "610927", "sort": "8" }, { "id": "3017", "name": "旬阳", "parent_id": "436", "first_letter": "x", "shorthand": "xy", "pinyin": "xunyang", "suffix": "县", "code": "610928", "sort": "9" }, { "id": "3018", "name": "白河", "parent_id": "436", "first_letter": "b", "shorthand": "bh", "pinyin": "baihe", "suffix": "县", "code": "610929", "sort": "10" }, { "id": "3019", "name": "商州", "parent_id": "437", "first_letter": "s", "shorthand": "sz", "pinyin": "shangzhou", "suffix": "区", "code": "611002", "sort": "1" }, { "id": "3020", "name": "洛南", "parent_id": "437", "first_letter": "l", "shorthand": "ln", "pinyin": "luonan", "suffix": "县", "code": "611021", "sort": "2" }, { "id": "3021", "name": "丹凤", "parent_id": "437", "first_letter": "d", "shorthand": "df", "pinyin": "danfeng", "suffix": "县", "code": "611022", "sort": "3" }, { "id": "3022", "name": "商南", "parent_id": "437", "first_letter": "s", "shorthand": "sn", "pinyin": "shangnan", "suffix": "县", "code": "611023", "sort": "4" }, { "id": "3023", "name": "山阳", "parent_id": "437", "first_letter": "s", "shorthand": "sy", "pinyin": "shanyang", "suffix": "县", "code": "611024", "sort": "5" }, { "id": "3024", "name": "镇安", "parent_id": "437", "first_letter": "z", "shorthand": "za", "pinyin": "zhenan", "suffix": "县", "code": "611025", "sort": "6" }, { "id": "3025", "name": "柞水", "parent_id": "437", "first_letter": "z", "shorthand": "zs", "pinyin": "zuoshui", "suffix": "县", "code": "611026", "sort": "7" }, { "id": "3026", "name": "城关", "parent_id": "438", "first_letter": "c", "shorthand": "cg", "pinyin": "chengguan", "suffix": "区", "code": "620102", "sort": "1" }, { "id": "3027", "name": "七里河", "parent_id": "438", "first_letter": "q", "shorthand": "qlh", "pinyin": "qilihe", "suffix": "区", "code": "620103", "sort": "2" }, { "id": "3028", "name": "西固", "parent_id": "438", "first_letter": "x", "shorthand": "xg", "pinyin": "xigu", "suffix": "区", "code": "620104", "sort": "3" }, { "id": "3029", "name": "安宁", "parent_id": "438", "first_letter": "a", "shorthand": "an", "pinyin": "anning", "suffix": "区", "code": "620105", "sort": "4" }, { "id": "3030", "name": "红古", "parent_id": "438", "first_letter": "h", "shorthand": "hg", "pinyin": "honggu", "suffix": "区", "code": "620111", "sort": "5" }, { "id": "3031", "name": "永登", "parent_id": "438", "first_letter": "y", "shorthand": "yd", "pinyin": "yongdeng", "suffix": "县", "code": "620121", "sort": "6" }, { "id": "3032", "name": "皋兰", "parent_id": "438", "first_letter": "g", "shorthand": "gl", "pinyin": "gaolan", "suffix": "县", "code": "620122", "sort": "7" }, { "id": "3033", "name": "榆中", "parent_id": "438", "first_letter": "y", "shorthand": "yz", "pinyin": "yuzhong", "suffix": "县", "code": "620123", "sort": "8" }, { "id": "3034", "name": "镜铁", "parent_id": "439", "first_letter": "j", "shorthand": "jt", "pinyin": "jingtie", "suffix": "区", "code": "620201", "sort": "1" }, { "id": "3037", "name": "金川", "parent_id": "440", "first_letter": "j", "shorthand": "jc", "pinyin": "jinchuan", "suffix": "区", "code": "620302", "sort": "1" }, { "id": "3038", "name": "永昌", "parent_id": "440", "first_letter": "y", "shorthand": "yc", "pinyin": "yongchang", "suffix": "县", "code": "620321", "sort": "2" }, { "id": "3039", "name": "白银", "parent_id": "441", "first_letter": "b", "shorthand": "by", "pinyin": "baiyin", "suffix": "区", "code": "620402", "sort": "1" }, { "id": "3040", "name": "平川", "parent_id": "441", "first_letter": "p", "shorthand": "pc", "pinyin": "pingchuan", "suffix": "区", "code": "620403", "sort": "2" }, { "id": "3041", "name": "靖远", "parent_id": "441", "first_letter": "j", "shorthand": "jy", "pinyin": "jingyuan", "suffix": "县", "code": "620421", "sort": "3" }, { "id": "3042", "name": "会宁", "parent_id": "441", "first_letter": "h", "shorthand": "hn", "pinyin": "huining", "suffix": "县", "code": "620422", "sort": "4" }, { "id": "3043", "name": "景泰", "parent_id": "441", "first_letter": "j", "shorthand": "jt", "pinyin": "jingtai", "suffix": "县", "code": "620423", "sort": "5" }, { "id": "3044", "name": "秦州", "parent_id": "442", "first_letter": "q", "shorthand": "qz", "pinyin": "qinzhou", "suffix": "区", "code": "620502", "sort": "1" }, { "id": "3045", "name": "麦积", "parent_id": "442", "first_letter": "m", "shorthand": "mj", "pinyin": "maiji", "suffix": "区", "code": "620503", "sort": "2" }, { "id": "3046", "name": "清水", "parent_id": "442", "first_letter": "q", "shorthand": "qs", "pinyin": "qingshui", "suffix": "县", "code": "620521", "sort": "3" }, { "id": "3047", "name": "秦安", "parent_id": "442", "first_letter": "q", "shorthand": "qa", "pinyin": "qinan", "suffix": "县", "code": "620522", "sort": "4" }, { "id": "3048", "name": "甘谷", "parent_id": "442", "first_letter": "g", "shorthand": "gg", "pinyin": "gangu", "suffix": "县", "code": "620523", "sort": "5" }, { "id": "3049", "name": "武山", "parent_id": "442", "first_letter": "w", "shorthand": "ws", "pinyin": "wushan", "suffix": "县", "code": "620524", "sort": "6" }, { "id": "3050", "name": "张家川", "parent_id": "442", "first_letter": "z", "shorthand": "zjc", "pinyin": "zhangjiachuan", "suffix": "自治县", "code": "620525", "sort": "7" }, { "id": "3051", "name": "凉州", "parent_id": "443", "first_letter": "l", "shorthand": "lz", "pinyin": "liangzhou", "suffix": "区", "code": "620602", "sort": "1" }, { "id": "3052", "name": "民勤", "parent_id": "443", "first_letter": "m", "shorthand": "mq", "pinyin": "minqin", "suffix": "县", "code": "620621", "sort": "2" }, { "id": "3053", "name": "古浪", "parent_id": "443", "first_letter": "g", "shorthand": "gl", "pinyin": "gulang", "suffix": "县", "code": "620622", "sort": "3" }, { "id": "3054", "name": "天祝", "parent_id": "443", "first_letter": "t", "shorthand": "tz", "pinyin": "tianzhu", "suffix": "自治县", "code": "620623", "sort": "4" }, { "id": "3055", "name": "甘州", "parent_id": "444", "first_letter": "g", "shorthand": "gz", "pinyin": "ganzhou", "suffix": "区", "code": "620702", "sort": "1" }, { "id": "3056", "name": "肃南", "parent_id": "444", "first_letter": "s", "shorthand": "sn", "pinyin": "sunan", "suffix": "自治县", "code": "620721", "sort": "2" }, { "id": "3057", "name": "民乐", "parent_id": "444", "first_letter": "m", "shorthand": "ml", "pinyin": "minle", "suffix": "县", "code": "620722", "sort": "3" }, { "id": "3058", "name": "临泽", "parent_id": "444", "first_letter": "l", "shorthand": "lz", "pinyin": "linze", "suffix": "县", "code": "620723", "sort": "4" }, { "id": "3059", "name": "高台", "parent_id": "444", "first_letter": "g", "shorthand": "gt", "pinyin": "gaotai", "suffix": "县", "code": "620724", "sort": "5" }, { "id": "3060", "name": "山丹", "parent_id": "444", "first_letter": "s", "shorthand": "sd", "pinyin": "shandan", "suffix": "县", "code": "620725", "sort": "6" }, { "id": "3061", "name": "崆峒", "parent_id": "445", "first_letter": "k", "shorthand": "kt", "pinyin": "kongtong", "suffix": "区", "code": "620802", "sort": "1" }, { "id": "3062", "name": "泾川", "parent_id": "445", "first_letter": "j", "shorthand": "jc", "pinyin": "jingchuan", "suffix": "县", "code": "620821", "sort": "2" }, { "id": "3063", "name": "灵台", "parent_id": "445", "first_letter": "l", "shorthand": "lt", "pinyin": "lingtai", "suffix": "县", "code": "620822", "sort": "3" }, { "id": "3064", "name": "崇信", "parent_id": "445", "first_letter": "c", "shorthand": "cx", "pinyin": "chongxin", "suffix": "县", "code": "620823", "sort": "4" }, { "id": "3065", "name": "华亭", "parent_id": "445", "first_letter": "h", "shorthand": "ht", "pinyin": "huating", "suffix": "县", "code": "620824", "sort": "5" }, { "id": "3066", "name": "庄浪", "parent_id": "445", "first_letter": "z", "shorthand": "zl", "pinyin": "zhuanglang", "suffix": "县", "code": "620825", "sort": "6" }, { "id": "3067", "name": "静宁", "parent_id": "445", "first_letter": "j", "shorthand": "jn", "pinyin": "jingning", "suffix": "县", "code": "620826", "sort": "7" }, { "id": "3068", "name": "肃州", "parent_id": "446", "first_letter": "s", "shorthand": "sz", "pinyin": "suzhou", "suffix": "区", "code": "620902", "sort": "1" }, { "id": "3069", "name": "金塔", "parent_id": "446", "first_letter": "j", "shorthand": "jt", "pinyin": "jinta", "suffix": "县", "code": "620921", "sort": "2" }, { "id": "3070", "name": "瓜州", "parent_id": "446", "first_letter": "g", "shorthand": "gz", "pinyin": "guazhou", "suffix": "县", "code": "620922", "sort": "3" }, { "id": "3071", "name": "肃北", "parent_id": "446", "first_letter": "s", "shorthand": "sb", "pinyin": "subei", "suffix": "自治县", "code": "620923", "sort": "4" }, { "id": "3072", "name": "阿克塞", "parent_id": "446", "first_letter": "a", "shorthand": "aks", "pinyin": "akesai", "suffix": "自治县", "code": "620924", "sort": "5" }, { "id": "3073", "name": "玉门", "parent_id": "446", "first_letter": "y", "shorthand": "ym", "pinyin": "yumen", "suffix": "市", "code": "620981", "sort": "6" }, { "id": "3074", "name": "敦煌", "parent_id": "446", "first_letter": "d", "shorthand": "dh", "pinyin": "dunhuang", "suffix": "市", "code": "620982", "sort": "7" }, { "id": "3075", "name": "西峰", "parent_id": "447", "first_letter": "x", "shorthand": "xf", "pinyin": "xifeng", "suffix": "区", "code": "621002", "sort": "1" }, { "id": "3076", "name": "庆城", "parent_id": "447", "first_letter": "q", "shorthand": "qc", "pinyin": "qingcheng", "suffix": "县", "code": "621021", "sort": "2" }, { "id": "3077", "name": "环县", "parent_id": "447", "first_letter": "h", "shorthand": "hx", "pinyin": "huanxian", "suffix": "", "code": "621022", "sort": "3" }, { "id": "3078", "name": "华池", "parent_id": "447", "first_letter": "h", "shorthand": "hc", "pinyin": "huachi", "suffix": "县", "code": "621023", "sort": "4" }, { "id": "3079", "name": "合水", "parent_id": "447", "first_letter": "h", "shorthand": "hs", "pinyin": "heshui", "suffix": "县", "code": "621024", "sort": "5" }, { "id": "3080", "name": "正宁", "parent_id": "447", "first_letter": "z", "shorthand": "zn", "pinyin": "zhengning", "suffix": "县", "code": "621025", "sort": "6" }, { "id": "3081", "name": "宁县", "parent_id": "447", "first_letter": "n", "shorthand": "nx", "pinyin": "ningxian", "suffix": "", "code": "621026", "sort": "7" }, { "id": "3082", "name": "镇原", "parent_id": "447", "first_letter": "z", "shorthand": "zy", "pinyin": "zhenyuan", "suffix": "县", "code": "621027", "sort": "8" }, { "id": "3083", "name": "安定", "parent_id": "448", "first_letter": "a", "shorthand": "ad", "pinyin": "anding", "suffix": "区", "code": "621102", "sort": "1" }, { "id": "3084", "name": "通渭", "parent_id": "448", "first_letter": "t", "shorthand": "tw", "pinyin": "tongwei", "suffix": "县", "code": "621121", "sort": "2" }, { "id": "3085", "name": "陇西", "parent_id": "448", "first_letter": "l", "shorthand": "lx", "pinyin": "longxi", "suffix": "县", "code": "621122", "sort": "3" }, { "id": "3086", "name": "渭源", "parent_id": "448", "first_letter": "w", "shorthand": "wy", "pinyin": "weiyuan", "suffix": "县", "code": "621123", "sort": "4" }, { "id": "3087", "name": "临洮", "parent_id": "448", "first_letter": "l", "shorthand": "lt", "pinyin": "lintao", "suffix": "县", "code": "621124", "sort": "5" }, { "id": "3088", "name": "漳县", "parent_id": "448", "first_letter": "z", "shorthand": "zx", "pinyin": "zhangxian", "suffix": "", "code": "621125", "sort": "6" }, { "id": "3089", "name": "岷县", "parent_id": "448", "first_letter": "m", "shorthand": "mx", "pinyin": "minxian", "suffix": "", "code": "621126", "sort": "7" }, { "id": "3090", "name": "武都", "parent_id": "449", "first_letter": "w", "shorthand": "wd", "pinyin": "wudou", "suffix": "区", "code": "621202", "sort": "1" }, { "id": "3091", "name": "成县", "parent_id": "449", "first_letter": "c", "shorthand": "cx", "pinyin": "chengxian", "suffix": "", "code": "621221", "sort": "2" }, { "id": "3092", "name": "文县", "parent_id": "449", "first_letter": "w", "shorthand": "wx", "pinyin": "wenxian", "suffix": "", "code": "621222", "sort": "3" }, { "id": "3093", "name": "宕昌", "parent_id": "449", "first_letter": "d", "shorthand": "dc", "pinyin": "dangchang", "suffix": "县", "code": "621223", "sort": "4" }, { "id": "3094", "name": "康县", "parent_id": "449", "first_letter": "k", "shorthand": "kx", "pinyin": "kangxian", "suffix": "", "code": "621224", "sort": "5" }, { "id": "3095", "name": "西和", "parent_id": "449", "first_letter": "x", "shorthand": "xh", "pinyin": "xihe", "suffix": "县", "code": "621225", "sort": "6" }, { "id": "3096", "name": "礼县", "parent_id": "449", "first_letter": "l", "shorthand": "lx", "pinyin": "lixian", "suffix": "", "code": "621226", "sort": "7" }, { "id": "3097", "name": "徽县", "parent_id": "449", "first_letter": "h", "shorthand": "hx", "pinyin": "huixian", "suffix": "", "code": "621227", "sort": "8" }, { "id": "3098", "name": "两当", "parent_id": "449", "first_letter": "l", "shorthand": "ld", "pinyin": "liangdang", "suffix": "县", "code": "621228", "sort": "9" }, { "id": "3099", "name": "临夏", "parent_id": "450", "first_letter": "l", "shorthand": "lx", "pinyin": "linxia", "suffix": "市", "code": "622901", "sort": "1" }, { "id": "3100", "name": "临夏", "parent_id": "450", "first_letter": "l", "shorthand": "lx", "pinyin": "linxia", "suffix": "县", "code": "622921", "sort": "2" }, { "id": "3101", "name": "康乐", "parent_id": "450", "first_letter": "k", "shorthand": "kl", "pinyin": "kangle", "suffix": "县", "code": "622922", "sort": "3" }, { "id": "3102", "name": "永靖", "parent_id": "450", "first_letter": "y", "shorthand": "yj", "pinyin": "yongjing", "suffix": "县", "code": "622923", "sort": "4" }, { "id": "3103", "name": "广河", "parent_id": "450", "first_letter": "g", "shorthand": "gh", "pinyin": "guanghe", "suffix": "县", "code": "622924", "sort": "5" }, { "id": "3104", "name": "和政", "parent_id": "450", "first_letter": "h", "shorthand": "hz", "pinyin": "hezheng", "suffix": "县", "code": "622925", "sort": "6" }, { "id": "3105", "name": "东乡族", "parent_id": "450", "first_letter": "d", "shorthand": "dxz", "pinyin": "dongxiangzu", "suffix": "自治县", "code": "622926", "sort": "7" }, { "id": "3106", "name": "积石山", "parent_id": "450", "first_letter": "j", "shorthand": "jss", "pinyin": "jishishan", "suffix": "自治县", "code": "622927", "sort": "8" }, { "id": "3107", "name": "合作", "parent_id": "451", "first_letter": "h", "shorthand": "hz", "pinyin": "hezuo", "suffix": "市", "code": "623001", "sort": "1" }, { "id": "3108", "name": "临潭", "parent_id": "451", "first_letter": "l", "shorthand": "lt", "pinyin": "lintan", "suffix": "县", "code": "623021", "sort": "2" }, { "id": "3109", "name": "卓尼", "parent_id": "451", "first_letter": "z", "shorthand": "zn", "pinyin": "zhuoni", "suffix": "县", "code": "623022", "sort": "3" }, { "id": "3110", "name": "舟曲", "parent_id": "451", "first_letter": "z", "shorthand": "zq", "pinyin": "zhouqu", "suffix": "县", "code": "623023", "sort": "4" }, { "id": "3111", "name": "迭部", "parent_id": "451", "first_letter": "d", "shorthand": "db", "pinyin": "diebu", "suffix": "县", "code": "623024", "sort": "5" }, { "id": "3112", "name": "玛曲", "parent_id": "451", "first_letter": "m", "shorthand": "mq", "pinyin": "maqu", "suffix": "县", "code": "623025", "sort": "6" }, { "id": "3113", "name": "碌曲", "parent_id": "451", "first_letter": "l", "shorthand": "lq", "pinyin": "liuqu", "suffix": "县", "code": "623026", "sort": "7" }, { "id": "3114", "name": "夏河", "parent_id": "451", "first_letter": "x", "shorthand": "xh", "pinyin": "xiahe", "suffix": "县", "code": "623027", "sort": "8" }, { "id": "3115", "name": "城东", "parent_id": "452", "first_letter": "c", "shorthand": "cd", "pinyin": "chengdong", "suffix": "区", "code": "630102", "sort": "1" }, { "id": "3116", "name": "城中", "parent_id": "452", "first_letter": "c", "shorthand": "cz", "pinyin": "chengzhong", "suffix": "区", "code": "630103", "sort": "2" }, { "id": "3117", "name": "城西", "parent_id": "452", "first_letter": "c", "shorthand": "cx", "pinyin": "chengxi", "suffix": "区", "code": "630104", "sort": "3" }, { "id": "3118", "name": "城北", "parent_id": "452", "first_letter": "c", "shorthand": "cb", "pinyin": "chengbei", "suffix": "区", "code": "630105", "sort": "4" }, { "id": "3119", "name": "大通", "parent_id": "452", "first_letter": "d", "shorthand": "dt", "pinyin": "datong", "suffix": "自治县", "code": "630121", "sort": "5" }, { "id": "3120", "name": "湟中", "parent_id": "452", "first_letter": "h", "shorthand": "hz", "pinyin": "huangzhong", "suffix": "县", "code": "630122", "sort": "6" }, { "id": "3121", "name": "湟源", "parent_id": "452", "first_letter": "h", "shorthand": "hy", "pinyin": "huangyuan", "suffix": "县", "code": "630123", "sort": "7" }, { "id": "3122", "name": "乐都", "parent_id": "453", "first_letter": "l", "shorthand": "ld", "pinyin": "ledou", "suffix": "区", "code": "630202", "sort": "1" }, { "id": "3123", "name": "平安", "parent_id": "453", "first_letter": "p", "shorthand": "pa", "pinyin": "pingan", "suffix": "区", "code": "632121", "sort": "2" }, { "id": "3124", "name": "民和", "parent_id": "453", "first_letter": "m", "shorthand": "mh", "pinyin": "minhe", "suffix": "自治县", "code": "632122", "sort": "3" }, { "id": "3125", "name": "互助", "parent_id": "453", "first_letter": "h", "shorthand": "hz", "pinyin": "huzhu", "suffix": "自治县", "code": "632126", "sort": "4" }, { "id": "3126", "name": "化隆", "parent_id": "453", "first_letter": "h", "shorthand": "hl", "pinyin": "hualong", "suffix": "自治县", "code": "632127", "sort": "5" }, { "id": "3127", "name": "循化", "parent_id": "453", "first_letter": "x", "shorthand": "xh", "pinyin": "xunhua", "suffix": "自治县", "code": "632128", "sort": "6" }, { "id": "3128", "name": "门源", "parent_id": "454", "first_letter": "m", "shorthand": "my", "pinyin": "menyuan", "suffix": "自治县", "code": "632221", "sort": "1" }, { "id": "3129", "name": "祁连", "parent_id": "454", "first_letter": "q", "shorthand": "ql", "pinyin": "qilian", "suffix": "县", "code": "632222", "sort": "2" }, { "id": "3130", "name": "海晏", "parent_id": "454", "first_letter": "h", "shorthand": "hy", "pinyin": "haiyan", "suffix": "县", "code": "632223", "sort": "3" }, { "id": "3131", "name": "刚察", "parent_id": "454", "first_letter": "g", "shorthand": "gc", "pinyin": "gangcha", "suffix": "县", "code": "632224", "sort": "4" }, { "id": "3132", "name": "同仁", "parent_id": "455", "first_letter": "t", "shorthand": "tr", "pinyin": "tongren", "suffix": "县", "code": "632321", "sort": "1" }, { "id": "3133", "name": "尖扎", "parent_id": "455", "first_letter": "j", "shorthand": "jz", "pinyin": "jianzha", "suffix": "县", "code": "632322", "sort": "2" }, { "id": "3134", "name": "泽库", "parent_id": "455", "first_letter": "z", "shorthand": "zk", "pinyin": "zeku", "suffix": "县", "code": "632323", "sort": "3" }, { "id": "3135", "name": "河南", "parent_id": "455", "first_letter": "h", "shorthand": "hn", "pinyin": "henan", "suffix": "自治县", "code": "632324", "sort": "4" }, { "id": "3136", "name": "共和", "parent_id": "456", "first_letter": "g", "shorthand": "gh", "pinyin": "gonghe", "suffix": "县", "code": "632521", "sort": "1" }, { "id": "3137", "name": "同德", "parent_id": "456", "first_letter": "t", "shorthand": "td", "pinyin": "tongde", "suffix": "县", "code": "632522", "sort": "2" }, { "id": "3138", "name": "贵德", "parent_id": "456", "first_letter": "g", "shorthand": "gd", "pinyin": "guide", "suffix": "县", "code": "632523", "sort": "3" }, { "id": "3139", "name": "兴海", "parent_id": "456", "first_letter": "x", "shorthand": "xh", "pinyin": "xinghai", "suffix": "县", "code": "632524", "sort": "4" }, { "id": "3140", "name": "贵南", "parent_id": "456", "first_letter": "g", "shorthand": "gn", "pinyin": "guinan", "suffix": "县", "code": "632525", "sort": "5" }, { "id": "3141", "name": "玛沁", "parent_id": "457", "first_letter": "m", "shorthand": "mq", "pinyin": "maqin", "suffix": "县", "code": "632621", "sort": "1" }, { "id": "3142", "name": "班玛", "parent_id": "457", "first_letter": "b", "shorthand": "bm", "pinyin": "banma", "suffix": "县", "code": "632622", "sort": "2" }, { "id": "3143", "name": "甘德", "parent_id": "457", "first_letter": "g", "shorthand": "gd", "pinyin": "gande", "suffix": "县", "code": "632623", "sort": "3" }, { "id": "3144", "name": "达日", "parent_id": "457", "first_letter": "d", "shorthand": "dr", "pinyin": "dari", "suffix": "县", "code": "632624", "sort": "4" }, { "id": "3145", "name": "久治", "parent_id": "457", "first_letter": "j", "shorthand": "jz", "pinyin": "jiuzhi", "suffix": "县", "code": "632625", "sort": "5" }, { "id": "3146", "name": "玛多", "parent_id": "457", "first_letter": "m", "shorthand": "md", "pinyin": "maduo", "suffix": "县", "code": "632626", "sort": "6" }, { "id": "3147", "name": "玉树", "parent_id": "458", "first_letter": "y", "shorthand": "ys", "pinyin": "yushu", "suffix": "市", "code": "632721", "sort": "1" }, { "id": "3148", "name": "杂多", "parent_id": "458", "first_letter": "z", "shorthand": "zd", "pinyin": "zaduo", "suffix": "县", "code": "632722", "sort": "2" }, { "id": "3149", "name": "治多", "parent_id": "458", "first_letter": "z", "shorthand": "zd", "pinyin": "zhiduo", "suffix": "县", "code": "632724", "sort": "3" }, { "id": "3150", "name": "囊谦", "parent_id": "458", "first_letter": "n", "shorthand": "nq", "pinyin": "nangqian", "suffix": "县", "code": "632725", "sort": "4" }, { "id": "3151", "name": "曲麻莱", "parent_id": "458", "first_letter": "q", "shorthand": "qml", "pinyin": "qumalai", "suffix": "县", "code": "632726", "sort": "5" }, { "id": "3155", "name": "格尔木", "parent_id": "459", "first_letter": "g", "shorthand": "gem", "pinyin": "geermu", "suffix": "市", "code": "632801", "sort": "4" }, { "id": "3156", "name": "德令哈", "parent_id": "459", "first_letter": "d", "shorthand": "dlh", "pinyin": "delingha", "suffix": "市", "code": "632802", "sort": "5" }, { "id": "3157", "name": "乌兰", "parent_id": "459", "first_letter": "w", "shorthand": "wl", "pinyin": "wulan", "suffix": "县", "code": "632821", "sort": "6" }, { "id": "3158", "name": "都兰", "parent_id": "459", "first_letter": "d", "shorthand": "dl", "pinyin": "doulan", "suffix": "县", "code": "632822", "sort": "7" }, { "id": "3159", "name": "天峻", "parent_id": "459", "first_letter": "t", "shorthand": "tj", "pinyin": "tianjun", "suffix": "县", "code": "632823", "sort": "8" }, { "id": "3160", "name": "兴庆", "parent_id": "460", "first_letter": "x", "shorthand": "xq", "pinyin": "xingqing", "suffix": "区", "code": "640104", "sort": "1" }, { "id": "3161", "name": "西夏", "parent_id": "460", "first_letter": "x", "shorthand": "xx", "pinyin": "xixia", "suffix": "区", "code": "640105", "sort": "2" }, { "id": "3162", "name": "金凤", "parent_id": "460", "first_letter": "j", "shorthand": "jf", "pinyin": "jinfeng", "suffix": "区", "code": "640106", "sort": "3" }, { "id": "3163", "name": "永宁", "parent_id": "460", "first_letter": "y", "shorthand": "yn", "pinyin": "yongning", "suffix": "县", "code": "640121", "sort": "4" }, { "id": "3164", "name": "贺兰", "parent_id": "460", "first_letter": "h", "shorthand": "hl", "pinyin": "helan", "suffix": "县", "code": "640122", "sort": "5" }, { "id": "3165", "name": "灵武", "parent_id": "460", "first_letter": "l", "shorthand": "lw", "pinyin": "lingwu", "suffix": "市", "code": "640181", "sort": "6" }, { "id": "3166", "name": "大武口", "parent_id": "461", "first_letter": "d", "shorthand": "dwk", "pinyin": "dawukou", "suffix": "区", "code": "640202", "sort": "1" }, { "id": "3167", "name": "惠农", "parent_id": "461", "first_letter": "h", "shorthand": "hn", "pinyin": "huinong", "suffix": "区", "code": "640205", "sort": "2" }, { "id": "3168", "name": "平罗", "parent_id": "461", "first_letter": "p", "shorthand": "pl", "pinyin": "pingluo", "suffix": "县", "code": "640221", "sort": "3" }, { "id": "3170", "name": "利通", "parent_id": "462", "first_letter": "l", "shorthand": "lt", "pinyin": "litong", "suffix": "区", "code": "640302", "sort": "2" }, { "id": "3171", "name": "盐池", "parent_id": "462", "first_letter": "y", "shorthand": "yc", "pinyin": "yanchi", "suffix": "县", "code": "640323", "sort": "3" }, { "id": "3172", "name": "同心", "parent_id": "462", "first_letter": "t", "shorthand": "tx", "pinyin": "tongxin", "suffix": "县", "code": "640324", "sort": "4" }, { "id": "3173", "name": "青铜峡", "parent_id": "462", "first_letter": "q", "shorthand": "qtx", "pinyin": "qingtongxia", "suffix": "市", "code": "640381", "sort": "5" }, { "id": "3174", "name": "原州", "parent_id": "463", "first_letter": "y", "shorthand": "yz", "pinyin": "yuanzhou", "suffix": "区", "code": "640402", "sort": "1" }, { "id": "3175", "name": "西吉", "parent_id": "463", "first_letter": "x", "shorthand": "xj", "pinyin": "xiji", "suffix": "县", "code": "640422", "sort": "2" }, { "id": "3176", "name": "隆德", "parent_id": "463", "first_letter": "l", "shorthand": "ld", "pinyin": "longde", "suffix": "县", "code": "640423", "sort": "3" }, { "id": "3177", "name": "泾源", "parent_id": "463", "first_letter": "j", "shorthand": "jy", "pinyin": "jingyuan", "suffix": "县", "code": "640424", "sort": "4" }, { "id": "3178", "name": "彭阳", "parent_id": "463", "first_letter": "p", "shorthand": "py", "pinyin": "pengyang", "suffix": "县", "code": "640425", "sort": "5" }, { "id": "3179", "name": "沙坡头", "parent_id": "464", "first_letter": "s", "shorthand": "spt", "pinyin": "shapotou", "suffix": "区", "code": "640502", "sort": "1" }, { "id": "3180", "name": "中宁", "parent_id": "464", "first_letter": "z", "shorthand": "zn", "pinyin": "zhongning", "suffix": "县", "code": "640521", "sort": "2" }, { "id": "3181", "name": "海原", "parent_id": "464", "first_letter": "h", "shorthand": "hy", "pinyin": "haiyuan", "suffix": "县", "code": "640522", "sort": "3" }, { "id": "3182", "name": "天山", "parent_id": "465", "first_letter": "t", "shorthand": "ts", "pinyin": "tianshan", "suffix": "区", "code": "650102", "sort": "1" }, { "id": "3183", "name": "沙依巴克", "parent_id": "465", "first_letter": "s", "shorthand": "sybk", "pinyin": "shayibake", "suffix": "区", "code": "650103", "sort": "2" }, { "id": "3184", "name": "新市", "parent_id": "465", "first_letter": "x", "shorthand": "xs", "pinyin": "xinshi", "suffix": "区", "code": "650104", "sort": "3" }, { "id": "3185", "name": "水磨沟", "parent_id": "465", "first_letter": "s", "shorthand": "smg", "pinyin": "shuimogou", "suffix": "区", "code": "650105", "sort": "4" }, { "id": "3186", "name": "头屯河", "parent_id": "465", "first_letter": "t", "shorthand": "tth", "pinyin": "toutunhe", "suffix": "区", "code": "650106", "sort": "5" }, { "id": "3187", "name": "达坂城", "parent_id": "465", "first_letter": "d", "shorthand": "dbc", "pinyin": "dabancheng", "suffix": "区", "code": "650107", "sort": "6" }, { "id": "3188", "name": "米东", "parent_id": "465", "first_letter": "m", "shorthand": "md", "pinyin": "midong", "suffix": "区", "code": "650109", "sort": "7" }, { "id": "3189", "name": "乌鲁木齐", "parent_id": "465", "first_letter": "w", "shorthand": "wlmq", "pinyin": "wulumuqi", "suffix": "县", "code": "650121", "sort": "8" }, { "id": "3190", "name": "独山子", "parent_id": "466", "first_letter": "d", "shorthand": "dsz", "pinyin": "dushanzi", "suffix": "区", "code": "650202", "sort": "1" }, { "id": "3191", "name": "克拉玛依", "parent_id": "466", "first_letter": "k", "shorthand": "klmy", "pinyin": "kelamayi", "suffix": "区", "code": "650203", "sort": "2" }, { "id": "3192", "name": "白碱滩", "parent_id": "466", "first_letter": "b", "shorthand": "bjt", "pinyin": "baijiantan", "suffix": "区", "code": "650204", "sort": "3" }, { "id": "3193", "name": "乌尔禾", "parent_id": "466", "first_letter": "w", "shorthand": "weh", "pinyin": "wuerhe", "suffix": "区", "code": "650205", "sort": "4" }, { "id": "3194", "name": "高昌", "parent_id": "467", "first_letter": "g", "shorthand": "gc", "pinyin": "gaochang", "suffix": "区", "code": "652101", "sort": "1" }, { "id": "3195", "name": "鄯善", "parent_id": "467", "first_letter": "s", "shorthand": "ss", "pinyin": "shanshan", "suffix": "县", "code": "652122", "sort": "2" }, { "id": "3196", "name": "托克逊", "parent_id": "467", "first_letter": "t", "shorthand": "tkx", "pinyin": "tuokexun", "suffix": "县", "code": "652123", "sort": "3" }, { "id": "3197", "name": "哈密", "parent_id": "468", "first_letter": "h", "shorthand": "hm", "pinyin": "hami", "suffix": "市", "code": "652201", "sort": "1" }, { "id": "3198", "name": "巴里坤", "parent_id": "468", "first_letter": "b", "shorthand": "blk", "pinyin": "balikun", "suffix": "自治县", "code": "652222", "sort": "2" }, { "id": "3199", "name": "伊吾", "parent_id": "468", "first_letter": "y", "shorthand": "yw", "pinyin": "yiwu", "suffix": "县", "code": "652223", "sort": "3" }, { "id": "3200", "name": "昌吉", "parent_id": "469", "first_letter": "c", "shorthand": "cj", "pinyin": "changji", "suffix": "市", "code": "652301", "sort": "1" }, { "id": "3201", "name": "阜康", "parent_id": "469", "first_letter": "f", "shorthand": "fk", "pinyin": "fukang", "suffix": "市", "code": "652302", "sort": "2" }, { "id": "3202", "name": "呼图壁", "parent_id": "469", "first_letter": "h", "shorthand": "htb", "pinyin": "hutubi", "suffix": "县", "code": "652323", "sort": "3" }, { "id": "3203", "name": "玛纳斯", "parent_id": "469", "first_letter": "m", "shorthand": "mns", "pinyin": "manasi", "suffix": "县", "code": "652324", "sort": "4" }, { "id": "3204", "name": "奇台", "parent_id": "469", "first_letter": "q", "shorthand": "qt", "pinyin": "qitai", "suffix": "县", "code": "652325", "sort": "5" }, { "id": "3205", "name": "吉木萨尔", "parent_id": "469", "first_letter": "j", "shorthand": "jmse", "pinyin": "jimusaer", "suffix": "县", "code": "652327", "sort": "6" }, { "id": "3206", "name": "木垒", "parent_id": "469", "first_letter": "m", "shorthand": "ml", "pinyin": "mulei", "suffix": "自治县", "code": "652328", "sort": "7" }, { "id": "3208", "name": "博乐", "parent_id": "470", "first_letter": "b", "shorthand": "bl", "pinyin": "bole", "suffix": "市", "code": "652701", "sort": "2" }, { "id": "3209", "name": "精河", "parent_id": "470", "first_letter": "j", "shorthand": "jh", "pinyin": "jinghe", "suffix": "县", "code": "652722", "sort": "3" }, { "id": "3210", "name": "温泉", "parent_id": "470", "first_letter": "w", "shorthand": "wq", "pinyin": "wenquan", "suffix": "县", "code": "652723", "sort": "4" }, { "id": "3211", "name": "库尔勒", "parent_id": "471", "first_letter": "k", "shorthand": "kel", "pinyin": "kuerle", "suffix": "市", "code": "652801", "sort": "1" }, { "id": "3212", "name": "轮台", "parent_id": "471", "first_letter": "l", "shorthand": "lt", "pinyin": "luntai", "suffix": "县", "code": "652822", "sort": "2" }, { "id": "3213", "name": "尉犁", "parent_id": "471", "first_letter": "w", "shorthand": "wl", "pinyin": "weili", "suffix": "县", "code": "652823", "sort": "3" }, { "id": "3214", "name": "若羌", "parent_id": "471", "first_letter": "r", "shorthand": "rq", "pinyin": "ruoqiang", "suffix": "县", "code": "652824", "sort": "4" }, { "id": "3215", "name": "且末", "parent_id": "471", "first_letter": "q", "shorthand": "qm", "pinyin": "qiemo", "suffix": "县", "code": "652825", "sort": "5" }, { "id": "3216", "name": "焉耆", "parent_id": "471", "first_letter": "y", "shorthand": "yq", "pinyin": "yanqi", "suffix": "自治县", "code": "652826", "sort": "6" }, { "id": "3217", "name": "和静", "parent_id": "471", "first_letter": "h", "shorthand": "hj", "pinyin": "hejing", "suffix": "县", "code": "652827", "sort": "7" }, { "id": "3218", "name": "和硕", "parent_id": "471", "first_letter": "h", "shorthand": "hs", "pinyin": "heshuo", "suffix": "县", "code": "652828", "sort": "8" }, { "id": "3219", "name": "博湖", "parent_id": "471", "first_letter": "b", "shorthand": "bh", "pinyin": "bohu", "suffix": "县", "code": "652829", "sort": "9" }, { "id": "3220", "name": "阿克苏", "parent_id": "472", "first_letter": "a", "shorthand": "aks", "pinyin": "akesu", "suffix": "市", "code": "652901", "sort": "1" }, { "id": "3221", "name": "温宿", "parent_id": "472", "first_letter": "w", "shorthand": "ws", "pinyin": "wensu", "suffix": "县", "code": "652922", "sort": "2" }, { "id": "3222", "name": "库车", "parent_id": "472", "first_letter": "k", "shorthand": "kc", "pinyin": "kuche", "suffix": "县", "code": "652923", "sort": "3" }, { "id": "3223", "name": "沙雅", "parent_id": "472", "first_letter": "s", "shorthand": "sy", "pinyin": "shaya", "suffix": "县", "code": "652924", "sort": "4" }, { "id": "3224", "name": "新和", "parent_id": "472", "first_letter": "x", "shorthand": "xh", "pinyin": "xinhe", "suffix": "县", "code": "652925", "sort": "5" }, { "id": "3225", "name": "拜城", "parent_id": "472", "first_letter": "b", "shorthand": "bc", "pinyin": "baicheng", "suffix": "县", "code": "652926", "sort": "6" }, { "id": "3226", "name": "乌什", "parent_id": "472", "first_letter": "w", "shorthand": "ws", "pinyin": "wushen", "suffix": "县", "code": "652927", "sort": "7" }, { "id": "3227", "name": "阿瓦提", "parent_id": "472", "first_letter": "a", "shorthand": "awt", "pinyin": "awati", "suffix": "县", "code": "652928", "sort": "8" }, { "id": "3228", "name": "柯坪", "parent_id": "472", "first_letter": "k", "shorthand": "kp", "pinyin": "keping", "suffix": "县", "code": "652929", "sort": "9" }, { "id": "3229", "name": "阿图什", "parent_id": "473", "first_letter": "a", "shorthand": "ats", "pinyin": "atushen", "suffix": "市", "code": "653001", "sort": "1" }, { "id": "3230", "name": "阿克陶", "parent_id": "473", "first_letter": "a", "shorthand": "akt", "pinyin": "aketao", "suffix": "县", "code": "653022", "sort": "2" }, { "id": "3231", "name": "阿合奇", "parent_id": "473", "first_letter": "a", "shorthand": "ahq", "pinyin": "aheqi", "suffix": "县", "code": "653023", "sort": "3" }, { "id": "3232", "name": "乌恰", "parent_id": "473", "first_letter": "w", "shorthand": "wq", "pinyin": "wuqia", "suffix": "县", "code": "653024", "sort": "4" }, { "id": "3233", "name": "喀什", "parent_id": "474", "first_letter": "k", "shorthand": "ks", "pinyin": "kashen", "suffix": "市", "code": "653101", "sort": "1" }, { "id": "3234", "name": "疏附", "parent_id": "474", "first_letter": "s", "shorthand": "sf", "pinyin": "shufu", "suffix": "县", "code": "653121", "sort": "2" }, { "id": "3235", "name": "疏勒", "parent_id": "474", "first_letter": "s", "shorthand": "sl", "pinyin": "shule", "suffix": "县", "code": "653122", "sort": "3" }, { "id": "3236", "name": "英吉沙", "parent_id": "474", "first_letter": "y", "shorthand": "yjs", "pinyin": "yingjisha", "suffix": "县", "code": "653123", "sort": "4" }, { "id": "3237", "name": "泽普", "parent_id": "474", "first_letter": "z", "shorthand": "zp", "pinyin": "zepu", "suffix": "县", "code": "653124", "sort": "5" }, { "id": "3238", "name": "莎车", "parent_id": "474", "first_letter": "s", "shorthand": "sc", "pinyin": "shache", "suffix": "县", "code": "653125", "sort": "6" }, { "id": "3239", "name": "叶城", "parent_id": "474", "first_letter": "y", "shorthand": "yc", "pinyin": "yecheng", "suffix": "县", "code": "653126", "sort": "7" }, { "id": "3240", "name": "麦盖提", "parent_id": "474", "first_letter": "m", "shorthand": "mgt", "pinyin": "maigaiti", "suffix": "县", "code": "653127", "sort": "8" }, { "id": "3241", "name": "岳普湖", "parent_id": "474", "first_letter": "y", "shorthand": "yph", "pinyin": "yuepuhu", "suffix": "县", "code": "653128", "sort": "9" }, { "id": "3242", "name": "伽师", "parent_id": "474", "first_letter": "j", "shorthand": "js", "pinyin": "jiashi", "suffix": "县", "code": "653129", "sort": "10" }, { "id": "3243", "name": "巴楚", "parent_id": "474", "first_letter": "b", "shorthand": "bc", "pinyin": "bachu", "suffix": "县", "code": "653130", "sort": "11" }, { "id": "3244", "name": "塔什库尔干", "parent_id": "474", "first_letter": "t", "shorthand": "tskeg", "pinyin": "tashenkuergan", "suffix": "自治县", "code": "653131", "sort": "12" }, { "id": "3245", "name": "和田", "parent_id": "475", "first_letter": "h", "shorthand": "ht", "pinyin": "hetian", "suffix": "市", "code": "653201", "sort": "1" }, { "id": "3246", "name": "和田", "parent_id": "475", "first_letter": "h", "shorthand": "ht", "pinyin": "hetian", "suffix": "县", "code": "653221", "sort": "2" }, { "id": "3247", "name": "墨玉", "parent_id": "475", "first_letter": "m", "shorthand": "my", "pinyin": "moyu", "suffix": "县", "code": "653222", "sort": "3" }, { "id": "3248", "name": "皮山", "parent_id": "475", "first_letter": "p", "shorthand": "ps", "pinyin": "pishan", "suffix": "县", "code": "653223", "sort": "4" }, { "id": "3249", "name": "洛浦", "parent_id": "475", "first_letter": "l", "shorthand": "lp", "pinyin": "luopu", "suffix": "县", "code": "653224", "sort": "5" }, { "id": "3250", "name": "策勒", "parent_id": "475", "first_letter": "c", "shorthand": "cl", "pinyin": "cele", "suffix": "县", "code": "653225", "sort": "6" }, { "id": "3251", "name": "于田", "parent_id": "475", "first_letter": "y", "shorthand": "yt", "pinyin": "yutian", "suffix": "县", "code": "653226", "sort": "7" }, { "id": "3252", "name": "民丰", "parent_id": "475", "first_letter": "m", "shorthand": "mf", "pinyin": "minfeng", "suffix": "县", "code": "653227", "sort": "8" }, { "id": "3253", "name": "伊宁", "parent_id": "476", "first_letter": "y", "shorthand": "yn", "pinyin": "yining", "suffix": "市", "code": "654002", "sort": "1" }, { "id": "3254", "name": "奎屯", "parent_id": "476", "first_letter": "k", "shorthand": "kt", "pinyin": "kuitun", "suffix": "市", "code": "654003", "sort": "2" }, { "id": "3255", "name": "伊宁", "parent_id": "476", "first_letter": "y", "shorthand": "yn", "pinyin": "yining", "suffix": "县", "code": "654021", "sort": "4" }, { "id": "3256", "name": "察布查尔锡伯", "parent_id": "476", "first_letter": "c", "shorthand": "cbcexb", "pinyin": "chabuchaerxibo", "suffix": "自治县", "code": "654022", "sort": "5" }, { "id": "3257", "name": "霍城", "parent_id": "476", "first_letter": "h", "shorthand": "hc", "pinyin": "huocheng", "suffix": "县", "code": "654023", "sort": "6" }, { "id": "3258", "name": "巩留", "parent_id": "476", "first_letter": "g", "shorthand": "gl", "pinyin": "gongliu", "suffix": "县", "code": "654024", "sort": "7" }, { "id": "3259", "name": "新源", "parent_id": "476", "first_letter": "x", "shorthand": "xy", "pinyin": "xinyuan", "suffix": "县", "code": "654025", "sort": "8" }, { "id": "3260", "name": "昭苏", "parent_id": "476", "first_letter": "z", "shorthand": "zs", "pinyin": "zhaosu", "suffix": "县", "code": "654026", "sort": "9" }, { "id": "3261", "name": "特克斯", "parent_id": "476", "first_letter": "t", "shorthand": "tks", "pinyin": "tekesi", "suffix": "县", "code": "654027", "sort": "10" }, { "id": "3262", "name": "尼勒克", "parent_id": "476", "first_letter": "n", "shorthand": "nlk", "pinyin": "nileke", "suffix": "县", "code": "654028", "sort": "11" }, { "id": "3263", "name": "塔城", "parent_id": "477", "first_letter": "t", "shorthand": "tc", "pinyin": "tacheng", "suffix": "市", "code": "654201", "sort": "1" }, { "id": "3264", "name": "乌苏", "parent_id": "477", "first_letter": "w", "shorthand": "ws", "pinyin": "wusu", "suffix": "市", "code": "654202", "sort": "2" }, { "id": "3265", "name": "额敏", "parent_id": "477", "first_letter": "e", "shorthand": "em", "pinyin": "emin", "suffix": "县", "code": "654221", "sort": "3" }, { "id": "3266", "name": "沙湾", "parent_id": "477", "first_letter": "s", "shorthand": "sw", "pinyin": "shawan", "suffix": "县", "code": "654223", "sort": "4" }, { "id": "3267", "name": "托里", "parent_id": "477", "first_letter": "t", "shorthand": "tl", "pinyin": "tuoli", "suffix": "县", "code": "654224", "sort": "5" }, { "id": "3268", "name": "裕民", "parent_id": "477", "first_letter": "y", "shorthand": "ym", "pinyin": "yumin", "suffix": "县", "code": "654225", "sort": "6" }, { "id": "3269", "name": "和布克赛尔", "parent_id": "477", "first_letter": "h", "shorthand": "hbkse", "pinyin": "hebukesaier", "suffix": "自治县", "code": "654226", "sort": "7" }, { "id": "3270", "name": "阿勒泰", "parent_id": "478", "first_letter": "a", "shorthand": "alt", "pinyin": "aletai", "suffix": "市", "code": "654301", "sort": "1" }, { "id": "3271", "name": "布尔津", "parent_id": "478", "first_letter": "b", "shorthand": "bej", "pinyin": "buerjin", "suffix": "县", "code": "654321", "sort": "2" }, { "id": "3272", "name": "富蕴", "parent_id": "478", "first_letter": "f", "shorthand": "fy", "pinyin": "fuyun", "suffix": "县", "code": "654322", "sort": "3" }, { "id": "3273", "name": "福海", "parent_id": "478", "first_letter": "f", "shorthand": "fh", "pinyin": "fuhai", "suffix": "县", "code": "654323", "sort": "4" }, { "id": "3274", "name": "哈巴河", "parent_id": "478", "first_letter": "h", "shorthand": "hbh", "pinyin": "habahe", "suffix": "县", "code": "654324", "sort": "5" }, { "id": "3275", "name": "青河", "parent_id": "478", "first_letter": "q", "shorthand": "qh", "pinyin": "qinghe", "suffix": "县", "code": "654325", "sort": "6" }, { "id": "3276", "name": "吉木乃", "parent_id": "478", "first_letter": "j", "shorthand": "jmn", "pinyin": "jimunai", "suffix": "县", "code": "654326", "sort": "7" }, { "id": "3277", "name": "松山", "parent_id": "485", "first_letter": "s", "shorthand": "ss", "pinyin": "songshan", "suffix": "区", "code": "6300100", "sort": "1" }, { "id": "3278", "name": "信义", "parent_id": "485", "first_letter": "x", "shorthand": "xy", "pinyin": "xinyi", "suffix": "区", "code": "6300200", "sort": "2" }, { "id": "3279", "name": "大安", "parent_id": "485", "first_letter": "d", "shorthand": "da", "pinyin": "daan", "suffix": "区", "code": "6300300", "sort": "3" }, { "id": "3280", "name": "中山", "parent_id": "485", "first_letter": "z", "shorthand": "zs", "pinyin": "zhongshan", "suffix": "区", "code": "6300400", "sort": "4" }, { "id": "3281", "name": "中正", "parent_id": "485", "first_letter": "z", "shorthand": "zz", "pinyin": "zhongzheng", "suffix": "区", "code": "6300500", "sort": "5" }, { "id": "3282", "name": "大同", "parent_id": "485", "first_letter": "d", "shorthand": "dt", "pinyin": "datong", "suffix": "区", "code": "6300600", "sort": "6" }, { "id": "3283", "name": "万华", "parent_id": "485", "first_letter": "w", "shorthand": "wh", "pinyin": "wanhua", "suffix": "区", "code": "6300700", "sort": "7" }, { "id": "3284", "name": "文山", "parent_id": "485", "first_letter": "w", "shorthand": "ws", "pinyin": "wenshan", "suffix": "区", "code": "6300800", "sort": "8" }, { "id": "3285", "name": "南港", "parent_id": "485", "first_letter": "n", "shorthand": "ng", "pinyin": "nangang", "suffix": "区", "code": "6300900", "sort": "9" }, { "id": "3286", "name": "内湖", "parent_id": "485", "first_letter": "n", "shorthand": "nh", "pinyin": "neihu", "suffix": "区", "code": "6301000", "sort": "10" }, { "id": "3287", "name": "士林", "parent_id": "485", "first_letter": "s", "shorthand": "sl", "pinyin": "shilin", "suffix": "区", "code": "6301100", "sort": "11" }, { "id": "3288", "name": "北投", "parent_id": "485", "first_letter": "b", "shorthand": "bt", "pinyin": "beitou", "suffix": "区", "code": "6301200", "sort": "12" }, { "id": "3289", "name": "盐埕", "parent_id": "486", "first_letter": "y", "shorthand": "yc", "pinyin": "yancheng", "suffix": "区", "code": "6400100", "sort": "1" }, { "id": "3290", "name": "鼓山", "parent_id": "486", "first_letter": "g", "shorthand": "gs", "pinyin": "gushan", "suffix": "区", "code": "6400200", "sort": "2" }, { "id": "3291", "name": "左营", "parent_id": "486", "first_letter": "z", "shorthand": "zy", "pinyin": "zuoying", "suffix": "区", "code": "6400300", "sort": "3" }, { "id": "3292", "name": "楠梓", "parent_id": "486", "first_letter": "n", "shorthand": "nz", "pinyin": "nanzi", "suffix": "区", "code": "6400400", "sort": "4" }, { "id": "3293", "name": "三民", "parent_id": "486", "first_letter": "s", "shorthand": "sm", "pinyin": "sanmin", "suffix": "区", "code": "6400500", "sort": "5" }, { "id": "3294", "name": "新兴", "parent_id": "486", "first_letter": "x", "shorthand": "xx", "pinyin": "xinxing", "suffix": "区", "code": "6400600", "sort": "6" }, { "id": "3295", "name": "前金", "parent_id": "486", "first_letter": "q", "shorthand": "qj", "pinyin": "qianjin", "suffix": "区", "code": "6400700", "sort": "7" }, { "id": "3296", "name": "苓雅", "parent_id": "486", "first_letter": "l", "shorthand": "ly", "pinyin": "lingya", "suffix": "区", "code": "6400800", "sort": "8" }, { "id": "3297", "name": "前镇", "parent_id": "486", "first_letter": "q", "shorthand": "qz", "pinyin": "qianzhen", "suffix": "区", "code": "6400900", "sort": "9" }, { "id": "3298", "name": "旗津", "parent_id": "486", "first_letter": "q", "shorthand": "qj", "pinyin": "qijin", "suffix": "区", "code": "6401000", "sort": "10" }, { "id": "3299", "name": "小港", "parent_id": "486", "first_letter": "x", "shorthand": "xg", "pinyin": "xiaogang", "suffix": "区", "code": "6401100", "sort": "11" }, { "id": "3300", "name": "中正", "parent_id": "487", "first_letter": "z", "shorthand": "zz", "pinyin": "zhongzheng", "suffix": "区", "code": "1001701", "sort": "1" }, { "id": "3301", "name": "七堵", "parent_id": "487", "first_letter": "q", "shorthand": "qd", "pinyin": "qidu", "suffix": "区", "code": "1001702", "sort": "2" }, { "id": "3302", "name": "暖暖", "parent_id": "487", "first_letter": "n", "shorthand": "nn", "pinyin": "nuannuan", "suffix": "区", "code": "1001703", "sort": "3" }, { "id": "3303", "name": "仁爱", "parent_id": "487", "first_letter": "r", "shorthand": "ra", "pinyin": "renai", "suffix": "区", "code": "1001704", "sort": "4" }, { "id": "3304", "name": "中山", "parent_id": "487", "first_letter": "z", "shorthand": "zs", "pinyin": "zhongshan", "suffix": "区", "code": "1001705", "sort": "5" }, { "id": "3305", "name": "安乐", "parent_id": "487", "first_letter": "a", "shorthand": "al", "pinyin": "anle", "suffix": "区", "code": "1001706", "sort": "6" }, { "id": "3306", "name": "信义", "parent_id": "487", "first_letter": "x", "shorthand": "xy", "pinyin": "xinyi", "suffix": "区", "code": "1001707", "sort": "7" }, { "id": "3328", "name": "中区", "parent_id": "488", "first_letter": "z", "shorthand": "zq", "pinyin": "zhongqu", "suffix": "", "code": "1001901", "sort": "22" }, { "id": "3329", "name": "东区", "parent_id": "488", "first_letter": "d", "shorthand": "dq", "pinyin": "dongqu", "suffix": "", "code": "1001902", "sort": "23" }, { "id": "3330", "name": "南区", "parent_id": "488", "first_letter": "n", "shorthand": "nq", "pinyin": "nanqu", "suffix": "", "code": "1001903", "sort": "24" }, { "id": "3331", "name": "西区", "parent_id": "488", "first_letter": "x", "shorthand": "xq", "pinyin": "xiqu", "suffix": "", "code": "1001904", "sort": "25" }, { "id": "3332", "name": "北区", "parent_id": "488", "first_letter": "b", "shorthand": "bq", "pinyin": "beiqu", "suffix": "", "code": "1001905", "sort": "26" }, { "id": "3333", "name": "西屯", "parent_id": "488", "first_letter": "x", "shorthand": "xt", "pinyin": "xitun", "suffix": "区", "code": "1001906", "sort": "27" }, { "id": "3334", "name": "南屯", "parent_id": "488", "first_letter": "n", "shorthand": "nt", "pinyin": "nantun", "suffix": "区", "code": "1001907", "sort": "28" }, { "id": "3335", "name": "北屯", "parent_id": "488", "first_letter": "b", "shorthand": "bt", "pinyin": "beitun", "suffix": "区", "code": "1001908", "sort": "29" }, { "id": "3336", "name": "东区", "parent_id": "489", "first_letter": "d", "shorthand": "dq", "pinyin": "dongqu", "suffix": "", "code": "1002101", "sort": "1" }, { "id": "3337", "name": "南区", "parent_id": "489", "first_letter": "n", "shorthand": "nq", "pinyin": "nanqu", "suffix": "", "code": "1002102", "sort": "2" }, { "id": "3338", "name": "北区", "parent_id": "489", "first_letter": "b", "shorthand": "bq", "pinyin": "beiqu", "suffix": "", "code": "1002104", "sort": "3" }, { "id": "3339", "name": "安南", "parent_id": "489", "first_letter": "a", "shorthand": "an", "pinyin": "annan", "suffix": "区", "code": "1002106", "sort": "4" }, { "id": "3340", "name": "安平", "parent_id": "489", "first_letter": "a", "shorthand": "ap", "pinyin": "anping", "suffix": "区", "code": "1002107", "sort": "5" }, { "id": "3341", "name": "中西", "parent_id": "489", "first_letter": "z", "shorthand": "zx", "pinyin": "zhongxi", "suffix": "区", "code": "1002108", "sort": "6" }, { "id": "3342", "name": "东区", "parent_id": "490", "first_letter": "d", "shorthand": "dq", "pinyin": "dongqu", "suffix": "", "code": "1001801", "sort": "1" }, { "id": "3343", "name": "北区", "parent_id": "490", "first_letter": "b", "shorthand": "bq", "pinyin": "beiqu", "suffix": "", "code": "1001802", "sort": "2" }, { "id": "3344", "name": "香山", "parent_id": "490", "first_letter": "x", "shorthand": "xs", "pinyin": "xiangshan", "suffix": "区", "code": "1001803", "sort": "3" }, { "id": "3345", "name": "东区", "parent_id": "491", "first_letter": "d", "shorthand": "dq", "pinyin": "dongqu", "suffix": "", "code": "1002001", "sort": "1" }, { "id": "3346", "name": "西区", "parent_id": "491", "first_letter": "x", "shorthand": "xq", "pinyin": "xiqu", "suffix": "", "code": "1002002", "sort": "2" }, { "id": "3376", "name": "宜兰", "parent_id": "493", "first_letter": "y", "shorthand": "yl", "pinyin": "yilan", "suffix": "市", "code": "1000201", "sort": "1" }, { "id": "3377", "name": "罗东", "parent_id": "493", "first_letter": "l", "shorthand": "ld", "pinyin": "luodong", "suffix": "镇", "code": "1000202", "sort": "2" }, { "id": "3378", "name": "苏澳", "parent_id": "493", "first_letter": "s", "shorthand": "sa", "pinyin": "suao", "suffix": "镇", "code": "1000203", "sort": "3" }, { "id": "3379", "name": "头城", "parent_id": "493", "first_letter": "t", "shorthand": "tc", "pinyin": "toucheng", "suffix": "乡", "code": "1000204", "sort": "4" }, { "id": "3380", "name": "礁溪", "parent_id": "493", "first_letter": "j", "shorthand": "jx", "pinyin": "jiaoxi", "suffix": "乡", "code": "1000205", "sort": "5" }, { "id": "3381", "name": "壮围", "parent_id": "493", "first_letter": "z", "shorthand": "zw", "pinyin": "zhuangwei", "suffix": "乡", "code": "1000206", "sort": "6" }, { "id": "3382", "name": "员山", "parent_id": "493", "first_letter": "y", "shorthand": "ys", "pinyin": "yuanshan", "suffix": "乡", "code": "1000207", "sort": "7" }, { "id": "3383", "name": "冬山", "parent_id": "493", "first_letter": "d", "shorthand": "ds", "pinyin": "dongshan", "suffix": "乡", "code": "1000208", "sort": "8" }, { "id": "3384", "name": "五结", "parent_id": "493", "first_letter": "w", "shorthand": "wj", "pinyin": "wujie", "suffix": "乡", "code": "1000209", "sort": "9" }, { "id": "3385", "name": "三星", "parent_id": "493", "first_letter": "s", "shorthand": "sx", "pinyin": "sanxing", "suffix": "乡", "code": "1000210", "sort": "10" }, { "id": "3386", "name": "大同", "parent_id": "493", "first_letter": "d", "shorthand": "dt", "pinyin": "datong", "suffix": "乡", "code": "1000211", "sort": "11" }, { "id": "3387", "name": "南澳", "parent_id": "493", "first_letter": "n", "shorthand": "na", "pinyin": "nanao", "suffix": "乡", "code": "1000212", "sort": "12" }, { "id": "3388", "name": "桃园", "parent_id": "494", "first_letter": "t", "shorthand": "ty", "pinyin": "taoyuan", "suffix": "市", "code": "1000301", "sort": "1" }, { "id": "3389", "name": "中坜", "parent_id": "494", "first_letter": "z", "shorthand": "zl", "pinyin": "zhongli", "suffix": "市", "code": "1000302", "sort": "2" }, { "id": "3390", "name": "大溪", "parent_id": "494", "first_letter": "d", "shorthand": "dx", "pinyin": "daxi", "suffix": "镇", "code": "1000303", "sort": "3" }, { "id": "3391", "name": "杨梅", "parent_id": "494", "first_letter": "y", "shorthand": "ym", "pinyin": "yangmei", "suffix": "镇", "code": "1000304", "sort": "4" }, { "id": "3392", "name": "芦竹", "parent_id": "494", "first_letter": "l", "shorthand": "lz", "pinyin": "luzhu", "suffix": "乡", "code": "1000305", "sort": "5" }, { "id": "3393", "name": "大园", "parent_id": "494", "first_letter": "d", "shorthand": "dy", "pinyin": "dayuan", "suffix": "乡", "code": "1000306", "sort": "6" }, { "id": "3394", "name": "龟山", "parent_id": "494", "first_letter": "g", "shorthand": "gs", "pinyin": "guishan", "suffix": "乡", "code": "1000307", "sort": "7" }, { "id": "3395", "name": "八德", "parent_id": "494", "first_letter": "b", "shorthand": "bd", "pinyin": "bade", "suffix": "市", "code": "1000308", "sort": "8" }, { "id": "3396", "name": "龙潭", "parent_id": "494", "first_letter": "l", "shorthand": "lt", "pinyin": "longtan", "suffix": "乡", "code": "1000309", "sort": "9" }, { "id": "3397", "name": "平镇", "parent_id": "494", "first_letter": "p", "shorthand": "pz", "pinyin": "pingzhen", "suffix": "市", "code": "1000310", "sort": "10" }, { "id": "3398", "name": "新屋", "parent_id": "494", "first_letter": "x", "shorthand": "xw", "pinyin": "xinwu", "suffix": "乡", "code": "1000311", "sort": "11" }, { "id": "3399", "name": "观音", "parent_id": "494", "first_letter": "g", "shorthand": "gy", "pinyin": "guanyin", "suffix": "乡", "code": "1000312", "sort": "12" }, { "id": "3400", "name": "复兴", "parent_id": "494", "first_letter": "f", "shorthand": "fx", "pinyin": "fuxing", "suffix": "乡", "code": "1000313", "sort": "13" }, { "id": "3401", "name": "竹北", "parent_id": "495", "first_letter": "z", "shorthand": "zb", "pinyin": "zhubei", "suffix": "市", "code": "1000401", "sort": "1" }, { "id": "3402", "name": "竹东", "parent_id": "495", "first_letter": "z", "shorthand": "zd", "pinyin": "zhudong", "suffix": "镇", "code": "1000402", "sort": "2" }, { "id": "3403", "name": "新埔", "parent_id": "495", "first_letter": "x", "shorthand": "xp", "pinyin": "xinpu", "suffix": "镇", "code": "1000403", "sort": "3" }, { "id": "3404", "name": "关西", "parent_id": "495", "first_letter": "g", "shorthand": "gx", "pinyin": "guanxi", "suffix": "镇", "code": "1000404", "sort": "4" }, { "id": "3405", "name": "湖口", "parent_id": "495", "first_letter": "h", "shorthand": "hk", "pinyin": "hukou", "suffix": "乡", "code": "1000405", "sort": "5" }, { "id": "3406", "name": "新丰", "parent_id": "495", "first_letter": "x", "shorthand": "xf", "pinyin": "xinfeng", "suffix": "乡", "code": "1000406", "sort": "6" }, { "id": "3407", "name": "芎林", "parent_id": "495", "first_letter": "x", "shorthand": "xl", "pinyin": "xionglin", "suffix": "乡", "code": "1000407", "sort": "7" }, { "id": "3408", "name": "横山", "parent_id": "495", "first_letter": "h", "shorthand": "hs", "pinyin": "hengshan", "suffix": "乡", "code": "1000408", "sort": "8" }, { "id": "3409", "name": "北埔", "parent_id": "495", "first_letter": "b", "shorthand": "bp", "pinyin": "beipu", "suffix": "乡", "code": "1000409", "sort": "9" }, { "id": "3410", "name": "宝山", "parent_id": "495", "first_letter": "b", "shorthand": "bs", "pinyin": "baoshan", "suffix": "乡", "code": "1000410", "sort": "10" }, { "id": "3411", "name": "峨眉", "parent_id": "495", "first_letter": "e", "shorthand": "em", "pinyin": "emei", "suffix": "乡", "code": "1000411", "sort": "11" }, { "id": "3412", "name": "尖石", "parent_id": "495", "first_letter": "j", "shorthand": "js", "pinyin": "jianshi", "suffix": "乡", "code": "1000412", "sort": "12" }, { "id": "3413", "name": "五峰", "parent_id": "495", "first_letter": "w", "shorthand": "wf", "pinyin": "wufeng", "suffix": "乡", "code": "1000413", "sort": "13" }, { "id": "3414", "name": "苗栗", "parent_id": "496", "first_letter": "m", "shorthand": "ml", "pinyin": "miaoli", "suffix": "市", "code": "1000501", "sort": "1" }, { "id": "3415", "name": "苑里", "parent_id": "496", "first_letter": "y", "shorthand": "yl", "pinyin": "yuanli", "suffix": "镇", "code": "1000502", "sort": "2" }, { "id": "3416", "name": "通霄", "parent_id": "496", "first_letter": "t", "shorthand": "tx", "pinyin": "tongxiao", "suffix": "镇", "code": "1000503", "sort": "3" }, { "id": "3417", "name": "竹南", "parent_id": "496", "first_letter": "z", "shorthand": "zn", "pinyin": "zhunan", "suffix": "镇", "code": "1000504", "sort": "4" }, { "id": "3418", "name": "头份", "parent_id": "496", "first_letter": "t", "shorthand": "tf", "pinyin": "toufen", "suffix": "镇", "code": "1000505", "sort": "5" }, { "id": "3419", "name": "后龙", "parent_id": "496", "first_letter": "h", "shorthand": "hl", "pinyin": "houlong", "suffix": "镇", "code": "1000506", "sort": "6" }, { "id": "3420", "name": "卓兰", "parent_id": "496", "first_letter": "z", "shorthand": "zl", "pinyin": "zhuolan", "suffix": "镇", "code": "1000507", "sort": "7" }, { "id": "3421", "name": "大湖", "parent_id": "496", "first_letter": "d", "shorthand": "dh", "pinyin": "dahu", "suffix": "乡", "code": "1000508", "sort": "8" }, { "id": "3422", "name": "公馆", "parent_id": "496", "first_letter": "g", "shorthand": "gg", "pinyin": "gongguan", "suffix": "乡", "code": "1000509", "sort": "9" }, { "id": "3423", "name": "铜锣", "parent_id": "496", "first_letter": "t", "shorthand": "tl", "pinyin": "tongluo", "suffix": "乡", "code": "1000510", "sort": "10" }, { "id": "3424", "name": "南庄", "parent_id": "496", "first_letter": "n", "shorthand": "nz", "pinyin": "nanzhuang", "suffix": "乡", "code": "1000511", "sort": "11" }, { "id": "3425", "name": "头屋", "parent_id": "496", "first_letter": "t", "shorthand": "tw", "pinyin": "touwu", "suffix": "乡", "code": "1000512", "sort": "12" }, { "id": "3426", "name": "三义", "parent_id": "496", "first_letter": "s", "shorthand": "sy", "pinyin": "sanyi", "suffix": "乡", "code": "1000513", "sort": "13" }, { "id": "3427", "name": "西湖", "parent_id": "496", "first_letter": "x", "shorthand": "xh", "pinyin": "xihu", "suffix": "乡", "code": "1000514", "sort": "14" }, { "id": "3428", "name": "造桥", "parent_id": "496", "first_letter": "z", "shorthand": "zq", "pinyin": "zaoqiao", "suffix": "乡", "code": "1000515", "sort": "15" }, { "id": "3429", "name": "三湾", "parent_id": "496", "first_letter": "s", "shorthand": "sw", "pinyin": "sanwan", "suffix": "乡", "code": "1000516", "sort": "16" }, { "id": "3430", "name": "狮潭", "parent_id": "496", "first_letter": "s", "shorthand": "st", "pinyin": "shitan", "suffix": "乡", "code": "1000517", "sort": "17" }, { "id": "3431", "name": "泰安", "parent_id": "496", "first_letter": "t", "shorthand": "ta", "pinyin": "taian", "suffix": "乡", "code": "1000518", "sort": "18" }, { "id": "3432", "name": "彰化", "parent_id": "497", "first_letter": "z", "shorthand": "zh", "pinyin": "zhanghua", "suffix": "市", "code": "1000701", "sort": "1" }, { "id": "3433", "name": "鹿港", "parent_id": "497", "first_letter": "l", "shorthand": "lg", "pinyin": "lugang", "suffix": "镇", "code": "1000702", "sort": "2" }, { "id": "3434", "name": "和美", "parent_id": "497", "first_letter": "h", "shorthand": "hm", "pinyin": "hemei", "suffix": "镇", "code": "1000703", "sort": "3" }, { "id": "3435", "name": "线西", "parent_id": "497", "first_letter": "x", "shorthand": "xx", "pinyin": "xianxi", "suffix": "乡", "code": "1000704", "sort": "4" }, { "id": "3436", "name": "伸港", "parent_id": "497", "first_letter": "s", "shorthand": "sg", "pinyin": "shengang", "suffix": "乡", "code": "1000705", "sort": "5" }, { "id": "3437", "name": "福兴", "parent_id": "497", "first_letter": "f", "shorthand": "fx", "pinyin": "fuxing", "suffix": "乡", "code": "1000706", "sort": "6" }, { "id": "3438", "name": "秀水", "parent_id": "497", "first_letter": "x", "shorthand": "xs", "pinyin": "xiushui", "suffix": "乡", "code": "1000707", "sort": "7" }, { "id": "3439", "name": "花坛", "parent_id": "497", "first_letter": "h", "shorthand": "ht", "pinyin": "huatan", "suffix": "乡", "code": "1000708", "sort": "8" }, { "id": "3440", "name": "芬园", "parent_id": "497", "first_letter": "f", "shorthand": "fy", "pinyin": "fenyuan", "suffix": "乡", "code": "1000709", "sort": "9" }, { "id": "3441", "name": "员林", "parent_id": "497", "first_letter": "y", "shorthand": "yl", "pinyin": "yuanlin", "suffix": "镇", "code": "1000710", "sort": "10" }, { "id": "3442", "name": "溪湖", "parent_id": "497", "first_letter": "x", "shorthand": "xh", "pinyin": "xihu", "suffix": "镇", "code": "1000711", "sort": "11" }, { "id": "3443", "name": "田中", "parent_id": "497", "first_letter": "t", "shorthand": "tz", "pinyin": "tianzhong", "suffix": "镇", "code": "1000712", "sort": "12" }, { "id": "3444", "name": "大村", "parent_id": "497", "first_letter": "d", "shorthand": "dc", "pinyin": "dacun", "suffix": "乡", "code": "1000713", "sort": "13" }, { "id": "3445", "name": "埔盐", "parent_id": "497", "first_letter": "p", "shorthand": "py", "pinyin": "puyan", "suffix": "乡", "code": "1000714", "sort": "14" }, { "id": "3446", "name": "埔心", "parent_id": "497", "first_letter": "p", "shorthand": "px", "pinyin": "puxin", "suffix": "乡", "code": "1000715", "sort": "15" }, { "id": "3447", "name": "永靖", "parent_id": "497", "first_letter": "y", "shorthand": "yj", "pinyin": "yongjing", "suffix": "乡", "code": "1000716", "sort": "16" }, { "id": "3448", "name": "社头", "parent_id": "497", "first_letter": "s", "shorthand": "st", "pinyin": "shetou", "suffix": "乡", "code": "1000717", "sort": "17" }, { "id": "3449", "name": "二水", "parent_id": "497", "first_letter": "e", "shorthand": "es", "pinyin": "ershui", "suffix": "乡", "code": "1000718", "sort": "18" }, { "id": "3450", "name": "北斗", "parent_id": "497", "first_letter": "b", "shorthand": "bd", "pinyin": "beidou", "suffix": "镇", "code": "1000719", "sort": "19" }, { "id": "3451", "name": "二林", "parent_id": "497", "first_letter": "e", "shorthand": "el", "pinyin": "erlin", "suffix": "镇", "code": "1000720", "sort": "20" }, { "id": "3452", "name": "田尾", "parent_id": "497", "first_letter": "t", "shorthand": "tw", "pinyin": "tianwei", "suffix": "乡", "code": "1000721", "sort": "21" }, { "id": "3453", "name": "埤头", "parent_id": "497", "first_letter": "p", "shorthand": "pt", "pinyin": "pitou", "suffix": "乡", "code": "1000722", "sort": "22" }, { "id": "3454", "name": "芳苑", "parent_id": "497", "first_letter": "f", "shorthand": "fy", "pinyin": "fangyuan", "suffix": "乡", "code": "1000723", "sort": "23" }, { "id": "3455", "name": "大城", "parent_id": "497", "first_letter": "d", "shorthand": "dc", "pinyin": "dacheng", "suffix": "乡", "code": "1000724", "sort": "24" }, { "id": "3456", "name": "竹塘", "parent_id": "497", "first_letter": "z", "shorthand": "zt", "pinyin": "zhutang", "suffix": "乡", "code": "1000725", "sort": "25" }, { "id": "3457", "name": "溪州", "parent_id": "497", "first_letter": "x", "shorthand": "xz", "pinyin": "xizhou", "suffix": "乡", "code": "1000726", "sort": "26" }, { "id": "3458", "name": "南投", "parent_id": "498", "first_letter": "n", "shorthand": "nt", "pinyin": "nantou", "suffix": "市", "code": "1000801", "sort": "1" }, { "id": "3459", "name": "南投", "parent_id": "498", "first_letter": "n", "shorthand": "nt", "pinyin": "nantou", "suffix": "镇", "code": "1000802", "sort": "2" }, { "id": "3460", "name": "草屯", "parent_id": "498", "first_letter": "c", "shorthand": "ct", "pinyin": "caotun", "suffix": "镇", "code": "1000803", "sort": "3" }, { "id": "3461", "name": "竹山", "parent_id": "498", "first_letter": "z", "shorthand": "zs", "pinyin": "zhushan", "suffix": "镇", "code": "1000804", "sort": "4" }, { "id": "3462", "name": "集集", "parent_id": "498", "first_letter": "j", "shorthand": "jj", "pinyin": "jiji", "suffix": "镇", "code": "1000805", "sort": "5" }, { "id": "3463", "name": "名间", "parent_id": "498", "first_letter": "m", "shorthand": "mj", "pinyin": "mingjian", "suffix": "乡", "code": "1000806", "sort": "6" }, { "id": "3464", "name": "鹿谷", "parent_id": "498", "first_letter": "l", "shorthand": "lg", "pinyin": "lugu", "suffix": "乡", "code": "1000807", "sort": "7" }, { "id": "3465", "name": "中寮", "parent_id": "498", "first_letter": "z", "shorthand": "zl", "pinyin": "zhongliao", "suffix": "乡", "code": "1000808", "sort": "8" }, { "id": "3466", "name": "鱼池", "parent_id": "498", "first_letter": "y", "shorthand": "yc", "pinyin": "yuchi", "suffix": "乡", "code": "1000809", "sort": "9" }, { "id": "3467", "name": "国姓", "parent_id": "498", "first_letter": "g", "shorthand": "gx", "pinyin": "guoxing", "suffix": "乡", "code": "1000810", "sort": "10" }, { "id": "3468", "name": "水里", "parent_id": "498", "first_letter": "s", "shorthand": "sl", "pinyin": "shuili", "suffix": "乡", "code": "1000811", "sort": "11" }, { "id": "3469", "name": "信义", "parent_id": "498", "first_letter": "x", "shorthand": "xy", "pinyin": "xinyi", "suffix": "乡", "code": "1000812", "sort": "12" }, { "id": "3470", "name": "仁爱", "parent_id": "498", "first_letter": "r", "shorthand": "ra", "pinyin": "renai", "suffix": "乡", "code": "1000813", "sort": "13" }, { "id": "3471", "name": "斗六", "parent_id": "499", "first_letter": "d", "shorthand": "dl", "pinyin": "douliu", "suffix": "市", "code": "1000901", "sort": "1" }, { "id": "3472", "name": "斗南", "parent_id": "499", "first_letter": "d", "shorthand": "dn", "pinyin": "dounan", "suffix": "镇", "code": "1000902", "sort": "2" }, { "id": "3473", "name": "虎尾", "parent_id": "499", "first_letter": "h", "shorthand": "hw", "pinyin": "huwei", "suffix": "镇", "code": "1000903", "sort": "3" }, { "id": "3474", "name": "西螺", "parent_id": "499", "first_letter": "x", "shorthand": "xl", "pinyin": "xiluo", "suffix": "镇", "code": "1000904", "sort": "4" }, { "id": "3475", "name": "土库", "parent_id": "499", "first_letter": "t", "shorthand": "tk", "pinyin": "tuku", "suffix": "镇", "code": "1000905", "sort": "5" }, { "id": "3476", "name": "北港", "parent_id": "499", "first_letter": "b", "shorthand": "bg", "pinyin": "beigang", "suffix": "镇", "code": "1000906", "sort": "6" }, { "id": "3477", "name": "古坑", "parent_id": "499", "first_letter": "g", "shorthand": "gk", "pinyin": "gukeng", "suffix": "乡", "code": "1000907", "sort": "7" }, { "id": "3478", "name": "大埤", "parent_id": "499", "first_letter": "d", "shorthand": "dp", "pinyin": "dapi", "suffix": "乡", "code": "1000908", "sort": "8" }, { "id": "3479", "name": "莿桐", "parent_id": "499", "first_letter": "c", "shorthand": "ct", "pinyin": "citong", "suffix": "乡", "code": "1000909", "sort": "9" }, { "id": "3480", "name": "林内", "parent_id": "499", "first_letter": "l", "shorthand": "ln", "pinyin": "linnei", "suffix": "乡", "code": "1000910", "sort": "10" }, { "id": "3481", "name": "二仑", "parent_id": "499", "first_letter": "e", "shorthand": "el", "pinyin": "erlun", "suffix": "乡", "code": "1000911", "sort": "11" }, { "id": "3482", "name": "仑背", "parent_id": "499", "first_letter": "l", "shorthand": "lb", "pinyin": "lunbei", "suffix": "乡", "code": "1000912", "sort": "12" }, { "id": "3483", "name": "麦寮", "parent_id": "499", "first_letter": "m", "shorthand": "ml", "pinyin": "mailiao", "suffix": "乡", "code": "1000913", "sort": "13" }, { "id": "3484", "name": "东势", "parent_id": "499", "first_letter": "d", "shorthand": "ds", "pinyin": "dongshi", "suffix": "乡", "code": "1000914", "sort": "14" }, { "id": "3485", "name": "褒忠", "parent_id": "499", "first_letter": "b", "shorthand": "bz", "pinyin": "baozhong", "suffix": "乡", "code": "1000915", "sort": "15" }, { "id": "3486", "name": "台西", "parent_id": "499", "first_letter": "t", "shorthand": "tx", "pinyin": "taixi", "suffix": "乡", "code": "1000916", "sort": "16" }, { "id": "3487", "name": "元长", "parent_id": "499", "first_letter": "y", "shorthand": "yz", "pinyin": "yuanzhang", "suffix": "乡", "code": "1000917", "sort": "17" }, { "id": "3488", "name": "四湖", "parent_id": "499", "first_letter": "s", "shorthand": "sh", "pinyin": "sihu", "suffix": "乡", "code": "1000918", "sort": "18" }, { "id": "3489", "name": "口湖", "parent_id": "499", "first_letter": "k", "shorthand": "kh", "pinyin": "kouhu", "suffix": "乡", "code": "1000919", "sort": "19" }, { "id": "3490", "name": "水林", "parent_id": "499", "first_letter": "s", "shorthand": "sl", "pinyin": "shuilin", "suffix": "乡", "code": "1000920", "sort": "20" }, { "id": "3494", "name": "大林", "parent_id": "500", "first_letter": "d", "shorthand": "dl", "pinyin": "dalin", "suffix": "镇", "code": "10010", "sort": "4" }, { "id": "3495", "name": "民雄", "parent_id": "500", "first_letter": "m", "shorthand": "mx", "pinyin": "minxiong", "suffix": "乡", "code": "1001001", "sort": "5" }, { "id": "3496", "name": "溪口", "parent_id": "500", "first_letter": "x", "shorthand": "xk", "pinyin": "xikou", "suffix": "乡", "code": "1001002", "sort": "6" }, { "id": "3497", "name": "新港", "parent_id": "500", "first_letter": "x", "shorthand": "xg", "pinyin": "xingang", "suffix": "乡", "code": "1001003", "sort": "7" }, { "id": "3498", "name": "六脚", "parent_id": "500", "first_letter": "l", "shorthand": "lj", "pinyin": "liujiao", "suffix": "乡", "code": "1001004", "sort": "8" }, { "id": "3499", "name": "东石", "parent_id": "500", "first_letter": "d", "shorthand": "ds", "pinyin": "dongshi", "suffix": "乡", "code": "1001005", "sort": "9" }, { "id": "3500", "name": "义竹", "parent_id": "500", "first_letter": "y", "shorthand": "yz", "pinyin": "yizhu", "suffix": "乡", "code": "1001006", "sort": "10" }, { "id": "3501", "name": "鹿草", "parent_id": "500", "first_letter": "l", "shorthand": "lc", "pinyin": "lucao", "suffix": "乡", "code": "1001007", "sort": "11" }, { "id": "3502", "name": "水上", "parent_id": "500", "first_letter": "s", "shorthand": "ss", "pinyin": "shuishang", "suffix": "乡", "code": "1001008", "sort": "12" }, { "id": "3503", "name": "中埔", "parent_id": "500", "first_letter": "z", "shorthand": "zp", "pinyin": "zhongpu", "suffix": "乡", "code": "1001009", "sort": "13" }, { "id": "3504", "name": "竹崎", "parent_id": "500", "first_letter": "z", "shorthand": "zq", "pinyin": "zhuqi", "suffix": "乡", "code": "1001010", "sort": "14" }, { "id": "3505", "name": "梅山", "parent_id": "500", "first_letter": "m", "shorthand": "ms", "pinyin": "meishan", "suffix": "乡", "code": "1001011", "sort": "15" }, { "id": "3506", "name": "番路", "parent_id": "500", "first_letter": "f", "shorthand": "fl", "pinyin": "fanlu", "suffix": "乡", "code": "1001012", "sort": "16" }, { "id": "3507", "name": "大埔", "parent_id": "500", "first_letter": "d", "shorthand": "dp", "pinyin": "dapu", "suffix": "乡", "code": "1001013", "sort": "17" }, { "id": "3508", "name": "阿里山", "parent_id": "500", "first_letter": "a", "shorthand": "als", "pinyin": "alishan", "suffix": "乡", "code": "1001014", "sort": "18" }, { "id": "3509", "name": "屏东", "parent_id": "501", "first_letter": "p", "shorthand": "pd", "pinyin": "pingdong", "suffix": "市", "code": "1001301", "sort": "1" }, { "id": "3510", "name": "潮州", "parent_id": "501", "first_letter": "c", "shorthand": "cz", "pinyin": "chaozhou", "suffix": "镇", "code": "1001302", "sort": "2" }, { "id": "3511", "name": "东港", "parent_id": "501", "first_letter": "d", "shorthand": "dg", "pinyin": "donggang", "suffix": "镇", "code": "1001303", "sort": "3" }, { "id": "3512", "name": "恒春", "parent_id": "501", "first_letter": "h", "shorthand": "hc", "pinyin": "hengchun", "suffix": "镇", "code": "1001304", "sort": "4" }, { "id": "3513", "name": "万丹", "parent_id": "501", "first_letter": "w", "shorthand": "wd", "pinyin": "wandan", "suffix": "乡", "code": "1001305", "sort": "5" }, { "id": "3514", "name": "长治", "parent_id": "501", "first_letter": "z", "shorthand": "zz", "pinyin": "zhangzhi", "suffix": "乡", "code": "1001306", "sort": "6" }, { "id": "3515", "name": "麟洛", "parent_id": "501", "first_letter": "l", "shorthand": "ll", "pinyin": "linluo", "suffix": "乡", "code": "1001307", "sort": "7" }, { "id": "3516", "name": "九如", "parent_id": "501", "first_letter": "j", "shorthand": "jr", "pinyin": "jiuru", "suffix": "乡", "code": "1001308", "sort": "8" }, { "id": "3517", "name": "里港", "parent_id": "501", "first_letter": "l", "shorthand": "lg", "pinyin": "ligang", "suffix": "乡", "code": "1001309", "sort": "9" }, { "id": "3518", "name": "盐埔", "parent_id": "501", "first_letter": "y", "shorthand": "yp", "pinyin": "yanpu", "suffix": "乡", "code": "1001310", "sort": "10" }, { "id": "3519", "name": "高树", "parent_id": "501", "first_letter": "g", "shorthand": "gs", "pinyin": "gaoshu", "suffix": "乡", "code": "1001311", "sort": "11" }, { "id": "3520", "name": "万峦", "parent_id": "501", "first_letter": "w", "shorthand": "wl", "pinyin": "wanluan", "suffix": "乡", "code": "1001312", "sort": "12" }, { "id": "3521", "name": "内埔", "parent_id": "501", "first_letter": "n", "shorthand": "np", "pinyin": "neipu", "suffix": "乡", "code": "1001313", "sort": "13" }, { "id": "3522", "name": "竹田", "parent_id": "501", "first_letter": "z", "shorthand": "zt", "pinyin": "zhutian", "suffix": "乡", "code": "1001314", "sort": "14" }, { "id": "3523", "name": "新埤", "parent_id": "501", "first_letter": "x", "shorthand": "xp", "pinyin": "xinpi", "suffix": "乡", "code": "1001315", "sort": "15" }, { "id": "3524", "name": "枋寮", "parent_id": "501", "first_letter": "f", "shorthand": "fl", "pinyin": "fangliao", "suffix": "乡", "code": "1001316", "sort": "16" }, { "id": "3525", "name": "新园", "parent_id": "501", "first_letter": "x", "shorthand": "xy", "pinyin": "xinyuan", "suffix": "乡", "code": "1001317", "sort": "17" }, { "id": "3526", "name": "崁顶", "parent_id": "501", "first_letter": "k", "shorthand": "kd", "pinyin": "kanding", "suffix": "乡", "code": "1001318", "sort": "18" }, { "id": "3527", "name": "林边", "parent_id": "501", "first_letter": "l", "shorthand": "lb", "pinyin": "linbian", "suffix": "乡", "code": "1001319", "sort": "19" }, { "id": "3528", "name": "南州", "parent_id": "501", "first_letter": "n", "shorthand": "nz", "pinyin": "nanzhou", "suffix": "乡", "code": "1001320", "sort": "20" }, { "id": "3529", "name": "佳冬", "parent_id": "501", "first_letter": "j", "shorthand": "jd", "pinyin": "jiadong", "suffix": "乡", "code": "1001321", "sort": "21" }, { "id": "3530", "name": "琉球", "parent_id": "501", "first_letter": "l", "shorthand": "lq", "pinyin": "liuqiu", "suffix": "乡", "code": "1001322", "sort": "22" }, { "id": "3531", "name": "车城", "parent_id": "501", "first_letter": "c", "shorthand": "cc", "pinyin": "checheng", "suffix": "乡", "code": "1001323", "sort": "23" }, { "id": "3532", "name": "满州", "parent_id": "501", "first_letter": "m", "shorthand": "mz", "pinyin": "manzhou", "suffix": "乡", "code": "1001324", "sort": "24" }, { "id": "3533", "name": "枋山", "parent_id": "501", "first_letter": "f", "shorthand": "fs", "pinyin": "fangshan", "suffix": "乡", "code": "1001325", "sort": "25" }, { "id": "3534", "name": "三地门", "parent_id": "501", "first_letter": "s", "shorthand": "sdm", "pinyin": "sandimen", "suffix": "乡", "code": "1001326", "sort": "26" }, { "id": "3535", "name": "雾台", "parent_id": "501", "first_letter": "w", "shorthand": "wt", "pinyin": "wutai", "suffix": "乡", "code": "1001327", "sort": "27" }, { "id": "3536", "name": "玛家", "parent_id": "501", "first_letter": "m", "shorthand": "mj", "pinyin": "majia", "suffix": "乡", "code": "1001328", "sort": "28" }, { "id": "3537", "name": "泰武", "parent_id": "501", "first_letter": "t", "shorthand": "tw", "pinyin": "taiwu", "suffix": "乡", "code": "1001329", "sort": "29" }, { "id": "3538", "name": "来义", "parent_id": "501", "first_letter": "l", "shorthand": "ly", "pinyin": "laiyi", "suffix": "乡", "code": "1001330", "sort": "30" }, { "id": "3539", "name": "春日", "parent_id": "501", "first_letter": "c", "shorthand": "cr", "pinyin": "chunri", "suffix": "乡", "code": "1001331", "sort": "31" }, { "id": "3540", "name": "狮子", "parent_id": "501", "first_letter": "s", "shorthand": "sz", "pinyin": "shizi", "suffix": "乡", "code": "1001332", "sort": "32" }, { "id": "3541", "name": "牡丹", "parent_id": "501", "first_letter": "m", "shorthand": "md", "pinyin": "mudan", "suffix": "乡", "code": "1001333", "sort": "33" }, { "id": "3543", "name": "台东", "parent_id": "502", "first_letter": "t", "shorthand": "td", "pinyin": "taidong", "suffix": "市", "code": "1001401", "sort": "2" }, { "id": "3544", "name": "成功", "parent_id": "502", "first_letter": "c", "shorthand": "cg", "pinyin": "chenggong", "suffix": "镇", "code": "1001402", "sort": "3" }, { "id": "3545", "name": "关山", "parent_id": "502", "first_letter": "g", "shorthand": "gs", "pinyin": "guanshan", "suffix": "镇", "code": "1001403", "sort": "4" }, { "id": "3546", "name": "鹿野", "parent_id": "502", "first_letter": "l", "shorthand": "ly", "pinyin": "luye", "suffix": "乡", "code": "1001405", "sort": "5" }, { "id": "3547", "name": "池上", "parent_id": "502", "first_letter": "c", "shorthand": "cs", "pinyin": "chishang", "suffix": "乡", "code": "1001406", "sort": "6" }, { "id": "3548", "name": "东河", "parent_id": "502", "first_letter": "d", "shorthand": "dh", "pinyin": "donghe", "suffix": "乡", "code": "1001407", "sort": "7" }, { "id": "3549", "name": "长滨", "parent_id": "502", "first_letter": "z", "shorthand": "zb", "pinyin": "zhangbin", "suffix": "乡", "code": "1001408", "sort": "8" }, { "id": "3550", "name": "太麻里", "parent_id": "502", "first_letter": "t", "shorthand": "tml", "pinyin": "taimali", "suffix": "乡", "code": "1001409", "sort": "9" }, { "id": "3551", "name": "大武", "parent_id": "502", "first_letter": "d", "shorthand": "dw", "pinyin": "dawu", "suffix": "乡", "code": "1001410", "sort": "10" }, { "id": "3552", "name": "绿岛", "parent_id": "502", "first_letter": "l", "shorthand": "ld", "pinyin": "lu:dao", "suffix": "乡", "code": "1001411", "sort": "11" }, { "id": "3553", "name": "海端", "parent_id": "502", "first_letter": "h", "shorthand": "hd", "pinyin": "haiduan", "suffix": "乡", "code": "1001412", "sort": "12" }, { "id": "3554", "name": "延平", "parent_id": "502", "first_letter": "y", "shorthand": "yp", "pinyin": "yanping", "suffix": "乡", "code": "1001413", "sort": "13" }, { "id": "3555", "name": "金峰", "parent_id": "502", "first_letter": "j", "shorthand": "jf", "pinyin": "jinfeng", "suffix": "乡", "code": "1001414", "sort": "14" }, { "id": "3556", "name": "达仁", "parent_id": "502", "first_letter": "d", "shorthand": "dr", "pinyin": "daren", "suffix": "乡", "code": "1001415", "sort": "15" }, { "id": "3557", "name": "兰屿", "parent_id": "502", "first_letter": "l", "shorthand": "ly", "pinyin": "lanyu", "suffix": "乡", "code": "1001416", "sort": "16" }, { "id": "3558", "name": "花莲", "parent_id": "503", "first_letter": "h", "shorthand": "hl", "pinyin": "hualian", "suffix": "市", "code": "1001501", "sort": "1" }, { "id": "3559", "name": "凤林", "parent_id": "503", "first_letter": "f", "shorthand": "fl", "pinyin": "fenglin", "suffix": "镇", "code": "1001502", "sort": "2" }, { "id": "3560", "name": "玉里", "parent_id": "503", "first_letter": "y", "shorthand": "yl", "pinyin": "yuli", "suffix": "镇", "code": "1001503", "sort": "3" }, { "id": "3561", "name": "新城", "parent_id": "503", "first_letter": "x", "shorthand": "xc", "pinyin": "xincheng", "suffix": "乡", "code": "1001504", "sort": "4" }, { "id": "3562", "name": "吉安", "parent_id": "503", "first_letter": "j", "shorthand": "ja", "pinyin": "jian", "suffix": "乡", "code": "1001505", "sort": "5" }, { "id": "3563", "name": "寿丰", "parent_id": "503", "first_letter": "s", "shorthand": "sf", "pinyin": "shoufeng", "suffix": "乡", "code": "1001506", "sort": "6" }, { "id": "3564", "name": "光复", "parent_id": "503", "first_letter": "g", "shorthand": "gf", "pinyin": "guangfu", "suffix": "乡", "code": "1001507", "sort": "7" }, { "id": "3565", "name": "丰滨", "parent_id": "503", "first_letter": "f", "shorthand": "fb", "pinyin": "fengbin", "suffix": "乡", "code": "1001508", "sort": "8" }, { "id": "3566", "name": "瑞穗", "parent_id": "503", "first_letter": "r", "shorthand": "rs", "pinyin": "ruisui", "suffix": "乡", "code": "1001509", "sort": "9" }, { "id": "3567", "name": "富里", "parent_id": "503", "first_letter": "f", "shorthand": "fl", "pinyin": "fuli", "suffix": "乡", "code": "1001510", "sort": "10" }, { "id": "3568", "name": "秀林", "parent_id": "503", "first_letter": "x", "shorthand": "xl", "pinyin": "xiulin", "suffix": "乡", "code": "1001511", "sort": "11" }, { "id": "3569", "name": "万荣", "parent_id": "503", "first_letter": "w", "shorthand": "wr", "pinyin": "wanrong", "suffix": "乡", "code": "1001512", "sort": "12" }, { "id": "3570", "name": "卓溪", "parent_id": "503", "first_letter": "z", "shorthand": "zx", "pinyin": "zhuoxi", "suffix": "乡", "code": "1001513", "sort": "13" }, { "id": "3571", "name": "马公", "parent_id": "504", "first_letter": "m", "shorthand": "mg", "pinyin": "magong", "suffix": "市", "code": "1001601", "sort": "1" }, { "id": "3572", "name": "湖西", "parent_id": "504", "first_letter": "h", "shorthand": "hx", "pinyin": "huxi", "suffix": "乡", "code": "1001602", "sort": "2" }, { "id": "3573", "name": "白沙", "parent_id": "504", "first_letter": "b", "shorthand": "bs", "pinyin": "baisha", "suffix": "乡", "code": "1001603", "sort": "3" }, { "id": "3574", "name": "西屿", "parent_id": "504", "first_letter": "x", "shorthand": "xy", "pinyin": "xiyu", "suffix": "乡", "code": "1001604", "sort": "4" }, { "id": "3575", "name": "望安", "parent_id": "504", "first_letter": "w", "shorthand": "wa", "pinyin": "wangan", "suffix": "乡", "code": "1001605", "sort": "5" }, { "id": "3576", "name": "七美", "parent_id": "504", "first_letter": "q", "shorthand": "qm", "pinyin": "qimei", "suffix": "乡", "code": "1001606", "sort": "6" }, { "id": "3577", "name": "双河", "parent_id": "31", "first_letter": "s", "shorthand": "sh", "pinyin": "shuanghe", "suffix": "市", "code": "659007", "sort": "21" }, { "id": "3582", "name": "霍尔果斯", "parent_id": "476", "first_letter": "h", "shorthand": "hegs", "pinyin": "huoerguosi", "suffix": "市", "code": "654004", "sort": "3" }, { "id": "3584", "name": "福绵", "parent_id": "350", "first_letter": "f", "shorthand": "fm", "pinyin": "fumian", "suffix": "区", "code": "450903", "sort": "2" }, { "id": "3585", "name": "可克达拉", "parent_id": "31", "first_letter": "k", "shorthand": "kdkl", "pinyin": "kedakela", "suffix": "市", "code": "659008", "sort": "22" } ]; ================================================ FILE: data/banks.json ================================================ [File too large to display: 16.9 MB] ================================================ FILE: index.js ================================================ module.exports = { bankType: require('./bankType'), cities: require('./cities') , provinces: require('./provinces') } ================================================ FILE: package.json ================================================ { "name": "wechat-banks", "version": "1.0.0", "description": "Chinese banks list stolen from wechat", "main": "index.js", "scripts": { "test": "echo \"Error: no test specified\" && exit 1" }, "keywords": [ "wechat", "banks" ], "author": "yuche", "license": "ISC" } ================================================ FILE: provinces.js ================================================ module.exports = [ {"name": "北京市", "value": "1", "children": [ {"name": "北京", "value": "10"} ]}, {"name": "上海市", "value": "2", "children": [ {"name": "上海", "value": "21"} ]}, {"name": "天津市", "value": "3", "children": [ {"name": "天津", "value": "22"} ]}, {"name": "重庆市", "value": "4", "children": [ {"name": "重庆", "value": "23"}, {"name": "涪陵市", "value": "230"}, {"name": "万州市", "value": "231"}, {"name": "黔江市", "value": "232"} ]}, {"name": "河北省", "value": "5", "children": [ {"name": "石家庄", "value": "311"}, {"name": "张家口", "value": "313"}, {"name": "承德", "value": "314"}, {"name": "秦皇岛", "value": "335"}, {"name": "唐山", "value": "315"}, {"name": "廊坊", "value": "316"}, {"name": "保定", "value": "312"}, {"name": "沧州", "value": "317"}, {"name": "衡水", "value": "318"}, {"name": "邢台", "value": "319"}, {"name": "邯郸", "value": "310"} ]}, {"name": "山西省", "value": "6", "children": [ {"name": "太原", "value": "351"}, {"name": "大同", "value": "352"}, {"name": "朔州", "value": "349"}, {"name": "阳泉", "value": "353"}, {"name": "长治", "value": "355"}, {"name": "晋城", "value": "356"}, {"name": "忻州", "value": "350"}, {"name": "离石", "value": "358"}, {"name": "晋中", "value": "354"}, {"name": "榆次", "value": "354"}, {"name": "临汾", "value": "357"}, {"name": "运城", "value": "359"}, {"name": "吕梁", "value": "242"} ]}, {"name": "内蒙古自治区", "value": "7", "children": [ {"name": "呼和浩特", "value": "471"}, {"name": "包头", "value": "472"}, {"name": "乌海", "value": "473"}, {"name": "赤峰", "value": "476"}, {"name": "海拉尔", "value": "470"}, {"name": "乌兰浩特", "value": "482"}, {"name": "通辽", "value": "475"}, {"name": "锡林浩特", "value": "479"}, {"name": "集宁", "value": "474"}, {"name": "东胜", "value": "477"}, {"name": "临河", "value": "478"}, {"name": "阿拉善左旗", "value": "483"}, {"name": "巴彦淖尔", "value": "480"}, {"name": "鄂尔多斯", "value": "489"}, {"name": "呼伦贝尔", "value": "481"}, {"name": "乌兰察布", "value": "484"}, {"name": "锡林郭勒盟", "value": "485"}, {"name": "兴安盟", "value": "486"} ]}, {"name": "辽宁省", "value": "8", "children": [ {"name": "沈阳", "value": "24"}, {"name": "朝阳", "value": "421"}, {"name": "阜新", "value": "418"}, {"name": "铁岭", "value": "410"}, {"name": "抚顺", "value": "413"}, {"name": "本溪", "value": "414"}, {"name": "辽阳", "value": "419"}, {"name": "鞍山", "value": "412"}, {"name": "丹东", "value": "415"}, {"name": "大连", "value": "411"}, {"name": "营口", "value": "417"}, {"name": "盘锦", "value": "427"}, {"name": "锦州", "value": "416"}, {"name": "葫芦岛", "value": "429"} ]}, {"name": "吉林省", "value": "9", "children": [ {"name": "长春", "value": "431"}, {"name": "白城", "value": "436"}, {"name": "松原", "value": "438"}, {"name": "吉林", "value": "432"}, {"name": "四平", "value": "434"}, {"name": "辽源", "value": "437"}, {"name": "通化", "value": "435"}, {"name": "白山", "value": "439"}, {"name": "延吉", "value": "433"}, {"name": "延边州", "value": "247"} ]}, {"name": "黑龙江省", "value": "10", "children": [ {"name": "哈尔滨", "value": "451"}, {"name": "齐齐哈尔", "value": "452"}, {"name": "黑河", "value": "456"}, {"name": "大庆", "value": "459"}, {"name": "伊春", "value": "458"}, {"name": "鹤岗", "value": "468"}, {"name": "佳木斯", "value": "454"}, {"name": "双鸭山", "value": "469"}, {"name": "七台河", "value": "464"}, {"name": "鸡西", "value": "467"}, {"name": "牡丹江", "value": "453"}, {"name": "绥化", "value": "455"}, {"name": "加格达奇", "value": "457"}, {"name": "大兴安岭地区", "value": "285"} ]}, {"name": "江苏省", "value": "11", "children": [ {"name": "南京", "value": "25"}, {"name": "苏州", "value": "512"}, {"name": "徐州", "value": "516"}, {"name": "连云港", "value": "518"}, {"name": "宿迁", "value": "527"}, {"name": "淮安", "value": "517"}, {"name": "盐城", "value": "515"}, {"name": "扬州", "value": "514"}, {"name": "泰州", "value": "523"}, {"name": "南通", "value": "513"}, {"name": "镇江", "value": "511"}, {"name": "常州", "value": "519"}, {"name": "无锡", "value": "510"} ]}, {"name": "浙江省", "value": "12", "children": [ {"name": "杭州", "value": "571"}, {"name": "湖州", "value": "572"}, {"name": "嘉兴", "value": "573"}, {"name": "舟山", "value": "580"}, {"name": "宁波", "value": "574"}, {"name": "绍兴", "value": "575"}, {"name": "金华", "value": "579"}, {"name": "台州", "value": "576"}, {"name": "温州", "value": "577"}, {"name": "丽水", "value": "578"}, {"name": "衢州", "value": "570"} ]}, {"name": "安徽省", "value": "13", "children": [ {"name": "合肥", "value": "551"}, {"name": "宿州", "value": "557"}, {"name": "淮北", "value": "561"}, {"name": "阜阳", "value": "558"}, {"name": "蚌埠", "value": "552"}, {"name": "淮南", "value": "554"}, {"name": "滁州", "value": "550"}, {"name": "马鞍山", "value": "555"}, {"name": "芜湖", "value": "553"}, {"name": "铜陵", "value": "562"}, {"name": "安庆", "value": "556"}, {"name": "黄山", "value": "559"}, {"name": "六安", "value": "564"}, {"name": "巢湖", "value": "565"}, {"name": "贵池", "value": "566"}, {"name": "宣城", "value": "563"}, {"name": "亳州", "value": "5581"} ]}, {"name": "福建省", "value": "14", "children": [ {"name": "福州", "value": "591"}, {"name": "南平", "value": "599"}, {"name": "三明", "value": "598"}, {"name": "莆田", "value": "594"}, {"name": "泉州", "value": "595"}, {"name": "厦门", "value": "592"}, {"name": "漳州", "value": "596"}, {"name": "龙岩", "value": "597"}, {"name": "宁德", "value": "593"}, {"name": "福安", "value": "5930"}, {"name": "邵武", "value": "5990"}, {"name": "石狮", "value": "5950"}, {"name": "永安", "value": "5980"}, {"name": "武夷山", "value": "5991"}, {"name": "福清", "value": "5995"} ]}, {"name": "江西省", "value": "15", "children": [ {"name": "南昌", "value": "791"}, {"name": "九江", "value": "792"}, {"name": "景德镇", "value": "798"}, {"name": "鹰潭", "value": "701"}, {"name": "新余", "value": "790"}, {"name": "萍乡", "value": "799"}, {"name": "赣州", "value": "797"}, {"name": "上饶", "value": "793"}, {"name": "临川", "value": "794"}, {"name": "宜春", "value": "795"}, {"name": "吉安", "value": "796"}, {"name": "抚州", "value": "7940"} ]}, {"name": "山东省", "value": "16", "children": [ {"name": "济南", "value": "531"}, {"name": "聊城", "value": "635"}, {"name": "德州", "value": "534"}, {"name": "东营", "value": "546"}, {"name": "淄博", "value": "533"}, {"name": "潍坊", "value": "536"}, {"name": "烟台", "value": "535"}, {"name": "威海", "value": "631"}, {"name": "青岛", "value": "532"}, {"name": "日照", "value": "633"}, {"name": "临沂", "value": "539"}, {"name": "枣庄", "value": "632"}, {"name": "济宁", "value": "537"}, {"name": "泰安", "value": "538"}, {"name": "莱芜", "value": "634"}, {"name": "滨州", "value": "543"}, {"name": "菏泽", "value": "530"} ]}, {"name": "河南省", "value": "17", "children": [ {"name": "郑州", "value": "371"}, {"name": "三门峡", "value": "398"}, {"name": "洛阳", "value": "379"}, {"name": "焦作", "value": "391"}, {"name": "新乡", "value": "373"}, {"name": "鹤壁", "value": "392"}, {"name": "安阳", "value": "372"}, {"name": "濮阳", "value": "393"}, {"name": "开封", "value": "378"}, {"name": "商丘", "value": "370"}, {"name": "许昌", "value": "374"}, {"name": "漯河", "value": "395"}, {"name": "平顶山", "value": "375"}, {"name": "南阳", "value": "377"}, {"name": "信阳", "value": "376"}, {"name": "济源", "value": "3910"}, {"name": "周口", "value": "394"}, {"name": "驻马店", "value": "396"} ]}, {"name": "湖北省", "value": "18", "children": [ {"name": "武汉", "value": "27"}, {"name": "十堰", "value": "719"}, {"name": "襄阳", "value": "710"}, {"name": "荆门", "value": "724"}, {"name": "孝感", "value": "712"}, {"name": "黄冈", "value": "713"}, {"name": "鄂州", "value": "711"}, {"name": "黄石", "value": "714"}, {"name": "咸宁", "value": "715"}, {"name": "荆州", "value": "716"}, {"name": "宜昌", "value": "717"}, {"name": "恩施", "value": "718"}, {"name": "随州", "value": "722"}, {"name": "仙桃", "value": "728"}, {"name": "潜江", "value": "7281"}, {"name": "天门", "value": "7282"}, {"name": "广水", "value": "7221"} ]}, {"name": "湖南省", "value": "19", "children": [ {"name": "长沙", "value": "731"}, {"name": "张家界", "value": "744"}, {"name": "常德", "value": "736"}, {"name": "岳阳", "value": "730"}, {"name": "株洲", "value": "733"}, {"name": "湘潭", "value": "732"}, {"name": "衡阳", "value": "734"}, {"name": "郴州", "value": "735"}, {"name": "永州", "value": "746"}, {"name": "邵阳", "value": "739"}, {"name": "怀化", "value": "745"}, {"name": "娄底", "value": "738"}, {"name": "吉首", "value": "743"}, {"name": "益阳", "value": "737"} ]}, {"name": "广东省", "value": "20", "children": [ {"name": "广州", "value": "20"}, {"name": "深圳", "value": "755"}, {"name": "清远", "value": "763"}, {"name": "韶关", "value": "751"}, {"name": "河源", "value": "762"}, {"name": "梅州", "value": "753"}, {"name": "潮州", "value": "768"}, {"name": "汕头", "value": "754"}, {"name": "揭阳", "value": "663"}, {"name": "汕尾", "value": "660"}, {"name": "惠州", "value": "752"}, {"name": "东莞", "value": "769"}, {"name": "珠海", "value": "756"}, {"name": "中山", "value": "760"}, {"name": "江门", "value": "750"}, {"name": "佛山", "value": "757"}, {"name": "茂名", "value": "668"}, {"name": "湛江", "value": "759"}, {"name": "阳江", "value": "662"}, {"name": "云浮", "value": "766"}, {"name": "肇庆", "value": "758"} ]}, {"name": "广西自治区", "value": "21", "children": [ {"name": "南宁", "value": "771"}, {"name": "桂林", "value": "773"}, {"name": "柳州", "value": "772"}, {"name": "贺州", "value": "774"}, {"name": "玉林", "value": "775"}, {"name": "钦州", "value": "777"}, {"name": "北海", "value": "779"}, {"name": "防城港", "value": "770"}, {"name": "百色", "value": "776"}, {"name": "河池", "value": "778"}, {"name": "贵港", "value": "7750"}, {"name": "梧州", "value": "7740"}, {"name": "崇左市", "value": "7711"}, {"name": "来宾市", "value": "284"} ]}, {"name": "海南省", "value": "22", "children": [ {"name": "海口", "value": "898"}, {"name": "三亚", "value": "899"}, {"name": "儋州", "value": "890"}, {"name": "琼海", "value": "8901"}, {"name": "文昌", "value": "8902"}, {"name": "万宁", "value": "8903"}, {"name": "五指山", "value": "8904"}, {"name": "东方", "value": "8905"} ]}, {"name": "四川省", "value": "23", "children": [ {"name": "成都", "value": "28"}, {"name": "广元", "value": "839"}, {"name": "绵阳", "value": "816"}, {"name": "德阳", "value": "838"}, {"name": "南充", "value": "817"}, {"name": "广安", "value": "826"}, {"name": "遂宁", "value": "825"}, {"name": "内江", "value": "832"}, {"name": "乐山", "value": "833"}, {"name": "自贡", "value": "813"}, {"name": "泸州", "value": "830"}, {"name": "宜宾", "value": "831"}, {"name": "攀枝花", "value": "812"}, {"name": "巴中", "value": "827"}, {"name": "达州", "value": "818"}, {"name": "资阳", "value": "8320"}, {"name": "雅安", "value": "835"}, {"name": "西昌", "value": "834"}, {"name": "阿坝州", "value": "837"}, {"name": "眉山市", "value": "828"}, {"name": "凉山州", "value": "281"}, {"name": "甘孜州", "value": "282"} ]}, {"name": "贵州省", "value": "24", "children": [ {"name": "贵阳", "value": "851"}, {"name": "六盘水", "value": "858"}, {"name": "遵义", "value": "852"}, {"name": "毕节", "value": "857"}, {"name": "铜仁", "value": "856"}, {"name": "安顺", "value": "853"}, {"name": "凯里", "value": "855"}, {"name": "都匀", "value": "854"}, {"name": "兴义", "value": "859"}, {"name": "黔东南州", "value": "243"}, {"name": "黔南州", "value": "244"}, {"name": "黔西南州", "value": "245"} ]}, {"name": "云南省", "value": "25", "children": [ {"name": "昆明", "value": "871"}, {"name": "曲靖", "value": "874"}, {"name": "玉溪", "value": "877"}, {"name": "丽江", "value": "888"}, {"name": "昭通", "value": "870"}, {"name": "思茅", "value": "879"}, {"name": "临沧", "value": "883"}, {"name": "保山", "value": "875"}, {"name": "芒市", "value": "692"}, {"name": "泸水", "value": "886"}, {"name": "香格里拉", "value": "887"}, {"name": "大理", "value": "872"}, {"name": "楚雄", "value": "878"}, {"name": "个旧", "value": "873"}, {"name": "文山", "value": "876"}, {"name": "景洪", "value": "691"}, {"name": "红河", "value": "8730"}, {"name": "德宏州", "value": "286"}, {"name": "迪庆州", "value": "287"}, {"name": "西双版纳州", "value": "288"}, {"name": "怒江州", "value": "289"} ]}, {"name": "西藏自治区", "value": "26", "children": [ {"name": "拉萨", "value": "891"}, {"name": "那曲", "value": "896"}, {"name": "昌都", "value": "895"}, {"name": "林芝", "value": "894"}, {"name": "乃东", "value": "893"}, {"name": "日喀则", "value": "892"}, {"name": "噶尔", "value": "897"}, {"name": "阿里地区", "value": "8971"}, {"name": "山南地区", "value": "900"}, // {"name": "樟木口岸", "value": "800"} 镇级行政单位 ]}, {"name": "陕西省", "value": "27", "children": [ {"name": "西安", "value": "29"}, {"name": "延安", "value": "911"}, {"name": "铜川", "value": "919"}, {"name": "渭南", "value": "913"}, {"name": "咸阳", "value": "910"}, {"name": "宝鸡", "value": "917"}, {"name": "汉中", "value": "916"}, {"name": "榆林", "value": "912"}, {"name": "商洛", "value": "914"}, {"name": "安康", "value": "915"} ]}, {"name": "甘肃省", "value": "28", "children": [ {"name": "兰州", "value": "931"}, {"name": "嘉峪关", "value": "937"}, {"name": "白银", "value": "943"}, {"name": "天水", "value": "938"}, {"name": "酒泉", "value": "9370"}, {"name": "张掖", "value": "936"}, {"name": "金昌", "value": "935"}, {"name": "西峰", "value": "934"}, {"name": "平凉", "value": "933"}, {"name": "定西", "value": "932"}, {"name": "陇南", "value": "939"}, {"name": "临夏", "value": "930"}, {"name": "武威", "value": "9350"}, {"name": "甘南藏族", "value": "941"} ]}, {"name": "宁夏自治区", "value": "29", "children": [ {"name": "银川市", "value": "951"}, {"name": "石嘴山市", "value": "952"}, {"name": "吴忠市", "value": "953"}, {"name": "固原市", "value": "954"}, {"name": "中卫市", "value": "248"} ]}, {"name": "青海省", "value": "30", "children": [ {"name": "西宁", "value": "971"}, {"name": "平安", "value": "972"}, {"name": "海晏", "value": "970"}, {"name": "共和", "value": "974"}, {"name": "同仁", "value": "973"}, {"name": "玛沁", "value": "975"}, {"name": "玉树", "value": "976"}, {"name": "德令哈", "value": "977"}, {"name": "果洛藏族自治州", "value": "236"}, {"name": "海北藏族自治州", "value": "237"}, {"name": "海东地区", "value": "238"}, {"name": "海南藏族自治州", "value": "239"}, {"name": "海西蒙古族藏族自治州", "value": "240"}, {"name": "黄南藏族自治州", "value": "241"} ]}, {"name": "新疆自治区", "value": "31", "children": [ {"name": "乌鲁木齐", "value": "991"}, {"name": "克拉玛依", "value": "990"}, {"name": "石河子", "value": "993"}, {"name": "喀什", "value": "998"}, {"name": "阿克苏", "value": "997"}, {"name": "和田", "value": "903"}, {"name": "吐鲁番", "value": "995"}, {"name": "哈密", "value": "902"}, {"name": "阿图什", "value": "908"}, {"name": "博乐", "value": "909"}, {"name": "昌吉", "value": "994"}, {"name": "库尔勒", "value": "996"}, {"name": "伊犁", "value": "999"}, {"name": "奎屯", "value": "992"}, {"name": "塔城", "value": "901"}, {"name": "阿勒泰", "value": "906"}, {"name": "巴音郭楞蒙古自治州", "value": "904"}, {"name": "博尔塔拉蒙古自治州", "value": "905"}, {"name": "克孜勒苏柯尔克孜自治州", "value": "907"}, {"name": "伊犁哈萨克自治州", "value": "989"} ]}, {"name": "香港", "value": "32", "children": [ {"name": "香港", "value": "8520"} ]}, {"name": "台湾", "value": "33", "children": [ {"name": "台北", "value": "2"} ]} ]; ================================================ FILE: src/index.js ================================================ const axios = require('axios'); const async = require('async'); const fs = require('fs'); const qs = require('qs'); const bankTypes = require('../bankType'); const provinces = require('../provinces'); const cities = require('../cities'); const MERCHANT_ID = 123456; // 商户 ID const TOKEN = ''; const COOKIE = ''; axios.defaults.headers.post['Content-Type'] = 'application/x-www-form-urlencoded'; const request = axios.create({ baseURL: 'https://pay.weixin.qq.com', timeout: 10000, headers: { 'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2743.82 Safari/537.36', 'Cookie': COOKIE } }); let requestParamsList = []; bankTypes.forEach((bank) => { let data = {}; data.bankId = bank.value; provinces.forEach((province) => { data.provinceId = province.value; province.children.forEach((city) => { const { code } = cities.find(item => city.name.includes(item.name)) || { code: 0 }; requestParamsList.push(Object.assign({}, data, { 'ecc_csrf_token': TOKEN, 'merchantId': MERCHANT_ID, 'cityId': city.value, 'mode': 3, 'name': city.name, code })); }); }); }); let JSONtoBeSave = []; let errorCount = 0; let successCount = 0; async.eachSeries(requestParamsList, (params, cb) => { request .post('/index.php/core/applymentnew/query_bank_list', qs.stringify({ 'ecc_csrf_token': TOKEN, 'merchantId': MERCHANT_ID, 'mode': 3, 'bankId': params.bankId, 'provinceId': params.provinceId, 'cityId': params.cityId })) .then(res => { return res.data; }) .then(res => { if (res.errorcode !== 0) { cb(res.msg); } return res.data.map(item => { delete params.ecc_csrf_token; delete params.merchantId; delete params.mode; return Object.assign({}, item, params); }); }) .then(json => { successCount += 1; if (json && Array.isArray(json) && json.length > 0) { JSONtoBeSave.concat(json); } cb(); }) .catch(err => { errorCount += 1; console.log(`出现错误 ${errorCount} 次`); console.log(JSON.stringify(err)); }) .then(() => { console.log(`成功请求 ${successCount} 次,还剩 ${requestParamsList.length - successCount - errorCount} 次`); }) }, () => { fs.appendFileSync('./data/all.json', JSON.stringify(JSONtoBeSave)); console.log(`出现错误 ${errorCount} 次`); console.log(`成功请求 ${successCount} 次,获得 ${JSONtoBeSave.length} 条银行数据`); console.log('done'); }); ================================================ FILE: src/package.json ================================================ { "name": "src", "version": "1.0.0", "description": "", "main": "index.js", "scripts": { "test": "echo \"Error: no test specified\" && exit 1" }, "author": "", "license": "ISC", "dependencies": { "async": "^1.5.2", "axios": "^0.15.3" } }