1500字范文,内容丰富有趣,写作好帮手!
1500字范文 > Java 常用正则表达式 Java正则表达式 Java身份证校验 最新手机号码正则表达式...

Java 常用正则表达式 Java正则表达式 Java身份证校验 最新手机号码正则表达式...

时间:2021-02-20 07:59:44

相关推荐

Java 常用正则表达式 Java正则表达式 Java身份证校验 最新手机号码正则表达式...

Java 常用正则表达式,Java正则表达式,Java身份证校验,最新手机号码校验正则表达式

==============================

©Copyright蕃薯耀 11月02日

/fanshuyao/

附件下载见:/blog/2398032

一共有2个文件

RegUtils.java:常用的正则表达式,

IdcardUtils.java:身份证校验

RegUtils.java

Java代码 importjava.util.regex.Matcher;importjava.util.regex.Pattern;mon.utils.StrUtils;publicclassRegUtils{/*------------------正则表达式---------------------*//***邮箱*/publicstaticfinalStringEMAIL="^\\w+((-\\w+)|(\\.\\w+))*\\@[A-Za-z0-9]+((\\.|-)[A-Za-z0-9]+)*\\.[A-Za-z0-9]+$";/***手机号码*移动号段:139138137136135134147150151152157158159178182183184187188*联通号段:130131132155156185186145175176*电信号段:133153177173180181189*虚拟运营商号段:170171*见:/tools/haoduan/*/publicstaticfinalStringPHONE="^(1[3-9]([0-9]{9}))$";/***仅中文*/publicstaticfinalStringCHINESE="^[\\u4E00-\\u9FA5\\uF900-\\uFA2D]+$";/***整数*/publicstaticfinalStringINTEGER="^-?[1-9]\\d*$";/***数字*/publicstaticfinalStringNUMBER="^([+-]?)\\d*\\.?\\d+$";/***正整数*/publicstaticfinalStringINTEGER_POS="^[1-9]\\d*$";/***浮点数*/publicstaticfinalStringFLOAT="^([+-]?)\\d*\\.\\d+$";/***正浮点数*/publicstaticfinalStringFLOAT_POS="^[1-9]\\d*.\\d*|0.\\d*[1-9]\\d*$";/***是否为正整数数字,包括0(00,01非数字)*/publicstaticfinalStringINTEGER_WITH_ZERO_POS="^(([0-9])|([1-9]([0-9]+)))$";/***是否为整数数字,包括正、负整数,包括0(00,01非数字)*/publicstaticfinalStringNUMBER_WITH_ZERO="^((-)?(([0-9])|([1-9]([0-9]+))))$";/***是否为数字字符串*/publicstaticfinalStringNUMBER_TEXT="^([0-9]+)$";/***数字(整数、0、浮点数),可以判断是否金额,也可以是负数*/publicstaticfinalStringNUMBER_ALL="^((-)?(([0-9])|([1-9][0-9]+))(\\.([0-9]+))?)$";/***QQ,5-14位*/publicstaticfinalStringQQ="^[1-9][0-9]{4,13}$";/***IP地址*/publicstaticfinalStringIP="((?:(?:25[0-5]|2[0-4]\\d|[01]?\\d?\\d)\\.){3}(?:25[0-5]|2[0-4]\\d|[01]?\\d?\\d))";/***邮编*/publicstaticfinalStringPOST_CODE="[1-9]\\d{5}(?!\\d)";/***普通日期*/publicstaticfinalStringDATE="^[1-9]\\d{3}-((0[1-9])|(1[0-2]))-((0[1-9])|([1-2][0-9])|(3[0-1]))$";/***复杂日期,不区分闰年的2月*日期格式:-10-19*或/10/19*或.10.19*或10月19日*最大31天的月份:(((01|03|05|07|08|10|12))-((0[1-9])|([1-2][0-9])|(3[0-1])))*最大30天的月份:(((04|06|11))-((0[1-9])|([1-2][0-9])|(30)))*最大29天的月份:(02-((0[1-9])|([1-2][0-9])))*/publicstaticfinalStringDATE_COMPLEX="^(([1-2]\\d{3})(-|/|.|年)((((01|03|05|07|08|10|12))(-|/|.|月)((0[1-9])|([1-2][0-9])|(3[0-1])))|(((04|06|11))(-|/|.|月)((0[1-9])|([1-2][0-9])|(30)))|(02-((0[1-9])|([1-2][0-9]))))(日)?)$";/***复杂的日期,区分闰年的2月*这个日期校验能区分闰年的2月,格式如下:-10-19*(见:/article/50905.htm)*^((?!0000)[0-9]{4}-((0[1-9]|1[0-2])-(0[1-9]|1[0-9]|2[0-8])|(0[13-9]|1[0-2])-(29|30)|(0[13578]|1[02])-31)|([0-9]{2}(0[48]|[2468][048]|[13579][26])|(0[48]|[2468][048]|[13579][26])00)-02-29)$*/publicstaticfinalStringDATE_COMPLEX_LEAP_YEAR="^(?:(?!0000)[0-9]{4}-(?:(?:0[1-9]|1[0-2])-(?:0[1-9]|1[0-9]|2[0-8])|(?:0[13-9]|1[0-2])-(?:29|30)|(?:0[13578]|1[02])-31)|(?:[0-9]{2}(?:0[48]|[2468][048]|[13579][26])|(?:0[48]|[2468][048]|[13579][26])00)-02-29)$";/***正则表达式校验,符合返回True*@paramregex正则表达式*@paramcontent校验的内容*@return*@authorlqy*/publicstaticbooleanisMatch(Stringregex,CharSequencecontent){returnPattern.matches(regex,content);}/***校验手机号码*@parammobile*@return*@authorlqyao*/publicstaticfinalbooleanisMoblie(Stringmobile){booleanflag=false;if(null!=mobile&&!mobile.trim().equals("")&&mobile.trim().length()==11){Patternpattern=pile(PHONE);Matchermatcher=pattern.matcher(mobile.trim());flag=matcher.matches();}returnflag;}/***校验邮箱*@paramvalue*@return*@authorlqyao*/publicstaticfinalbooleanisEmail(Stringvalue){booleanflag=false;if(null!=value&&!value.trim().equals("")){Patternpattern=pile(EMAIL);Matchermatcher=pattern.matcher(value.trim());flag=matcher.matches();}returnflag;}/***校验密码*@parampassword*@return长度符合返回true,否则为false*@authorlqyao*@since-09-24*/publicstaticfinalbooleanisPassword(Stringpassword){booleanflag=false;if(null!=password&&!password.trim().equals("")){password=password.trim();if(password.length()>=6&&password.length()<=30){returntrue;}}returnflag;}/***校验手机验证码*@paramvalue*@return符合正则表达式返回true,否则返回false*@authorlqyao*@since-09-24*/publicstaticfinalbooleanisPhoneValidateCode(Stringvalue){booleanflag=false;if(null!=value&&!value.trim().equals("")){Patternpattern=pile("^8\\d{5}$");Matchermatcher=pattern.matcher(value.trim());flag=matcher.matches();}returnflag;}/***判断是否全部大写字母*@paramstr*@return*/publicstaticbooleanisUpperCase(Stringstr){if(StrUtils.isEmpty(str)){returnfalse;}Stringreg="^[A-Z]$";returnisMatch(reg,str);}/***判断是否全部小写字母*@paramstr*@return*/publicstaticbooleanisLowercase(Stringstr){if(StrUtils.isEmpty(str)){returnfalse;}Stringreg="^[a-z]$";returnisMatch(reg,str);}publicstaticbooleanisIP(Stringstr){if(StrUtils.isEmpty(str)){returnfalse;}returnisMatch(IP,str);}/***符合返回true,区分30、31天和闰年的2月份(最严格的校验),格式为-10-19*@paramstr*@return*/publicstaticbooleanisDate(Stringstr){if(StrUtils.isEmpty(str)){returnfalse;}returnisMatch(DATE_COMPLEX_LEAP_YEAR,str);}/***简单日期校验,不那么严格*@paramstr*@return*/publicstaticbooleanisDateSimple(Stringstr){if(StrUtils.isEmpty(str)){returnfalse;}returnisMatch(DATE,str);}/***区分30、31天,但没有区分闰年的2月份*@paramstr*@return*/publicstaticbooleanisDateComplex(Stringstr){if(StrUtils.isEmpty(str)){returnfalse;}returnisMatch(DATE_COMPLEX,str);}/***判断是否为数字字符串,如0011,10101,01*@paramstr*@return*/publicstaticbooleanisNumberText(Stringstr){if(StrUtils.isEmpty(str)){returnfalse;}returnisMatch(NUMBER_TEXT,str);}/***判断所有类型的数字,数字(整数、0、浮点数),可以判断是否金额,也可以是负数*@paramstr*@return*/publicstaticbooleanisNumberAll(Stringstr){if(StrUtils.isEmpty(str)){returnfalse;}returnisMatch(NUMBER_ALL,str);}/***是否为正整数数字,包括0(00,01非数字)*@paramstr*@return*/publicstaticbooleanisIntegerWithZeroPos(Stringstr){if(StrUtils.isEmpty(str)){returnfalse;}returnisMatch(INTEGER_WITH_ZERO_POS,str);}/***是否为整数,包括正、负整数,包括0(00,01非数字)*@paramstr*@return*/publicstaticbooleanisIntegerWithZero(Stringstr){if(StrUtils.isEmpty(str)){returnfalse;}returnisMatch(NUMBER_WITH_ZERO,str);}/***符合返回true,QQ,5-14位*@paramstr*@return*/publicstaticbooleanisQQ(Stringstr){if(StrUtils.isEmpty(str)){returnfalse;}returnisMatch(QQ,str);}publicstaticvoidmain(String[]args){System.out.println(isMoblie("13430800244"));System.out.println(isMoblie("17730800244"));System.out.println(isMoblie("17630800244"));System.out.println(isMoblie("14730800244"));System.out.println(isMoblie("18330800244"));System.out.println(isMoblie("19330800244"));System.out.println(isMoblie("1333000244"));}}

IdcardUtils.java:

Java代码 importjava.text.ParseException;importjava.text.SimpleDateFormat;importjava.util.Calendar;importjava.util.Date;importjava.util.HashMap;importjava.util.Map;mons.lang.StringUtils;/***身份证工具类**@authoryellow*@version1.0,-01-17*/publicclassIdcardUtilsextendsStringUtils{/**中国公民身份证号码最小长度。*/publicstaticfinalintCHINA_ID_MIN_LENGTH=15;/**中国公民身份证号码最大长度。*/publicstaticfinalintCHINA_ID_MAX_LENGTH=18;/**每位加权因子*/publicstaticfinalintpower[]={7,9,10,5,8,4,2,1,6,3,7,9,10,5,8,4,2};/**第18位校检码*/publicstaticfinalStringverifyCode[]={"1","0","X","9","8","7","6","5","4","3","2"};/**最低年限*/publicstaticfinalintMIN=1930;/**省、直辖市对应数字*/publicstaticMap<String,String>cityCodes=newHashMap<String,String>();/**籍贯对应数字*/publicstaticMap<String,String>countyCodes=newHashMap<String,String>();/**台湾身份首字母对应数字*/publicstaticMap<String,Integer>twFirstCode=newHashMap<String,Integer>();/**香港身份首字母对应数字*/publicstaticMap<String,Integer>hkFirstCode=newHashMap<String,Integer>();static{/**省、直辖市代码表**/cityCodes.put("11","北京");cityCodes.put("12","天津");cityCodes.put("13","河北");cityCodes.put("14","山*");cityCodes.put("15","内蒙古");cityCodes.put("21","辽宁");cityCodes.put("22","吉林");cityCodes.put("23","黑龙江");cityCodes.put("31","上海");cityCodes.put("32","江苏");cityCodes.put("33","浙江");cityCodes.put("34","安徽");cityCodes.put("35","福建");cityCodes.put("36","江*");cityCodes.put("37","山东");cityCodes.put("41","河南");cityCodes.put("42","湖北");cityCodes.put("43","湖南");cityCodes.put("44","广东");cityCodes.put("45","广*");cityCodes.put("46","海南");cityCodes.put("50","重庆");cityCodes.put("51","四川");cityCodes.put("52","贵州");cityCodes.put("53","云南");cityCodes.put("54","*藏");cityCodes.put("61","陕*");cityCodes.put("62","甘肃");cityCodes.put("63","青海");cityCodes.put("64","宁夏");cityCodes.put("65","新疆");cityCodes.put("71","台湾");cityCodes.put("81","香港");cityCodes.put("82","澳门");cityCodes.put("91","国外");/**籍贯代码表**/countyCodes.put("140202","山*省大同市城区");countyCodes.put("140203","山*省大同市矿区");countyCodes.put("140211","山*省大同市南郊区");countyCodes.put("140212","山*省大同市新荣区");countyCodes.put("140221","山*省大同市阳高县");countyCodes.put("140222","山*省大同市天镇县");countyCodes.put("140223","山*省大同市广灵县");countyCodes.put("140224","山*省大同市灵丘县");countyCodes.put("140225","山*省大同市浑源县");countyCodes.put("140226","山*省大同市左云县");countyCodes.put("140227","山*省大同市大同县");countyCodes.put("140300","山*省阳泉市");countyCodes.put("140301","山*省阳泉市");countyCodes.put("140302","山*省阳泉市城区");countyCodes.put("140303","山*省阳泉市矿区");countyCodes.put("140311","山*省阳泉市郊区");countyCodes.put("140321","山*省阳泉市*定县");countyCodes.put("140322","山*省阳泉市盂县");countyCodes.put("140400","山*省长治市");countyCodes.put("140401","山*省长治市");countyCodes.put("140402","山*省长治市城区");countyCodes.put("140411","山*省长治市郊区");countyCodes.put("140421","山*省长治市长治县");countyCodes.put("140423","山*省长治市襄垣县");countyCodes.put("140424","山*省长治市屯留县");countyCodes.put("140425","山*省长治市*顺县");countyCodes.put("140426","山*省长治市黎城县");countyCodes.put("140427","山*省长治市壶关县");countyCodes.put("140428","山*省长治市长子县");countyCodes.put("140429","山*省长治市武乡县");countyCodes.put("140430","山*省长治市沁县");countyCodes.put("140431","山*省长治市沁源县");countyCodes.put("140481","山*省长治市潞城市");countyCodes.put("140500","山*省*城市");countyCodes.put("140501","山*省*城市");countyCodes.put("140502","山*省*城市城区");countyCodes.put("140521","山*省*城市沁水县");countyCodes.put("140522","山*省*城市阳城县");countyCodes.put("140524","山*省*城市陵川县");countyCodes.put("140525","山*省*城市泽州县");countyCodes.put("140581","山*省*城市高*市");countyCodes.put("140600","山*省朔州市");countyCodes.put("140601","山*省朔州市");countyCodes.put("140602","山*省朔州市朔城区");countyCodes.put("140603","山*省朔州市*鲁区");countyCodes.put("140621","山*省朔州市山阴县");countyCodes.put("140622","山*省朔州市应县");countyCodes.put("140623","山*省朔州市右玉县");countyCodes.put("140624","山*省朔州市怀仁县");countyCodes.put("140700","山*省*中市");countyCodes.put("140701","山*省*中市");countyCodes.put("140702","山*省*中市榆次区");countyCodes.put("140721","山*省*中市榆社县");countyCodes.put("140722","山*省*中市左权县");countyCodes.put("140723","山*省*中市和顺县");countyCodes.put("140724","山*省*中市昔阳县");countyCodes.put("140725","山*省*中市寿阳县");countyCodes.put("140726","山*省*中市太谷县");countyCodes.put("140727","山*省*中市祁县");countyCodes.put("140728","山*省*中市*遥县");countyCodes.put("140729","山*省*中市灵石县");countyCodes.put("140781","山*省*中市介休市");countyCodes.put("140800","山*省运城市");countyCodes.put("130531","河北省邢台市广宗县");countyCodes.put("130532","河北省邢台市*乡县");countyCodes.put("130533","河北省邢台市威县");countyCodes.put("130534","河北省邢台市清河县");countyCodes.put("130535","河北省邢台市临*县");countyCodes.put("130581","河北省邢台市南宫市");countyCodes.put("130582","河北省邢台市沙河市");countyCodes.put("130600","河北省保定市");countyCodes.put("130601","河北省保定市");countyCodes.put("130602","河北省保定市新市区");countyCodes.put("130603","河北省保定市北市区");countyCodes.put("130604","河北省保定市南市区");countyCodes.put("130621","河北省保定市满城县");countyCodes.put("130622","河北省保定市清苑县");countyCodes.put("130623","河北省保定市涞水县");countyCodes.put("130624","河北省保定市阜*县");countyCodes.put("130625","河北省保定市徐水县");countyCodes.put("130626","河北省保定市定兴县");countyCodes.put("130627","河北省保定市唐县");countyCodes.put("130628","河北省保定市高阳县");countyCodes.put("130629","河北省保定市容城县");countyCodes.put("130630","河北省保定市涞源县");countyCodes.put("130631","河北省保定市望都县");countyCodes.put("130632","河北省保定市安新县");countyCodes.put("130633","河北省保定市易县");countyCodes.put("130634","河北省保定市曲阳县");countyCodes.put("130635","河北省保定市蠡县");countyCodes.put("130636","河北省保定市顺*县");countyCodes.put("130637","河北省保定市博野县");countyCodes.put("130638","河北省保定市雄县");countyCodes.put("130681","河北省保定市涿州市");countyCodes.put("130682","河北省保定市定州市");countyCodes.put("130683","河北省保定市安国市");countyCodes.put("130684","河北省保定市高碑店市");countyCodes.put("130700","河北省张家口市");countyCodes.put("130701","河北省张家口市");countyCodes.put("130702","河北省张家口市桥东区");countyCodes.put("130703","河北省张家口市桥*区");countyCodes.put("130705","河北省张家口市宣化区");countyCodes.put("130706","河北省张家口市下花园区");countyCodes.put("130721","河北省张家口市宣化县");countyCodes.put("130722","河北省张家口市张北县");countyCodes.put("130723","河北省张家口市康保县");countyCodes.put("130724","河北省张家口市沽源县");countyCodes.put("130725","河北省张家口市尚义县");countyCodes.put("130726","河北省张家口市蔚县");countyCodes.put("130727","河北省张家口市阳原县");countyCodes.put("130728","河北省张家口市怀安县");countyCodes.put("130729","河北省张家口市万全县");countyCodes.put("130730","河北省张家口市怀来县");countyCodes.put("130731","河北省张家口市涿鹿县");countyCodes.put("130732","河北省张家口市赤城县");countyCodes.put("130733","河北省张家口市崇礼县");countyCodes.put("130800","河北省承德市");countyCodes.put("130801","河北省承德市");countyCodes.put("130802","河北省承德市双桥区");countyCodes.put("130803","河北省承德市双滦区");countyCodes.put("130804","河北省承德市鹰手营子矿区");countyCodes.put("130821","河北省承德市承德县");countyCodes.put("130822","河北省承德市兴隆县");countyCodes.put("130823","河北省承德市*泉县");countyCodes.put("130824","河北省承德市滦*县");countyCodes.put("110000","北京市");countyCodes.put("110100","北京市");countyCodes.put("110101","北京市东城区");countyCodes.put("110102","北京市*城区");countyCodes.put("110103","北京市崇文区");countyCodes.put("110104","北京市宣武区");countyCodes.put("110105","北京市朝阳区");countyCodes.put("110106","北京市丰台区");countyCodes.put("110107","北京市石景山区");countyCodes.put("110108","北京市海淀区");countyCodes.put("110109","北京市门头沟区");countyCodes.put("110111","北京市房山区");countyCodes.put("110112","北京市通州区");countyCodes.put("110113","北京市顺义区");countyCodes.put("110114","北京市昌*区");countyCodes.put("110115","北京市大兴区");countyCodes.put("110116","北京市怀柔区");countyCodes.put("110117","北京市*谷区");countyCodes.put("110200","北京市");countyCodes.put("110228","北京市密云县");countyCodes.put("110229","北京市延庆县");countyCodes.put("120000","天津市");countyCodes.put("10","天津市");countyCodes.put("11","天津市和*区");countyCodes.put("12","天津市河东区");countyCodes.put("13","天津市河*区");countyCodes.put("14","天津市南开区");countyCodes.put("15","天津市河北区");countyCodes.put("16","天津市红桥区");countyCodes.put("17","天津市塘沽区");countyCodes.put("18","天津市汉沽区");countyCodes.put("19","天津市大港区");countyCodes.put("10","天津市东丽区");countyCodes.put("11","天津市*青区");countyCodes.put("12","天津市津南区");countyCodes.put("13","天津市北辰区");countyCodes.put("14","天津市武清区");countyCodes.put("15","天津市宝坻区");countyCodes.put("10","天津市");countyCodes.put("11","天津市宁河县");countyCodes.put("13","天津市静海县");countyCodes.put("15","天津市蓟县");countyCodes.put("130000","河北省");countyCodes.put("130100","河北省石家庄市");countyCodes.put("130101","河北省石家庄市");countyCodes.put("130102","河北省石家庄市长安区");countyCodes.put("130103","河北省石家庄市桥东区");countyCodes.put("130104","河北省石家庄市桥*区");countyCodes.put("130105","河北省石家庄市新华区");countyCodes.put("130107","河北省石家庄市井陉矿区");countyCodes.put("130108","河北省石家庄市裕华区");countyCodes.put("130121","河北省石家庄市井陉县");countyCodes.put("130123","河北省石家庄市正定县");countyCodes.put("130124","河北省石家庄市栾城县");countyCodes.put("130125","河北省石家庄市行唐县");countyCodes.put("130126","河北省石家庄市灵寿县");countyCodes.put("130127","河北省石家庄市高邑县");countyCodes.put("130128","河北省石家庄市深泽县");countyCodes.put("130129","河北省石家庄市赞皇县");countyCodes.put("130130","河北省石家庄市无极县");countyCodes.put("130131","河北省石家庄市*山县");countyCodes.put("130132","河北省石家庄市元氏县");countyCodes.put("130133","河北省石家庄市赵县");countyCodes.put("130181","河北省石家庄市辛集市");countyCodes.put("130182","河北省石家庄市藁城市");countyCodes.put("130183","河北省石家庄市*州市");countyCodes.put("130825","河北省承德市隆化县");countyCodes.put("130826","河北省承德市丰宁满族自治县");countyCodes.put("130827","河北省承德市宽城满族自治县");countyCodes.put("130828","河北省承德市围场满族蒙古族自治县");countyCodes.put("130900","河北省沧州市");countyCodes.put("130901","河北省沧州市");countyCodes.put("130902","河北省沧州市新华区");countyCodes.put("130903","河北省沧州市运河区");countyCodes.put("130921","河北省沧州市沧县");countyCodes.put("130922","河北省沧州市青县");countyCodes.put("130923","河北省沧州市东光县");countyCodes.put("130924","河北省沧州市海兴县");countyCodes.put("130925","河北省沧州市盐山县");countyCodes.put("130926","河北省沧州市肃宁县");countyCodes.put("130927","河北省沧州市南皮县");countyCodes.put("130928","河北省沧州市吴桥县");countyCodes.put("130929","河北省沧州市献县");countyCodes.put("130930","河北省沧州市孟村回族自治县");countyCodes.put("130981","河北省沧州市泊头市");countyCodes.put("130982","河北省沧州市任丘市");countyCodes.put("130983","河北省沧州市黄骅市");countyCodes.put("130984","河北省沧州市河间市");countyCodes.put("131000","河北省廊坊市");countyCodes.put("131001","河北省廊坊市");countyCodes.put("131002","河北省廊坊市安次区");countyCodes.put("131003","河北省廊坊市广阳区");countyCodes.put("131022","河北省廊坊市固安县");countyCodes.put("131023","河北省廊坊市永清县");countyCodes.put("131024","河北省廊坊市香河县");countyCodes.put("131025","河北省廊坊市大城县");countyCodes.put("131026","河北省廊坊市文安县");countyCodes.put("131028","河北省廊坊市大厂回族自治县");countyCodes.put("131081","河北省廊坊市霸州市");countyCodes.put("131082","河北省廊坊市三河市");countyCodes.put("131100","河北省衡水市");countyCodes.put("131101","河北省衡水市");countyCodes.put("131102","河北省衡水市桃城区");countyCodes.put("131121","河北省衡水市枣强县");countyCodes.put("131122","河北省衡水市武邑县");countyCodes.put("131123","河北省衡水市武强县");countyCodes.put("131124","河北省衡水市饶阳县");countyCodes.put("131125","河北省衡水市安*县");countyCodes.put("131126","河北省衡水市故城县");countyCodes.put("131127","河北省衡水市景县");countyCodes.put("131128","河北省衡水市阜城县");countyCodes.put("131181","河北省衡水市冀州市");countyCodes.put("131182","河北省衡水市深州市");countyCodes.put("140000","山*省");countyCodes.put("140100","山*省太原市");countyCodes.put("140101","山*省太原市");countyCodes.put("140105","山*省太原市小店区");countyCodes.put("140106","山*省太原市迎泽区");countyCodes.put("140107","山*省太原市杏花岭区");countyCodes.put("140108","山*省太原市尖草坪区");countyCodes.put("140109","山*省太原市万柏林区");countyCodes.put("140110","山*省太原市*源区");countyCodes.put("140121","山*省太原市清徐县");countyCodes.put("140122","山*省太原市阳曲县");countyCodes.put("140123","山*省太原市娄烦县");countyCodes.put("140181","山*省太原市古交市");countyCodes.put("140200","山*省大同市");countyCodes.put("140201","山*省大同市");countyCodes.put("130184","河北省石家庄市新乐市");countyCodes.put("130185","河北省石家庄市鹿泉市");countyCodes.put("130200","河北省唐山市");countyCodes.put("130201","河北省唐山市");countyCodes.put("130202","河北省唐山市路南区");countyCodes.put("130203","河北省唐山市路北区");countyCodes.put("130204","河北省唐山市古冶区");countyCodes.put("130205","河北省唐山市开*区");countyCodes.put("130207","河北省唐山市丰南区");countyCodes.put("130208","河北省唐山市丰润区");countyCodes.put("130223","河北省唐山市滦县");countyCodes.put("130224","河北省唐山市滦南县");countyCodes.put("130225","河北省唐山市乐亭县");countyCodes.put("130227","河北省唐山市迁*县");countyCodes.put("130229","河北省唐山市玉田县");countyCodes.put("130230","河北省唐山市唐海县");countyCodes.put("130281","河北省唐山市遵化市");countyCodes.put("130283","河北省唐山市迁安市");countyCodes.put("130300","河北省秦皇岛市");countyCodes.put("130301","河北省秦皇岛市");countyCodes.put("130302","河北省秦皇岛市海港区");countyCodes.put("130303","河北省秦皇岛市山海关区");countyCodes.put("130304","河北省秦皇岛市北戴河区");countyCodes.put("130321","河北省秦皇岛市青龙满族自治县");countyCodes.put("130322","河北省秦皇岛市昌黎县");countyCodes.put("130323","河北省秦皇岛市抚宁县");countyCodes.put("130324","河北省秦皇岛市卢龙县");countyCodes.put("130400","河北省邯郸市");countyCodes.put("130401","河北省邯郸市");countyCodes.put("130402","河北省邯郸市邯山区");countyCodes.put("130403","河北省邯郸市丛台区");countyCodes.put("130404","河北省邯郸市复兴区");countyCodes.put("130406","河北省邯郸市峰峰矿区");countyCodes.put("130421","河北省邯郸市邯郸县");countyCodes.put("130423","河北省邯郸市临漳县");countyCodes.put("130424","河北省邯郸市成安县");countyCodes.put("130425","河北省邯郸市大名县");countyCodes.put("130426","河北省邯郸市涉县");countyCodes.put("130427","河北省邯郸市磁县");countyCodes.put("130428","河北省邯郸市肥乡县");countyCodes.put("130429","河北省邯郸市永年县");countyCodes.put("130430","河北省邯郸市邱县");countyCodes.put("130431","河北省邯郸市鸡泽县");countyCodes.put("130432","河北省邯郸市广*县");countyCodes.put("130433","河北省邯郸市馆陶县");countyCodes.put("130434","河北省邯郸市魏县");countyCodes.put("130435","河北省邯郸市曲周县");countyCodes.put("130481","河北省邯郸市武安市");countyCodes.put("130500","河北省邢台市");countyCodes.put("130501","河北省邢台市");countyCodes.put("130502","河北省邢台市桥东区");countyCodes.put("130503","河北省邢台市桥*区");countyCodes.put("130521","河北省邢台市邢台县");countyCodes.put("130522","河北省邢台市临城县");countyCodes.put("130523","河北省邢台市内丘县");countyCodes.put("130524","河北省邢台市柏乡县");countyCodes.put("130525","河北省邢台市隆尧县");countyCodes.put("130526","河北省邢台市任县");countyCodes.put("130527","河北省邢台市南和县");countyCodes.put("130528","河北省邢台市宁*县");countyCodes.put("130529","河北省邢台市巨鹿县");countyCodes.put("130530","河北省邢台市新河县");countyCodes.put("230183","黑龙江省哈尔滨市尚志市");countyCodes.put("230184","黑龙江省哈尔滨市五常市");countyCodes.put("230200","黑龙江省齐齐哈尔市");countyCodes.put("230201","黑龙江省齐齐哈尔市");countyCodes.put("230202","黑龙江省齐齐哈尔市龙沙区");countyCodes.put("230203","黑龙江省齐齐哈尔市建华区");countyCodes.put("230204","黑龙江省齐齐哈尔市铁锋区");countyCodes.put("230205","黑龙江省齐齐哈尔市昂昂溪区");countyCodes.put("230206","黑龙江省齐齐哈尔市富拉尔基区");countyCodes.put("230207","黑龙江省齐齐哈尔市碾子山区");countyCodes.put("230208","黑龙江省齐齐哈尔市梅里斯达斡尔族区");countyCodes.put("230221","黑龙江省齐齐哈尔市龙江县");countyCodes.put("230223","黑龙江省齐齐哈尔市依安县");countyCodes.put("230224","黑龙江省齐齐哈尔市泰来县");countyCodes.put("230225","黑龙江省齐齐哈尔市甘南县");countyCodes.put("230227","黑龙江省齐齐哈尔市富裕县");countyCodes.put("230229","黑龙江省齐齐哈尔市克山县");countyCodes.put("230230","黑龙江省齐齐哈尔市克东县");countyCodes.put("230231","黑龙江省齐齐哈尔市拜泉县");countyCodes.put("230281","黑龙江省齐齐哈尔市讷河市");countyCodes.put("230300","黑龙江省鸡*市");countyCodes.put("230301","黑龙江省鸡*市");countyCodes.put("230302","黑龙江省鸡*市鸡冠区");countyCodes.put("230303","黑龙江省鸡*市恒山区");countyCodes.put("230304","黑龙江省鸡*市滴道区");countyCodes.put("230305","黑龙江省鸡*市梨树区");countyCodes.put("230306","黑龙江省鸡*市城子河区");countyCodes.put("230307","黑龙江省鸡*市麻山区");countyCodes.put("230321","黑龙江省鸡*市鸡东县");countyCodes.put("230381","黑龙江省鸡*市虎林市");countyCodes.put("230382","黑龙江省鸡*市密山市");countyCodes.put("230400","黑龙江省鹤岗市");countyCodes.put("230401","黑龙江省鹤岗市");countyCodes.put("230402","黑龙江省鹤岗市向阳区");countyCodes.put("230403","黑龙江省鹤岗市工农区");countyCodes.put("230404","黑龙江省鹤岗市南山区");countyCodes.put("230405","黑龙江省鹤岗市兴安区");countyCodes.put("230406","黑龙江省鹤岗市东山区");countyCodes.put("230407","黑龙江省鹤岗市兴山区");countyCodes.put("230421","黑龙江省鹤岗市萝北县");countyCodes.put("230422","黑龙江省鹤岗市绥滨县");countyCodes.put("230500","黑龙江省双鸭山市");countyCodes.put("230501","黑龙江省双鸭山市");countyCodes.put("230502","黑龙江省双鸭山市尖山区");countyCodes.put("230503","黑龙江省双鸭山市岭东区");countyCodes.put("230505","黑龙江省双鸭山市四方台区");countyCodes.put("230506","黑龙江省双鸭山市宝山区");countyCodes.put("230521","黑龙江省双鸭山市集贤县");countyCodes.put("230522","黑龙江省双鸭山市友谊县");countyCodes.put("230523","黑龙江省双鸭山市宝清县");countyCodes.put("230524","黑龙江省双鸭山市饶河县");countyCodes.put("230600","黑龙江省大庆市");countyCodes.put("230601","黑龙江省大庆市");countyCodes.put("230602","黑龙江省大庆市萨尔图区");countyCodes.put("150927","内蒙古自治区乌兰察布市察哈尔右翼中旗");countyCodes.put("150928","内蒙古自治区乌兰察布市察哈尔右翼后旗");countyCodes.put("150929","内蒙古自治区乌兰察布市四子王旗");countyCodes.put("150981","内蒙古自治区乌兰察布市丰镇市");countyCodes.put("152200","内蒙古自治区兴安盟");countyCodes.put("152201","内蒙古自治区兴安盟乌兰浩特市");countyCodes.put("152202","内蒙古自治区兴安盟阿尔山市");countyCodes.put("152221","内蒙古自治区兴安盟科尔沁右翼前旗");countyCodes.put("152222","内蒙古自治区兴安盟科尔沁右翼中旗");countyCodes.put("152223","内蒙古自治区兴安盟扎赉特旗");countyCodes.put("152224","内蒙古自治区兴安盟突泉县");countyCodes.put("152500","内蒙古自治区锡林郭勒盟");countyCodes.put("152501","内蒙古自治区锡林郭勒盟二连浩特市");countyCodes.put("152502","内蒙古自治区锡林郭勒盟锡林浩特市");countyCodes.put("152522","内蒙古自治区锡林郭勒盟阿巴嘎旗");countyCodes.put("211221","辽宁省铁岭市铁岭县");countyCodes.put("211223","辽宁省铁岭市*丰县");countyCodes.put("211224","辽宁省铁岭市昌图县");countyCodes.put("211281","辽宁省铁岭市调兵山市");countyCodes.put("211282","辽宁省铁岭市开原市");countyCodes.put("211300","辽宁省朝阳市");countyCodes.put("211301","辽宁省朝阳市");countyCodes.put("211302","辽宁省朝阳市双塔区");countyCodes.put("211303","辽宁省朝阳市龙城区");countyCodes.put("211321","辽宁省朝阳市朝阳县");countyCodes.put("211322","辽宁省朝阳市建*县");countyCodes.put("211324","辽宁省朝阳市喀喇沁左翼蒙古族自治县");countyCodes.put("211381","辽宁省朝阳市北票市");countyCodes.put("211382","辽宁省朝阳市凌源市");countyCodes.put("211400","辽宁省葫芦岛市");countyCodes.put("211401","辽宁省葫芦岛市");countyCodes.put("211402","辽宁省葫芦岛市连山区");countyCodes.put("211403","辽宁省葫芦岛市龙港区");countyCodes.put("211404","辽宁省葫芦岛市南票区");countyCodes.put("211421","辽宁省葫芦岛市绥中县");countyCodes.put("211422","辽宁省葫芦岛市建昌县");countyCodes.put("211481","辽宁省葫芦岛市兴城市");countyCodes.put("220000","吉林省");countyCodes.put("20","吉林省长春市");countyCodes.put("21","吉林省长春市");countyCodes.put("22","吉林省长春市南关区");countyCodes.put("23","吉林省长春市宽城区");countyCodes.put("24","吉林省长春市朝阳区");countyCodes.put("25","吉林省长春市二道区");countyCodes.put("26","吉林省长春市绿园区");countyCodes.put("22","吉林省长春市双阳区");countyCodes.put("22","吉林省长春市农安县");countyCodes.put("21","吉林省长春市九台市");countyCodes.put("22","吉林省长春市榆树市");countyCodes.put("23","吉林省长春市德惠市");countyCodes.put("20","吉林省吉林市");countyCodes.put("21","吉林省吉林市");countyCodes.put("22","吉林省吉林市昌邑区");countyCodes.put("23","吉林省吉林市龙潭区");countyCodes.put("24","吉林省吉林市船营区");countyCodes.put("21","吉林省吉林市丰满区");countyCodes.put("21","吉林省吉林市永吉县");countyCodes.put("220281","吉林省吉林市蛟河市");countyCodes.put("220282","吉林省吉林市桦甸市");countyCodes.put("220283","吉林省吉林市舒兰市");countyCodes.put("220284","吉林省吉林市磐石市");countyCodes.put("220300","吉林省四*市");countyCodes.put("220301","吉林省四*市");countyCodes.put("220302","吉林省四*市铁*区");countyCodes.put("220303","吉林省四*市铁东区");countyCodes.put("220322","吉林省四*市梨树县");countyCodes.put("220323","吉林省四*市伊通满族自治县");countyCodes.put("220381","吉林省四*市公主岭市");countyCodes.put("220382","吉林省四*市双辽市");countyCodes.put("220400","吉林省辽源市");countyCodes.put("220401","吉林省辽源市");countyCodes.put("220402","吉林省辽源市龙山区");countyCodes.put("220403","吉林省辽源市*安区");countyCodes.put("220421","吉林省辽源市东丰县");countyCodes.put("220422","吉林省辽源市东辽县");countyCodes.put("220500","吉林省通化市");countyCodes.put("210500","辽宁省本溪市");countyCodes.put("150000","内蒙古自治区");countyCodes.put("150100","内蒙古自治区呼和浩特市");countyCodes.put("150101","内蒙古自治区呼和浩特市");countyCodes.put("150102","内蒙古自治区呼和浩特市新城区");countyCodes.put("150103","内蒙古自治区呼和浩特市回民区");countyCodes.put("150104","内蒙古自治区呼和浩特市玉泉区");countyCodes.put("150105","内蒙古自治区呼和浩特市赛罕区");countyCodes.put("150121","内蒙古自治区呼和浩特市土默特左旗");countyCodes.put("150122","内蒙古自治区呼和浩特市托克托县");countyCodes.put("150123","内蒙古自治区呼和浩特市和林格尔县");countyCodes.put("150124","内蒙古自治区呼和浩特市清水河县");countyCodes.put("150125","内蒙古自治区呼和浩特市武川县");countyCodes.put("150200","内蒙古自治区包头市");countyCodes.put("150201","内蒙古自治区包头市");countyCodes.put("150202","内蒙古自治区包头市东河区");countyCodes.put("150203","内蒙古自治区包头市昆都仑区");countyCodes.put("150204","内蒙古自治区包头市青山区");countyCodes.put("150205","内蒙古自治区包头市石拐区");countyCodes.put("150206","内蒙古自治区包头市白云矿区");countyCodes.put("150207","内蒙古自治区包头市九原区");countyCodes.put("150221","内蒙古自治区包头市土默特右旗");countyCodes.put("150222","内蒙古自治区包头市固阳县");countyCodes.put("150223","内蒙古自治区包头市达尔罕茂明安联合旗");countyCodes.put("150300","内蒙古自治区乌海市");countyCodes.put("150301","内蒙古自治区乌海市");countyCodes.put("150302","内蒙古自治区乌海市海勃湾区");countyCodes.put("150303","内蒙古自治区乌海市海南区");countyCodes.put("150304","内蒙古自治区乌海市乌达区");countyCodes.put("150400","内蒙古自治区赤峰市");countyCodes.put("150401","内蒙古自治区赤峰市");countyCodes.put("150402","内蒙古自治区赤峰市红山区");countyCodes.put("150403","内蒙古自治区赤峰市元宝山区");countyCodes.put("150404","内蒙古自治区赤峰市松山区");countyCodes.put("150421","内蒙古自治区赤峰市阿鲁科尔沁旗");countyCodes.put("150422","内蒙古自治区赤峰市巴林左旗");countyCodes.put("150423","内蒙古自治区赤峰市巴林右旗");countyCodes.put("150424","内蒙古自治区赤峰市林*县");countyCodes.put("150425","内蒙古自治区赤峰市克什克腾旗");countyCodes.put("150426","内蒙古自治区赤峰市翁牛特旗");countyCodes.put("150428","内蒙古自治区赤峰市喀喇沁旗");countyCodes.put("150429","内蒙古自治区赤峰市宁城县");countyCodes.put("150430","内蒙古自治区赤峰市敖汉旗");countyCodes.put("150500","内蒙古自治区通辽市");countyCodes.put("150501","内蒙古自治区通辽市");countyCodes.put("150502","内蒙古自治区通辽市科尔沁区");countyCodes.put("150521","内蒙古自治区通辽市科尔沁左翼中旗");countyCodes.put("150522","内蒙古自治区通辽市科尔沁左翼后旗");countyCodes.put("150523","内蒙古自治区通辽市开鲁县");countyCodes.put("150524","内蒙古自治区通辽市库伦旗");countyCodes.put("150525","内蒙古自治区通辽市奈曼旗");countyCodes.put("150526","内蒙古自治区通辽市扎鲁特旗");countyCodes.put("150581","内蒙古自治区通辽市霍林郭勒市");countyCodes.put("150600","内蒙古自治区鄂尔多斯市");countyCodes.put("150602","内蒙古自治区鄂尔多斯市东胜区");countyCodes.put("150621","内蒙古自治区鄂尔多斯市达拉特旗");countyCodes.put("330122","浙江省杭州市桐庐县");countyCodes.put("140801","山*省运城市");countyCodes.put("140802","山*省运城市盐湖区");countyCodes.put("140821","山*省运城市临猗县");countyCodes.put("140822","山*省运城市万荣县");countyCodes.put("140823","山*省运城市闻喜县");countyCodes.put("140824","山*省运城市稷山县");countyCodes.put("140825","山*省运城市新绛县");countyCodes.put("140826","山*省运城市绛县");countyCodes.put("140827","山*省运城市垣曲县");countyCodes.put("140828","山*省运城市夏县");countyCodes.put("140829","山*省运城市*陆县");countyCodes.put("140830","山*省运城市芮城县");countyCodes.put("140881","山*省运城市永济市");countyCodes.put("140882","山*省运城市河津市");countyCodes.put("140900","山*省忻州市");countyCodes.put("140901","山*省忻州市");countyCodes.put("140902","山*省忻州市忻府区");countyCodes.put("140921","山*省忻州市定襄县");countyCodes.put("140922","山*省忻州市五台县");countyCodes.put("140923","山*省忻州市代县");countyCodes.put("140924","山*省忻州市繁峙县");countyCodes.put("140925","山*省忻州市宁武县");countyCodes.put("140926","山*省忻州市静乐县");countyCodes.put("140927","山*省忻州市神池县");countyCodes.put("140928","山*省忻州市五寨县");countyCodes.put("140929","山*省忻州市岢岚县");countyCodes.put("140930","山*省忻州市河曲县");countyCodes.put("140931","山*省忻州市保德县");countyCodes.put("140932","山*省忻州市偏关县");countyCodes.put("140981","山*省忻州市原*市");countyCodes.put("141000","山*省临汾市");countyCodes.put("141001","山*省临汾市");countyCodes.put("141002","山*省临汾市尧都区");countyCodes.put("141021","山*省临汾市曲沃县");countyCodes.put("141022","山*省临汾市翼城县");countyCodes.put("141023","山*省临汾市襄汾县");countyCodes.put("141024","山*省临汾市洪洞县");countyCodes.put("141025","山*省临汾市古县");countyCodes.put("141026","山*省临汾市安泽县");countyCodes.put("141027","山*省临汾市浮山县");countyCodes.put("141028","山*省临汾市吉县");countyCodes.put("141029","山*省临汾市乡宁县");countyCodes.put("141030","山*省临汾市大宁县");countyCodes.put("141031","山*省临汾市隰县");countyCodes.put("141032","山*省临汾市永和县");countyCodes.put("141033","山*省临汾市蒲县");countyCodes.put("141034","山*省临汾市汾*县");countyCodes.put("141081","山*省临汾市侯马市");countyCodes.put("141082","山*省临汾市霍州市");countyCodes.put("141100","山*省吕梁市");countyCodes.put("141101","山*省吕梁市");countyCodes.put("141102","山*省吕梁市离石区");countyCodes.put("141121","山*省吕梁市文水县");countyCodes.put("141122","山*省吕梁市交城县");countyCodes.put("141123","山*省吕梁市兴县");countyCodes.put("141124","山*省吕梁市临县");countyCodes.put("141125","山*省吕梁市柳林县");countyCodes.put("141126","山*省吕梁市石楼县");countyCodes.put("141127","山*省吕梁市岚县");countyCodes.put("141128","山*省吕梁市方山县");countyCodes.put("141129","山*省吕梁市中阳县");countyCodes.put("141130","山*省吕梁市交口县");countyCodes.put("141181","山*省吕梁市孝义市");countyCodes.put("210501","辽宁省本溪市");countyCodes.put("210502","辽宁省本溪市*山区");countyCodes.put("210503","辽宁省本溪市溪湖区");countyCodes.put("210504","辽宁省本溪市明山区");countyCodes.put("210505","辽宁省本溪市南芬区");countyCodes.put("210521","辽宁省本溪市本溪满族自治县");countyCodes.put("210522","辽宁省本溪市桓仁满族自治县");countyCodes.put("210600","辽宁省丹东市");countyCodes.put("210601","辽宁省丹东市");countyCodes.put("210602","辽宁省丹东市元宝区");countyCodes.put("210603","辽宁省丹东市振兴区");countyCodes.put("210604","辽宁省丹东市振安区");countyCodes.put("210624","辽宁省丹东市宽甸满族自治县");countyCodes.put("210681","辽宁省丹东市东港市");countyCodes.put("210682","辽宁省丹东市凤城市");countyCodes.put("210700","辽宁省锦州市");countyCodes.put("210701","辽宁省锦州市");countyCodes.put("210702","辽宁省锦州市古塔区");countyCodes.put("210703","辽宁省锦州市凌河区");countyCodes.put("210711","辽宁省锦州市太和区");countyCodes.put("210726","辽宁省锦州市黑山县");countyCodes.put("210727","辽宁省锦州市义县");countyCodes.put("210781","辽宁省锦州市凌海市");countyCodes.put("210782","辽宁省锦州市北宁市");countyCodes.put("210800","辽宁省营口市");countyCodes.put("210801","辽宁省营口市");countyCodes.put("210802","辽宁省营口市站前区");countyCodes.put("210803","辽宁省营口市*市区");countyCodes.put("210804","辽宁省营口市鲅鱼圈区");countyCodes.put("210811","辽宁省营口市老边区");countyCodes.put("210881","辽宁省营口市盖州市");countyCodes.put("210882","辽宁省营口市大石桥市");countyCodes.put("210900","辽宁省阜新市");countyCodes.put("210901","辽宁省阜新市");countyCodes.put("210902","辽宁省阜新市海州区");countyCodes.put("210903","辽宁省阜新市新邱区");countyCodes.put("210904","辽宁省阜新市太*区");countyCodes.put("210905","辽宁省阜新市清河门区");countyCodes.put("210911","辽宁省阜新市细河区");countyCodes.put("210921","辽宁省阜新市阜新蒙古族自治县");countyCodes.put("210922","辽宁省阜新市彰武县");countyCodes.put("211000","辽宁省辽阳市");countyCodes.put("211001","辽宁省辽阳市");countyCodes.put("211002","辽宁省辽阳市白塔区");countyCodes.put("211003","辽宁省辽阳市文圣区");countyCodes.put("211004","辽宁省辽阳市宏伟区");countyCodes.put("211005","辽宁省辽阳市弓长岭区");countyCodes.put("211011","辽宁省辽阳市太子河区");countyCodes.put("211021","辽宁省辽阳市辽阳县");countyCodes.put("211081","辽宁省辽阳市灯塔市");countyCodes.put("211100","辽宁省盘锦市");countyCodes.put("211101","辽宁省盘锦市");countyCodes.put("211102","辽宁省盘锦市双台子区");countyCodes.put("211103","辽宁省盘锦市兴隆台区");countyCodes.put("211121","辽宁省盘锦市大洼县");countyCodes.put("211122","辽宁省盘锦市盘山县");countyCodes.put("211200","辽宁省铁岭市");countyCodes.put("211201","辽宁省铁岭市");countyCodes.put("150601","内蒙古自治区鄂尔多斯市");countyCodes.put("321300","江苏省宿迁市");countyCodes.put("321301","江苏省宿迁市");countyCodes.put("321302","江苏省宿迁市宿城区");countyCodes.put("321311","江苏省宿迁市宿豫区");countyCodes.put("321322","江苏省宿迁市沭阳县");countyCodes.put("321323","江苏省宿迁市泗阳县");countyCodes.put("321324","江苏省宿迁市泗洪县");countyCodes.put("330000","浙江省");countyCodes.put("330100","浙江省杭州市");countyCodes.put("330101","浙江省杭州市");countyCodes.put("330102","浙江省杭州市上城区");countyCodes.put("330103","浙江省杭州市下城区");countyCodes.put("330104","浙江省杭州市江干区");countyCodes.put("330105","浙江省杭州市拱墅区");countyCodes.put("330106","浙江省杭州市*湖区");countyCodes.put("330108","浙江省杭州市滨江区");countyCodes.put("330109","浙江省杭州市萧山区");countyCodes.put("330110","浙江省杭州市余杭区");countyCodes.put("340303","安徽省蚌埠市蚌山区");countyCodes.put("330782","浙江省金华市义乌市");countyCodes.put("330783","浙江省金华市东阳市");countyCodes.put("330784","浙江省金华市永康市");countyCodes.put("330800","浙江省衢州市");countyCodes.put("330801","浙江省衢州市");countyCodes.put("330802","浙江省衢州市柯城区");countyCodes.put("330803","浙江省衢州市衢江区");countyCodes.put("330822","浙江省衢州市常山县");countyCodes.put("330824","浙江省衢州市开化县");countyCodes.put("330825","浙江省衢州市龙游县");countyCodes.put("330881","浙江省衢州市江山市");countyCodes.put("330900","浙江省舟山市");countyCodes.put("330901","浙江省舟山市");countyCodes.put("330902","浙江省舟山市定海区");countyCodes.put("330903","浙江省舟山市普陀区");countyCodes.put("330921","浙江省舟山市岱山县");countyCodes.put("330922","浙江省舟山市嵊泗县");countyCodes.put("331000","浙江省台州市");countyCodes.put("331001","浙江省台州市");countyCodes.put("331002","浙江省台州市椒江区");countyCodes.put("331003","浙江省台州市黄岩区");countyCodes.put("331004","浙江省台州市路桥区");countyCodes.put("331021","浙江省台州市玉环县");countyCodes.put("331022","浙江省台州市三门县");countyCodes.put("331023","浙江省台州市天台县");countyCodes.put("331024","浙江省台州市仙居县");countyCodes.put("331081","浙江省台州市温岭市");countyCodes.put("331082","浙江省台州市临海市");countyCodes.put("331100","浙江省丽水市");countyCodes.put("331101","浙江省丽水市");countyCodes.put("331102","浙江省丽水市莲都区");countyCodes.put("331121","浙江省丽水市青田县");countyCodes.put("331122","浙江省丽水市缙云县");countyCodes.put("331123","浙江省丽水市遂昌县");countyCodes.put("331124","浙江省丽水市松阳县");countyCodes.put("331125","浙江省丽水市云和县");countyCodes.put("331126","浙江省丽水市庆元县");countyCodes.put("331127","浙江省丽水市景宁畲族自治县");countyCodes.put("331181","浙江省丽水市龙泉市");countyCodes.put("340000","安徽省");countyCodes.put("340100","安徽省合肥市");countyCodes.put("340101","安徽省合肥市");countyCodes.put("340102","安徽省合肥市瑶海区");countyCodes.put("340103","安徽省合肥市庐阳区");countyCodes.put("340104","安徽省合肥市蜀山区");countyCodes.put("340111","安徽省合肥市包河区");countyCodes.put("340121","安徽省合肥市长丰县");countyCodes.put("340122","安徽省合肥市肥东县");countyCodes.put("340123","安徽省合肥市肥*县");countyCodes.put("340200","安徽省芜湖市");countyCodes.put("340201","安徽省芜湖市");countyCodes.put("340202","安徽省芜湖市镜湖区");countyCodes.put("340203","安徽省芜湖市马塘区");countyCodes.put("340204","安徽省芜湖市新芜区");countyCodes.put("340207","安徽省芜湖市鸠江区");countyCodes.put("340221","安徽省芜湖市芜湖县");countyCodes.put("340222","安徽省芜湖市繁昌县");countyCodes.put("340223","安徽省芜湖市南陵县");countyCodes.put("340300","安徽省蚌埠市");countyCodes.put("340301","安徽省蚌埠市");countyCodes.put("340302","安徽省蚌埠市龙子湖区");countyCodes.put("320802","江苏省淮安市清河区");countyCodes.put("340304","安徽省蚌埠市禹会区");countyCodes.put("340311","安徽省蚌埠市淮上区");countyCodes.put("340321","安徽省蚌埠市怀远县");countyCodes.put("340322","安徽省蚌埠市五河县");countyCodes.put("340323","安徽省蚌埠市固镇县");countyCodes.put("340400","安徽省淮南市");countyCodes.put("340401","安徽省淮南市");countyCodes.put("340402","安徽省淮南市大通区");countyCodes.put("340403","安徽省淮南市田家庵区");countyCodes.put("340404","安徽省淮南市谢家集区");countyCodes.put("340405","安徽省淮南市八公山区");countyCodes.put("340406","安徽省淮南市潘集区");countyCodes.put("340421","安徽省淮南市凤台县");countyCodes.put("340500","安徽省马鞍山市");countyCodes.put("340501","安徽省马鞍山市");countyCodes.put("340502","安徽省马鞍山市金家庄区");countyCodes.put("340503","安徽省马鞍山市花山区");countyCodes.put("340504","安徽省马鞍山市雨山区");countyCodes.put("340521","安徽省马鞍山市当涂县");countyCodes.put("340600","安徽省淮北市");countyCodes.put("340601","安徽省淮北市");countyCodes.put("340602","安徽省淮北市杜集区");countyCodes.put("340603","安徽省淮北市相山区");countyCodes.put("340604","安徽省淮北市烈山区");countyCodes.put("340621","安徽省淮北市濉溪县");countyCodes.put("340700","安徽省铜陵市");countyCodes.put("340701","安徽省铜陵市");countyCodes.put("340702","安徽省铜陵市铜官山区");countyCodes.put("340703","安徽省铜陵市狮子山区");countyCodes.put("340711","安徽省铜陵市郊区");countyCodes.put("340721","安徽省铜陵市铜陵县");countyCodes.put("340800","安徽省安庆市");countyCodes.put("340801","安徽省安庆市");countyCodes.put("340802","安徽省安庆市迎江区");countyCodes.put("340803","安徽省安庆市大观区");countyCodes.put("340811","安徽省安庆市郊区");countyCodes.put("340822","安徽省安庆市怀宁县");countyCodes.put("340823","安徽省安庆市枞阳县");countyCodes.put("340824","安徽省安庆市潜山县");countyCodes.put("340825","安徽省安庆市太湖县");countyCodes.put("340826","安徽省安庆市宿松县");countyCodes.put("340827","安徽省安庆市望江县");countyCodes.put("340828","安徽省安庆市岳*县");countyCodes.put("340881","安徽省安庆市桐城市");countyCodes.put("341000","安徽省黄山市");countyCodes.put("341001","安徽省黄山市");countyCodes.put("341002","安徽省黄山市屯溪区");countyCodes.put("341003","安徽省黄山市黄山区");countyCodes.put("341004","安徽省黄山市徽州区");countyCodes.put("341021","安徽省黄山市歙县");countyCodes.put("341022","安徽省黄山市休宁县");countyCodes.put("341023","安徽省黄山市黟县");countyCodes.put("341024","安徽省黄山市祁门县");countyCodes.put("341100","安徽省滁州市");countyCodes.put("341101","安徽省滁州市");countyCodes.put("341102","安徽省滁州市琅琊区");countyCodes.put("341103","安徽省滁州市南谯区");countyCodes.put("341122","安徽省滁州市来安县");countyCodes.put("341124","安徽省滁州市全椒县");countyCodes.put("341125","安徽省滁州市定远县");countyCodes.put("341126","安徽省滁州市凤阳县");countyCodes.put("231123","黑龙江省黑河市逊克县");countyCodes.put("330127","浙江省杭州市淳安县");countyCodes.put("330182","浙江省杭州市建德市");countyCodes.put("330183","浙江省杭州市富阳市");countyCodes.put("330185","浙江省杭州市临安市");countyCodes.put("330200","浙江省宁波市");countyCodes.put("330201","浙江省宁波市");countyCodes.put("330203","浙江省宁波市海曙区");countyCodes.put("330204","浙江省宁波市江东区");countyCodes.put("330205","浙江省宁波市江北区");countyCodes.put("330206","浙江省宁波市北仑区");countyCodes.put("330211","浙江省宁波市镇海区");countyCodes.put("330212","浙江省宁波市鄞州区");countyCodes.put("330225","浙江省宁波市象山县");countyCodes.put("330226","浙江省宁波市宁海县");countyCodes.put("330281","浙江省宁波市余姚市");countyCodes.put("330282","浙江省宁波市慈溪市");countyCodes.put("330283","浙江省宁波市奉化市");countyCodes.put("330300","浙江省温州市");countyCodes.put("330301","浙江省温州市");countyCodes.put("330302","浙江省温州市鹿城区");countyCodes.put("330303","浙江省温州市龙湾区");countyCodes.put("330304","浙江省温州市瓯海区");countyCodes.put("330322","浙江省温州市洞头县");countyCodes.put("330324","浙江省温州市永嘉县");countyCodes.put("330326","浙江省温州市*阳县");countyCodes.put("330327","浙江省温州市苍南县");countyCodes.put("330328","浙江省温州市文成县");countyCodes.put("330329","浙江省温州市泰顺县");countyCodes.put("330381","浙江省温州市瑞安市");countyCodes.put("330382","浙江省温州市乐清市");countyCodes.put("330400","浙江省嘉兴市");countyCodes.put("330401","浙江省嘉兴市");countyCodes.put("330402","浙江省嘉兴市秀城区");countyCodes.put("330411","浙江省嘉兴市秀洲区");countyCodes.put("330421","浙江省嘉兴市嘉善县");countyCodes.put("330424","浙江省嘉兴市海盐县");countyCodes.put("330481","浙江省嘉兴市海宁市");countyCodes.put("330482","浙江省嘉兴市*湖市");countyCodes.put("330483","浙江省嘉兴市桐乡市");countyCodes.put("330500","浙江省湖州市");countyCodes.put("330501","浙江省湖州市");countyCodes.put("330502","浙江省湖州市吴兴区");countyCodes.put("330503","浙江省湖州市南浔区");countyCodes.put("330521","浙江省湖州市德清县");countyCodes.put("330522","浙江省湖州市长兴县");countyCodes.put("330523","浙江省湖州市安吉县");countyCodes.put("330600","浙江省绍兴市");countyCodes.put("330601","浙江省绍兴市");countyCodes.put("330602","浙江省绍兴市越城区");countyCodes.put("330621","浙江省绍兴市绍兴县");countyCodes.put("330624","浙江省绍兴市新昌县");countyCodes.put("330681","浙江省绍兴市诸暨市");countyCodes.put("330682","浙江省绍兴市上虞市");countyCodes.put("330683","浙江省绍兴市嵊州市");countyCodes.put("330700","浙江省金华市");countyCodes.put("330701","浙江省金华市");countyCodes.put("330702","浙江省金华市婺城区");countyCodes.put("330703","浙江省金华市金东区");countyCodes.put("330723","浙江省金华市武义县");countyCodes.put("330726","浙江省金华市浦江县");countyCodes.put("330727","浙江省金华市磐安县");countyCodes.put("35","江苏省无锡市锡山区");countyCodes.put("36","江苏省无锡市惠山区");countyCodes.put("31","江苏省无锡市滨湖区");countyCodes.put("320281","江苏省无锡市江阴市");countyCodes.put("320282","江苏省无锡市宜兴市");countyCodes.put("320300","江苏省徐州市");countyCodes.put("320301","江苏省徐州市");countyCodes.put("320302","江苏省徐州市鼓楼区");countyCodes.put("320303","江苏省徐州市云龙区");countyCodes.put("320304","江苏省徐州市九里区");countyCodes.put("320305","江苏省徐州市贾汪区");countyCodes.put("320311","江苏省徐州市泉山区");countyCodes.put("320321","江苏省徐州市丰县");countyCodes.put("320322","江苏省徐州市沛县");countyCodes.put("320323","江苏省徐州市铜山县");countyCodes.put("320324","江苏省徐州市睢宁县");countyCodes.put("320381","江苏省徐州市新沂市");countyCodes.put("320382","江苏省徐州市邳州市");countyCodes.put("320400","江苏省常州市");countyCodes.put("320401","江苏省常州市");countyCodes.put("320402","江苏省常州市天宁区");countyCodes.put("320404","江苏省常州市钟楼区");countyCodes.put("320405","江苏省常州市戚墅堰区");countyCodes.put("320411","江苏省常州市新北区");countyCodes.put("320412","江苏省常州市武进区");countyCodes.put("320481","江苏省常州市溧阳市");countyCodes.put("320482","江苏省常州市金坛市");countyCodes.put("320500","江苏省苏州市");countyCodes.put("320501","江苏省苏州市");countyCodes.put("320502","江苏省苏州市沧浪区");countyCodes.put("320503","江苏省苏州市*江区");countyCodes.put("320504","江苏省苏州市金阊区");countyCodes.put("320505","江苏省苏州市虎丘区");countyCodes.put("320506","江苏省苏州市吴中区");countyCodes.put("320507","江苏省苏州市相城区");countyCodes.put("320581","江苏省苏州市常熟市");countyCodes.put("320582","江苏省苏州市张家港市");countyCodes.put("320583","江苏省苏州市昆山市");countyCodes.put("320584","江苏省苏州市吴江市");countyCodes.put("320585","江苏省苏州市太仓市");countyCodes.put("320600","江苏省南通市");countyCodes.put("320601","江苏省南通市");countyCodes.put("320602","江苏省南通市崇川区");countyCodes.put("320611","江苏省南通市港闸区");countyCodes.put("320621","江苏省南通市海安县");countyCodes.put("320623","江苏省南通市如东县");countyCodes.put("320681","江苏省南通市启东市");countyCodes.put("320682","江苏省南通市如皋市");countyCodes.put("320683","江苏省南通市通州市");countyCodes.put("320684","江苏省南通市海门市");countyCodes.put("320700","江苏省连云港市");countyCodes.put("320701","江苏省连云港市");countyCodes.put("320703","江苏省连云港市连云区");countyCodes.put("320705","江苏省连云港市新浦区");countyCodes.put("320706","江苏省连云港市海州区");countyCodes.put("320721","江苏省连云港市赣榆县");countyCodes.put("320722","江苏省连云港市东海县");countyCodes.put("230603","黑龙江省大庆市龙凤区");countyCodes.put("230604","黑龙江省大庆市让胡路区");countyCodes.put("230605","黑龙江省大庆市红岗区");countyCodes.put("230606","黑龙江省大庆市大同区");countyCodes.put("220501","吉林省通化市");countyCodes.put("220502","吉林省通化市东昌区");countyCodes.put("220503","吉林省通化市二道江区");countyCodes.put("220521","吉林省通化市通化县");countyCodes.put("220523","吉林省通化市辉南县");countyCodes.put("220524","吉林省通化市柳河县");countyCodes.put("220581","吉林省通化市梅河口市");countyCodes.put("220582","吉林省通化市集安市");countyCodes.put("220600","吉林省白山市");countyCodes.put("220601","吉林省白山市");countyCodes.put("220602","吉林省白山市八道江区");countyCodes.put("220621","吉林省白山市抚松县");countyCodes.put("220622","吉林省白山市靖宇县");countyCodes.put("220623","吉林省白山市长白朝鲜族自治县");countyCodes.put("220625","吉林省白山市江源县");countyCodes.put("220681","吉林省白山市临江市");countyCodes.put("220700","吉林省松原市");countyCodes.put("220701","吉林省松原市");countyCodes.put("220702","吉林省松原市宁江区");countyCodes.put("220721","吉林省松原市前郭尔罗斯蒙古族自治县");countyCodes.put("220722","吉林省松原市长岭县");countyCodes.put("220723","吉林省松原市乾安县");countyCodes.put("220724","吉林省松原市扶余县");countyCodes.put("220800","吉林省白城市");countyCodes.put("220801","吉林省白城市");countyCodes.put("220802","吉林省白城市洮北区");countyCodes.put("220821","吉林省白城市镇赉县");countyCodes.put("220822","吉林省白城市通榆县");countyCodes.put("220881","吉林省白城市洮南市");countyCodes.put("220882","吉林省白城市大安市");countyCodes.put("222400","吉林省延边朝鲜族自治州");countyCodes.put("222401","吉林省延边朝鲜族自治州延吉市");countyCodes.put("222402","吉林省延边朝鲜族自治州图们市");countyCodes.put("222403","吉林省延边朝鲜族自治州敦化市");countyCodes.put("222404","吉林省延边朝鲜族自治州珲春市");countyCodes.put("222405","吉林省延边朝鲜族自治州龙井市");countyCodes.put("222406","吉林省延边朝鲜族自治州和龙市");countyCodes.put("222424","吉林省延边朝鲜族自治州汪清县");countyCodes.put("222426","吉林省延边朝鲜族自治州安图县");countyCodes.put("230000","黑龙江省");countyCodes.put("230100","黑龙江省哈尔滨市");countyCodes.put("230101","黑龙江省哈尔滨市");countyCodes.put("230102","黑龙江省哈尔滨市道里区");countyCodes.put("230103","黑龙江省哈尔滨市南岗区");countyCodes.put("230104","黑龙江省哈尔滨市道外区");countyCodes.put("230106","黑龙江省哈尔滨市香坊区");countyCodes.put("230107","黑龙江省哈尔滨市动力区");countyCodes.put("230108","黑龙江省哈尔滨市*房区");countyCodes.put("230109","黑龙江省哈尔滨市松北区");countyCodes.put("230111","黑龙江省哈尔滨市呼兰区");countyCodes.put("230123","黑龙江省哈尔滨市依兰县");countyCodes.put("230124","黑龙江省哈尔滨市方正县");countyCodes.put("230125","黑龙江省哈尔滨市宾县");countyCodes.put("230126","黑龙江省哈尔滨市巴彦县");countyCodes.put("230127","黑龙江省哈尔滨市木兰县");countyCodes.put("230128","黑龙江省哈尔滨市通河县");countyCodes.put("230129","黑龙江省哈尔滨市延寿县");countyCodes.put("230181","黑龙江省哈尔滨市阿城市");countyCodes.put("230182","黑龙江省哈尔滨市双城市");countyCodes.put("150622","内蒙古自治区鄂尔多斯市准格尔旗");countyCodes.put("150623","内蒙古自治区鄂尔多斯市鄂托克前旗");countyCodes.put("150624","内蒙古自治区鄂尔多斯市鄂托克旗");countyCodes.put("150625","内蒙古自治区鄂尔多斯市杭锦旗");countyCodes.put("150626","内蒙古自治区鄂尔多斯市乌审旗");countyCodes.put("150627","内蒙古自治区鄂尔多斯市伊金霍洛旗");countyCodes.put("150700","内蒙古自治区呼伦贝尔市");countyCodes.put("150701","内蒙古自治区呼伦贝尔市");countyCodes.put("150702","内蒙古自治区呼伦贝尔市海拉尔区");countyCodes.put("150721","内蒙古自治区呼伦贝尔市阿荣旗");countyCodes.put("150722","内蒙古自治区呼伦贝尔市莫力达瓦达斡尔族自治旗");countyCodes.put("150723","内蒙古自治区呼伦贝尔市鄂伦春自治旗");countyCodes.put("150724","内蒙古自治区呼伦贝尔市鄂温克族自治旗");countyCodes.put("150725","内蒙古自治区呼伦贝尔市陈巴尔虎旗");countyCodes.put("150726","内蒙古自治区呼伦贝尔市新巴尔虎左旗");countyCodes.put("150727","内蒙古自治区呼伦贝尔市新巴尔虎右旗");countyCodes.put("150781","内蒙古自治区呼伦贝尔市满洲里市");countyCodes.put("150782","内蒙古自治区呼伦贝尔市牙克石市");countyCodes.put("150783","内蒙古自治区呼伦贝尔市扎兰屯市");countyCodes.put("150784","内蒙古自治区呼伦贝尔市额尔古纳市");countyCodes.put("150785","内蒙古自治区呼伦贝尔市根河市");countyCodes.put("150800","内蒙古自治区巴彦淖尔市");countyCodes.put("150801","内蒙古自治区巴彦淖尔市");countyCodes.put("150802","内蒙古自治区巴彦淖尔市临河区");countyCodes.put("150821","内蒙古自治区巴彦淖尔市五原县");countyCodes.put("150822","内蒙古自治区巴彦淖尔市磴口县");countyCodes.put("150823","内蒙古自治区巴彦淖尔市乌拉特前旗");countyCodes.put("150824","内蒙古自治区巴彦淖尔市乌拉特中旗");countyCodes.put("150825","内蒙古自治区巴彦淖尔市乌拉特后旗");countyCodes.put("150826","内蒙古自治区巴彦淖尔市杭锦后旗");countyCodes.put("150900","内蒙古自治区乌兰察布市");countyCodes.put("150901","内蒙古自治区乌兰察布市");countyCodes.put("150902","内蒙古自治区乌兰察布市集宁区");countyCodes.put("150921","内蒙古自治区乌兰察布市卓资县");countyCodes.put("150922","内蒙古自治区乌兰察布市化德县");countyCodes.put("150923","内蒙古自治区乌兰察布市商都县");countyCodes.put("150924","内蒙古自治区乌兰察布市兴和县");countyCodes.put("150925","内蒙古自治区乌兰察布市凉城县");countyCodes.put("150926","内蒙古自治区乌兰察布市察哈尔右翼前旗");countyCodes.put("30","江苏省南京市");countyCodes.put("31","江苏省南京市");countyCodes.put("32","江苏省南京市玄武区");countyCodes.put("33","江苏省南京市白下区");countyCodes.put("34","江苏省南京市秦淮区");countyCodes.put("35","江苏省南京市建邺区");countyCodes.put("36","江苏省南京市鼓楼区");countyCodes.put("37","江苏省南京市下关区");countyCodes.put("31","江苏省南京市浦口区");countyCodes.put("33","江苏省南京市栖霞区");countyCodes.put("34","江苏省南京市雨花台区");countyCodes.put("35","江苏省南京市江宁区");countyCodes.put("36","江苏省南京市六合区");countyCodes.put("34","江苏省南京市溧水县");countyCodes.put("35","江苏省南京市高淳县");countyCodes.put("30","江苏省无锡市");countyCodes.put("31","江苏省无锡市");countyCodes.put("32","江苏省无锡市崇安区");countyCodes.put("33","江苏省无锡市南长区");countyCodes.put("34","江苏省无锡市北塘区");countyCodes.put("230621","黑龙江省大庆市肇州县");countyCodes.put("371602","山东省滨州市滨城区");countyCodes.put("371621","山东省滨州市惠民县");countyCodes.put("371622","山东省滨州市阳信县");countyCodes.put("371623","山东省滨州市无棣县");countyCodes.put("371624","山东省滨州市沾化县");countyCodes.put("371625","山东省滨州市博兴县");countyCodes.put("371626","山东省滨州市邹*县");countyCodes.put("371700","山东省荷泽市");countyCodes.put("371701","山东省荷泽市");countyCodes.put("371702","山东省荷泽市牡丹区");countyCodes.put("371721","山东省荷泽市曹县");countyCodes.put("371722","山东省荷泽市单县");countyCodes.put("371723","山东省荷泽市成武县");countyCodes.put("371724","山东省荷泽市巨野县");countyCodes.put("371725","山东省荷泽市郓城县");countyCodes.put("371726","山东省荷泽市鄄城县");countyCodes.put("371727","山东省荷泽市定陶县");countyCodes.put("371728","山东省荷泽市东明县");countyCodes.put("410000","河南省");countyCodes.put("410100","河南省郑州市");countyCodes.put("410101","河南省郑州市");countyCodes.put("410102","河南省郑州市中原区");countyCodes.put("410103","河南省郑州市二七区");countyCodes.put("410104","河南省郑州市管城回族区");countyCodes.put("410105","河南省郑州市金水区");countyCodes.put("410106","河南省郑州市上街区");countyCodes.put("410108","河南省郑州市惠济区");countyCodes.put("410122","河南省郑州市中牟县");countyCodes.put("410181","河南省郑州市巩义市");countyCodes.put("410182","河南省郑州市荥阳市");countyCodes.put("410183","河南省郑州市新密市");countyCodes.put("410184","河南省郑州市新郑市");countyCodes.put("410185","河南省郑州市登封市");countyCodes.put("410200","河南省开封市");countyCodes.put("410201","河南省开封市");countyCodes.put("410202","河南省开封市龙亭区");countyCodes.put("410203","河南省开封市顺河回族区");countyCodes.put("410204","河南省开封市鼓楼区");countyCodes.put("410205","河南省开封市南关区");countyCodes.put("410211","河南省开封市郊区");countyCodes.put("410221","河南省开封市杞县");countyCodes.put("410222","河南省开封市通许县");countyCodes.put("410223","河南省开封市尉氏县");countyCodes.put("410224","河南省开封市开封县");countyCodes.put("410225","河南省开封市兰考县");countyCodes.put("410300","河南省洛阳市");countyCodes.put("410301","河南省洛阳市");countyCodes.put("410302","河南省洛阳市老城区");countyCodes.put("410303","河南省洛阳市*工区");countyCodes.put("410304","河南省洛阳市廛河回族区");countyCodes.put("410305","河南省洛阳市涧*区");countyCodes.put("410306","河南省洛阳市吉利区");countyCodes.put("410307","河南省洛阳市洛龙区");countyCodes.put("410322","河南省洛阳市孟津县");countyCodes.put("410323","河南省洛阳市新安县");countyCodes.put("410324","河南省洛阳市栾川县");countyCodes.put("410325","河南省洛阳市嵩县");countyCodes.put("410326","河南省洛阳市汝阳县");countyCodes.put("410327","河南省洛阳市宜阳县");countyCodes.put("410328","河南省洛阳市洛宁县");countyCodes.put("341181","安徽省滁州市天长市");countyCodes.put("341182","安徽省滁州市明光市");countyCodes.put("370900","山东省泰安市");countyCodes.put("370901","山东省泰安市");countyCodes.put("370902","山东省泰安市泰山区");countyCodes.put("370903","山东省泰安市岱岳区");countyCodes.put("370921","山东省泰安市宁阳县");countyCodes.put("370923","山东省泰安市东*县");countyCodes.put("370982","山东省泰安市新泰市");countyCodes.put("370983","山东省泰安市肥城市");countyCodes.put("371000","山东省威海市");countyCodes.put("371001","山东省威海市");countyCodes.put("371002","山东省威海市环翠区");countyCodes.put("371081","山东省威海市文登市");countyCodes.put("371082","山东省威海市荣成市");countyCodes.put("371083","山东省威海市乳山市");countyCodes.put("371100","山东省日照市");countyCodes.put("371101","山东省日照市");countyCodes.put("371102","山东省日照市东港区");countyCodes.put("371103","山东省日照市岚山区");countyCodes.put("371121","山东省日照市五莲县");countyCodes.put("371122","山东省日照市莒县");countyCodes.put("371200","山东省莱芜市");countyCodes.put("371201","山东省莱芜市");countyCodes.put("371202","山东省莱芜市莱城区");countyCodes.put("371203","山东省莱芜市钢城区");countyCodes.put("371300","山东省临沂市");countyCodes.put("371301","山东省临沂市");countyCodes.put("371302","山东省临沂市兰山区");countyCodes.put("371311","山东省临沂市罗庄区");countyCodes.put("371312","山东省临沂市河东区");countyCodes.put("371321","山东省临沂市沂南县");countyCodes.put("371322","山东省临沂市郯城县");countyCodes.put("371323","山东省临沂市沂水县");countyCodes.put("371324","山东省临沂市苍山县");countyCodes.put("371325","山东省临沂市费县");countyCodes.put("371326","山东省临沂市*邑县");countyCodes.put("371327","山东省临沂市莒南县");countyCodes.put("371328","山东省临沂市蒙阴县");countyCodes.put("371329","山东省临沂市临沭县");countyCodes.put("371400","山东省德州市");countyCodes.put("371401","山东省德州市");countyCodes.put("371402","山东省德州市德城区");countyCodes.put("371421","山东省德州市陵县");countyCodes.put("371422","山东省德州市宁津县");countyCodes.put("371423","山东省德州市庆云县");countyCodes.put("371424","山东省德州市临邑县");countyCodes.put("371425","山东省德州市齐河县");countyCodes.put("371426","山东省德州市*原县");countyCodes.put("371427","山东省德州市夏津县");countyCodes.put("371428","山东省德州市武城县");countyCodes.put("371481","山东省德州市乐陵市");countyCodes.put("371482","山东省德州市禹城市");countyCodes.put("371500","山东省聊城市");countyCodes.put("371501","山东省聊城市");countyCodes.put("371502","山东省聊城市东昌府区");countyCodes.put("371521","山东省聊城市阳谷县");countyCodes.put("371522","山东省聊城市莘县");countyCodes.put("371523","山东省聊城市茌*县");countyCodes.put("371524","山东省聊城市东阿县");countyCodes.put("371525","山东省聊城市冠县");countyCodes.put("371526","山东省聊城市高唐县");countyCodes.put("371581","山东省聊城市临清市");countyCodes.put("421123","湖北省黄冈市罗田县");countyCodes.put("371601","山东省滨州市");countyCodes.put("350629","福建省漳州市华安县");countyCodes.put("350681","福建省漳州市龙海市");countyCodes.put("350700","福建省南*市");countyCodes.put("350701","福建省南*市");countyCodes.put("350702","福建省南*市延*区");countyCodes.put("350721","福建省南*市顺昌县");countyCodes.put("350722","福建省南*市浦城县");countyCodes.put("350723","福建省南*市光泽县");countyCodes.put("350724","福建省南*市松溪县");countyCodes.put("350725","福建省南*市政和县");countyCodes.put("350781","福建省南*市邵武市");countyCodes.put("350782","福建省南*市武夷山市");countyCodes.put("350783","福建省南*市建瓯市");countyCodes.put("350784","福建省南*市建阳市");countyCodes.put("350800","福建省龙岩市");countyCodes.put("350801","福建省龙岩市");countyCodes.put("350802","福建省龙岩市新罗区");countyCodes.put("350821","福建省龙岩市长汀县");countyCodes.put("350822","福建省龙岩市永定县");countyCodes.put("350823","福建省龙岩市上杭县");countyCodes.put("350824","福建省龙岩市武*县");countyCodes.put("350825","福建省龙岩市连城县");countyCodes.put("350881","福建省龙岩市漳*市");countyCodes.put("350900","福建省宁德市");countyCodes.put("350901","福建省宁德市");countyCodes.put("350902","福建省宁德市蕉城区");countyCodes.put("350921","福建省宁德市霞浦县");countyCodes.put("350922","福建省宁德市古田县");countyCodes.put("350923","福建省宁德市屏南县");countyCodes.put("350924","福建省宁德市寿宁县");countyCodes.put("350925","福建省宁德市周宁县");countyCodes.put("350926","福建省宁德市柘荣县");countyCodes.put("350981","福建省宁德市福安市");countyCodes.put("350982","福建省宁德市福鼎市");countyCodes.put("360000","江*省");countyCodes.put("360100","江*省南昌市");countyCodes.put("360101","江*省南昌市");countyCodes.put("360102","江*省南昌市东湖区");countyCodes.put("360103","江*省南昌市*湖区");countyCodes.put("360104","江*省南昌市青云谱区");countyCodes.put("360105","江*省南昌市湾里区");countyCodes.put("360111","江*省南昌市青山湖区");countyCodes.put("360121","江*省南昌市南昌县");countyCodes.put("360122","江*省南昌市新建县");countyCodes.put("360123","江*省南昌市安义县");countyCodes.put("360124","江*省南昌市进贤县");countyCodes.put("360200","江*省景德镇市");countyCodes.put("360201","江*省景德镇市");countyCodes.put("360202","江*省景德镇市昌江区");countyCodes.put("360203","江*省景德镇市珠山区");countyCodes.put("360222","江*省景德镇市浮梁县");countyCodes.put("360281","江*省景德镇市乐*市");countyCodes.put("360300","江*省萍乡市");countyCodes.put("360301","江*省萍乡市");countyCodes.put("360302","江*省萍乡市安源区");countyCodes.put("360313","江*省萍乡市湘东区");countyCodes.put("360321","江*省萍乡市莲花县");countyCodes.put("360322","江*省萍乡市上栗县");countyCodes.put("360323","江*省萍乡市芦溪县");countyCodes.put("360400","江*省九江市");countyCodes.put("360401","江*省九江市");countyCodes.put("360402","江*省九江市庐山区");countyCodes.put("360421","江*省九江市九江县");countyCodes.put("370303","山东省淄博市张店区");countyCodes.put("370304","山东省淄博市博山区");countyCodes.put("370305","山东省淄博市临淄区");countyCodes.put("370306","山东省淄博市周村区");countyCodes.put("370321","山东省淄博市桓台县");countyCodes.put("370322","山东省淄博市高青县");countyCodes.put("370323","山东省淄博市沂源县");countyCodes.put("370400","山东省枣庄市");countyCodes.put("370401","山东省枣庄市");countyCodes.put("370402","山东省枣庄市市中区");countyCodes.put("370403","山东省枣庄市薛城区");countyCodes.put("370404","山东省枣庄市峄城区");countyCodes.put("370405","山东省枣庄市台儿庄区");countyCodes.put("370406","山东省枣庄市山亭区");countyCodes.put("370481","山东省枣庄市滕州市");countyCodes.put("370500","山东省东营市");countyCodes.put("370501","山东省东营市");countyCodes.put("370502","山东省东营市东营区");countyCodes.put("370503","山东省东营市河口区");countyCodes.put("370521","山东省东营市垦利县");countyCodes.put("370522","山东省东营市利津县");countyCodes.put("370523","山东省东营市广饶县");countyCodes.put("370600","山东省烟台市");countyCodes.put("370601","山东省烟台市");countyCodes.put("370602","山东省烟台市芝罘区");countyCodes.put("370611","山东省烟台市福山区");countyCodes.put("370612","山东省烟台市牟*区");countyCodes.put("370613","山东省烟台市莱山区");countyCodes.put("370634","山东省烟台市长岛县");countyCodes.put("370681","山东省烟台市龙口市");countyCodes.put("370682","山东省烟台市莱阳市");countyCodes.put("370683","山东省烟台市莱州市");countyCodes.put("370684","山东省烟台市蓬莱市");countyCodes.put("370685","山东省烟台市招远市");countyCodes.put("370686","山东省烟台市栖霞市");countyCodes.put("370687","山东省烟台市海阳市");countyCodes.put("370700","山东省潍坊市");countyCodes.put("370701","山东省潍坊市");countyCodes.put("370702","山东省潍坊市潍城区");countyCodes.put("370703","山东省潍坊市寒亭区");countyCodes.put("370704","山东省潍坊市坊子区");countyCodes.put("370705","山东省潍坊市奎文区");countyCodes.put("370724","山东省潍坊市临朐县");countyCodes.put("370725","山东省潍坊市昌乐县");countyCodes.put("370781","山东省潍坊市青州市");countyCodes.put("370782","山东省潍坊市诸城市");countyCodes.put("370783","山东省潍坊市寿光市");countyCodes.put("370784","山东省潍坊市安丘市");countyCodes.put("370785","山东省潍坊市高密市");countyCodes.put("370786","山东省潍坊市昌邑市");countyCodes.put("370800","山东省济宁市");countyCodes.put("370801","山东省济宁市");countyCodes.put("370802","山东省济宁市市中区");countyCodes.put("370811","山东省济宁市任城区");countyCodes.put("211202","辽宁省铁岭市银州区");countyCodes.put("211204","辽宁省铁岭市清河区");countyCodes.put("141182","山*省吕梁市汾阳市");countyCodes.put("152523","内蒙古自治区锡林郭勒盟苏尼特左旗");countyCodes.put("152524","内蒙古自治区锡林郭勒盟苏尼特右旗");countyCodes.put("152525","内蒙古自治区锡林郭勒盟东乌珠穆沁旗");countyCodes.put("152526","内蒙古自治区锡林郭勒盟*乌珠穆沁旗");countyCodes.put("152527","内蒙古自治区锡林郭勒盟太仆寺旗");countyCodes.put("152528","内蒙古自治区锡林郭勒盟镶黄旗");countyCodes.put("152529","内蒙古自治区锡林郭勒盟正镶白旗");countyCodes.put("152530","内蒙古自治区锡林郭勒盟正蓝旗");countyCodes.put("152531","内蒙古自治区锡林郭勒盟多伦县");countyCodes.put("152900","内蒙古自治区阿拉善盟");countyCodes.put("152921","内蒙古自治区阿拉善盟阿拉善左旗");countyCodes.put("152922","内蒙古自治区阿拉善盟阿拉善右旗");countyCodes.put("152923","内蒙古自治区阿拉善盟额济纳旗");countyCodes.put("210000","辽宁省");countyCodes.put("210100","辽宁省沈阳市");countyCodes.put("210101","辽宁省沈阳市");countyCodes.put("210102","辽宁省沈阳市和*区");countyCodes.put("210103","辽宁省沈阳市沈河区");countyCodes.put("210104","辽宁省沈阳市大东区");countyCodes.put("210105","辽宁省沈阳市皇姑区");countyCodes.put("210106","辽宁省沈阳市铁*区");countyCodes.put("210111","辽宁省沈阳市苏家屯区");countyCodes.put("210112","辽宁省沈阳市东陵区");countyCodes.put("210113","辽宁省沈阳市新城子区");countyCodes.put("210114","辽宁省沈阳市于洪区");countyCodes.put("210122","辽宁省沈阳市辽中县");countyCodes.put("210123","辽宁省沈阳市康*县");countyCodes.put("210124","辽宁省沈阳市法库县");countyCodes.put("210181","辽宁省沈阳市新民市");countyCodes.put("210200","辽宁省大连市");countyCodes.put("210201","辽宁省大连市");countyCodes.put("210202","辽宁省大连市中山区");countyCodes.put("210203","辽宁省大连市*岗区");countyCodes.put("210204","辽宁省大连市沙河口区");countyCodes.put("210211","辽宁省大连市甘井子区");countyCodes.put("210212","辽宁省大连市旅顺口区");countyCodes.put("210213","辽宁省大连市金州区");countyCodes.put("210224","辽宁省大连市长海县");countyCodes.put("210281","辽宁省大连市瓦房店市");countyCodes.put("210282","辽宁省大连市普兰店市");countyCodes.put("210283","辽宁省大连市庄河市");countyCodes.put("210300","辽宁省鞍山市");countyCodes.put("210301","辽宁省鞍山市");countyCodes.put("210302","辽宁省鞍山市铁东区");countyCodes.put("210303","辽宁省鞍山市铁*区");countyCodes.put("210304","辽宁省鞍山市立山区");countyCodes.put("210311","辽宁省鞍山市千山区");countyCodes.put("210321","辽宁省鞍山市台安县");countyCodes.put("210323","辽宁省鞍山市岫岩满族自治县");countyCodes.put("210381","辽宁省鞍山市海城市");countyCodes.put("210400","辽宁省抚顺市");countyCodes.put("210401","辽宁省抚顺市");countyCodes.put("210402","辽宁省抚顺市新抚区");countyCodes.put("210403","辽宁省抚顺市东洲区");countyCodes.put("210404","辽宁省抚顺市望花区");countyCodes.put("210411","辽宁省抚顺市顺城区");countyCodes.put("210421","辽宁省抚顺市抚顺县");countyCodes.put("210422","辽宁省抚顺市新宾满族自治县");countyCodes.put("210423","辽宁省抚顺市清原满族自治县");countyCodes.put("320803","江苏省淮安市楚州区");countyCodes.put("320804","江苏省淮安市淮阴区");countyCodes.put("320811","江苏省淮安市清浦区");countyCodes.put("320826","江苏省淮安市涟水县");countyCodes.put("320829","江苏省淮安市洪泽县");countyCodes.put("320830","江苏省淮安市盱眙县");countyCodes.put("320831","江苏省淮安市金湖县");countyCodes.put("320900","江苏省盐城市");countyCodes.put("320901","江苏省盐城市");countyCodes.put("320902","江苏省盐城市亭湖区");countyCodes.put("320903","江苏省盐城市盐都区");countyCodes.put("320921","江苏省盐城市响水县");countyCodes.put("320922","江苏省盐城市滨海县");countyCodes.put("320923","江苏省盐城市阜宁县");countyCodes.put("320924","江苏省盐城市射阳县");countyCodes.put("320925","江苏省盐城市建湖县");countyCodes.put("320981","江苏省盐城市东台市");countyCodes.put("320982","江苏省盐城市大丰市");countyCodes.put("321000","江苏省扬州市");countyCodes.put("321001","江苏省扬州市");countyCodes.put("321002","江苏省扬州市广陵区");countyCodes.put("321003","江苏省扬州市邗江区");countyCodes.put("321011","江苏省扬州市郊区");countyCodes.put("321023","江苏省扬州市宝应县");countyCodes.put("321081","江苏省扬州市仪征市");countyCodes.put("321084","江苏省扬州市高邮市");countyCodes.put("321088","江苏省扬州市江都市");countyCodes.put("321100","江苏省镇江市");countyCodes.put("321101","江苏省镇江市");countyCodes.put("321102","江苏省镇江市京口区");countyCodes.put("321111","江苏省镇江市润州区");countyCodes.put("321112","江苏省镇江市丹徒区");countyCodes.put("321181","江苏省镇江市丹阳市");countyCodes.put("321182","江苏省镇江市扬中市");countyCodes.put("321183","江苏省镇江市句容市");countyCodes.put("321200","江苏省泰州市");countyCodes.put("321201","江苏省泰州市");countyCodes.put("321202","江苏省泰州市海陵区");countyCodes.put("321203","江苏省泰州市高港区");countyCodes.put("321281","江苏省泰州市兴化市");countyCodes.put("321282","江苏省泰州市靖江市");countyCodes.put("321283","江苏省泰州市泰兴市");countyCodes.put("321284","江苏省泰州市姜堰市");countyCodes.put("341621","安徽省亳州市涡阳县");countyCodes.put("341622","安徽省亳州市蒙城县");countyCodes.put("341623","安徽省亳州市利辛县");countyCodes.put("341700","安徽省池州市");countyCodes.put("341701","安徽省池州市");countyCodes.put("341702","安徽省池州市贵池区");countyCodes.put("341721","安徽省池州市东至县");countyCodes.put("341722","安徽省池州市石台县");countyCodes.put("341723","安徽省池州市青阳县");countyCodes.put("341800","安徽省宣城市");countyCodes.put("341801","安徽省宣城市");countyCodes.put("341802","安徽省宣城市宣州区");countyCodes.put("341821","安徽省宣城市郎溪县");countyCodes.put("341822","安徽省宣城市广德县");countyCodes.put("341823","安徽省宣城市泾县");countyCodes.put("341824","安徽省宣城市绩溪县");countyCodes.put("341825","安徽省宣城市旌德县");countyCodes.put("341881","安徽省宣城市宁国市");countyCodes.put("350000","福建省");countyCodes.put("350100","福建省福州市");countyCodes.put("350101","福建省福州市");countyCodes.put("350102","福建省福州市鼓楼区");countyCodes.put("350103","福建省福州市台江区");countyCodes.put("350104","福建省福州市仓山区");countyCodes.put("350105","福建省福州市马尾区");countyCodes.put("370882","山东省济宁市兖州市");countyCodes.put("350628","福建省漳州市*和县");countyCodes.put("360926","江*省宜春市铜鼓县");countyCodes.put("360981","江*省宜春市丰城市");countyCodes.put("360982","江*省宜春市樟树市");countyCodes.put("360983","江*省宜春市高安市");countyCodes.put("361000","江*省抚州市");countyCodes.put("361001","江*省抚州市");countyCodes.put("361002","江*省抚州市临川区");countyCodes.put("361021","江*省抚州市南城县");countyCodes.put("361022","江*省抚州市黎川县");countyCodes.put("361023","江*省抚州市南丰县");countyCodes.put("361024","江*省抚州市崇仁县");countyCodes.put("361025","江*省抚州市乐安县");countyCodes.put("361026","江*省抚州市宜黄县");countyCodes.put("361027","江*省抚州市金溪县");countyCodes.put("361028","江*省抚州市资溪县");countyCodes.put("361029","江*省抚州市东乡县");countyCodes.put("361030","江*省抚州市广昌县");countyCodes.put("361100","江*省上饶市");countyCodes.put("361101","江*省上饶市");countyCodes.put("361102","江*省上饶市信州区");countyCodes.put("361121","江*省上饶市上饶县");countyCodes.put("361122","江*省上饶市广丰县");countyCodes.put("361123","江*省上饶市玉山县");countyCodes.put("361124","江*省上饶市铅山县");countyCodes.put("361125","江*省上饶市横峰县");countyCodes.put("361126","江*省上饶市弋阳县");countyCodes.put("361127","江*省上饶市余干县");countyCodes.put("361128","江*省上饶市鄱阳县");countyCodes.put("361129","江*省上饶市万年县");countyCodes.put("361130","江*省上饶市婺源县");countyCodes.put("361181","江*省上饶市德兴市");countyCodes.put("370000","山东省");countyCodes.put("370100","山东省济南市");countyCodes.put("370101","山东省济南市");countyCodes.put("370102","山东省济南市历下区");countyCodes.put("370103","山东省济南市市中区");countyCodes.put("370104","山东省济南市槐荫区");countyCodes.put("370105","山东省济南市天桥区");countyCodes.put("370112","山东省济南市历城区");countyCodes.put("370113","山东省济南市长清区");countyCodes.put("370124","山东省济南市*阴县");countyCodes.put("370125","山东省济南市济阳县");countyCodes.put("370126","山东省济南市商河县");countyCodes.put("370181","山东省济南市章丘市");countyCodes.put("370200","山东省青岛市");countyCodes.put("370201","山东省青岛市");countyCodes.put("370202","山东省青岛市市南区");countyCodes.put("370203","山东省青岛市市北区");countyCodes.put("370205","山东省青岛市四方区");countyCodes.put("370211","山东省青岛市黄岛区");countyCodes.put("370212","山东省青岛市崂山区");countyCodes.put("370213","山东省青岛市李沧区");countyCodes.put("370214","山东省青岛市城阳区");countyCodes.put("370281","山东省青岛市胶州市");countyCodes.put("370282","山东省青岛市即墨市");countyCodes.put("370283","山东省青岛市*度市");countyCodes.put("370284","山东省青岛市胶南市");countyCodes.put("370285","山东省青岛市莱*市");countyCodes.put("370300","山东省淄博市");countyCodes.put("370301","山东省淄博市");countyCodes.put("370302","山东省淄博市淄川区");countyCodes.put("370883","山东省济宁市邹城市");countyCodes.put("360423","江*省九江市武宁县");countyCodes.put("360424","江*省九江市修水县");countyCodes.put("360425","江*省九江市永修县");countyCodes.put("360426","江*省九江市德安县");countyCodes.put("360427","江*省九江市星子县");countyCodes.put("360428","江*省九江市都昌县");countyCodes.put("360429","江*省九江市湖口县");countyCodes.put("360430","江*省九江市彭泽县");countyCodes.put("360481","江*省九江市瑞昌市");countyCodes.put("360500","江*省新余市");countyCodes.put("360501","江*省新余市");countyCodes.put("360502","江*省新余市渝水区");countyCodes.put("360521","江*省新余市分宜县");countyCodes.put("360600","江*省鹰潭市");countyCodes.put("360601","江*省鹰潭市");countyCodes.put("360602","江*省鹰潭市月湖区");countyCodes.put("360622","江*省鹰潭市余江县");countyCodes.put("360681","江*省鹰潭市贵溪市");countyCodes.put("360700","江*省赣州市");countyCodes.put("360701","江*省赣州市");countyCodes.put("360702","江*省赣州市章贡区");countyCodes.put("360721","江*省赣州市赣县");countyCodes.put("360722","江*省赣州市信丰县");countyCodes.put("360723","江*省赣州市大余县");countyCodes.put("360724","江*省赣州市上犹县");countyCodes.put("360725","江*省赣州市崇义县");countyCodes.put("360726","江*省赣州市安远县");countyCodes.put("360727","江*省赣州市龙南县");countyCodes.put("360728","江*省赣州市定南县");countyCodes.put("360729","江*省赣州市全南县");countyCodes.put("360730","江*省赣州市宁都县");countyCodes.put("360731","江*省赣州市于都县");countyCodes.put("360732","江*省赣州市兴国县");countyCodes.put("360733","江*省赣州市会昌县");countyCodes.put("360734","江*省赣州市寻乌县");countyCodes.put("360735","江*省赣州市石城县");countyCodes.put("360781","江*省赣州市瑞金市");countyCodes.put("360782","江*省赣州市南康市");countyCodes.put("360800","江*省吉安市");countyCodes.put("360801","江*省吉安市");countyCodes.put("360802","江*省吉安市吉州区");countyCodes.put("360803","江*省吉安市青原区");countyCodes.put("360821","江*省吉安市吉安县");countyCodes.put("360822","江*省吉安市吉水县");countyCodes.put("360823","江*省吉安市峡江县");countyCodes.put("360824","江*省吉安市新干县");countyCodes.put("360825","江*省吉安市永丰县");countyCodes.put("360826","江*省吉安市泰和县");countyCodes.put("360827","江*省吉安市遂川县");countyCodes.put("360828","江*省吉安市万安县");countyCodes.put("360829","江*省吉安市安福县");countyCodes.put("360830","江*省吉安市永新县");countyCodes.put("360881","江*省吉安市井冈山市");countyCodes.put("360900","江*省宜春市");countyCodes.put("360901","江*省宜春市");countyCodes.put("360902","江*省宜春市袁州区");countyCodes.put("360921","江*省宜春市奉新县");countyCodes.put("360922","江*省宜春市万载县");countyCodes.put("360923","江*省宜春市上高县");countyCodes.put("360924","江*省宜春市宜丰县");countyCodes.put("371600","山东省滨州市");countyCodes.put("360925","江*省宜春市靖安县");countyCodes.put("410926","河南省濮阳市范县");countyCodes.put("420503","湖北省宜昌市伍家岗区");countyCodes.put("420504","湖北省宜昌市点军区");countyCodes.put("420505","湖北省宜昌市猇亭区");countyCodes.put("420506","湖北省宜昌市夷陵区");countyCodes.put("420525","湖北省宜昌市远安县");countyCodes.put("420526","湖北省宜昌市兴山县");countyCodes.put("420527","湖北省宜昌市秭归县");countyCodes.put("420528","湖北省宜昌市长阳土家族自治县");countyCodes.put("420529","湖北省宜昌市五峰土家族自治县");countyCodes.put("420581","湖北省宜昌市宜都市");countyCodes.put("420582","湖北省宜昌市当阳市");countyCodes.put("420583","湖北省宜昌市枝江市");countyCodes.put("420600","湖北省襄樊市");countyCodes.put("420601","湖北省襄樊市");countyCodes.put("420602","湖北省襄樊市襄城区");countyCodes.put("420606","湖北省襄樊市樊城区");countyCodes.put("420607","湖北省襄樊市襄阳区");countyCodes.put("420624","湖北省襄樊市南漳县");countyCodes.put("420625","湖北省襄樊市谷城县");countyCodes.put("420626","湖北省襄樊市保康县");countyCodes.put("420682","湖北省襄樊市老河口市");countyCodes.put("420683","湖北省襄樊市枣阳市");countyCodes.put("420684","湖北省襄樊市宜城市");countyCodes.put("420700","湖北省鄂州市");countyCodes.put("420701","湖北省鄂州市");countyCodes.put("420702","湖北省鄂州市梁子湖区");countyCodes.put("420703","湖北省鄂州市华容区");countyCodes.put("420704","湖北省鄂州市鄂城区");countyCodes.put("420800","湖北省荆门市");countyCodes.put("420801","湖北省荆门市");countyCodes.put("420802","湖北省荆门市东宝区");countyCodes.put("420804","湖北省荆门市掇刀区");countyCodes.put("420821","湖北省荆门市京山县");countyCodes.put("420822","湖北省荆门市沙洋县");countyCodes.put("420881","湖北省荆门市钟祥市");countyCodes.put("420900","湖北省孝感市");countyCodes.put("420901","湖北省孝感市");countyCodes.put("420902","湖北省孝感市孝南区");countyCodes.put("420921","湖北省孝感市孝昌县");countyCodes.put("420922","湖北省孝感市大悟县");countyCodes.put("420923","湖北省孝感市云梦县");countyCodes.put("420981","湖北省孝感市应城市");countyCodes.put("420982","湖北省孝感市安陆市");countyCodes.put("420984","湖北省孝感市汉川市");countyCodes.put("421000","湖北省荆州市");countyCodes.put("421001","湖北省荆州市");countyCodes.put("421002","湖北省荆州市沙市区");countyCodes.put("421003","湖北省荆州市荆州区");countyCodes.put("421022","湖北省荆州市公安县");countyCodes.put("421023","湖北省荆州市监利县");countyCodes.put("421024","湖北省荆州市江陵县");countyCodes.put("421081","湖北省荆州市石首市");countyCodes.put("421083","湖北省荆州市洪湖市");countyCodes.put("421087","湖北省荆州市松滋市");countyCodes.put("421100","湖北省黄冈市");countyCodes.put("421101","湖北省黄冈市");countyCodes.put("421102","湖北省黄冈市黄州区");countyCodes.put("421121","湖北省黄冈市团风县");countyCodes.put("421122","湖北省黄冈市红安县");countyCodes.put("430381","湖南省湘潭市湘乡市");countyCodes.put("430922","湖南省益阳市桃江县");countyCodes.put("430923","湖南省益阳市安化县");countyCodes.put("430401","湖南省衡阳市");countyCodes.put("430405","湖南省衡阳市珠晖区");countyCodes.put("430406","湖南省衡阳市雁峰区");countyCodes.put("430407","湖南省衡阳市石鼓区");countyCodes.put("430408","湖南省衡阳市蒸湘区");countyCodes.put("430412","湖南省衡阳市南岳区");countyCodes.put("430421","湖南省衡阳市衡阳县");countyCodes.put("430422","湖南省衡阳市衡南县");countyCodes.put("430423","湖南省衡阳市衡山县");countyCodes.put("430424","湖南省衡阳市衡东县");countyCodes.put("430426","湖南省衡阳市祁东县");countyCodes.put("430481","湖南省衡阳市耒阳市");countyCodes.put("430482","湖南省衡阳市常宁市");countyCodes.put("430500","湖南省邵阳市");countyCodes.put("430501","湖南省邵阳市");countyCodes.put("430502","湖南省邵阳市双清区");countyCodes.put("430503","湖南省邵阳市大祥区");countyCodes.put("430511","湖南省邵阳市北塔区");countyCodes.put("430521","湖南省邵阳市邵东县");countyCodes.put("430522","湖南省邵阳市新邵县");countyCodes.put("430523","湖南省邵阳市邵阳县");countyCodes.put("430524","湖南省邵阳市隆回县");countyCodes.put("430525","湖南省邵阳市洞口县");countyCodes.put("430527","湖南省邵阳市绥宁县");countyCodes.put("430528","湖南省邵阳市新宁县");countyCodes.put("430529","湖南省邵阳市城步苗族自治县");countyCodes.put("430581","湖南省邵阳市武冈市");countyCodes.put("430600","湖南省岳阳市");countyCodes.put("430601","湖南省岳阳市");countyCodes.put("430602","湖南省岳阳市岳阳楼区");countyCodes.put("430603","湖南省岳阳市云溪区");countyCodes.put("430611","湖南省岳阳市君山区");countyCodes.put("430621","湖南省岳阳市岳阳县");countyCodes.put("430623","湖南省岳阳市华容县");countyCodes.put("430624","湖南省岳阳市湘阴县");countyCodes.put("430626","湖南省岳阳市*江县");countyCodes.put("430681","湖南省岳阳市汨罗市");countyCodes.put("430682","湖南省岳阳市临湘市");countyCodes.put("430700","湖南省常德市");countyCodes.put("430701","湖南省常德市");countyCodes.put("430702","湖南省常德市武陵区");countyCodes.put("430703","湖南省常德市鼎城区");countyCodes.put("430721","湖南省常德市安乡县");countyCodes.put("430722","湖南省常德市汉寿县");countyCodes.put("430723","湖南省常德市澧县");countyCodes.put("430724","湖南省常德市临澧县");countyCodes.put("430725","湖南省常德市桃源县");countyCodes.put("430726","湖南省常德市石门县");countyCodes.put("430781","湖南省常德市津市市");countyCodes.put("430800","湖南省张家界市");countyCodes.put("320723","江苏省连云港市灌云县");countyCodes.put("320724","江苏省连云港市灌南县");countyCodes.put("320800","江苏省淮安市");countyCodes.put("320801","江苏省淮安市");countyCodes.put("330781","浙江省金华市兰溪市");countyCodes.put("230622","黑龙江省大庆市肇源县");countyCodes.put("230623","黑龙江省大庆市林甸县");countyCodes.put("230624","黑龙江省大庆市杜尔伯特蒙古族自治县");countyCodes.put("230700","黑龙江省伊春市");countyCodes.put("230701","黑龙江省伊春市");countyCodes.put("230702","黑龙江省伊春市伊春区");countyCodes.put("230703","黑龙江省伊春市南岔区");countyCodes.put("230704","黑龙江省伊春市友好区");countyCodes.put("230705","黑龙江省伊春市*林区");countyCodes.put("230706","黑龙江省伊春市翠峦区");countyCodes.put("230707","黑龙江省伊春市新青区");countyCodes.put("230708","黑龙江省伊春市美溪区");countyCodes.put("230709","黑龙江省伊春市金山屯区");countyCodes.put("230710","黑龙江省伊春市五营区");countyCodes.put("230711","黑龙江省伊春市乌马河区");countyCodes.put("230712","黑龙江省伊春市汤旺河区");countyCodes.put("230713","黑龙江省伊春市带岭区");countyCodes.put("230714","黑龙江省伊春市乌伊岭区");countyCodes.put("230715","黑龙江省伊春市红星区");countyCodes.put("230716","黑龙江省伊春市上甘岭区");countyCodes.put("230722","黑龙江省伊春市嘉荫县");countyCodes.put("230781","黑龙江省伊春市铁力市");countyCodes.put("230800","黑龙江省佳木斯市");countyCodes.put("230801","黑龙江省佳木斯市");countyCodes.put("230802","黑龙江省佳木斯市永红区");countyCodes.put("230803","黑龙江省佳木斯市向阳区");countyCodes.put("230804","黑龙江省佳木斯市前进区");countyCodes.put("230805","黑龙江省佳木斯市东风区");countyCodes.put("230811","黑龙江省佳木斯市郊区");countyCodes.put("230822","黑龙江省佳木斯市桦南县");countyCodes.put("230826","黑龙江省佳木斯市桦川县");countyCodes.put("230828","黑龙江省佳木斯市汤原县");countyCodes.put("230833","黑龙江省佳木斯市抚远县");countyCodes.put("230881","黑龙江省佳木斯市同江市");countyCodes.put("230882","黑龙江省佳木斯市富锦市");countyCodes.put("230900","黑龙江省七台河市");countyCodes.put("230901","黑龙江省七台河市");countyCodes.put("230902","黑龙江省七台河市新兴区");countyCodes.put("230903","黑龙江省七台河市桃山区");countyCodes.put("230904","黑龙江省七台河市茄子河区");countyCodes.put("230921","黑龙江省七台河市勃利县");countyCodes.put("231000","黑龙江省牡丹江市");countyCodes.put("231001","黑龙江省牡丹江市");countyCodes.put("231002","黑龙江省牡丹江市东安区");countyCodes.put("231003","黑龙江省牡丹江市阳明区");countyCodes.put("231004","黑龙江省牡丹江市爱民区");countyCodes.put("231005","黑龙江省牡丹江市*安区");countyCodes.put("231024","黑龙江省牡丹江市东宁县");countyCodes.put("231025","黑龙江省牡丹江市林口县");countyCodes.put("231081","黑龙江省牡丹江市绥芬河市");countyCodes.put("231083","黑龙江省牡丹江市海林市");countyCodes.put("231084","黑龙江省牡丹江市宁安市");countyCodes.put("231085","黑龙江省牡丹江市穆棱市");countyCodes.put("231100","黑龙江省黑河市");countyCodes.put("231101","黑龙江省黑河市");countyCodes.put("231102","黑龙江省黑河市爱辉区");countyCodes.put("231121","黑龙江省黑河市嫩江县");countyCodes.put("360403","江*省九江市浔阳区");countyCodes.put("231124","黑龙江省黑河市孙吴县");countyCodes.put("231181","黑龙江省黑河市北安市");countyCodes.put("231182","黑龙江省黑河市五大连池市");countyCodes.put("231200","黑龙江省绥化市");countyCodes.put("231201","黑龙江省绥化市");countyCodes.put("231202","黑龙江省绥化市北林区");countyCodes.put("231221","黑龙江省绥化市望奎县");countyCodes.put("231222","黑龙江省绥化市兰*县");countyCodes.put("231223","黑龙江省绥化市青冈县");countyCodes.put("231224","黑龙江省绥化市庆安县");countyCodes.put("231225","黑龙江省绥化市明水县");countyCodes.put("231226","黑龙江省绥化市绥棱县");countyCodes.put("231281","黑龙江省绥化市安达市");countyCodes.put("231282","黑龙江省绥化市肇东市");countyCodes.put("231283","黑龙江省绥化市海伦市");countyCodes.put("232700","黑龙江省大兴安岭地区");countyCodes.put("232721","黑龙江省大兴安岭地区呼玛县");countyCodes.put("232722","黑龙江省大兴安岭地区塔河县");countyCodes.put("232723","黑龙江省大兴安岭地区漠河县");countyCodes.put("310000","上海市");countyCodes.put("310100","上海市");countyCodes.put("310101","上海市黄浦区");countyCodes.put("310103","上海市卢湾区");countyCodes.put("310104","上海市徐汇区");countyCodes.put("310105","上海市长宁区");countyCodes.put("310106","上海市静安区");countyCodes.put("310107","上海市普陀区");countyCodes.put("310108","上海市闸北区");countyCodes.put("310109","上海市虹口区");countyCodes.put("310110","上海市杨浦区");countyCodes.put("310112","上海市闵行区");countyCodes.put("310113","上海市宝山区");countyCodes.put("310114","上海市嘉定区");countyCodes.put("310115","上海市浦东新区");countyCodes.put("310116","上海市金山区");countyCodes.put("310117","上海市松江区");countyCodes.put("310118","上海市青浦区");countyCodes.put("310119","上海市南汇区");countyCodes.put("310120","上海市奉贤区");countyCodes.put("310200","上海市");countyCodes.put("310230","上海市崇明县");countyCodes.put("320000","江苏省");countyCodes.put("429021","湖北省神农架林区");countyCodes.put("430000","湖南省");countyCodes.put("430100","湖南省长沙市");countyCodes.put("430101","湖南省长沙市");countyCodes.put("430102","湖南省长沙市芙蓉区");countyCodes.put("430103","湖南省长沙市天心区");countyCodes.put("430104","湖南省长沙市岳麓区");countyCodes.put("430105","湖南省长沙市开福区");countyCodes.put("430111","湖南省长沙市雨花区");countyCodes.put("430121","湖南省长沙市长沙县");countyCodes.put("430122","湖南省长沙市望城县");countyCodes.put("430124","湖南省长沙市宁乡县");countyCodes.put("430181","湖南省长沙市浏阳市");countyCodes.put("430200","湖南省株洲市");countyCodes.put("430201","湖南省株洲市");countyCodes.put("430202","湖南省株洲市荷塘区");countyCodes.put("430203","湖南省株洲市芦淞区");countyCodes.put("430204","湖南省株洲市石峰区");countyCodes.put("430211","湖南省株洲市天元区");countyCodes.put("430221","湖南省株洲市株洲县");countyCodes.put("430223","湖南省株洲市攸县");countyCodes.put("430224","湖南省株洲市茶陵县");countyCodes.put("430225","湖南省株洲市炎陵县");countyCodes.put("430281","湖南省株洲市醴陵市");countyCodes.put("430300","湖南省湘潭市");countyCodes.put("430301","湖南省湘潭市");countyCodes.put("430302","湖南省湘潭市雨湖区");countyCodes.put("430304","湖南省湘潭市岳塘区");countyCodes.put("430321","湖南省湘潭市湘潭县");countyCodes.put("420500","湖北省宜昌市");countyCodes.put("411525","河南省信阳市固始县");countyCodes.put("411526","河南省信阳市潢川县");countyCodes.put("411527","河南省信阳市淮滨县");countyCodes.put("411528","河南省信阳市息县");countyCodes.put("411600","河南省周口市");countyCodes.put("411601","河南省周口市");countyCodes.put("411602","河南省周口市川汇区");countyCodes.put("411621","河南省周口市扶沟县");countyCodes.put("411622","河南省周口市*华县");countyCodes.put("411623","河南省周口市商水县");countyCodes.put("411624","河南省周口市沈丘县");countyCodes.put("411625","河南省周口市郸城县");countyCodes.put("411626","河南省周口市淮阳县");countyCodes.put("411627","河南省周口市太康县");countyCodes.put("411628","河南省周口市鹿邑县");countyCodes.put("411681","河南省周口市项城市");countyCodes.put("411700","河南省驻马店市");countyCodes.put("411701","河南省驻马店市");countyCodes.put("411702","河南省驻马店市驿城区");countyCodes.put("411721","河南省驻马店市**县");countyCodes.put("411722","河南省驻马店市上蔡县");countyCodes.put("411723","河南省驻马店市*舆县");countyCodes.put("411724","河南省驻马店市正阳县");countyCodes.put("411725","河南省驻马店市确山县");countyCodes.put("411726","河南省驻马店市泌阳县");countyCodes.put("411727","河南省驻马店市汝南县");countyCodes.put("411728","河南省驻马店市遂*县");countyCodes.put("411729","河南省驻马店市新蔡县");countyCodes.put("420000","湖北省");countyCodes.put("40","湖北省武汉市");countyCodes.put("41","湖北省武汉市");countyCodes.put("42","湖北省武汉市江岸区");countyCodes.put("43","湖北省武汉市江汉区");countyCodes.put("44","湖北省武汉市乔口区");countyCodes.put("45","湖北省武汉市汉阳区");countyCodes.put("46","湖北省武汉市武昌区");countyCodes.put("47","湖北省武汉市青山区");countyCodes.put("41","湖北省武汉市洪山区");countyCodes.put("42","湖北省武汉市东*湖区");countyCodes.put("43","湖北省武汉市汉南区");countyCodes.put("44","湖北省武汉市蔡甸区");countyCodes.put("45","湖北省武汉市江夏区");countyCodes.put("46","湖北省武汉市黄陂区");countyCodes.put("47","湖北省武汉市新洲区");countyCodes.put("40","湖北省黄石市");countyCodes.put("41","湖北省黄石市");countyCodes.put("42","湖北省黄石市黄石港区");countyCodes.put("43","湖北省黄石市*塞山区");countyCodes.put("44","湖北省黄石市下陆区");countyCodes.put("45","湖北省黄石市铁山区");countyCodes.put("42","湖北省黄石市阳新县");countyCodes.put("420281","湖北省黄石市大冶市");countyCodes.put("420300","湖北省十堰市");countyCodes.put("420301","湖北省十堰市");countyCodes.put("420302","湖北省十堰市茅箭区");countyCodes.put("420303","湖北省十堰市张湾区");countyCodes.put("420321","湖北省十堰市郧县");countyCodes.put("420322","湖北省十堰市郧*县");countyCodes.put("420323","湖北省十堰市竹山县");countyCodes.put("420324","湖北省十堰市竹溪县");countyCodes.put("420325","湖北省十堰市房县");countyCodes.put("420381","湖北省十堰市丹江口市");countyCodes.put("420501","湖北省宜昌市");countyCodes.put("430400","湖南省衡阳市");countyCodes.put("410401","河南省*顶山市");countyCodes.put("410402","河南省*顶山市新华区");countyCodes.put("410403","河南省*顶山市卫东区");countyCodes.put("410404","河南省*顶山市石龙区");countyCodes.put("410411","河南省*顶山市湛河区");countyCodes.put("410421","河南省*顶山市宝丰县");countyCodes.put("410422","河南省*顶山市叶县");countyCodes.put("410423","河南省*顶山市鲁山县");countyCodes.put("410425","河南省*顶山市郏县");countyCodes.put("410481","河南省*顶山市舞钢市");countyCodes.put("410482","河南省*顶山市汝州市");countyCodes.put("410500","河南省安阳市");countyCodes.put("410501","河南省安阳市");countyCodes.put("410502","河南省安阳市文峰区");countyCodes.put("410503","河南省安阳市北关区");countyCodes.put("410505","河南省安阳市殷都区");countyCodes.put("410506","河南省安阳市龙安区");countyCodes.put("410522","河南省安阳市安阳县");countyCodes.put("410523","河南省安阳市汤阴县");countyCodes.put("410526","河南省安阳市滑县");countyCodes.put("410527","河南省安阳市内黄县");countyCodes.put("410581","河南省安阳市林州市");countyCodes.put("410600","河南省鹤壁市");countyCodes.put("410601","河南省鹤壁市");countyCodes.put("410602","河南省鹤壁市鹤山区");countyCodes.put("410603","河南省鹤壁市山城区");countyCodes.put("410611","河南省鹤壁市淇滨区");countyCodes.put("410621","河南省鹤壁市浚县");countyCodes.put("410622","河南省鹤壁市淇县");countyCodes.put("410700","河南省新乡市");countyCodes.put("410701","河南省新乡市");countyCodes.put("410702","河南省新乡市红旗区");countyCodes.put("410703","河南省新乡市卫滨区");countyCodes.put("410704","河南省新乡市凤泉区");countyCodes.put("410711","河南省新乡市牧野区");countyCodes.put("410721","河南省新乡市新乡县");countyCodes.put("410724","河南省新乡市获嘉县");countyCodes.put("410725","河南省新乡市原阳县");countyCodes.put("410726","河南省新乡市延津县");countyCodes.put("410727","河南省新乡市封丘县");countyCodes.put("410728","河南省新乡市长垣县");countyCodes.put("410781","河南省新乡市卫辉市");countyCodes.put("410782","河南省新乡市辉县市");countyCodes.put("410800","河南省焦作市");countyCodes.put("410801","河南省焦作市");countyCodes.put("410802","河南省焦作市解放区");countyCodes.put("410803","河南省焦作市中站区");countyCodes.put("410804","河南省焦作市马村区");countyCodes.put("410811","河南省焦作市山阳区");countyCodes.put("410821","河南省焦作市修武县");countyCodes.put("410822","河南省焦作市博爱县");countyCodes.put("410823","河南省焦作市武陟县");countyCodes.put("410825","河南省焦作市温县");countyCodes.put("410881","河南省焦作市济源市");countyCodes.put("410882","河南省焦作市沁阳市");countyCodes.put("410883","河南省焦作市孟州市");countyCodes.put("410900","河南省濮阳市");countyCodes.put("410901","河南省濮阳市");countyCodes.put("410902","河南省濮阳市华龙区");countyCodes.put("410922","河南省濮阳市清丰县");countyCodes.put("430382","湖南省湘潭市韶山市");countyCodes.put("421124","湖北省黄冈市英山县");countyCodes.put("410927","河南省濮阳市台前县");countyCodes.put("410928","河南省濮阳市濮阳县");countyCodes.put("411000","河南省许昌市");countyCodes.put("411001","河南省许昌市");countyCodes.put("411002","河南省许昌市魏都区");countyCodes.put("411023","河南省许昌市许昌县");countyCodes.put("411024","河南省许昌市鄢陵县");countyCodes.put("411025","河南省许昌市襄城县");countyCodes.put("411081","河南省许昌市禹州市");countyCodes.put("411082","河南省许昌市长葛市");countyCodes.put("411100","河南省漯河市");countyCodes.put("411101","河南省漯河市");countyCodes.put("411102","河南省漯河市源汇区");countyCodes.put("411103","河南省漯河市郾城区");countyCodes.put("411104","河南省漯河市召陵区");countyCodes.put("411121","河南省漯河市舞阳县");countyCodes.put("411122","河南省漯河市临颍县");countyCodes.put("411200","河南省三门峡市");countyCodes.put("411201","河南省三门峡市");countyCodes.put("411202","河南省三门峡市湖滨区");countyCodes.put("411221","河南省三门峡市渑池县");countyCodes.put("411222","河南省三门峡市陕县");countyCodes.put("411224","河南省三门峡市卢氏县");countyCodes.put("411281","河南省三门峡市义马市");countyCodes.put("411282","河南省三门峡市灵宝市");countyCodes.put("411300","河南省南阳市");countyCodes.put("411301","河南省南阳市");countyCodes.put("411302","河南省南阳市宛城区");countyCodes.put("411303","河南省南阳市卧龙区");countyCodes.put("411321","河南省南阳市南召县");countyCodes.put("411322","河南省南阳市方城县");countyCodes.put("411323","河南省南阳市*峡县");countyCodes.put("411324","河南省南阳市镇*县");countyCodes.put("411325","河南省南阳市内乡县");countyCodes.put("411326","河南省南阳市淅川县");countyCodes.put("411327","河南省南阳市社旗县");countyCodes.put("411328","河南省南阳市唐河县");countyCodes.put("411329","河南省南阳市新野县");countyCodes.put("411330","河南省南阳市桐柏县");countyCodes.put("411381","河南省南阳市邓州市");countyCodes.put("411400","河南省商丘市");countyCodes.put("411401","河南省商丘市");countyCodes.put("411402","河南省商丘市梁园区");countyCodes.put("411403","河南省商丘市睢阳区");countyCodes.put("411421","河南省商丘市民权县");countyCodes.put("411422","河南省商丘市睢县");countyCodes.put("411423","河南省商丘市宁陵县");countyCodes.put("411424","河南省商丘市柘城县");countyCodes.put("411425","河南省商丘市虞城县");countyCodes.put("411426","河南省商丘市夏邑县");countyCodes.put("411481","河南省商丘市永城市");countyCodes.put("411500","河南省信阳市");countyCodes.put("411501","河南省信阳市");countyCodes.put("411502","河南省信阳市师河区");countyCodes.put("411503","河南省信阳市*桥区");countyCodes.put("411521","河南省信阳市罗山县");countyCodes.put("411522","河南省信阳市光山县");countyCodes.put("411523","河南省信阳市新县");countyCodes.put("411524","河南省信阳市商城县");countyCodes.put("440100","广东省广州市");countyCodes.put("440101","广东省广州市");countyCodes.put("410381","河南省洛阳市偃师市");countyCodes.put("410400","河南省*顶山市");countyCodes.put("510704","四川省绵阳市游仙区");countyCodes.put("510722","四川省绵阳市三台县");countyCodes.put("510723","四川省绵阳市盐亭县");countyCodes.put("510724","四川省绵阳市安县");countyCodes.put("510725","四川省绵阳市梓潼县");countyCodes.put("510726","四川省绵阳市北川羌族自治县");countyCodes.put("510727","四川省绵阳市*武县");countyCodes.put("510781","四川省绵阳市江油市");countyCodes.put("510800","四川省广元市");countyCodes.put("510801","四川省广元市");countyCodes.put("510802","四川省广元市市中区");countyCodes.put("510811","四川省广元市元坝区");countyCodes.put("510812","四川省广元市朝天区");countyCodes.put("510821","四川省广元市旺苍县");countyCodes.put("510822","四川省广元市青川县");countyCodes.put("510823","四川省广元市剑阁县");countyCodes.put("510824","四川省广元市苍溪县");countyCodes.put("510900","四川省遂宁市");countyCodes.put("510901","四川省遂宁市");countyCodes.put("510903","四川省遂宁市船山区");countyCodes.put("510904","四川省遂宁市安居区");countyCodes.put("510921","四川省遂宁市蓬溪县");countyCodes.put("510922","四川省遂宁市射洪县");countyCodes.put("510923","四川省遂宁市大英县");countyCodes.put("511000","四川省内江市");countyCodes.put("511001","四川省内江市");countyCodes.put("511002","四川省内江市市中区");countyCodes.put("511011","四川省内江市东兴区");countyCodes.put("511024","四川省内江市威远县");countyCodes.put("511025","四川省内江市资中县");countyCodes.put("511028","四川省内江市隆昌县");countyCodes.put("511100","四川省乐山市");countyCodes.put("511101","四川省乐山市");countyCodes.put("511102","四川省乐山市市中区");countyCodes.put("511111","四川省乐山市沙湾区");countyCodes.put("511112","四川省乐山市五通桥区");countyCodes.put("511113","四川省乐山市金口河区");countyCodes.put("511123","四川省乐山市犍为县");countyCodes.put("511124","四川省乐山市井研县");countyCodes.put("511126","四川省乐山市夹江县");countyCodes.put("511129","四川省乐山市沐川县");countyCodes.put("511132","四川省乐山市峨边彝族自治县");countyCodes.put("511133","四川省乐山市马边彝族自治县");countyCodes.put("511181","四川省乐山市峨眉山市");countyCodes.put("511300","四川省南充市");countyCodes.put("370826","山东省济宁市微山县");countyCodes.put("370827","山东省济宁市鱼台县");countyCodes.put("370828","山东省济宁市金乡县");countyCodes.put("370829","山东省济宁市嘉祥县");countyCodes.put("370830","山东省济宁市汶上县");countyCodes.put("370831","山东省济宁市泗水县");countyCodes.put("370832","山东省济宁市梁山县");countyCodes.put("370881","山东省济宁市曲阜市");countyCodes.put("350111","福建省福州市*安区");countyCodes.put("350121","福建省福州市闽侯县");countyCodes.put("350122","福建省福州市连江县");countyCodes.put("350123","福建省福州市罗源县");countyCodes.put("350124","福建省福州市闽清县");countyCodes.put("350125","福建省福州市永泰县");countyCodes.put("350128","福建省福州市*潭县");countyCodes.put("350181","福建省福州市福清市");countyCodes.put("350182","福建省福州市长乐市");countyCodes.put("350200","福建省厦门市");countyCodes.put("350201","福建省厦门市");countyCodes.put("350203","福建省厦门市思明区");countyCodes.put("350205","福建省厦门市海沧区");countyCodes.put("350206","福建省厦门市湖里区");countyCodes.put("350211","福建省厦门市集美区");countyCodes.put("350212","福建省厦门市同安区");countyCodes.put("350213","福建省厦门市翔安区");countyCodes.put("350300","福建省莆田市");countyCodes.put("350301","福建省莆田市");countyCodes.put("350302","福建省莆田市城厢区");countyCodes.put("350303","福建省莆田市涵江区");countyCodes.put("350304","福建省莆田市荔城区");countyCodes.put("350305","福建省莆田市秀屿区");countyCodes.put("350322","福建省莆田市仙游县");countyCodes.put("350400","福建省三明市");countyCodes.put("350401","福建省三明市");countyCodes.put("350402","福建省三明市梅列区");countyCodes.put("350403","福建省三明市三元区");countyCodes.put("350421","福建省三明市明溪县");countyCodes.put("350423","福建省三明市清流县");countyCodes.put("350424","福建省三明市宁化县");countyCodes.put("350425","福建省三明市大田县");countyCodes.put("350426","福建省三明市尤溪县");countyCodes.put("350427","福建省三明市沙县");countyCodes.put("350428","福建省三明市将乐县");countyCodes.put("350429","福建省三明市泰宁县");countyCodes.put("350430","福建省三明市建宁县");countyCodes.put("350481","福建省三明市永安市");countyCodes.put("350500","福建省泉州市");countyCodes.put("350501","福建省泉州市");countyCodes.put("350502","福建省泉州市鲤城区");countyCodes.put("350503","福建省泉州市丰泽区");countyCodes.put("350504","福建省泉州市洛江区");countyCodes.put("350505","福建省泉州市泉港区");countyCodes.put("350521","福建省泉州市惠安县");countyCodes.put("350524","福建省泉州市安溪县");countyCodes.put("350525","福建省泉州市永春县");countyCodes.put("350526","福建省泉州市德化县");countyCodes.put("350527","福建省泉州市金门县");countyCodes.put("350581","福建省泉州市石狮市");countyCodes.put("350582","福建省泉州市*江市");countyCodes.put("350583","福建省泉州市南安市");countyCodes.put("350600","福建省漳州市");countyCodes.put("350601","福建省漳州市");countyCodes.put("350602","福建省漳州市芗城区");countyCodes.put("350603","福建省漳州市龙文区");countyCodes.put("350622","福建省漳州市云霄县");countyCodes.put("350623","福建省漳州市漳浦县");countyCodes.put("350624","福建省漳州市诏安县");countyCodes.put("350625","福建省漳州市长泰县");countyCodes.put("350626","福建省漳州市东山县");countyCodes.put("350627","福建省漳州市南靖县");countyCodes.put("341200","安徽省阜阳市");countyCodes.put("341201","安徽省阜阳市");countyCodes.put("341202","安徽省阜阳市颍州区");countyCodes.put("341203","安徽省阜阳市颍东区");countyCodes.put("341204","安徽省阜阳市颍泉区");countyCodes.put("341221","安徽省阜阳市临泉县");countyCodes.put("341222","安徽省阜阳市太和县");countyCodes.put("341225","安徽省阜阳市阜南县");countyCodes.put("341226","安徽省阜阳市颍上县");countyCodes.put("341282","安徽省阜阳市界首市");countyCodes.put("341300","安徽省宿州市");countyCodes.put("341301","安徽省宿州市");countyCodes.put("341302","安徽省宿州市墉桥区");countyCodes.put("341321","安徽省宿州市砀山县");countyCodes.put("341322","安徽省宿州市萧县");countyCodes.put("341323","安徽省宿州市灵璧县");countyCodes.put("341324","安徽省宿州市泗县");countyCodes.put("341400","安徽省巢湖市");countyCodes.put("341401","安徽省巢湖市");countyCodes.put("341402","安徽省巢湖市居巢区");countyCodes.put("341421","安徽省巢湖市庐江县");countyCodes.put("341422","安徽省巢湖市无为县");countyCodes.put("341423","安徽省巢湖市含山县");countyCodes.put("341424","安徽省巢湖市和县");countyCodes.put("341500","安徽省六安市");countyCodes.put("341501","安徽省六安市");countyCodes.put("341502","安徽省六安市金安区");countyCodes.put("341503","安徽省六安市裕安区");countyCodes.put("341521","安徽省六安市寿县");countyCodes.put("341522","安徽省六安市霍邱县");countyCodes.put("341523","安徽省六安市舒城县");countyCodes.put("341524","安徽省六安市金寨县");countyCodes.put("341525","安徽省六安市霍山县");countyCodes.put("341600","安徽省亳州市");countyCodes.put("341601","安徽省亳州市");countyCodes.put("341602","安徽省亳州市谯城区");countyCodes.put("445301","广东省云浮市");countyCodes.put("445302","广东省云浮市云城区");countyCodes.put("445321","广东省云浮市新兴县");countyCodes.put("445322","广东省云浮市郁南县");countyCodes.put("445323","广东省云浮市云安县");countyCodes.put("445381","广东省云浮市罗定市");countyCodes.put("450000","广*壮族自治区");countyCodes.put("450100","广*壮族自治区南宁市");countyCodes.put("450101","广*壮族自治区南宁市");countyCodes.put("450102","广*壮族自治区南宁市兴宁区");countyCodes.put("450103","广*壮族自治区南宁市青秀区");countyCodes.put("450105","广*壮族自治区南宁市江南区");countyCodes.put("450107","广*壮族自治区南宁市*乡塘区");countyCodes.put("450108","广*壮族自治区南宁市良庆区");countyCodes.put("450109","广*壮族自治区南宁市邕宁区");countyCodes.put("450122","广*壮族自治区南宁市武鸣县");countyCodes.put("450123","广*壮族自治区南宁市隆安县");countyCodes.put("450124","广*壮族自治区南宁市马山县");countyCodes.put("450125","广*壮族自治区南宁市上林县");countyCodes.put("450126","广*壮族自治区南宁市宾阳县");countyCodes.put("450127","广*壮族自治区南宁市横县");countyCodes.put("450200","广*壮族自治区柳州市");countyCodes.put("450201","广*壮族自治区柳州市");countyCodes.put("450202","广*壮族自治区柳州市城中区");countyCodes.put("450203","广*壮族自治区柳州市鱼峰区");countyCodes.put("450204","广*壮族自治区柳州市柳南区");countyCodes.put("450205","广*壮族自治区柳州市柳北区");countyCodes.put("450221","广*壮族自治区柳州市柳江县");countyCodes.put("450222","广*壮族自治区柳州市柳城县");countyCodes.put("450223","广*壮族自治区柳州市鹿寨县");countyCodes.put("460105","海南省海口市秀英区");countyCodes.put("522625","贵州省黔东南苗族侗族自治州镇远县");countyCodes.put("460107","海南省海口市琼山区");countyCodes.put("460108","海南省海口市美兰区");countyCodes.put("460200","海南省三亚市");countyCodes.put("460201","海南省三亚市");countyCodes.put("469000","海南省省直辖县级行政单位");countyCodes.put("469001","海南省五指山市");countyCodes.put("469002","海南省琼海市");countyCodes.put("469003","海南省儋州市");countyCodes.put("469005","海南省文昌市");countyCodes.put("469006","海南省万宁市");countyCodes.put("469007","海南省东方市");countyCodes.put("469025","海南省定安县");countyCodes.put("469026","海南省屯昌县");countyCodes.put("469027","海南省澄迈县");countyCodes.put("469028","海南省临高县");countyCodes.put("469030","海南省白沙黎族自治县");countyCodes.put("469031","海南省昌江黎族自治县");countyCodes.put("469033","海南省乐东黎族自治县");countyCodes.put("469034","海南省陵水黎族自治县");countyCodes.put("469035","海南省保亭黎族苗族自治县");countyCodes.put("469036","海南省琼中黎族苗族自治县");countyCodes.put("469037","海南省*沙群岛");countyCodes.put("469038","海南省南沙群岛");countyCodes.put("469039","海南省中沙群岛的岛礁及其海域");countyCodes.put("500000","重庆市");countyCodes.put("500100","重庆市");countyCodes.put("500101","重庆市万州区");countyCodes.put("500102","重庆市涪陵区");countyCodes.put("500103","重庆市渝中区");countyCodes.put("500104","重庆市大渡口区");countyCodes.put("500105","重庆市江北区");countyCodes.put("500106","重庆市沙坪坝区");countyCodes.put("500107","重庆市九龙坡区");countyCodes.put("500108","重庆市南岸区");countyCodes.put("500109","重庆市北碚区");countyCodes.put("500110","重庆市万盛区");countyCodes.put("500111","重庆市双桥区");countyCodes.put("500112","重庆市渝北区");countyCodes.put("500113","重庆市巴南区");countyCodes.put("500114","重庆市黔江区");countyCodes.put("500115","重庆市长寿区");countyCodes.put("500200","重庆市");countyCodes.put("500222","重庆市綦江县");countyCodes.put("500223","重庆市潼南县");countyCodes.put("500224","重庆市铜梁县");countyCodes.put("500225","重庆市大足县");countyCodes.put("500226","重庆市荣昌县");countyCodes.put("500227","重庆市璧山县");countyCodes.put("500228","重庆市梁*县");countyCodes.put("500229","重庆市城口县");countyCodes.put("500230","重庆市丰都县");countyCodes.put("500231","重庆市垫江县");countyCodes.put("500232","重庆市武隆县");countyCodes.put("500233","重庆市忠县");countyCodes.put("500234","重庆市开县");countyCodes.put("500235","重庆市云阳县");countyCodes.put("500236","重庆市奉节县");countyCodes.put("500237","重庆市巫山县");countyCodes.put("500238","重庆市巫溪县");countyCodes.put("500240","重庆市石柱土家族自治县");countyCodes.put("440783","广东省江门市开*市");countyCodes.put("450901","广*壮族自治区玉林市");countyCodes.put("440785","广东省江门市恩*市");countyCodes.put("440800","广东省湛江市");countyCodes.put("440801","广东省湛江市");countyCodes.put("440802","广东省湛江市赤坎区");countyCodes.put("440803","广东省湛江市霞山区");countyCodes.put("440804","广东省湛江市坡头区");countyCodes.put("440811","广东省湛江市麻章区");countyCodes.put("440823","广东省湛江市遂溪县");countyCodes.put("440825","广东省湛江市徐闻县");countyCodes.put("440881","广东省湛江市廉江市");countyCodes.put("440882","广东省湛江市雷州市");countyCodes.put("440883","广东省湛江市吴川市");countyCodes.put("440900","广东省茂名市");countyCodes.put("440901","广东省茂名市");countyCodes.put("440902","广东省茂名市茂南区");countyCodes.put("440903","广东省茂名市茂港区");countyCodes.put("440923","广东省茂名市电白县");countyCodes.put("440981","广东省茂名市高州市");countyCodes.put("440982","广东省茂名市化州市");countyCodes.put("440983","广东省茂名市信宜市");countyCodes.put("441200","广东省肇庆市");countyCodes.put("441201","广东省肇庆市");countyCodes.put("441202","广东省肇庆市端州区");countyCodes.put("441203","广东省肇庆市鼎湖区");countyCodes.put("441223","广东省肇庆市广宁县");countyCodes.put("441224","广东省肇庆市怀集县");countyCodes.put("441225","广东省肇庆市封开县");countyCodes.put("441226","广东省肇庆市德庆县");countyCodes.put("441283","广东省肇庆市高要市");countyCodes.put("441284","广东省肇庆市四会市");countyCodes.put("441300","广东省惠州市");countyCodes.put("441301","广东省惠州市");countyCodes.put("441302","广东省惠州市惠城区");countyCodes.put("441303","广东省惠州市惠阳区");countyCodes.put("441322","广东省惠州市博罗县");countyCodes.put("441323","广东省惠州市惠东县");countyCodes.put("441324","广东省惠州市龙门县");countyCodes.put("441400","广东省梅州市");countyCodes.put("441401","广东省梅州市");countyCodes.put("441402","广东省梅州市梅江区");countyCodes.put("441421","广东省梅州市梅县");countyCodes.put("441422","广东省梅州市大埔县");countyCodes.put("441423","广东省梅州市丰顺县");countyCodes.put("441424","广东省梅州市五华县");countyCodes.put("441426","广东省梅州市*远县");countyCodes.put("441427","广东省梅州市蕉岭县");countyCodes.put("441481","广东省梅州市兴宁市");countyCodes.put("441500","广东省汕尾市");countyCodes.put("441501","广东省汕尾市");countyCodes.put("441502","广东省汕尾市城区");countyCodes.put("441521","广东省汕尾市海丰县");countyCodes.put("441523","广东省汕尾市陆河县");countyCodes.put("441581","广东省汕尾市陆丰市");countyCodes.put("441600","广东省河源市");countyCodes.put("441601","广东省河源市");countyCodes.put("441602","广东省河源市源城区");countyCodes.put("441621","广东省河源市紫金县");countyCodes.put("441622","广东省河源市龙川县");countyCodes.put("441623","广东省河源市连*县");countyCodes.put("441624","广东省河源市和*县");countyCodes.put("441625","广东省河源市东源县");countyCodes.put("450224","广*壮族自治区柳州市融安县");countyCodes.put("500243","重庆市彭水苗族土家族自治县");countyCodes.put("500300","重庆市");countyCodes.put("440105","广东省广州市海珠区");countyCodes.put("440106","广东省广州市天河区");countyCodes.put("440107","广东省广州市芳村区");countyCodes.put("440111","广东省广州市白云区");countyCodes.put("440112","广东省广州市黄埔区");countyCodes.put("440113","广东省广州市番禺区");countyCodes.put("440114","广东省广州市花都区");countyCodes.put("440183","广东省广州市增城市");countyCodes.put("440184","广东省广州市从化市");countyCodes.put("440200","广东省韶关市");countyCodes.put("440201","广东省韶关市");countyCodes.put("440203","广东省韶关市武江区");countyCodes.put("440204","广东省韶关市浈江区");countyCodes.put("440205","广东省韶关市曲江区");countyCodes.put("440222","广东省韶关市始兴县");countyCodes.put("440224","广东省韶关市仁化县");countyCodes.put("440229","广东省韶关市翁源县");countyCodes.put("440232","广东省韶关市乳源瑶族自治县");countyCodes.put("440233","广东省韶关市新丰县");countyCodes.put("440281","广东省韶关市乐昌市");countyCodes.put("440282","广东省韶关市南雄市");countyCodes.put("440300","广东省深圳市");countyCodes.put("440301","广东省深圳市");countyCodes.put("440303","广东省深圳市罗湖区");countyCodes.put("440304","广东省深圳市福田区");countyCodes.put("440305","广东省深圳市南山区");countyCodes.put("440306","广东省深圳市宝安区");countyCodes.put("440307","广东省深圳市龙岗区");countyCodes.put("440308","广东省深圳市盐田区");countyCodes.put("440400","广东省珠海市");countyCodes.put("440401","广东省珠海市");countyCodes.put("440402","广东省珠海市香洲区");countyCodes.put("440403","广东省珠海市斗门区");countyCodes.put("440404","广东省珠海市金湾区");countyCodes.put("440500","广东省汕头市");countyCodes.put("440501","广东省汕头市");countyCodes.put("440507","广东省汕头市龙湖区");countyCodes.put("440511","广东省汕头市金*区");countyCodes.put("440512","广东省汕头市濠江区");countyCodes.put("440513","广东省汕头市潮阳区");countyCodes.put("440514","广东省汕头市潮南区");countyCodes.put("440515","广东省汕头市澄海区");countyCodes.put("440523","广东省汕头市南澳县");countyCodes.put("440600","广东省佛山市");countyCodes.put("440601","广东省佛山市");countyCodes.put("440604","广东省佛山市禅城区");countyCodes.put("440605","广东省佛山市南海区");countyCodes.put("440606","广东省佛山市顺德区");countyCodes.put("440607","广东省佛山市三水区");countyCodes.put("440608","广东省佛山市高明区");countyCodes.put("440700","广东省江门市");countyCodes.put("440701","广东省江门市");countyCodes.put("440703","广东省江门市蓬江区");countyCodes.put("440704","广东省江门市江海区");countyCodes.put("440705","广东省江门市新会区");countyCodes.put("440781","广东省江门市台山市");countyCodes.put("460100","海南省海口市");countyCodes.put("460101","海南省海口市");countyCodes.put("500241","重庆市秀山土家族苗族自治县");countyCodes.put("500242","重庆市酉阳土家族苗族自治县");countyCodes.put("441701","广东省阳江市");countyCodes.put("450921","广*壮族自治区玉林市容县");countyCodes.put("450922","广*壮族自治区玉林市陆川县");countyCodes.put("450923","广*壮族自治区玉林市博白县");countyCodes.put("450924","广*壮族自治区玉林市兴业县");countyCodes.put("450981","广*壮族自治区玉林市北流市");countyCodes.put("451000","广*壮族自治区百色市");countyCodes.put("451001","广*壮族自治区百色市");countyCodes.put("451002","广*壮族自治区百色市右江区");countyCodes.put("451021","广*壮族自治区百色市田阳县");countyCodes.put("451022","广*壮族自治区百色市田东县");countyCodes.put("451023","广*壮族自治区百色市*果县");countyCodes.put("451024","广*壮族自治区百色市德保县");countyCodes.put("451025","广*壮族自治区百色市靖*县");countyCodes.put("451026","广*壮族自治区百色市那坡县");countyCodes.put("451027","广*壮族自治区百色市凌云县");countyCodes.put("451028","广*壮族自治区百色市乐业县");countyCodes.put("451029","广*壮族自治区百色市田林县");countyCodes.put("451030","广*壮族自治区百色市*林县");countyCodes.put("451031","广*壮族自治区百色市隆林各族自治县");countyCodes.put("451100","广*壮族自治区贺州市");countyCodes.put("451101","广*壮族自治区贺州市");countyCodes.put("451102","广*壮族自治区贺州市八步区");countyCodes.put("451121","广*壮族自治区贺州市昭*县");countyCodes.put("451122","广*壮族自治区贺州市钟山县");countyCodes.put("451123","广*壮族自治区贺州市富川瑶族自治县");countyCodes.put("451200","广*壮族自治区河池市");countyCodes.put("451201","广*壮族自治区河池市");countyCodes.put("451202","广*壮族自治区河池市金城江区");countyCodes.put("451221","广*壮族自治区河池市南丹县");countyCodes.put("451222","广*壮族自治区河池市天峨县");countyCodes.put("451223","广*壮族自治区河池市凤山县");countyCodes.put("451224","广*壮族自治区河池市东兰县");countyCodes.put("451225","广*壮族自治区河池市罗城仫佬族自治县");countyCodes.put("451226","广*壮族自治区河池市环江毛南族自治县");countyCodes.put("451227","广*壮族自治区河池市巴马瑶族自治县");countyCodes.put("451228","广*壮族自治区河池市都安瑶族自治县");countyCodes.put("451229","广*壮族自治区河池市大化瑶族自治县");countyCodes.put("451281","广*壮族自治区河池市宜州市");countyCodes.put("451300","广*壮族自治区来宾市");countyCodes.put("451301","广*壮族自治区来宾市");countyCodes.put("451302","广*壮族自治区来宾市兴宾区");countyCodes.put("451321","广*壮族自治区来宾市忻城县");countyCodes.put("430801","湖南省张家界市");countyCodes.put("430802","湖南省张家界市永定区");countyCodes.put("430811","湖南省张家界市武陵源区");countyCodes.put("430821","湖南省张家界市慈利县");countyCodes.put("430822","湖南省张家界市桑植县");countyCodes.put("430900","湖南省益阳市");countyCodes.put("430901","湖南省益阳市");countyCodes.put("430902","湖南省益阳市资阳区");countyCodes.put("430903","湖南省益阳市赫山区");countyCodes.put("430921","湖南省益阳市南县");countyCodes.put("441700","广东省阳江市");countyCodes.put("420502","湖北省宜昌市*陵区");countyCodes.put("430981","湖南省益阳市沅江市");countyCodes.put("431000","湖南省郴州市");countyCodes.put("431001","湖南省郴州市");countyCodes.put("431002","湖南省郴州市北湖区");countyCodes.put("431003","湖南省郴州市苏仙区");countyCodes.put("431021","湖南省郴州市桂阳县");countyCodes.put("431022","湖南省郴州市宜章县");countyCodes.put("431023","湖南省郴州市永兴县");countyCodes.put("431024","湖南省郴州市嘉禾县");countyCodes.put("431025","湖南省郴州市临武县");countyCodes.put("431026","湖南省郴州市汝城县");countyCodes.put("431027","湖南省郴州市桂东县");countyCodes.put("431028","湖南省郴州市安仁县");countyCodes.put("431081","湖南省郴州市资兴市");countyCodes.put("431100","湖南省永州市");countyCodes.put("431101","湖南省永州市");countyCodes.put("431102","湖南省永州市芝山区");countyCodes.put("431103","湖南省永州市冷水滩区");countyCodes.put("431121","湖南省永州市祁阳县");countyCodes.put("431122","湖南省永州市东安县");countyCodes.put("431123","湖南省永州市双牌县");countyCodes.put("431124","湖南省永州市道县");countyCodes.put("431125","湖南省永州市江永县");countyCodes.put("431126","湖南省永州市宁远县");countyCodes.put("431127","湖南省永州市蓝山县");countyCodes.put("431128","湖南省永州市新田县");countyCodes.put("431129","湖南省永州市江华瑶族自治县");countyCodes.put("431200","湖南省怀化市");countyCodes.put("431201","湖南省怀化市");countyCodes.put("431202","湖南省怀化市鹤城区");countyCodes.put("431221","湖南省怀化市中方县");countyCodes.put("431222","湖南省怀化市沅陵县");countyCodes.put("431223","湖南省怀化市辰溪县");countyCodes.put("431224","湖南省怀化市溆浦县");countyCodes.put("431225","湖南省怀化市会同县");countyCodes.put("431226","湖南省怀化市麻阳苗族自治县");countyCodes.put("431227","湖南省怀化市新晃侗族自治县");countyCodes.put("431228","湖南省怀化市芷江侗族自治县");countyCodes.put("431229","湖南省怀化市靖州苗族侗族自治县");countyCodes.put("431230","湖南省怀化市通道侗族自治县");countyCodes.put("431281","湖南省怀化市洪江市");countyCodes.put("431300","湖南省娄底市");countyCodes.put("431301","湖南省娄底市");countyCodes.put("431302","湖南省娄底市娄星区");countyCodes.put("431321","湖南省娄底市双峰县");countyCodes.put("431322","湖南省娄底市新化县");countyCodes.put("431381","湖南省娄底市冷水江市");countyCodes.put("431382","湖南省娄底市涟源市");countyCodes.put("433100","湖南省湘*土家族苗族自治州");countyCodes.put("433101","湖南省湘*土家族苗族自治州吉首市");countyCodes.put("433122","湖南省湘*土家族苗族自治州泸溪县");countyCodes.put("433123","湖南省湘*土家族苗族自治州凤凰县");countyCodes.put("433124","湖南省湘*土家族苗族自治州花垣县");countyCodes.put("433125","湖南省湘*土家族苗族自治州保靖县");countyCodes.put("433126","湖南省湘*土家族苗族自治州古丈县");countyCodes.put("433127","湖南省湘*土家族苗族自治州永顺县");countyCodes.put("433130","湖南省湘*土家族苗族自治州龙山县");countyCodes.put("440000","广东省");countyCodes.put("410329","河南省洛阳市伊川县");countyCodes.put("410923","河南省濮阳市南乐县");countyCodes.put("450902","广*壮族自治区玉林市玉州区");countyCodes.put("421125","湖北省黄冈市浠水县");countyCodes.put("421126","湖北省黄冈市蕲春县");countyCodes.put("421127","湖北省黄冈市黄梅县");countyCodes.put("421181","湖北省黄冈市麻城市");countyCodes.put("421182","湖北省黄冈市武穴市");countyCodes.put("421200","湖北省咸宁市");countyCodes.put("421201","湖北省咸宁市");countyCodes.put("421202","湖北省咸宁市咸安区");countyCodes.put("421221","湖北省咸宁市嘉鱼县");countyCodes.put("421222","湖北省咸宁市通城县");countyCodes.put("421223","湖北省咸宁市崇阳县");countyCodes.put("421224","湖北省咸宁市通山县");countyCodes.put("421281","湖北省咸宁市赤壁市");countyCodes.put("421300","湖北省随州市");countyCodes.put("421301","湖北省随州市");countyCodes.put("421302","湖北省随州市曾都区");countyCodes.put("421381","湖北省随州市广水市");countyCodes.put("422800","湖北省恩施土家族苗族自治州");countyCodes.put("422801","湖北省恩施土家族苗族自治州恩施市");countyCodes.put("422802","湖北省恩施土家族苗族自治州利川市");countyCodes.put("422822","湖北省恩施土家族苗族自治州建始县");countyCodes.put("422823","湖北省恩施土家族苗族自治州巴东县");countyCodes.put("422825","湖北省恩施土家族苗族自治州宣恩县");countyCodes.put("422826","湖北省恩施土家族苗族自治州咸丰县");countyCodes.put("422827","湖北省恩施土家族苗族自治州来凤县");countyCodes.put("422828","湖北省恩施土家族苗族自治州鹤峰县");countyCodes.put("429000","湖北省省直辖行政单位");countyCodes.put("429004","湖北省仙桃市");countyCodes.put("429005","湖北省潜江市");countyCodes.put("429006","湖北省天门市");countyCodes.put("530111","云南省昆明市官渡区");countyCodes.put("530112","云南省昆明市*山区");countyCodes.put("530113","云南省昆明市东川区");countyCodes.put("530121","云南省昆明市呈贡县");countyCodes.put("530122","云南省昆明市*宁县");countyCodes.put("530124","云南省昆明市富民县");countyCodes.put("530125","云南省昆明市宜良县");countyCodes.put("530126","云南省昆明市石林彝族自治县");countyCodes.put("530127","云南省昆明市嵩明县");countyCodes.put("530128","云南省昆明市禄劝彝族苗族自治县");countyCodes.put("530129","云南省昆明市寻甸回族彝族自治县");countyCodes.put("530181","云南省昆明市安宁市");countyCodes.put("530300","云南省曲靖市");countyCodes.put("530301","云南省曲靖市");countyCodes.put("530302","云南省曲靖市麒麟区");countyCodes.put("530321","云南省曲靖市马龙县");countyCodes.put("530322","云南省曲靖市陆良县");countyCodes.put("530323","云南省曲靖市师宗县");countyCodes.put("530324","云南省曲靖市罗*县");countyCodes.put("530325","云南省曲靖市富源县");countyCodes.put("530326","云南省曲靖市会泽县");countyCodes.put("530328","云南省曲靖市沾益县");countyCodes.put("530381","云南省曲靖市宣威市");countyCodes.put("530400","云南省玉溪市");countyCodes.put("530401","云南省玉溪市");countyCodes.put("620500","甘肃省天水市");countyCodes.put("533124","云南省德宏傣族景颇族自治州陇川县");countyCodes.put("533300","云南省怒江傈僳族自治州");countyCodes.put("533321","云南省怒江傈僳族自治州泸水县");countyCodes.put("532323","云南省楚雄彝族自治州牟定县");countyCodes.put("532324","云南省楚雄彝族自治州南华县");countyCodes.put("532325","云南省楚雄彝族自治州姚安县");countyCodes.put("532326","云南省楚雄彝族自治州大姚县");countyCodes.put("532327","云南省楚雄彝族自治州永仁县");countyCodes.put("532328","云南省楚雄彝族自治州元谋县");countyCodes.put("532329","云南省楚雄彝族自治州武定县");countyCodes.put("532331","云南省楚雄彝族自治州禄丰县");countyCodes.put("532500","云南省红河哈尼族彝族自治州");countyCodes.put("532501","云南省红河哈尼族彝族自治州个旧市");countyCodes.put("532502","云南省红河哈尼族彝族自治州开远市");countyCodes.put("532522","云南省红河哈尼族彝族自治州蒙自县");countyCodes.put("532523","云南省红河哈尼族彝族自治州屏边苗族自治县");countyCodes.put("532524","云南省红河哈尼族彝族自治州建水县");countyCodes.put("532525","云南省红河哈尼族彝族自治州石屏县");countyCodes.put("532526","云南省红河哈尼族彝族自治州弥勒县");countyCodes.put("532527","云南省红河哈尼族彝族自治州泸*县");countyCodes.put("532528","云南省红河哈尼族彝族自治州元阳县");countyCodes.put("532529","云南省红河哈尼族彝族自治州红河县");countyCodes.put("532530","云南省红河哈尼族彝族自治州金*苗族瑶族傣族自治县");countyCodes.put("532531","云南省红河哈尼族彝族自治州绿春县");countyCodes.put("532532","云南省红河哈尼族彝族自治州河口瑶族自治县");countyCodes.put("532600","云南省文山壮族苗族自治州");countyCodes.put("532621","云南省文山壮族苗族自治州文山县");countyCodes.put("532622","云南省文山壮族苗族自治州砚山县");countyCodes.put("532623","云南省文山壮族苗族自治州*畴县");countyCodes.put("532624","云南省文山壮族苗族自治州麻栗坡县");countyCodes.put("532625","云南省文山壮族苗族自治州马关县");countyCodes.put("532626","云南省文山壮族苗族自治州丘北县");countyCodes.put("532627","云南省文山壮族苗族自治州广南县");countyCodes.put("532628","云南省文山壮族苗族自治州富宁县");countyCodes.put("532800","云南省*双版纳傣族自治州");countyCodes.put("532801","云南省*双版纳傣族自治州景洪市");countyCodes.put("532822","云南省*双版纳傣族自治州勐海县");countyCodes.put("532823","云南省*双版纳傣族自治州勐腊县");countyCodes.put("532900","云南省大理白族自治州");countyCodes.put("532901","云南省大理白族自治州大理市");countyCodes.put("532922","云南省大理白族自治州漾濞彝族自治县");countyCodes.put("532923","云南省大理白族自治州祥云县");countyCodes.put("532924","云南省大理白族自治州宾川县");countyCodes.put("532925","云南省大理白族自治州弥渡县");countyCodes.put("532926","云南省大理白族自治州南涧彝族自治县");countyCodes.put("532927","云南省大理白族自治州巍山彝族回族自治县");countyCodes.put("532928","云南省大理白族自治州永*县");countyCodes.put("532929","云南省大理白族自治州云龙县");countyCodes.put("532930","云南省大理白族自治州洱源县");countyCodes.put("532931","云南省大理白族自治州剑川县");countyCodes.put("532932","云南省大理白族自治州鹤庆县");countyCodes.put("533100","云南省德宏傣族景颇族自治州");countyCodes.put("533102","云南省德宏傣族景颇族自治州瑞丽市");countyCodes.put("533103","云南省德宏傣族景颇族自治州潞*市");countyCodes.put("533122","云南省德宏傣族景颇族自治州梁河县");countyCodes.put("533123","云南省德宏傣族景颇族自治州盈江县");countyCodes.put("610727","陕*省汉中市略阳县");countyCodes.put("610728","陕*省汉中市镇巴县");countyCodes.put("610729","陕*省汉中市留坝县");countyCodes.put("533323","云南省怒江傈僳族自治州福贡县");countyCodes.put("533324","云南省怒江傈僳族自治州贡山独龙族怒族自治县");countyCodes.put("533325","云南省怒江傈僳族自治州兰坪白族普米族自治县");countyCodes.put("533400","云南省迪庆藏族自治州");countyCodes.put("533421","云南省迪庆藏族自治州香格里拉县");countyCodes.put("533422","云南省迪庆藏族自治州德钦县");countyCodes.put("533423","云南省迪庆藏族自治州维*傈僳族自治县");countyCodes.put("540000","*藏自治区");countyCodes.put("540100","*藏自治区拉萨市");countyCodes.put("540101","*藏自治区拉萨市");countyCodes.put("540102","*藏自治区拉萨市城关区");countyCodes.put("540121","*藏自治区拉萨市林周县");countyCodes.put("540122","*藏自治区拉萨市当雄县");countyCodes.put("540123","*藏自治区拉萨市尼木县");countyCodes.put("540124","*藏自治区拉萨市曲水县");countyCodes.put("540125","*藏自治区拉萨市堆龙德庆县");countyCodes.put("540126","*藏自治区拉萨市达孜县");countyCodes.put("540127","*藏自治区拉萨市墨竹工卡县");countyCodes.put("542100","*藏自治区昌都地区");countyCodes.put("542121","*藏自治区昌都地区昌都县");countyCodes.put("542122","*藏自治区昌都地区江达县");countyCodes.put("542123","*藏自治区昌都地区贡觉县");countyCodes.put("542124","*藏自治区昌都地区类乌齐县");countyCodes.put("542125","*藏自治区昌都地区丁青县");countyCodes.put("542126","*藏自治区昌都地区察雅县");countyCodes.put("542127","*藏自治区昌都地区八宿县");countyCodes.put("542128","*藏自治区昌都地区左贡县");countyCodes.put("542129","*藏自治区昌都地区芒康县");countyCodes.put("542132","*藏自治区昌都地区洛隆县");countyCodes.put("542133","*藏自治区昌都地区边坝县");countyCodes.put("542200","*藏自治区山南地区");countyCodes.put("542221","*藏自治区山南地区乃东县");countyCodes.put("542222","*藏自治区山南地区扎囊县");countyCodes.put("542223","*藏自治区山南地区贡嘎县");countyCodes.put("542224","*藏自治区山南地区桑日县");countyCodes.put("542225","*藏自治区山南地区琼结县");countyCodes.put("542226","*藏自治区山南地区曲松县");countyCodes.put("542227","*藏自治区山南地区措美县");countyCodes.put("542228","*藏自治区山南地区洛扎县");countyCodes.put("542229","*藏自治区山南地区加查县");countyCodes.put("542231","*藏自治区山南地区隆子县");countyCodes.put("542232","*藏自治区山南地区错那县");countyCodes.put("542233","*藏自治区山南地区浪卡子县");countyCodes.put("542300","*藏自治区日喀则地区");countyCodes.put("542301","*藏自治区日喀则地区日喀则市");countyCodes.put("542322","*藏自治区日喀则地区南木林县");countyCodes.put("542323","*藏自治区日喀则地区江孜县");countyCodes.put("542324","*藏自治区日喀则地区定日县");countyCodes.put("542325","*藏自治区日喀则地区萨迦县");countyCodes.put("542326","*藏自治区日喀则地区拉孜县");countyCodes.put("542327","*藏自治区日喀则地区昂仁县");countyCodes.put("542328","*藏自治区日喀则地区谢通门县");countyCodes.put("542329","*藏自治区日喀则地区白朗县");countyCodes.put("542330","*藏自治区日喀则地区仁布县");countyCodes.put("542331","*藏自治区日喀则地区康马县");countyCodes.put("513227","四川省阿坝藏族羌族自治州小金县");countyCodes.put("513228","四川省阿坝藏族羌族自治州黑水县");countyCodes.put("513229","四川省阿坝藏族羌族自治州马尔康县");countyCodes.put("511424","四川省眉山市丹棱县");countyCodes.put("530424","云南省玉溪市华宁县");countyCodes.put("530425","云南省玉溪市易门县");countyCodes.put("530426","云南省玉溪市峨山彝族自治县");countyCodes.put("530427","云南省玉溪市新*彝族傣族自治县");countyCodes.put("530428","云南省玉溪市元江哈尼族彝族傣族自治县");countyCodes.put("530500","云南省保山市");countyCodes.put("530501","云南省保山市");countyCodes.put("530502","云南省保山市隆阳区");countyCodes.put("530521","云南省保山市施甸县");countyCodes.put("530522","云南省保山市腾冲县");countyCodes.put("530523","云南省保山市龙陵县");countyCodes.put("530524","云南省保山市昌宁县");countyCodes.put("530600","云南省昭通市");countyCodes.put("530601","云南省昭通市");countyCodes.put("530602","云南省昭通市昭阳区");countyCodes.put("530621","云南省昭通市鲁甸县");countyCodes.put("530622","云南省昭通市巧家县");countyCodes.put("530623","云南省昭通市盐津县");countyCodes.put("530624","云南省昭通市大关县");countyCodes.put("530625","云南省昭通市永善县");countyCodes.put("530626","云南省昭通市绥江县");countyCodes.put("530627","云南省昭通市镇雄县");countyCodes.put("530628","云南省昭通市彝良县");countyCodes.put("530629","云南省昭通市威信县");countyCodes.put("530630","云南省昭通市水富县");countyCodes.put("530700","云南省丽江市");countyCodes.put("530701","云南省丽江市");countyCodes.put("530702","云南省丽江市古城区");countyCodes.put("530721","云南省丽江市玉龙纳*族自治县");countyCodes.put("530722","云南省丽江市永胜县");countyCodes.put("530723","云南省丽江市华坪县");countyCodes.put("530724","云南省丽江市宁蒗彝族自治县");countyCodes.put("530800","云南省思茅市");countyCodes.put("530801","云南省思茅市");countyCodes.put("530802","云南省思茅市翠云区");countyCodes.put("530821","云南省思茅市普洱哈尼族彝族自治县");countyCodes.put("530822","云南省思茅市墨江哈尼族自治县");countyCodes.put("530823","云南省思茅市景东彝族自治县");countyCodes.put("530824","云南省思茅市景谷傣族彝族自治县");countyCodes.put("530825","云南省思茅市镇沅彝族哈尼族拉祜族自治县");countyCodes.put("530826","云南省思茅市江城哈尼族彝族自治县");countyCodes.put("530827","云南省思茅市孟连傣族拉祜族佤族自治县");countyCodes.put("530828","云南省思茅市澜沧拉祜族自治县");countyCodes.put("530829","云南省思茅市*盟佤族自治县");countyCodes.put("530900","云南省临沧市");countyCodes.put("530901","云南省临沧市");countyCodes.put("530902","云南省临沧市临翔区");countyCodes.put("530921","云南省临沧市凤庆县");countyCodes.put("530922","云南省临沧市云县");countyCodes.put("530923","云南省临沧市永德县");countyCodes.put("530924","云南省临沧市镇康县");countyCodes.put("530925","云南省临沧市双江拉祜族佤族布朗族傣族自治县");countyCodes.put("530926","云南省临沧市耿马傣族佤族自治县");countyCodes.put("530927","云南省临沧市沧源佤族自治县");countyCodes.put("53","贵州省六盘水市六枝特区");countyCodes.put("51","贵州省六盘水市水城县");countyCodes.put("52","贵州省六盘水市盘县");countyCodes.put("520300","贵州省遵义市");countyCodes.put("520301","贵州省遵义市");countyCodes.put("520302","贵州省遵义市红花岗区");countyCodes.put("520303","贵州省遵义市汇川区");countyCodes.put("520321","贵州省遵义市遵义县");countyCodes.put("520322","贵州省遵义市桐梓县");countyCodes.put("520323","贵州省遵义市绥阳县");countyCodes.put("520324","贵州省遵义市正安县");countyCodes.put("520325","贵州省遵义市道真仡佬族苗族自治县");countyCodes.put("520326","贵州省遵义市务川仡佬族苗族自治县");countyCodes.put("520327","贵州省遵义市凤冈县");countyCodes.put("520328","贵州省遵义市湄潭县");countyCodes.put("520329","贵州省遵义市余庆县");countyCodes.put("520330","贵州省遵义市习水县");countyCodes.put("520381","贵州省遵义市赤水市");countyCodes.put("520382","贵州省遵义市仁怀市");countyCodes.put("520400","贵州省安顺市");countyCodes.put("520401","贵州省安顺市");countyCodes.put("520402","贵州省安顺市*秀区");countyCodes.put("520421","贵州省安顺市*坝县");countyCodes.put("520422","贵州省安顺市普定县");countyCodes.put("520423","贵州省安顺市镇宁布依族苗族自治县");countyCodes.put("520424","贵州省安顺市关岭布依族苗族自治县");countyCodes.put("520425","贵州省安顺市紫云苗族布依族自治县");countyCodes.put("522200","贵州省铜仁地区");countyCodes.put("522201","贵州省铜仁地区铜仁市");countyCodes.put("522222","贵州省铜仁地区江口县");countyCodes.put("522223","贵州省铜仁地区玉屏侗族自治县");countyCodes.put("522224","贵州省铜仁地区石阡县");countyCodes.put("522225","贵州省铜仁地区思南县");countyCodes.put("522226","贵州省铜仁地区印江土家族苗族自治县");countyCodes.put("522227","贵州省铜仁地区德江县");countyCodes.put("522228","贵州省铜仁地区沿河土家族自治县");countyCodes.put("522229","贵州省铜仁地区松桃苗族自治县");countyCodes.put("522230","贵州省铜仁地区万山特区");countyCodes.put("522300","贵州省黔*南布依族苗族自治州");countyCodes.put("522301","贵州省黔*南布依族苗族自治州兴义市");countyCodes.put("522322","贵州省黔*南布依族苗族自治州兴仁县");countyCodes.put("522323","贵州省黔*南布依族苗族自治州普安县");countyCodes.put("522324","贵州省黔*南布依族苗族自治州晴隆县");countyCodes.put("522325","贵州省黔*南布依族苗族自治州贞丰县");countyCodes.put("522326","贵州省黔*南布依族苗族自治州望谟县");countyCodes.put("522327","贵州省黔*南布依族苗族自治州册亨县");countyCodes.put("522328","贵州省黔*南布依族苗族自治州安龙县");countyCodes.put("522400","贵州省毕节地区");countyCodes.put("522401","贵州省毕节地区毕节市");countyCodes.put("522422","贵州省毕节地区大方县");countyCodes.put("522423","贵州省毕节地区黔*县");countyCodes.put("522424","贵州省毕节地区金沙县");countyCodes.put("511301","四川省南充市");countyCodes.put("511302","四川省南充市顺庆区");countyCodes.put("511303","四川省南充市高坪区");countyCodes.put("511304","四川省南充市嘉陵区");countyCodes.put("511321","四川省南充市南部县");countyCodes.put("511322","四川省南充市营山县");countyCodes.put("511323","四川省南充市蓬安县");countyCodes.put("511324","四川省南充市仪陇县");countyCodes.put("511325","四川省南充市*充县");countyCodes.put("511381","四川省南充市阆中市");countyCodes.put("511400","四川省眉山市");countyCodes.put("511401","四川省眉山市");countyCodes.put("511402","四川省眉山市东坡区");countyCodes.put("440102","广东省广州市东山区");countyCodes.put("440103","广东省广州市荔湾区");countyCodes.put("440104","广东省广州市越秀区");countyCodes.put("500381","重庆市江津市");countyCodes.put("500382","重庆市合川市");countyCodes.put("500383","重庆市永川市");countyCodes.put("500384","重庆市南川市");countyCodes.put("510000","四川省");countyCodes.put("510100","四川省成都市");countyCodes.put("510101","四川省成都市");countyCodes.put("510104","四川省成都市锦江区");countyCodes.put("510105","四川省成都市青羊区");countyCodes.put("510106","四川省成都市金牛区");countyCodes.put("510107","四川省成都市武侯区");countyCodes.put("510108","四川省成都市成华区");countyCodes.put("510112","四川省成都市龙泉驿区");countyCodes.put("510113","四川省成都市青白江区");countyCodes.put("510114","四川省成都市新都区");countyCodes.put("510115","四川省成都市温江区");countyCodes.put("510121","四川省成都市金堂县");countyCodes.put("510122","四川省成都市双流县");countyCodes.put("510124","四川省成都市郫县");countyCodes.put("510129","四川省成都市大邑县");countyCodes.put("510131","四川省成都市蒲江县");countyCodes.put("510132","四川省成都市新津县");countyCodes.put("510181","四川省成都市都江堰市");countyCodes.put("510182","四川省成都市彭州市");countyCodes.put("510183","四川省成都市邛崃市");countyCodes.put("510184","四川省成都市崇州市");countyCodes.put("510300","四川省自贡市");countyCodes.put("510301","四川省自贡市");countyCodes.put("510302","四川省自贡市自流井区");countyCodes.put("510303","四川省自贡市贡井区");countyCodes.put("510304","四川省自贡市大安区");countyCodes.put("510311","四川省自贡市沿滩区");countyCodes.put("510321","四川省自贡市荣县");countyCodes.put("510322","四川省自贡市富顺县");countyCodes.put("510400","四川省攀枝花市");countyCodes.put("510401","四川省攀枝花市");countyCodes.put("510402","四川省攀枝花市东区");countyCodes.put("510403","四川省攀枝花市*区");countyCodes.put("510411","四川省攀枝花市仁和区");countyCodes.put("510421","四川省攀枝花市米易县");countyCodes.put("510422","四川省攀枝花市盐边县");countyCodes.put("510500","四川省泸州市");countyCodes.put("510501","四川省泸州市");countyCodes.put("510502","四川省泸州市江阳区");countyCodes.put("510503","四川省泸州市纳溪区");countyCodes.put("510504","四川省泸州市龙马潭区");countyCodes.put("510521","四川省泸州市泸县");countyCodes.put("510522","四川省泸州市合江县");countyCodes.put("510524","四川省泸州市叙永县");countyCodes.put("510525","四川省泸州市古蔺县");countyCodes.put("510600","四川省德阳市");countyCodes.put("510601","四川省德阳市");countyCodes.put("510603","四川省德阳市旌阳区");countyCodes.put("510623","四川省德阳市中江县");countyCodes.put("510626","四川省德阳市罗江县");countyCodes.put("510681","四川省德阳市广汉市");countyCodes.put("510682","四川省德阳市什邡市");countyCodes.put("530402","云南省玉溪市红塔区");countyCodes.put("530421","云南省玉溪市江川县");countyCodes.put("530422","云南省玉溪市澄江县");countyCodes.put("510701","四川省绵阳市");countyCodes.put("510703","四川省绵阳市涪城区");countyCodes.put("441702","广东省阳江市江城区");countyCodes.put("441721","广东省阳江市阳*县");countyCodes.put("441723","广东省阳江市阳东县");countyCodes.put("441781","广东省阳江市阳春市");countyCodes.put("441800","广东省清远市");countyCodes.put("441801","广东省清远市");countyCodes.put("441802","广东省清远市清城区");countyCodes.put("441821","广东省清远市佛冈县");countyCodes.put("441823","广东省清远市阳山县");countyCodes.put("441825","广东省清远市连山壮族瑶族自治县");countyCodes.put("441826","广东省清远市连南瑶族自治县");countyCodes.put("441827","广东省清远市清新县");countyCodes.put("441881","广东省清远市英德市");countyCodes.put("441882","广东省清远市连州市");countyCodes.put("441900","广东省东莞市");countyCodes.put("442000","广东省中山市");countyCodes.put("445100","广东省潮州市");countyCodes.put("445101","广东省潮州市");countyCodes.put("445102","广东省潮州市湘桥区");countyCodes.put("445121","广东省潮州市潮安县");countyCodes.put("445122","广东省潮州市饶*县");countyCodes.put("445200","广东省揭阳市");countyCodes.put("445201","广东省揭阳市");countyCodes.put("445202","广东省揭阳市榕城区");countyCodes.put("445221","广东省揭阳市揭东县");countyCodes.put("445222","广东省揭阳市揭*县");countyCodes.put("445224","广东省揭阳市惠来县");countyCodes.put("445281","广东省揭阳市普宁市");countyCodes.put("445300","广东省云浮市");countyCodes.put("513433","四川省凉山彝族自治州冕宁县");countyCodes.put("513434","四川省凉山彝族自治州越*县");countyCodes.put("513435","四川省凉山彝族自治州甘洛县");countyCodes.put("513436","四川省凉山彝族自治州美姑县");countyCodes.put("513437","四川省凉山彝族自治州雷波县");countyCodes.put("520000","贵州省");countyCodes.put("50","贵州省贵阳市");countyCodes.put("51","贵州省贵阳市");countyCodes.put("52","贵州省贵阳市南明区");countyCodes.put("53","贵州省贵阳市云岩区");countyCodes.put("51","贵州省贵阳市花溪区");countyCodes.put("52","贵州省贵阳市乌当区");countyCodes.put("53","贵州省贵阳市白云区");countyCodes.put("54","贵州省贵阳市小河区");countyCodes.put("51","贵州省贵阳市开阳县");countyCodes.put("52","贵州省贵阳市息烽县");countyCodes.put("53","贵州省贵阳市修文县");countyCodes.put("51","贵州省贵阳市清镇市");countyCodes.put("50","贵州省六盘水市");countyCodes.put("51","贵州省六盘水市钟山区");countyCodes.put("511421","四川省眉山市仁寿县");countyCodes.put("511422","四川省眉山市彭山县");countyCodes.put("511423","四川省眉山市洪雅县");countyCodes.put("620523","甘肃省天水市甘谷县");countyCodes.put("653024","新疆维吾尔自治区克孜勒苏柯尔克孜自治州乌恰县");countyCodes.put("653100","新疆维吾尔自治区喀什地区");countyCodes.put("653101","新疆维吾尔自治区喀什地区喀什市");countyCodes.put("653121","新疆维吾尔自治区喀什地区疏附县");countyCodes.put("653122","新疆维吾尔自治区喀什地区疏勒县");countyCodes.put("653123","新疆维吾尔自治区喀什地区英吉沙县");countyCodes.put("653124","新疆维吾尔自治区喀什地区泽普县");countyCodes.put("653125","新疆维吾尔自治区喀什地区莎车县");countyCodes.put("653126","新疆维吾尔自治区喀什地区叶城县");countyCodes.put("653127","新疆维吾尔自治区喀什地区麦盖提县");countyCodes.put("653128","新疆维吾尔自治区喀什地区岳普湖县");countyCodes.put("653129","新疆维吾尔自治区喀什地区伽师县");countyCodes.put("653130","新疆维吾尔自治区喀什地区巴楚县");countyCodes.put("653131","新疆维吾尔自治区喀什地区塔什库尔干塔吉克自治县");countyCodes.put("653200","新疆维吾尔自治区和田地区");countyCodes.put("653201","新疆维吾尔自治区和田地区和田市");countyCodes.put("653221","新疆维吾尔自治区和田地区和田县");countyCodes.put("653222","新疆维吾尔自治区和田地区墨玉县");countyCodes.put("653223","新疆维吾尔自治区和田地区皮山县");countyCodes.put("653224","新疆维吾尔自治区和田地区洛浦县");countyCodes.put("653225","新疆维吾尔自治区和田地区策勒县");countyCodes.put("653226","新疆维吾尔自治区和田地区于田县");countyCodes.put("653227","新疆维吾尔自治区和田地区民丰县");countyCodes.put("654000","新疆维吾尔自治区伊犁哈萨克自治州");countyCodes.put("654002","新疆维吾尔自治区伊犁哈萨克自治州伊宁市");countyCodes.put("654003","新疆维吾尔自治区伊犁哈萨克自治州奎屯市");countyCodes.put("654021","新疆维吾尔自治区伊犁哈萨克自治州伊宁县");countyCodes.put("654022","新疆维吾尔自治区伊犁哈萨克自治州察布查尔锡伯自治县");countyCodes.put("654023","新疆维吾尔自治区伊犁哈萨克自治州霍城县");countyCodes.put("654024","新疆维吾尔自治区伊犁哈萨克自治州巩留县");countyCodes.put("654025","新疆维吾尔自治区伊犁哈萨克自治州新源县");countyCodes.put("654026","新疆维吾尔自治区伊犁哈萨克自治州昭苏县");countyCodes.put("654027","新疆维吾尔自治区伊犁哈萨克自治州特克斯县");countyCodes.put("654028","新疆维吾尔自治区伊犁哈萨克自治州尼勒克县");countyCodes.put("654200","新疆维吾尔自治区塔城地区");countyCodes.put("654201","新疆维吾尔自治区塔城地区塔城市");countyCodes.put("654202","新疆维吾尔自治区塔城地区乌苏市");countyCodes.put("654221","新疆维吾尔自治区塔城地区额敏县");countyCodes.put("654223","新疆维吾尔自治区塔城地区沙湾县");countyCodes.put("654224","新疆维吾尔自治区塔城地区托里县");countyCodes.put("654225","新疆维吾尔自治区塔城地区裕民县");countyCodes.put("654226","新疆维吾尔自治区塔城地区和布克赛尔蒙古自治县");countyCodes.put("654300","新疆维吾尔自治区阿勒泰地区");countyCodes.put("654301","新疆维吾尔自治区阿勒泰地区阿勒泰市");countyCodes.put("654321","新疆维吾尔自治区阿勒泰地区布尔津县");countyCodes.put("654322","新疆维吾尔自治区阿勒泰地区富蕴县");countyCodes.put("654323","新疆维吾尔自治区阿勒泰地区福海县");countyCodes.put("654324","新疆维吾尔自治区阿勒泰地区哈巴河县");countyCodes.put("654325","新疆维吾尔自治区阿勒泰地区青河县");countyCodes.put("542333","*藏自治区日喀则地区仲巴县");countyCodes.put("542334","*藏自治区日喀则地区亚东县");countyCodes.put("542335","*藏自治区日喀则地区吉隆县");countyCodes.put("542336","*藏自治区日喀则地区聂拉木县");countyCodes.put("632623","青海省果洛藏族自治州甘德县");countyCodes.put("632624","青海省果洛藏族自治州达日县");countyCodes.put("650108","新疆维吾尔自治区乌鲁木齐市东山区");countyCodes.put("650121","新疆维吾尔自治区乌鲁木齐市乌鲁木齐县");countyCodes.put("650200","新疆维吾尔自治区克拉玛依市");countyCodes.put("650201","新疆维吾尔自治区克拉玛依市");countyCodes.put("650202","新疆维吾尔自治区克拉玛依市独山子区");countyCodes.put("650203","新疆维吾尔自治区克拉玛依市克拉玛依区");countyCodes.put("650204","新疆维吾尔自治区克拉玛依市白碱滩区");countyCodes.put("650205","新疆维吾尔自治区克拉玛依市乌尔禾区");countyCodes.put("652100","新疆维吾尔自治区吐鲁番地区");countyCodes.put("652101","新疆维吾尔自治区吐鲁番地区吐鲁番市");countyCodes.put("652122","新疆维吾尔自治区吐鲁番地区鄯善县");countyCodes.put("652123","新疆维吾尔自治区吐鲁番地区托克逊县");countyCodes.put("652200","新疆维吾尔自治区哈密地区");countyCodes.put("652201","新疆维吾尔自治区哈密地区哈密市");countyCodes.put("652222","新疆维吾尔自治区哈密地区巴里坤哈萨克自治县");countyCodes.put("652223","新疆维吾尔自治区哈密地区伊吾县");countyCodes.put("652300","新疆维吾尔自治区昌吉回族自治州");countyCodes.put("652301","新疆维吾尔自治区昌吉回族自治州昌吉市");countyCodes.put("652302","新疆维吾尔自治区昌吉回族自治州阜康市");countyCodes.put("652303","新疆维吾尔自治区昌吉回族自治州米泉市");countyCodes.put("652323","新疆维吾尔自治区昌吉回族自治州呼图壁县");countyCodes.put("652324","新疆维吾尔自治区昌吉回族自治州玛纳斯县");countyCodes.put("652325","新疆维吾尔自治区昌吉回族自治州奇台县");countyCodes.put("652327","新疆维吾尔自治区昌吉回族自治州吉木萨尔县");countyCodes.put("652328","新疆维吾尔自治区昌吉回族自治州木垒哈萨克自治县");countyCodes.put("652700","新疆维吾尔自治区博尔塔拉蒙古自治州");countyCodes.put("652701","新疆维吾尔自治区博尔塔拉蒙古自治州博乐市");countyCodes.put("652722","新疆维吾尔自治区博尔塔拉蒙古自治州精河县");countyCodes.put("652723","新疆维吾尔自治区博尔塔拉蒙古自治州温泉县");countyCodes.put("652800","新疆维吾尔自治区巴音郭楞蒙古自治州");countyCodes.put("652801","新疆维吾尔自治区巴音郭楞蒙古自治州库尔勒市");countyCodes.put("652822","新疆维吾尔自治区巴音郭楞蒙古自治州轮台县");countyCodes.put("652823","新疆维吾尔自治区巴音郭楞蒙古自治州尉犁县");countyCodes.put("652824","新疆维吾尔自治区巴音郭楞蒙古自治州若羌县");countyCodes.put("652825","新疆维吾尔自治区巴音郭楞蒙古自治州且末县");countyCodes.put("652826","新疆维吾尔自治区巴音郭楞蒙古自治州焉耆回族自治县");countyCodes.put("652827","新疆维吾尔自治区巴音郭楞蒙古自治州和静县");countyCodes.put("652828","新疆维吾尔自治区巴音郭楞蒙古自治州和硕县");countyCodes.put("652829","新疆维吾尔自治区巴音郭楞蒙古自治州博湖县");countyCodes.put("652900","新疆维吾尔自治区阿克苏地区");countyCodes.put("652901","新疆维吾尔自治区阿克苏地区阿克苏市");countyCodes.put("652922","新疆维吾尔自治区阿克苏地区温宿县");countyCodes.put("652923","新疆维吾尔自治区阿克苏地区库车县");countyCodes.put("652924","新疆维吾尔自治区阿克苏地区沙雅县");countyCodes.put("652925","新疆维吾尔自治区阿克苏地区新和县");countyCodes.put("652926","新疆维吾尔自治区阿克苏地区拜城县");countyCodes.put("652927","新疆维吾尔自治区阿克苏地区乌什县");countyCodes.put("652928","新疆维吾尔自治区阿克苏地区阿瓦提县");countyCodes.put("542332","*藏自治区日喀则地区定结县");countyCodes.put("659000","新疆维吾尔自治区省直辖行政单位");countyCodes.put("659001","新疆维吾尔自治区石河子市");countyCodes.put("659002","新疆维吾尔自治区阿拉尔市");countyCodes.put("610730","陕*省汉中市佛坪县");countyCodes.put("610800","陕*省榆林市");countyCodes.put("610801","陕*省榆林市");countyCodes.put("610802","陕*省榆林市榆阳区");countyCodes.put("610821","陕*省榆林市神木县");countyCodes.put("610822","陕*省榆林市府谷县");countyCodes.put("610823","陕*省榆林市横山县");countyCodes.put("610824","陕*省榆林市靖边县");countyCodes.put("610825","陕*省榆林市定边县");countyCodes.put("610826","陕*省榆林市绥德县");countyCodes.put("610827","陕*省榆林市米脂县");countyCodes.put("610828","陕*省榆林市佳县");countyCodes.put("610829","陕*省榆林市吴堡县");countyCodes.put("610830","陕*省榆林市清涧县");countyCodes.put("610831","陕*省榆林市子洲县");countyCodes.put("610900","陕*省安康市");countyCodes.put("610901","陕*省安康市");countyCodes.put("610902","陕*省安康市汉滨区");countyCodes.put("610921","陕*省安康市汉阴县");countyCodes.put("610922","陕*省安康市石泉县");countyCodes.put("610923","陕*省安康市宁陕县");countyCodes.put("610924","陕*省安康市紫阳县");countyCodes.put("610925","陕*省安康市岚皋县");countyCodes.put("610926","陕*省安康市*利县");countyCodes.put("610927","陕*省安康市镇坪县");countyCodes.put("610928","陕*省安康市旬阳县");countyCodes.put("610929","陕*省安康市白河县");countyCodes.put("611000","陕*省商洛市");countyCodes.put("611001","陕*省商洛市");countyCodes.put("611002","陕*省商洛市商州区");countyCodes.put("611021","陕*省商洛市洛南县");countyCodes.put("611022","陕*省商洛市丹凤县");countyCodes.put("611023","陕*省商洛市商南县");countyCodes.put("611024","陕*省商洛市山阳县");countyCodes.put("611025","陕*省商洛市镇安县");countyCodes.put("611026","陕*省商洛市柞水县");countyCodes.put("620000","甘肃省");countyCodes.put("60","甘肃省兰州市");countyCodes.put("61","甘肃省兰州市");countyCodes.put("62","甘肃省兰州市城关区");countyCodes.put("63","甘肃省兰州市七里河区");countyCodes.put("64","甘肃省兰州市*固区");countyCodes.put("65","甘肃省兰州市安宁区");countyCodes.put("61","甘肃省兰州市红古区");countyCodes.put("61","甘肃省兰州市永登县");countyCodes.put("62","甘肃省兰州市皋兰县");countyCodes.put("63","甘肃省兰州市榆中县");countyCodes.put("60","甘肃省嘉峪关市");countyCodes.put("61","甘肃省嘉峪关市");countyCodes.put("620300","甘肃省金昌市");countyCodes.put("620301","甘肃省金昌市");countyCodes.put("620302","甘肃省金昌市金川区");countyCodes.put("620321","甘肃省金昌市永昌县");countyCodes.put("620400","甘肃省白银市");countyCodes.put("620401","甘肃省白银市");countyCodes.put("620402","甘肃省白银市白银区");countyCodes.put("620403","甘肃省白银市*川区");countyCodes.put("620421","甘肃省白银市靖远县");countyCodes.put("620422","甘肃省白银市会宁县");countyCodes.put("620423","甘肃省白银市景泰县");countyCodes.put("632600","青海省果洛藏族自治州");countyCodes.put("632621","青海省果洛藏族自治州玛沁县");countyCodes.put("632622","青海省果洛藏族自治州班玛县");countyCodes.put("620524","甘肃省天水市武山县");countyCodes.put("632625","青海省果洛藏族自治州久治县");countyCodes.put("632626","青海省果洛藏族自治州玛多县");countyCodes.put("632700","青海省玉树藏族自治州");countyCodes.put("632721","青海省玉树藏族自治州玉树县");countyCodes.put("632722","青海省玉树藏族自治州杂多县");countyCodes.put("632723","青海省玉树藏族自治州称多县");countyCodes.put("632724","青海省玉树藏族自治州治多县");countyCodes.put("632725","青海省玉树藏族自治州囊谦县");countyCodes.put("632726","青海省玉树藏族自治州曲麻莱县");countyCodes.put("632800","青海省海*蒙古族藏族自治州");countyCodes.put("632801","青海省海*蒙古族藏族自治州格尔木市");countyCodes.put("632802","青海省海*蒙古族藏族自治州德令哈市");countyCodes.put("632821","青海省海*蒙古族藏族自治州乌兰县");countyCodes.put("632822","青海省海*蒙古族藏族自治州都兰县");countyCodes.put("632823","青海省海*蒙古族藏族自治州天峻县");countyCodes.put("640000","宁夏回族自治区");countyCodes.put("640100","宁夏回族自治区银川市");countyCodes.put("640101","宁夏回族自治区银川市");countyCodes.put("640104","宁夏回族自治区银川市兴庆区");countyCodes.put("640105","宁夏回族自治区银川市*夏区");countyCodes.put("640106","宁夏回族自治区银川市金凤区");countyCodes.put("640121","宁夏回族自治区银川市永宁县");countyCodes.put("640122","宁夏回族自治区银川市贺兰县");countyCodes.put("640181","宁夏回族自治区银川市灵武市");countyCodes.put("640200","宁夏回族自治区石嘴山市");countyCodes.put("640201","宁夏回族自治区石嘴山市");countyCodes.put("640202","宁夏回族自治区石嘴山市大武口区");countyCodes.put("640205","宁夏回族自治区石嘴山市惠农区");countyCodes.put("640221","宁夏回族自治区石嘴山市*罗县");countyCodes.put("640300","宁夏回族自治区吴忠市");countyCodes.put("640301","宁夏回族自治区吴忠市");countyCodes.put("640302","宁夏回族自治区吴忠市利通区");countyCodes.put("640323","宁夏回族自治区吴忠市盐池县");countyCodes.put("640324","宁夏回族自治区吴忠市同心县");countyCodes.put("640381","宁夏回族自治区吴忠市青铜峡市");countyCodes.put("640400","宁夏回族自治区固原市");countyCodes.put("640401","宁夏回族自治区固原市");countyCodes.put("640402","宁夏回族自治区固原市原州区");countyCodes.put("640422","宁夏回族自治区固原市*吉县");countyCodes.put("640423","宁夏回族自治区固原市隆德县");countyCodes.put("640424","宁夏回族自治区固原市泾源县");countyCodes.put("640425","宁夏回族自治区固原市彭阳县");countyCodes.put("640500","宁夏回族自治区中卫市");countyCodes.put("640501","宁夏回族自治区中卫市");countyCodes.put("640502","宁夏回族自治区中卫市沙坡头区");countyCodes.put("640521","宁夏回族自治区中卫市中宁县");countyCodes.put("640522","宁夏回族自治区中卫市海原县");countyCodes.put("650000","新疆维吾尔自治区");countyCodes.put("650100","新疆维吾尔自治区乌鲁木齐市");countyCodes.put("650101","新疆维吾尔自治区乌鲁木齐市");countyCodes.put("650102","新疆维吾尔自治区乌鲁木齐市天山区");countyCodes.put("650103","新疆维吾尔自治区乌鲁木齐市沙依巴克区");countyCodes.put("610304","陕*省宝鸡市陈仓区");countyCodes.put("451322","广*壮族自治区来宾市象州县");countyCodes.put("451323","广*壮族自治区来宾市武宣县");countyCodes.put("451324","广*壮族自治区来宾市金秀瑶族自治县");countyCodes.put("451381","广*壮族自治区来宾市合山市");countyCodes.put("451400","广*壮族自治区崇左市");countyCodes.put("451401","广*壮族自治区崇左市");countyCodes.put("451402","广*壮族自治区崇左市江洲区");countyCodes.put("451421","广*壮族自治区崇左市扶绥县");countyCodes.put("451422","广*壮族自治区崇左市宁明县");countyCodes.put("451423","广*壮族自治区崇左市龙州县");countyCodes.put("451424","广*壮族自治区崇左市大新县");countyCodes.put("451425","广*壮族自治区崇左市天等县");countyCodes.put("451481","广*壮族自治区崇左市凭祥市");countyCodes.put("460000","海南省");countyCodes.put("440784","广东省江门市鹤山市");countyCodes.put("460106","海南省海口市龙华区");countyCodes.put("450225","广*壮族自治区柳州市融水苗族自治县");countyCodes.put("450226","广*壮族自治区柳州市三江侗族自治县");countyCodes.put("450300","广*壮族自治区桂林市");countyCodes.put("450301","广*壮族自治区桂林市");countyCodes.put("450302","广*壮族自治区桂林市秀峰区");countyCodes.put("450303","广*壮族自治区桂林市叠彩区");countyCodes.put("450304","广*壮族自治区桂林市象山区");countyCodes.put("450305","广*壮族自治区桂林市七星区");countyCodes.put("450311","广*壮族自治区桂林市雁山区");countyCodes.put("450321","广*壮族自治区桂林市阳朔县");countyCodes.put("450322","广*壮族自治区桂林市临桂县");countyCodes.put("450323","广*壮族自治区桂林市灵川县");countyCodes.put("450324","广*壮族自治区桂林市全州县");countyCodes.put("450325","广*壮族自治区桂林市兴安县");countyCodes.put("450326","广*壮族自治区桂林市永福县");countyCodes.put("450327","广*壮族自治区桂林市灌阳县");countyCodes.put("450328","广*壮族自治区桂林市龙胜各族自治县");countyCodes.put("450329","广*壮族自治区桂林市资源县");countyCodes.put("450330","广*壮族自治区桂林市*乐县");countyCodes.put("450331","广*壮族自治区桂林市荔蒲县");countyCodes.put("450332","广*壮族自治区桂林市恭城瑶族自治县");countyCodes.put("450400","广*壮族自治区梧州市");countyCodes.put("450401","广*壮族自治区梧州市");countyCodes.put("450403","广*壮族自治区梧州市万秀区");countyCodes.put("450404","广*壮族自治区梧州市蝶山区");countyCodes.put("450405","广*壮族自治区梧州市长洲区");countyCodes.put("450421","广*壮族自治区梧州市苍梧县");countyCodes.put("450422","广*壮族自治区梧州市藤县");countyCodes.put("450423","广*壮族自治区梧州市蒙山县");countyCodes.put("450481","广*壮族自治区梧州市岑溪市");countyCodes.put("450500","广*壮族自治区北海市");countyCodes.put("450501","广*壮族自治区北海市");countyCodes.put("450502","广*壮族自治区北海市海城区");countyCodes.put("450503","广*壮族自治区北海市银海区");countyCodes.put("450512","广*壮族自治区北海市铁山港区");countyCodes.put("450521","广*壮族自治区北海市合浦县");countyCodes.put("450600","广*壮族自治区防城港市");countyCodes.put("450601","广*壮族自治区防城港市");countyCodes.put("450602","广*壮族自治区防城港市港口区");countyCodes.put("450603","广*壮族自治区防城港市防城区");countyCodes.put("450621","广*壮族自治区防城港市上思县");countyCodes.put("450681","广*壮族自治区防城港市东兴市");countyCodes.put("450700","广*壮族自治区钦州市");countyCodes.put("450701","广*壮族自治区钦州市");countyCodes.put("450702","广*壮族自治区钦州市钦南区");countyCodes.put("450703","广*壮族自治区钦州市钦北区");countyCodes.put("450721","广*壮族自治区钦州市灵山县");countyCodes.put("450722","广*壮族自治区钦州市浦北县");countyCodes.put("450800","广*壮族自治区贵港市");countyCodes.put("450801","广*壮族自治区贵港市");countyCodes.put("450802","广*壮族自治区贵港市港北区");countyCodes.put("450803","广*壮族自治区贵港市港南区");countyCodes.put("450804","广*壮族自治区贵港市覃塘区");countyCodes.put("450821","广*壮族自治区贵港市*南县");countyCodes.put("450881","广*壮族自治区贵港市桂*市");countyCodes.put("450900","广*壮族自治区玉林市");countyCodes.put("510683","四川省德阳市绵竹市");countyCodes.put("510700","四川省绵阳市");countyCodes.put("522626","贵州省黔东南苗族侗族自治州岑巩县");countyCodes.put("522627","贵州省黔东南苗族侗族自治州天柱县");countyCodes.put("522628","贵州省黔东南苗族侗族自治州锦屏县");countyCodes.put("522629","贵州省黔东南苗族侗族自治州剑河县");countyCodes.put("522630","贵州省黔东南苗族侗族自治州台江县");countyCodes.put("522631","贵州省黔东南苗族侗族自治州黎*县");countyCodes.put("522632","贵州省黔东南苗族侗族自治州榕江县");countyCodes.put("522633","贵州省黔东南苗族侗族自治州从江县");countyCodes.put("522634","贵州省黔东南苗族侗族自治州雷山县");countyCodes.put("522635","贵州省黔东南苗族侗族自治州麻江县");countyCodes.put("522636","贵州省黔东南苗族侗族自治州丹寨县");countyCodes.put("522700","贵州省黔南布依族苗族自治州");countyCodes.put("522701","贵州省黔南布依族苗族自治州都匀市");countyCodes.put("522702","贵州省黔南布依族苗族自治州福泉市");countyCodes.put("522722","贵州省黔南布依族苗族自治州荔波县");countyCodes.put("522723","贵州省黔南布依族苗族自治州贵定县");countyCodes.put("522725","贵州省黔南布依族苗族自治州瓮安县");countyCodes.put("522726","贵州省黔南布依族苗族自治州独山县");countyCodes.put("522727","贵州省黔南布依族苗族自治州*塘县");countyCodes.put("522728","贵州省黔南布依族苗族自治州罗甸县");countyCodes.put("522729","贵州省黔南布依族苗族自治州长顺县");countyCodes.put("522730","贵州省黔南布依族苗族自治州龙里县");countyCodes.put("522731","贵州省黔南布依族苗族自治州惠水县");countyCodes.put("522732","贵州省黔南布依族苗族自治州三都水族自治县");countyCodes.put("530000","云南省");countyCodes.put("530100","云南省昆明市");countyCodes.put("530101","云南省昆明市");countyCodes.put("530102","云南省昆明市五华区");countyCodes.put("530103","云南省昆明市盘龙区");countyCodes.put("621222","甘肃省陇南市文县");countyCodes.put("621223","甘肃省陇南市宕昌县");countyCodes.put("621224","甘肃省陇南市康县");countyCodes.put("542337","*藏自治区日喀则地区萨嘎县");countyCodes.put("542338","*藏自治区日喀则地区岗巴县");countyCodes.put("610328","陕*省宝鸡市千阳县");countyCodes.put("610329","陕*省宝鸡市麟游县");countyCodes.put("610330","陕*省宝鸡市凤县");countyCodes.put("610331","陕*省宝鸡市太白县");countyCodes.put("610400","陕*省咸阳市");countyCodes.put("610401","陕*省咸阳市");countyCodes.put("610402","陕*省咸阳市秦都区");countyCodes.put("610403","陕*省咸阳市杨凌区");countyCodes.put("610404","陕*省咸阳市渭城区");countyCodes.put("610422","陕*省咸阳市三原县");countyCodes.put("610423","陕*省咸阳市泾阳县");countyCodes.put("610424","陕*省咸阳市乾县");countyCodes.put("610425","陕*省咸阳市礼泉县");countyCodes.put("610426","陕*省咸阳市永寿县");countyCodes.put("610427","陕*省咸阳市彬县");countyCodes.put("610428","陕*省咸阳市长武县");countyCodes.put("610429","陕*省咸阳市旬邑县");countyCodes.put("610430","陕*省咸阳市淳化县");countyCodes.put("610431","陕*省咸阳市武功县");countyCodes.put("610481","陕*省咸阳市兴*市");countyCodes.put("610500","陕*省渭南市");countyCodes.put("610501","陕*省渭南市");countyCodes.put("610502","陕*省渭南市临渭区");countyCodes.put("610521","陕*省渭南市华县");countyCodes.put("610522","陕*省渭南市潼关县");countyCodes.put("610523","陕*省渭南市大荔县");countyCodes.put("610524","陕*省渭南市合阳县");countyCodes.put("610525","陕*省渭南市澄城县");countyCodes.put("610526","陕*省渭南市蒲城县");countyCodes.put("610527","陕*省渭南市白水县");countyCodes.put("610528","陕*省渭南市富*县");countyCodes.put("610581","陕*省渭南市韩城市");countyCodes.put("610582","陕*省渭南市华阴市");countyCodes.put("610600","陕*省延安市");countyCodes.put("610601","陕*省延安市");countyCodes.put("610602","陕*省延安市宝塔区");countyCodes.put("610621","陕*省延安市延长县");countyCodes.put("610622","陕*省延安市延川县");countyCodes.put("610623","陕*省延安市子长县");countyCodes.put("610624","陕*省延安市安塞县");countyCodes.put("610625","陕*省延安市志丹县");countyCodes.put("610626","陕*省延安市吴旗县");countyCodes.put("610627","陕*省延安市甘泉县");countyCodes.put("610628","陕*省延安市富县");countyCodes.put("610629","陕*省延安市洛川县");countyCodes.put("610630","陕*省延安市宜川县");countyCodes.put("610631","陕*省延安市黄龙县");countyCodes.put("610632","陕*省延安市黄陵县");countyCodes.put("610700","陕*省汉中市");countyCodes.put("610701","陕*省汉中市");countyCodes.put("610702","陕*省汉中市汉台区");countyCodes.put("610721","陕*省汉中市南郑县");countyCodes.put("610722","陕*省汉中市城固县");countyCodes.put("610723","陕*省汉中市洋县");countyCodes.put("610724","陕*省汉中市*乡县");countyCodes.put("610725","陕*省汉中市勉县");countyCodes.put("610726","陕*省汉中市宁强县");countyCodes.put("620501","甘肃省天水市");countyCodes.put("620502","甘肃省天水市秦城区");countyCodes.put("620503","甘肃省天水市北道区");countyCodes.put("620521","甘肃省天水市清水县");countyCodes.put("620522","甘肃省天水市秦安县");countyCodes.put("542400","*藏自治区那曲地区");countyCodes.put("542421","*藏自治区那曲地区那曲县");countyCodes.put("542422","*藏自治区那曲地区嘉黎县");countyCodes.put("542423","*藏自治区那曲地区比如县");countyCodes.put("542424","*藏自治区那曲地区聂荣县");countyCodes.put("542425","*藏自治区那曲地区安多县");countyCodes.put("542426","*藏自治区那曲地区申扎县");countyCodes.put("542427","*藏自治区那曲地区索县");countyCodes.put("542428","*藏自治区那曲地区班戈县");countyCodes.put("542429","*藏自治区那曲地区巴青县");countyCodes.put("542430","*藏自治区那曲地区尼玛县");countyCodes.put("542500","*藏自治区阿里地区");countyCodes.put("542521","*藏自治区阿里地区普兰县");countyCodes.put("542522","*藏自治区阿里地区札达县");countyCodes.put("542523","*藏自治区阿里地区噶尔县");countyCodes.put("542524","*藏自治区阿里地区日土县");countyCodes.put("542525","*藏自治区阿里地区革吉县");countyCodes.put("542526","*藏自治区阿里地区改则县");countyCodes.put("542527","*藏自治区阿里地区措勤县");countyCodes.put("542600","*藏自治区林芝地区");countyCodes.put("542621","*藏自治区林芝地区林芝县");countyCodes.put("542622","*藏自治区林芝地区工布江达县");countyCodes.put("542623","*藏自治区林芝地区米林县");countyCodes.put("542624","*藏自治区林芝地区墨脱县");countyCodes.put("542625","*藏自治区林芝地区波密县");countyCodes.put("542626","*藏自治区林芝地区察隅县");countyCodes.put("542627","*藏自治区林芝地区朗县");countyCodes.put("610000","陕*省");countyCodes.put("610100","陕*省*安市");countyCodes.put("610101","陕*省*安市");countyCodes.put("610102","陕*省*安市新城区");countyCodes.put("610103","陕*省*安市碑林区");countyCodes.put("610104","陕*省*安市莲湖区");countyCodes.put("610111","陕*省*安市灞桥区");countyCodes.put("610112","陕*省*安市未央区");countyCodes.put("610113","陕*省*安市雁塔区");countyCodes.put("610114","陕*省*安市阎良区");countyCodes.put("610115","陕*省*安市临潼区");countyCodes.put("610116","陕*省*安市长安区");countyCodes.put("610122","陕*省*安市蓝田县");countyCodes.put("610124","陕*省*安市周至县");countyCodes.put("610125","陕*省*安市户县");countyCodes.put("610126","陕*省*安市高陵县");countyCodes.put("610200","陕*省铜川市");countyCodes.put("610201","陕*省铜川市");countyCodes.put("610202","陕*省铜川市王益区");countyCodes.put("610203","陕*省铜川市印台区");countyCodes.put("610204","陕*省铜川市耀州区");countyCodes.put("610222","陕*省铜川市宜君县");countyCodes.put("610300","陕*省宝鸡市");countyCodes.put("610301","陕*省宝鸡市");countyCodes.put("610302","陕*省宝鸡市渭滨区");countyCodes.put("610303","陕*省宝鸡市金台区");countyCodes.put("654326","新疆维吾尔自治区阿勒泰地区吉木乃县");countyCodes.put("632525","青海省海南藏族自治州贵南县");countyCodes.put("650104","新疆维吾尔自治区乌鲁木齐市新市区");countyCodes.put("650105","新疆维吾尔自治区乌鲁木齐市水磨沟区");countyCodes.put("650106","新疆维吾尔自治区乌鲁木齐市头屯河区");countyCodes.put("621225","甘肃省陇南市*和县");countyCodes.put("621226","甘肃省陇南市礼县");countyCodes.put("621227","甘肃省陇南市徽县");countyCodes.put("621228","甘肃省陇南市两当县");countyCodes.put("622900","甘肃省临夏回族自治州");countyCodes.put("622901","甘肃省临夏回族自治州临夏市");countyCodes.put("622921","甘肃省临夏回族自治州临夏县");countyCodes.put("622922","甘肃省临夏回族自治州康乐县");countyCodes.put("622923","甘肃省临夏回族自治州永靖县");countyCodes.put("622924","甘肃省临夏回族自治州广河县");countyCodes.put("622925","甘肃省临夏回族自治州和政县");countyCodes.put("622926","甘肃省临夏回族自治州东乡族自治县");countyCodes.put("622927","甘肃省临夏回族自治州积石山保安族东乡族撒拉族自治县");countyCodes.put("623000","甘肃省甘南藏族自治州");countyCodes.put("623001","甘肃省甘南藏族自治州合作市");countyCodes.put("623021","甘肃省甘南藏族自治州临潭县");countyCodes.put("623022","甘肃省甘南藏族自治州卓尼县");countyCodes.put("623023","甘肃省甘南藏族自治州舟曲县");countyCodes.put("623024","甘肃省甘南藏族自治州迭部县");countyCodes.put("623025","甘肃省甘南藏族自治州玛曲县");countyCodes.put("623026","甘肃省甘南藏族自治州碌曲县");countyCodes.put("623027","甘肃省甘南藏族自治州夏河县");countyCodes.put("630000","青海省");countyCodes.put("630100","青海省*宁市");countyCodes.put("630101","青海省*宁市");countyCodes.put("630102","青海省*宁市城东区");countyCodes.put("630103","青海省*宁市城中区");countyCodes.put("630104","青海省*宁市城*区");countyCodes.put("630105","青海省*宁市城北区");countyCodes.put("630121","青海省*宁市大通回族土族自治县");countyCodes.put("630122","青海省*宁市湟中县");countyCodes.put("630123","青海省*宁市湟源县");countyCodes.put("632100","青海省海东地区");countyCodes.put("632121","青海省海东地区*安县");countyCodes.put("632122","青海省海东地区民和回族土族自治县");countyCodes.put("632123","青海省海东地区乐都县");countyCodes.put("632126","青海省海东地区互助土族自治县");countyCodes.put("632127","青海省海东地区化隆回族自治县");countyCodes.put("632128","青海省海东地区循化撒拉族自治县");countyCodes.put("632200","青海省海北藏族自治州");countyCodes.put("632221","青海省海北藏族自治州门源回族自治县");countyCodes.put("632222","青海省海北藏族自治州祁连县");countyCodes.put("632223","青海省海北藏族自治州海晏县");countyCodes.put("632224","青海省海北藏族自治州刚察县");countyCodes.put("632300","青海省黄南藏族自治州");countyCodes.put("632321","青海省黄南藏族自治州同仁县");countyCodes.put("632322","青海省黄南藏族自治州尖扎县");countyCodes.put("632323","青海省黄南藏族自治州泽库县");countyCodes.put("632324","青海省黄南藏族自治州河南蒙古族自治县");countyCodes.put("632500","青海省海南藏族自治州");countyCodes.put("632521","青海省海南藏族自治州共和县");countyCodes.put("632522","青海省海南藏族自治州同德县");countyCodes.put("632523","青海省海南藏族自治州贵德县");countyCodes.put("632524","青海省海南藏族自治州兴海县");countyCodes.put("652929","新疆维吾尔自治区阿克苏地区柯坪县");countyCodes.put("610322","陕*省宝鸡市凤翔县");countyCodes.put("610323","陕*省宝鸡市岐山县");countyCodes.put("610324","陕*省宝鸡市扶风县");countyCodes.put("610326","陕*省宝鸡市眉县");countyCodes.put("610327","陕*省宝鸡市陇县");countyCodes.put("650107","新疆维吾尔自治区乌鲁木齐市达坂城区");countyCodes.put("620525","甘肃省天水市张家川回族自治县");countyCodes.put("620600","甘肃省武威市");countyCodes.put("620601","甘肃省武威市");countyCodes.put("620602","甘肃省武威市凉州区");countyCodes.put("620621","甘肃省武威市民勤县");countyCodes.put("620622","甘肃省武威市古浪县");countyCodes.put("620623","甘肃省武威市天祝藏族自治县");countyCodes.put("620700","甘肃省张掖市");countyCodes.put("620701","甘肃省张掖市");countyCodes.put("620702","甘肃省张掖市甘州区");countyCodes.put("620721","甘肃省张掖市肃南裕固族自治县");countyCodes.put("620722","甘肃省张掖市民乐县");countyCodes.put("620723","甘肃省张掖市临泽县");countyCodes.put("620724","甘肃省张掖市高台县");countyCodes.put("620725","甘肃省张掖市山丹县");countyCodes.put("620800","甘肃省*凉市");countyCodes.put("620801","甘肃省*凉市");countyCodes.put("620802","甘肃省*凉市崆峒区");countyCodes.put("620821","甘肃省*凉市泾川县");countyCodes.put("620822","甘肃省*凉市灵台县");countyCodes.put("620823","甘肃省*凉市崇信县");countyCodes.put("620824","甘肃省*凉市华亭县");countyCodes.put("620825","甘肃省*凉市庄浪县");countyCodes.put("620826","甘肃省*凉市静宁县");countyCodes.put("620900","甘肃省酒泉市");countyCodes.put("620901","甘肃省酒泉市");countyCodes.put("620902","甘肃省酒泉市肃州区");countyCodes.put("620921","甘肃省酒泉市金塔县");countyCodes.put("620922","甘肃省酒泉市安*县");countyCodes.put("620923","甘肃省酒泉市肃北蒙古族自治县");countyCodes.put("620924","甘肃省酒泉市阿克塞哈萨克族自治县");countyCodes.put("620981","甘肃省酒泉市玉门市");countyCodes.put("620982","甘肃省酒泉市敦煌市");countyCodes.put("621000","甘肃省庆阳市");countyCodes.put("621001","甘肃省庆阳市");countyCodes.put("621002","甘肃省庆阳市*峰区");countyCodes.put("621021","甘肃省庆阳市庆城县");countyCodes.put("621022","甘肃省庆阳市环县");countyCodes.put("621023","甘肃省庆阳市华池县");countyCodes.put("621024","甘肃省庆阳市合水县");countyCodes.put("621025","甘肃省庆阳市正宁县");countyCodes.put("621026","甘肃省庆阳市宁县");countyCodes.put("621027","甘肃省庆阳市镇原县");countyCodes.put("621100","甘肃省定*市");countyCodes.put("621101","甘肃省定*市");countyCodes.put("621102","甘肃省定*市安定区");countyCodes.put("621121","甘肃省定*市通渭县");countyCodes.put("621122","甘肃省定*市陇*县");countyCodes.put("621123","甘肃省定*市渭源县");countyCodes.put("621124","甘肃省定*市临洮县");countyCodes.put("621125","甘肃省定*市漳县");countyCodes.put("621126","甘肃省定*市岷县");countyCodes.put("621200","甘肃省陇南市");countyCodes.put("621201","甘肃省陇南市");countyCodes.put("621202","甘肃省陇南市武都区");countyCodes.put("621221","甘肃省陇南市成县");countyCodes.put("653000","新疆维吾尔自治区克孜勒苏柯尔克孜自治州");countyCodes.put("653001","新疆维吾尔自治区克孜勒苏柯尔克孜自治州阿图什市");countyCodes.put("653022","新疆维吾尔自治区克孜勒苏柯尔克孜自治州阿克陶县");countyCodes.put("653023","新疆维吾尔自治区克孜勒苏柯尔克孜自治州阿合奇县");countyCodes.put("659003","新疆维吾尔自治区图木舒克市");countyCodes.put("659004","新疆维吾尔自治区五家渠市");countyCodes.put("710000","台湾省");countyCodes.put("810000","香港特别行政区");countyCodes.put("820000","澳门特别行政区");countyCodes.put("A00000","亚洲");countyCodes.put("B00000","非洲");countyCodes.put("C00000","欧洲");countyCodes.put("D00000","美洲");countyCodes.put("E00000","大洋洲");countyCodes.put("F01000","南极洲");countyCodes.put("ZZZZZZ","其它");countyCodes.put("522425","贵州省毕节地区织金县");countyCodes.put("522426","贵州省毕节地区纳雍县");countyCodes.put("522427","贵州省毕节地区威宁彝族回族苗族自治县");countyCodes.put("522428","贵州省毕节地区赫章县");countyCodes.put("522600","贵州省黔东南苗族侗族自治州");countyCodes.put("522601","贵州省黔东南苗族侗族自治州凯里市");countyCodes.put("522622","贵州省黔东南苗族侗族自治州黄*县");countyCodes.put("522623","贵州省黔东南苗族侗族自治州施秉县");countyCodes.put("522624","贵州省黔东南苗族侗族自治州三穗县");countyCodes.put("513230","四川省阿坝藏族羌族自治州壤塘县");countyCodes.put("511425","四川省眉山市青神县");countyCodes.put("511500","四川省宜宾市");countyCodes.put("511501","四川省宜宾市");countyCodes.put("511502","四川省宜宾市翠屏区");countyCodes.put("511521","四川省宜宾市宜宾县");countyCodes.put("511522","四川省宜宾市南溪县");countyCodes.put("511523","四川省宜宾市江安县");countyCodes.put("511524","四川省宜宾市长宁县");countyCodes.put("511525","四川省宜宾市高县");countyCodes.put("511526","四川省宜宾市珙县");countyCodes.put("511527","四川省宜宾市筠连县");countyCodes.put("511528","四川省宜宾市兴文县");countyCodes.put("511529","四川省宜宾市屏山县");countyCodes.put("511600","四川省广安市");countyCodes.put("511601","四川省广安市");countyCodes.put("511602","四川省广安市广安区");countyCodes.put("511621","四川省广安市岳池县");countyCodes.put("511622","四川省广安市武胜县");countyCodes.put("511623","四川省广安市邻水县");countyCodes.put("511681","四川省广安市华莹市");countyCodes.put("511700","四川省达州市");countyCodes.put("511701","四川省达州市");countyCodes.put("511702","四川省达州市通川区");countyCodes.put("511721","四川省达州市达县");countyCodes.put("511722","四川省达州市宣汉县");countyCodes.put("511723","四川省达州市开江县");countyCodes.put("511724","四川省达州市大竹县");countyCodes.put("511725","四川省达州市渠县");countyCodes.put("511781","四川省达州市万源市");countyCodes.put("511800","四川省雅安市");countyCodes.put("511801","四川省雅安市");countyCodes.put("511802","四川省雅安市雨城区");countyCodes.put("511821","四川省雅安市名山县");countyCodes.put("511822","四川省雅安市荥经县");countyCodes.put("511823","四川省雅安市汉源县");countyCodes.put("511824","四川省雅安市石棉县");countyCodes.put("511825","四川省雅安市天全县");countyCodes.put("511826","四川省雅安市芦山县");countyCodes.put("511827","四川省雅安市宝兴县");countyCodes.put("511900","四川省巴中市");countyCodes.put("511901","四川省巴中市");countyCodes.put("511902","四川省巴中市巴州区");countyCodes.put("511921","四川省巴中市通江县");countyCodes.put("511922","四川省巴中市南江县");countyCodes.put("511923","四川省巴中市*昌县");countyCodes.put("512000","四川省资阳市");countyCodes.put("512001","四川省资阳市");countyCodes.put("512002","四川省资阳市雁江区");countyCodes.put("51","四川省资阳市安岳县");countyCodes.put("51","四川省资阳市乐至县");countyCodes.put("512081","四川省资阳市简阳市");countyCodes.put("513200","四川省阿坝藏族羌族自治州");countyCodes.put("513221","四川省阿坝藏族羌族自治州汶川县");countyCodes.put("513222","四川省阿坝藏族羌族自治州理县");countyCodes.put("513223","四川省阿坝藏族羌族自治州茂县");countyCodes.put("513224","四川省阿坝藏族羌族自治州松潘县");countyCodes.put("513225","四川省阿坝藏族羌族自治州九寨沟县");countyCodes.put("513226","四川省阿坝藏族羌族自治州金川县");countyCodes.put("532300","云南省楚雄彝族自治州");countyCodes.put("532301","云南省楚雄彝族自治州楚雄市");countyCodes.put("532322","云南省楚雄彝族自治州双柏县");countyCodes.put("530423","云南省玉溪市通海县");countyCodes.put("513231","四川省阿坝藏族羌族自治州阿坝县");countyCodes.put("513232","四川省阿坝藏族羌族自治州若尔盖县");countyCodes.put("513233","四川省阿坝藏族羌族自治州红原县");countyCodes.put("513300","四川省甘孜藏族自治州");countyCodes.put("513321","四川省甘孜藏族自治州康定县");countyCodes.put("513322","四川省甘孜藏族自治州泸定县");countyCodes.put("513323","四川省甘孜藏族自治州丹巴县");countyCodes.put("513324","四川省甘孜藏族自治州九龙县");countyCodes.put("513325","四川省甘孜藏族自治州雅江县");countyCodes.put("513326","四川省甘孜藏族自治州道孚县");countyCodes.put("513327","四川省甘孜藏族自治州炉霍县");countyCodes.put("513328","四川省甘孜藏族自治州甘孜县");countyCodes.put("513329","四川省甘孜藏族自治州新龙县");countyCodes.put("513330","四川省甘孜藏族自治州德格县");countyCodes.put("513331","四川省甘孜藏族自治州白玉县");countyCodes.put("513332","四川省甘孜藏族自治州石渠县");countyCodes.put("513333","四川省甘孜藏族自治州色达县");countyCodes.put("513334","四川省甘孜藏族自治州理塘县");countyCodes.put("513335","四川省甘孜藏族自治州巴塘县");countyCodes.put("513336","四川省甘孜藏族自治州乡城县");countyCodes.put("513337","四川省甘孜藏族自治州稻城县");countyCodes.put("513338","四川省甘孜藏族自治州得荣县");countyCodes.put("513400","四川省凉山彝族自治州");countyCodes.put("513401","四川省凉山彝族自治州*昌市");countyCodes.put("513422","四川省凉山彝族自治州木里藏族自治县");countyCodes.put("513423","四川省凉山彝族自治州盐源县");countyCodes.put("513424","四川省凉山彝族自治州德昌县");countyCodes.put("513425","四川省凉山彝族自治州会理县");countyCodes.put("513426","四川省凉山彝族自治州会东县");countyCodes.put("513427","四川省凉山彝族自治州宁南县");countyCodes.put("513428","四川省凉山彝族自治州普格县");countyCodes.put("513429","四川省凉山彝族自治州布拖县");countyCodes.put("513430","四川省凉山彝族自治州金阳县");countyCodes.put("513431","四川省凉山彝族自治州昭觉县");countyCodes.put("513432","四川省凉山彝族自治州喜德县");/**台湾省代码表**/twFirstCode.put("A",10);twFirstCode.put("B",11);twFirstCode.put("C",12);twFirstCode.put("D",13);twFirstCode.put("E",14);twFirstCode.put("F",15);twFirstCode.put("G",16);twFirstCode.put("H",17);twFirstCode.put("J",18);twFirstCode.put("K",19);twFirstCode.put("L",20);twFirstCode.put("M",21);twFirstCode.put("N",22);twFirstCode.put("P",23);twFirstCode.put("Q",24);twFirstCode.put("R",25);twFirstCode.put("S",26);twFirstCode.put("T",27);twFirstCode.put("U",28);twFirstCode.put("V",29);twFirstCode.put("X",30);twFirstCode.put("Y",31);twFirstCode.put("W",32);twFirstCode.put("Z",33);twFirstCode.put("I",34);twFirstCode.put("O",35);/**香港自治区代码表**/hkFirstCode.put("A",1);hkFirstCode.put("B",2);hkFirstCode.put("C",3);hkFirstCode.put("R",18);hkFirstCode.put("U",21);hkFirstCode.put("Z",26);hkFirstCode.put("X",24);hkFirstCode.put("W",23);hkFirstCode.put("O",15);hkFirstCode.put("N",14);}/***将15位身份证号码转换为18位**@paramidCard*15位身份编码*@return18位身份编码*/publicstaticStringconver15CardTo18(StringidCard){StringidCard18="";if(idCard.length()!=CHINA_ID_MIN_LENGTH){returnnull;}if(isNum(idCard)){//获取出生年月日Stringbirthday=idCard.substring(6,12);DatebirthDate=null;try{birthDate=newSimpleDateFormat("yyMMdd").parse(birthday);}catch(ParseExceptione){e.printStackTrace();}Calendarcal=Calendar.getInstance();if(birthDate!=null)cal.setTime(birthDate);//获取出生年(完全表现形式,如:)StringsYear=String.valueOf(cal.get(Calendar.YEAR));idCard18=idCard.substring(0,6)+sYear+idCard.substring(8);//转换字符数组char[]cArr=idCard18.toCharArray();if(cArr!=null){int[]iCard=converCharToInt(cArr);intiSum17=getPowerSum(iCard);//获取校验位StringsVal=getCheckCode18(iSum17);if(sVal.length()>0){idCard18+=sVal;}else{returnnull;}}}else{returnnull;}returnidCard18;}/***验证身份证是否合法,合法回返true*/publicstaticbooleanvalidateCard(StringidCard){Stringcard=idCard.trim();if(validateIdCard18(card)){returntrue;}if(validateIdCard15(card)){returntrue;}String[]cardval=validateIdCard10(card);if(cardval!=null){if(cardval[2].equals("true")){returntrue;}}returnfalse;}/***验证18位身份编码是否合法**@paramidCard身份编码*@return是否合法*/publicstaticbooleanvalidateIdCard18(StringidCard){booleanbTrue=false;if(idCard.length()==CHINA_ID_MAX_LENGTH){//前17位Stringcode17=idCard.substring(0,17);//第18位Stringcode18=idCard.substring(17,CHINA_ID_MAX_LENGTH);if(isNum(code17)){char[]cArr=code17.toCharArray();if(cArr!=null){int[]iCard=converCharToInt(cArr);intiSum17=getPowerSum(iCard);//获取校验位Stringval=getCheckCode18(iSum17);if(val.length()>0){if(val.equalsIgnoreCase(code18)){bTrue=true;}}}}}returnbTrue;}/***验证15位身份编码是否合法**@paramidCard*身份编码*@return是否合法*/publicstaticbooleanvalidateIdCard15(StringidCard){if(idCard.length()!=CHINA_ID_MIN_LENGTH){returnfalse;}if(isNum(idCard)){StringproCode=idCard.substring(0,2);if(cityCodes.get(proCode)==null){returnfalse;}StringbirthCode=idCard.substring(6,12);DatebirthDate=null;try{birthDate=newSimpleDateFormat("yy").parse(birthCode.substring(0,2));}catch(ParseExceptione){e.printStackTrace();}Calendarcal=Calendar.getInstance();if(birthDate!=null)cal.setTime(birthDate);if(!valiDate(cal.get(Calendar.YEAR),Integer.valueOf(birthCode.substring(2,4)),Integer.valueOf(birthCode.substring(4,6)))){returnfalse;}}else{returnfalse;}returntrue;}/***验证10位身份编码是否合法**@paramidCard身份编码*@return身份证信息数组*<p>*[0]-台湾、澳门、香港[1]-性别(男M,女F,未知N)[2]-是否合法(合法true,不合法false)*若不是身份证件号码则返回null*</p>*/publicstaticString[]validateIdCard10(StringidCard){String[]info=newString[3];Stringcard=idCard.replaceAll("[\\(|\\)]","");if(card.length()!=8&&card.length()!=9&&idCard.length()!=10){returnnull;}if(idCard.matches("^[a-zA-Z][0-9]{9}$")){//台湾info[0]="台湾";System.out.println("11111");Stringchar2=idCard.substring(1,2);if(char2.equals("1")){info[1]="M";System.out.println("MMMMMMM");}elseif(char2.equals("2")){info[1]="F";System.out.println("FFFFFFF");}else{info[1]="N";info[2]="false";System.out.println("NNNN");returninfo;}info[2]=validateTWCard(idCard)?"true":"false";}elseif(idCard.matches("^[1|5|7][0-9]{6}\\(?[0-9A-Z]\\)?$")){//澳门info[0]="澳门";info[1]="N";//TODO}elseif(idCard.matches("^[A-Z]{1,2}[0-9]{6}\\(?[0-9A]\\)?$")){//香港info[0]="香港";info[1]="N";info[2]=validateHKCard(idCard)?"true":"false";}else{returnnull;}returninfo;}/***验证台湾身份证号码**@paramidCard*身份证号码*@return验证码是否符合*/publicstaticbooleanvalidateTWCard(StringidCard){Stringstart=idCard.substring(0,1);Stringmid=idCard.substring(1,9);Stringend=idCard.substring(9,10);IntegeriStart=twFirstCode.get(start);Integersum=iStart/10+(iStart%10)*9;char[]chars=mid.toCharArray();Integeriflag=8;for(charc:chars){sum=sum+Integer.valueOf(c+"")*iflag;iflag--;}return(sum%10==0?0:(10-sum%10))==Integer.valueOf(end)?true:false;}/***验证香港身份证号码(存在Bug,部份特殊身份证无法检查)*<p>*身份证前2位为英文字符,如果只出现一个英文字符则表示第一位是空格,对应数字58前2位英文字符A-Z分别对应数字10-35*最后一位校验码为0-9的数字加上字符"A","A"代表10*</p>*<p>*将身份证号码全部转换为数字,分别对应乘9-1相加的总和,整除11则证件号码有效*</p>**@paramidCard身份证号码*@return验证码是否符合*/publicstaticbooleanvalidateHKCard(StringidCard){Stringcard=idCard.replaceAll("[\\(|\\)]","");Integersum=0;if(card.length()==9){sum=(Integer.valueOf(card.substring(0,1).toUpperCase().toCharArray()[0])-55)*9+(Integer.valueOf(card.substring(1,2).toUpperCase().toCharArray()[0])-55)*8;card=card.substring(1,9);}else{sum=522+(Integer.valueOf(card.substring(0,1).toUpperCase().toCharArray()[0])-55)*8;}Stringmid=card.substring(1,7);Stringend=card.substring(7,8);char[]chars=mid.toCharArray();Integeriflag=7;for(charc:chars){sum=sum+Integer.valueOf(c+"")*iflag;iflag--;}if(end.toUpperCase().equals("A")){sum=sum+10;}else{sum=sum+Integer.valueOf(end);}return(sum%11==0)?true:false;}/***将字符数组转换成数字数组**@paramca*字符数组*@return数字数组*/publicstaticint[]converCharToInt(char[]ca){intlen=ca.length;int[]iArr=newint[len];try{for(inti=0;i<len;i++){iArr[i]=Integer.parseInt(String.valueOf(ca[i]));}}catch(NumberFormatExceptione){e.printStackTrace();}returniArr;}/***将身份证的每位和对应位的加权因子相乘之后,再得到和值**@paramiArr*@return身份证编码。*/publicstaticintgetPowerSum(int[]iArr){intiSum=0;if(power.length==iArr.length){for(inti=0;i<iArr.length;i++){for(intj=0;j<power.length;j++){if(i==j){iSum=iSum+iArr[i]*power[j];}}}}returniSum;}/***将power和值与11取模获得余数进行校验码判断**@paramiSum*@return校验位*/publicstaticStringgetCheckCode18(intiSum){StringsCode="";switch(iSum%11){case10:sCode="2";break;case9:sCode="3";break;case8:sCode="4";break;case7:sCode="5";break;case6:sCode="6";break;case5:sCode="7";break;case4:sCode="8";break;case3:sCode="9";break;case2:sCode="x";break;case1:sCode="0";break;case0:sCode="1";break;}returnsCode;}/***根据身份编号获取年龄**@paramidCard*身份编号*@return年龄*/publicstaticintgetAgeByIdCard(StringidCard){intiAge=0;if(idCard.length()==CHINA_ID_MIN_LENGTH){idCard=conver15CardTo18(idCard);}Stringyear=idCard.substring(6,10);Calendarcal=Calendar.getInstance();intiCurrYear=cal.get(Calendar.YEAR);iAge=iCurrYear-Integer.valueOf(year);returniAge;}/***根据身份编号获取生日**@paramidCard身份编号*@return生日(yyyyMMdd)*/publicstaticStringgetBirthByIdCard(StringidCard){Integerlen=idCard.length();if(len<CHINA_ID_MIN_LENGTH){returnnull;}elseif(len==CHINA_ID_MIN_LENGTH){idCard=conver15CardTo18(idCard);}//处理一下日期StringbirthStr=idCard.substring(6,14);Stringyear=birthStr.substring(0,4);Stringmonth=birthStr.substring(4,6);Stringday=birthStr.substring(6,8);returnyear+"-"+month+"-"+day;}/***根据身份编号获取生日年**@paramidCard身份编号*@return生日(yyyy)*/publicstaticShortgetYearByIdCard(StringidCard){Integerlen=idCard.length();if(len<CHINA_ID_MIN_LENGTH){returnnull;}elseif(len==CHINA_ID_MIN_LENGTH){idCard=conver15CardTo18(idCard);}returnShort.valueOf(idCard.substring(6,10));}/***根据身份编号获取生日月**@paramidCard*身份编号*@return生日(MM)*/publicstaticShortgetMonthByIdCard(StringidCard){Integerlen=idCard.length();if(len<CHINA_ID_MIN_LENGTH){returnnull;}elseif(len==CHINA_ID_MIN_LENGTH){idCard=conver15CardTo18(idCard);}returnShort.valueOf(idCard.substring(10,12));}/***根据身份编号获取生日天**@paramidCard*身份编号*@return生日(dd)*/publicstaticShortgetDateByIdCard(StringidCard){Integerlen=idCard.length();if(len<CHINA_ID_MIN_LENGTH){returnnull;}elseif(len==CHINA_ID_MIN_LENGTH){idCard=conver15CardTo18(idCard);}returnShort.valueOf(idCard.substring(12,14));}/***根据身份编号获取性别**@paramidCard身份编号*@return性别(M-男,F-女,N-未知)*/publicstaticStringgetGenderByIdCard(StringidCard){StringsGender="N";if(idCard.length()==CHINA_ID_MIN_LENGTH){idCard=conver15CardTo18(idCard);}StringsCardNum=idCard.substring(16,17);if(Integer.parseInt(sCardNum)%2!=0){sGender="M";}else{sGender="F";}returnsGender;}/***根据身份编号获取户籍省份**@paramidCard身份编码*@return省级编码。*/publicstaticStringgetProvinceByIdCard(StringidCard){intlen=idCard.length();StringsProvince=null;StringsProvinNum="";if(len==CHINA_ID_MIN_LENGTH||len==CHINA_ID_MAX_LENGTH){sProvinNum=idCard.substring(0,2);}sProvince=cityCodes.get(sProvinNum);returnsProvince;}/***根据身份编号获取户籍籍贯**@paramidCard身份编码*@return县/区级编码。*/publicstaticStringgetCountyByIdCard(StringidCard){intlen=idCard.length();StringsCounty=null;StringsCountyNum="";if(len==CHINA_ID_MIN_LENGTH||len==CHINA_ID_MAX_LENGTH){sCountyNum=idCard.substring(0,6);}sCounty=countyCodes.get(sCountyNum);returnsCounty;}/***数字验证**@paramval*@return提取的数字。*/publicstaticbooleanisNum(Stringval){returnval==null||"".equals(val)?false:val.matches("^[0-9]*$");}/***验证小于当前日期是否有效**@paramiYear*待验证日期(年)*@paramiMonth*待验证日期(月1-12)*@paramiDate*待验证日期(日)*@return是否有效*/publicstaticbooleanvaliDate(intiYear,intiMonth,intiDate){Calendarcal=Calendar.getInstance();intyear=cal.get(Calendar.YEAR);intdatePerMonth;if(iYear<MIN||iYear>=year){returnfalse;}if(iMonth<1||iMonth>12){returnfalse;}switch(iMonth){case4:case6:case9:case11:datePerMonth=30;break;case2:booleandm=((iYear%4==0&&iYear%100!=0)||(iYear%400==0))&&(iYear>MIN&&iYear<year);datePerMonth=dm?29:28;break;default:datePerMonth=31;}return(iDate>=1)&&(iDate<=datePerMonth);}/***main入口函数*@paramargs*/publicstaticvoidmain(String[]args){//StringidCard="130503670401001";//StringidCard="372922193503059001";StringidCard="361129198002157931";System.out.println(validateCard(idCard));if(validateCard(idCard)){System.out.println(getBirthByIdCard(idCard));System.out.println(getAgeByIdCard(idCard));System.out.println(getGenderByIdCard(idCard));System.out.println(getProvinceByIdCard(idCard));System.out.println(getCountyByIdCard(idCard));}}}

(如果你觉得文章对你有帮助,欢迎捐赠,^_^,谢谢!)

==============================

©Copyright蕃薯耀 11月02日

/fanshuyao/

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。