diff --git a/data.sql b/data.sql new file mode 100644 index 0000000..3deaf09 --- /dev/null +++ b/data.sql @@ -0,0 +1,517 @@ +/* + Navicat Premium Dump SQL + + Source Server : 192.168.18.199(gpfx) + Source Server Type : MySQL + Source Server Version : 90200 (9.2.0) + Source Host : 192.168.18.199:3306 + Source Schema : db_gp_cj + + Target Server Type : MySQL + Target Server Version : 90200 (9.2.0) + File Encoding : 65001 + + Date: 26/06/2025 11:41:15 +*/ + +SET NAMES utf8mb4; +SET FOREIGN_KEY_CHECKS = 0; + +-- ---------------------------- +-- Table structure for eastmoney_rzrq_data +-- ---------------------------- +DROP TABLE IF EXISTS `eastmoney_rzrq_data`; +CREATE TABLE `eastmoney_rzrq_data` ( + `trade_date` date NOT NULL, + `index_value` decimal(10, 4) NULL DEFAULT NULL COMMENT '指数', + `change_percent` decimal(10, 4) NULL DEFAULT NULL COMMENT '涨跌幅', + `float_market_value` decimal(20, 2) NULL DEFAULT NULL COMMENT '流通市值', + `change_percent_3d` decimal(10, 4) NULL DEFAULT NULL COMMENT '3日涨跌幅', + `change_percent_5d` decimal(10, 4) NULL DEFAULT NULL COMMENT '5日涨跌幅', + `change_percent_10d` decimal(10, 4) NULL DEFAULT NULL COMMENT '10日涨跌幅', + `financing_balance` decimal(20, 2) NULL DEFAULT NULL COMMENT '融资余额', + `financing_balance_ratio` decimal(10, 4) NULL DEFAULT NULL COMMENT '融资余额占比', + `financing_buy_amount` decimal(20, 2) NULL DEFAULT NULL COMMENT '融资买入额', + `financing_buy_amount_3d` decimal(20, 2) NULL DEFAULT NULL COMMENT '3日融资买入额', + `financing_buy_amount_5d` decimal(20, 2) NULL DEFAULT NULL COMMENT '5日融资买入额', + `financing_buy_amount_10d` decimal(20, 2) NULL DEFAULT NULL COMMENT '10日融资买入额', + `financing_repay_amount` decimal(20, 2) NULL DEFAULT NULL COMMENT '融资偿还额', + `financing_repay_amount_3d` decimal(20, 2) NULL DEFAULT NULL COMMENT '3日融资偿还额', + `financing_repay_amount_5d` decimal(20, 2) NULL DEFAULT NULL COMMENT '5日融资偿还额', + `financing_repay_amount_10d` decimal(20, 2) NULL DEFAULT NULL COMMENT '10日融资偿还额', + `financing_net_amount` decimal(20, 2) NULL DEFAULT NULL COMMENT '融资净额', + `financing_net_amount_3d` decimal(20, 2) NULL DEFAULT NULL COMMENT '3日融资净额', + `financing_net_amount_5d` decimal(20, 2) NULL DEFAULT NULL COMMENT '5日融资净额', + `financing_net_amount_10d` decimal(20, 2) NULL DEFAULT NULL COMMENT '10日融资净额', + `securities_balance` decimal(20, 2) NULL DEFAULT NULL COMMENT '融券余额', + `securities_volume` decimal(20, 2) NULL DEFAULT NULL COMMENT '融券余量', + `securities_repay_volume` decimal(20, 2) NULL DEFAULT NULL COMMENT '融券偿还量', + `securities_repay_volume_3d` decimal(20, 2) NULL DEFAULT NULL COMMENT '3日融券偿还量', + `securities_repay_volume_5d` decimal(20, 2) NULL DEFAULT NULL COMMENT '5日融券偿还量', + `securities_repay_volume_10d` decimal(20, 2) NULL DEFAULT NULL COMMENT '10日融券偿还量', + `securities_sell_volume` decimal(20, 2) NULL DEFAULT NULL COMMENT '融券卖出量', + `securities_sell_volume_3d` decimal(20, 2) NULL DEFAULT NULL COMMENT '3日融券卖出量', + `securities_sell_volume_5d` decimal(20, 2) NULL DEFAULT NULL COMMENT '5日融券卖出量', + `securities_sell_volume_10d` decimal(20, 2) NULL DEFAULT NULL COMMENT '10日融券卖出量', + `securities_net_volume` decimal(20, 2) NULL DEFAULT NULL COMMENT '融券净量', + `securities_net_volume_3d` decimal(20, 2) NULL DEFAULT NULL COMMENT '3日融券净量', + `securities_net_volume_5d` decimal(20, 2) NULL DEFAULT NULL COMMENT '5日融券净量', + `securities_net_volume_10d` decimal(20, 2) NULL DEFAULT NULL COMMENT '10日融券净量', + `total_rzrq_balance` decimal(20, 2) NULL DEFAULT NULL COMMENT '融资融券余额', + `total_rzrq_balance_cz` decimal(20, 2) NULL DEFAULT NULL COMMENT '融资融券余额差值', + `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP, + `updated_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, + PRIMARY KEY (`trade_date`) USING BTREE +) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci COMMENT = '东方财富融资融券数据表' ROW_FORMAT = Dynamic; + +-- ---------------------------- +-- Table structure for fear_greed_index +-- ---------------------------- +DROP TABLE IF EXISTS `fear_greed_index`; +CREATE TABLE `fear_greed_index` ( + `id` int NOT NULL AUTO_INCREMENT, + `index_value` decimal(5, 2) NOT NULL COMMENT '恐贪指数值(0-100)', + `trading_date` date NOT NULL COMMENT '交易日期', + `update_time` datetime NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', + PRIMARY KEY (`id`) USING BTREE, + UNIQUE INDEX `uk_trading_date`(`trading_date` ASC) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1003 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci COMMENT = '市场恐贪指数数据' ROW_FORMAT = Dynamic; + +-- ---------------------------- +-- Table structure for follow_stock +-- ---------------------------- +DROP TABLE IF EXISTS `follow_stock`; +CREATE TABLE `follow_stock` ( + `id` bigint NOT NULL AUTO_INCREMENT, + `stock_code` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '股票代码', + `stock_name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '股票名称', + `add_time` datetime NULL DEFAULT NULL COMMENT '添加时间', + `status` tinyint NULL DEFAULT 1 COMMENT '状态', + PRIMARY KEY (`id`) USING BTREE, + UNIQUE INDEX `uk_stock_code`(`stock_code` ASC) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 22 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci COMMENT = '关注的股票' ROW_FORMAT = Dynamic; + +-- ---------------------------- +-- Table structure for fund_cang +-- ---------------------------- +DROP TABLE IF EXISTS `fund_cang`; +CREATE TABLE `fund_cang` ( + `id` int NOT NULL AUTO_INCREMENT, + `fund_id` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL, + `fund_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL, + `company_money` decimal(20, 2) NULL DEFAULT NULL, + `company_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL, + `company_id` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL, + `fund_data` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL, + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1874595 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_bin ROW_FORMAT = Dynamic; + +-- ---------------------------- +-- Table structure for fundamental_analysis +-- ---------------------------- +DROP TABLE IF EXISTS `fundamental_analysis`; +CREATE TABLE `fundamental_analysis` ( + `id` int NOT NULL AUTO_INCREMENT, + `stock_code` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '股票代码', + `stock_name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '股票名称', + `dimension` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '分析维度', + `ai_response` text CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT 'AI分析结果', + `reasoning_process` text CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL COMMENT '推理过程', + `references` json NULL COMMENT '参考资料', + `update_time` datetime NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', + `extra_info` json NULL COMMENT '扩展信息', + PRIMARY KEY (`id`) USING BTREE, + INDEX `idx_stock_dimension`(`stock_code` ASC, `dimension` ASC) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 12104 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci COMMENT = '基本面分析结果表' ROW_FORMAT = Dynamic; + +-- ---------------------------- +-- Table structure for gp_category_industry +-- ---------------------------- +DROP TABLE IF EXISTS `gp_category_industry`; +CREATE TABLE `gp_category_industry` ( + `id` int NOT NULL AUTO_INCREMENT COMMENT 'id', + `category_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '分类名称', + `belong_industry` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '所属行业', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 52 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic; + +-- ---------------------------- +-- Table structure for gp_code_all +-- ---------------------------- +DROP TABLE IF EXISTS `gp_code_all`; +CREATE TABLE `gp_code_all` ( + `id` int NOT NULL AUTO_INCREMENT, + `gp_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL, + `gp_code` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL, + `gp_code_two` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL, + `gp_code_three` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL, + `market_cap` decimal(20, 2) NULL DEFAULT NULL, + `mark1` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL, + `mark2` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL, + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 6686 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_bin COMMENT = '所有个股代码-爬取指数用' ROW_FORMAT = Dynamic; + +-- ---------------------------- +-- Table structure for gp_code_hk +-- ---------------------------- +DROP TABLE IF EXISTS `gp_code_hk`; +CREATE TABLE `gp_code_hk` ( + `id` int NOT NULL AUTO_INCREMENT, + `gp_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL, + `gp_code` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL, + `gp_code_two` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL, + `gp_code_three` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL, + `market_cap` decimal(20, 2) NULL DEFAULT NULL, + `mark1` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL, + `mark2` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL, + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 2956 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_bin COMMENT = '所有指数代码-爬取数据使用' ROW_FORMAT = Dynamic; + +-- ---------------------------- +-- Table structure for gp_code_zs +-- ---------------------------- +DROP TABLE IF EXISTS `gp_code_zs`; +CREATE TABLE `gp_code_zs` ( + `id` int NOT NULL AUTO_INCREMENT, + `gp_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL, + `gp_code` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL, + `gp_code_two` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL, + `gp_code_three` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL, + `market_cap` decimal(20, 2) NULL DEFAULT NULL, + `mark1` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL, + `mark2` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL, + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 6686 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_bin COMMENT = '所有指数代码-爬取数据使用' ROW_FORMAT = Dynamic; + +-- ---------------------------- +-- Table structure for gp_data +-- ---------------------------- +DROP TABLE IF EXISTS `gp_data`; +CREATE TABLE `gp_data` ( + `id` int NOT NULL AUTO_INCREMENT, + `pg_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL, + `xiangsidu` decimal(10, 2) NULL DEFAULT NULL COMMENT '控制相似度为多少的时候进行回测 和下面的数字是关联的', + `ii` int NULL DEFAULT NULL COMMENT '相似度的条数', + `raye_ga_hc` decimal(10, 2) NULL DEFAULT NULL COMMENT '回测涨跌幅大于多少的数据', + `huice_function_num` int NULL DEFAULT NULL COMMENT '回测判断胜率方法 0是代表相差1%或者同涨同跌都算胜 1是代表相差1%算胜 2是代表同涨同跌算胜', + `yes_yuce` int NULL DEFAULT NULL, + `no_yuce` int NULL DEFAULT NULL, + `yes_yuce_twoday` int NULL DEFAULT NULL, + `no_yuce_twoday` int NULL DEFAULT NULL, + `yes_yuce_fiveday` int NULL DEFAULT NULL, + `no_yuce_fiveday` int NULL DEFAULT NULL, + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 42690 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_bin ROW_FORMAT = Dynamic; + +-- ---------------------------- +-- Table structure for gp_day_data +-- ---------------------------- +DROP TABLE IF EXISTS `gp_day_data`; +CREATE TABLE `gp_day_data` ( + `id` bigint NOT NULL AUTO_INCREMENT COMMENT '主键', + `symbol` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL COMMENT '个股代码', + `timestamp` timestamp NULL DEFAULT NULL COMMENT '时间戳', + `volume` bigint NULL DEFAULT NULL COMMENT '数量', + `open` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL COMMENT '开始价', + `high` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL COMMENT '最高价', + `low` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL COMMENT '最低价', + `close` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL COMMENT '结束价', + `chg` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL COMMENT '变化数值', + `percent` decimal(10, 2) NULL DEFAULT NULL COMMENT '变化百分比', + `turnoverrate` decimal(10, 2) NULL DEFAULT NULL COMMENT '换手率', + `amount` bigint NULL DEFAULT NULL COMMENT '成交金额', + `pb` decimal(10, 2) NULL DEFAULT NULL COMMENT '当前PB', + `pe` decimal(10, 2) NULL DEFAULT NULL COMMENT '当前PE', + `ps` decimal(10, 2) NULL DEFAULT NULL COMMENT '当前PS', + `create_time` datetime NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, + PRIMARY KEY (`id`) USING BTREE, + INDEX `idx_symbol`(`symbol` ASC) USING BTREE, + INDEX `idx_timestamp`(`timestamp` ASC) USING BTREE, + INDEX `idx_symbol_time`(`symbol` ASC, `timestamp` ASC) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 28356293 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_bin ROW_FORMAT = Dynamic; + +-- ---------------------------- +-- Table structure for gp_ex_rights_log +-- ---------------------------- +DROP TABLE IF EXISTS `gp_ex_rights_log`; +CREATE TABLE `gp_ex_rights_log` ( + `id` int NOT NULL AUTO_INCREMENT, + `stock_code` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL COMMENT '股票代码', + `change_date` date NULL DEFAULT NULL COMMENT '除权变动日期', + `before_price` decimal(10, 3) NULL DEFAULT NULL COMMENT '变动前收盘价(数据库中的价格)', + `after_price` decimal(10, 3) NULL DEFAULT NULL COMMENT '变动后收盘价(API获取的价格)', + `update_time` datetime NULL DEFAULT NULL COMMENT '脚本执行的更新时间', + `optimization_flag` int NULL DEFAULT NULL COMMENT '波段优化标志,1为已经完成优化', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 285 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_bin COMMENT = '股票除权日志表' ROW_FORMAT = DYNAMIC; + +-- ---------------------------- +-- Table structure for gp_gnbk +-- ---------------------------- +DROP TABLE IF EXISTS `gp_gnbk`; +CREATE TABLE `gp_gnbk` ( + `id` bigint NULL DEFAULT NULL, + `bk_code` bigint NULL DEFAULT NULL, + `bk_name` text CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL, + `gp_code` text CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL, + `gp_name` text CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL +) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic; + +-- ---------------------------- +-- Table structure for gp_gnbk_all +-- ---------------------------- +DROP TABLE IF EXISTS `gp_gnbk_all`; +CREATE TABLE `gp_gnbk_all` ( + `id` bigint NULL DEFAULT NULL, + `bk_code` bigint NULL DEFAULT NULL, + `bk_name` text CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL, + `gp_code` text CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL, + `gp_name` text CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL +) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic; + +-- ---------------------------- +-- Table structure for gp_gnbk_gn +-- ---------------------------- +DROP TABLE IF EXISTS `gp_gnbk_gn`; +CREATE TABLE `gp_gnbk_gn` ( + `id` bigint NULL DEFAULT NULL, + `bk_code` bigint NULL DEFAULT NULL, + `bk_name` text CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL, + `gp_code` text CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL, + `gp_name` text CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL +) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic; + +-- ---------------------------- +-- Table structure for gp_hybk +-- ---------------------------- +DROP TABLE IF EXISTS `gp_hybk`; +CREATE TABLE `gp_hybk` ( + `id` bigint NULL DEFAULT NULL, + `bk_code` bigint NULL DEFAULT NULL, + `bk_name` text CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL, + `gp_code` text CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL, + `gp_name` text CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL, + `Unnamed: 5` double NULL DEFAULT NULL, + `Unnamed: 6` double NULL DEFAULT NULL +) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic; + +-- ---------------------------- +-- Table structure for gp_main_business +-- ---------------------------- +DROP TABLE IF EXISTS `gp_main_business`; +CREATE TABLE `gp_main_business` ( + `stock_code` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '股票代码', + `stock_name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '股票简称', + `report_date` varchar(8) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '报告期(YYYYMMDD)', + `product_rank` varchar(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '项目排名(1-5)', + `product_name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '项目名称', + `revenue` decimal(20, 2) NULL DEFAULT NULL COMMENT '项目收入', + `cost` decimal(20, 2) NULL DEFAULT NULL COMMENT '项目成本', + `profit` decimal(20, 2) NULL DEFAULT NULL COMMENT '项目毛利', + `profit_margin` decimal(10, 4) NULL DEFAULT NULL COMMENT '项目毛利率', + PRIMARY KEY (`stock_code`, `report_date`, `product_rank`) USING BTREE +) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic; + +-- ---------------------------- +-- Table structure for gp_min_data +-- ---------------------------- +DROP TABLE IF EXISTS `gp_min_data`; +CREATE TABLE `gp_min_data` ( + `id` bigint NOT NULL AUTO_INCREMENT COMMENT '主键', + `symbol` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL COMMENT '个股代码', + `timestamp` timestamp NULL DEFAULT NULL COMMENT '时间戳', + `volume` bigint NULL DEFAULT NULL COMMENT '数量', + `open` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL COMMENT '开始价', + `high` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL COMMENT '最高价', + `low` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL COMMENT '最低价', + `close` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL COMMENT '结束价', + `chg` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL COMMENT '变化数值', + `percent` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL COMMENT '变化百分比', + `turnoverrate` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL, + `amount` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL COMMENT '成交金额', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 61116588 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_bin ROW_FORMAT = Dynamic; + +-- ---------------------------- +-- Table structure for gp_product_category +-- ---------------------------- +DROP TABLE IF EXISTS `gp_product_category`; +CREATE TABLE `gp_product_category` ( + `id` int NOT NULL AUTO_INCREMENT, + `category_name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL, + `product_name` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL, + `stock_code` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL, + `stock_name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL, + `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP, + PRIMARY KEY (`id`) USING BTREE, + INDEX `idx_stock_code`(`stock_code` ASC) USING BTREE, + INDEX `idx_product_name`(`product_name` ASC) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 35869 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic; + +-- ---------------------------- +-- Table structure for gp_zygc +-- ---------------------------- +DROP TABLE IF EXISTS `gp_zygc`; +CREATE TABLE `gp_zygc` ( + `id` int NOT NULL AUTO_INCREMENT, + `gp_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '股票名称', + `gp_code` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '股票代码', + `zygc_xmmc` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '主营构成(按行业)-项目名称', + `zygc_xmsr` decimal(20, 0) NULL DEFAULT NULL COMMENT '主营构成(按行业)-项目收入', + `zygc_xmmlr` decimal(10, 2) NULL DEFAULT NULL COMMENT '主营构成(按行业)-项目毛利率', + `belong_time` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '所属财报期', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 12774 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci COMMENT = '个股的主营构成' ROW_FORMAT = Dynamic; + +-- ---------------------------- +-- Table structure for gp_zyyw +-- ---------------------------- +DROP TABLE IF EXISTS `gp_zyyw`; +CREATE TABLE `gp_zyyw` ( + `id` int NOT NULL AUTO_INCREMENT, + `gp_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '股票名称', + `gp_code` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '股票代码', + `zyyw_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '主营业务名称', + `zyyw_zb` decimal(10, 2) NULL DEFAULT NULL COMMENT '主营业务占比', + `belong_time` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '所属财报期', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 25280 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci COMMENT = '上市公司主营业务占比' ROW_FORMAT = Dynamic; + +-- ---------------------------- +-- Table structure for hk_hot_stocks +-- ---------------------------- +DROP TABLE IF EXISTS `hk_hot_stocks`; +CREATE TABLE `hk_hot_stocks` ( + `id` int NOT NULL AUTO_INCREMENT, + `symbol` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL, + `name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL, + `value` int NULL DEFAULT NULL, + `increment` int NULL DEFAULT NULL, + `rank_change` int NULL DEFAULT NULL, + `percent` float NULL DEFAULT NULL, + `current` float NULL DEFAULT NULL, + `chg` float NULL DEFAULT NULL, + `exchange` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL, + `stock_type` int NULL DEFAULT NULL, + `add_time` datetime NULL DEFAULT NULL, + `status` varchar(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL, + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 53981 CHARACTER SET = sjis COLLATE = sjis_japanese_ci ROW_FORMAT = Dynamic; + +-- ---------------------------- +-- Table structure for limitup_analysis_stock_changes +-- ---------------------------- +DROP TABLE IF EXISTS `limitup_analysis_stock_changes`; +CREATE TABLE `limitup_analysis_stock_changes` ( + `symbol` text CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL, + `net_profit_cagr` double NULL DEFAULT NULL, + `north_net_inflow` double NULL DEFAULT NULL, + `ps` double NULL DEFAULT NULL, + `type` bigint NULL DEFAULT NULL, + `percent` double NULL DEFAULT NULL, + `has_follow` tinyint(1) NULL DEFAULT NULL, + `tick_size` double NULL DEFAULT NULL, + `pb_ttm` double NULL DEFAULT NULL, + `float_shares` bigint NULL DEFAULT NULL, + `current` double NULL DEFAULT NULL, + `amplitude` double NULL DEFAULT NULL, + `pcf` text CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL, + `current_year_percent` double NULL DEFAULT NULL, + `float_market_capital` double NULL DEFAULT NULL, + `north_net_inflow_time` double NULL DEFAULT NULL, + `market_capital` double NULL DEFAULT NULL, + `dividend_yield` double NULL DEFAULT NULL, + `lot_size` bigint NULL DEFAULT NULL, + `roe_ttm` double NULL DEFAULT NULL, + `total_percent` double NULL DEFAULT NULL, + `percent5m` double NULL DEFAULT NULL, + `income_cagr` double NULL DEFAULT NULL, + `amount` double NULL DEFAULT NULL, + `chg` double NULL DEFAULT NULL, + `issue_date_ts` bigint NULL DEFAULT NULL, + `eps` double NULL DEFAULT NULL, + `main_net_inflows` double NULL DEFAULT NULL, + `volume` bigint NULL DEFAULT NULL, + `volume_ratio` double NULL DEFAULT NULL, + `pb` double NULL DEFAULT NULL, + `followers` bigint NULL DEFAULT NULL, + `turnover_rate` double NULL DEFAULT NULL, + `mapping_quote_current` text CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL, + `first_percent` double NULL DEFAULT NULL, + `name` text CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL, + `pe_ttm` double NULL DEFAULT NULL, + `dual_counter_mapping_symbol` text CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL, + `total_shares` bigint NULL DEFAULT NULL, + `limitup_days` bigint NULL DEFAULT NULL, + `id` bigint NULL DEFAULT NULL +) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic; + +-- ---------------------------- +-- Table structure for rzrq_data +-- ---------------------------- +DROP TABLE IF EXISTS `rzrq_data`; +CREATE TABLE `rzrq_data` ( + `trade_date` date NOT NULL COMMENT '交易日期', + `sh_financing_balance` decimal(12, 2) NULL DEFAULT NULL COMMENT '上海融资余额(亿元)', + `sz_financing_balance` decimal(12, 2) NULL DEFAULT NULL COMMENT '深圳融资余额(亿元)', + `bj_financing_balance` decimal(12, 2) NULL DEFAULT NULL COMMENT '北京融资余额(亿元)', + `total_financing_balance` decimal(12, 2) NULL DEFAULT NULL COMMENT '融资余额合计(亿元)', + `sh_financing_buy` decimal(12, 2) NULL DEFAULT NULL COMMENT '上海融资买入额(亿元)', + `sz_financing_buy` decimal(12, 2) NULL DEFAULT NULL COMMENT '深圳融资买入额(亿元)', + `bj_financing_buy` decimal(12, 2) NULL DEFAULT NULL COMMENT '北京融资买入额(亿元)', + `total_financing_buy` decimal(12, 2) NULL DEFAULT NULL COMMENT '融资买入额合计(亿元)', + `sh_securities_balance` decimal(12, 2) NULL DEFAULT NULL COMMENT '上海融券余量余额(亿元)', + `sz_securities_balance` decimal(12, 2) NULL DEFAULT NULL COMMENT '深圳融券余量余额(亿元)', + `bj_securities_balance` decimal(12, 2) NULL DEFAULT NULL COMMENT '北京融券余量余额(亿元)', + `total_securities_balance` decimal(12, 2) NULL DEFAULT NULL COMMENT '融券余量余额合计(亿元)', + `sh_rzrq_balance` decimal(12, 2) NULL DEFAULT NULL COMMENT '上海融资融券余额(亿元)', + `sz_rzrq_balance` decimal(12, 2) NULL DEFAULT NULL COMMENT '深圳融资融券余额(亿元)', + `bj_rzrq_balance` decimal(12, 2) NULL DEFAULT NULL COMMENT '北京融资融券余额(亿元)', + `total_rzrq_balance` decimal(12, 2) NULL DEFAULT NULL COMMENT '融资融券余额合计(亿元)', + `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP, + `updated_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, + PRIMARY KEY (`trade_date`) USING BTREE +) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci COMMENT = '融资融券数据表' ROW_FORMAT = Dynamic; + +-- ---------------------------- +-- Table structure for stock_price_changes +-- ---------------------------- +DROP TABLE IF EXISTS `stock_price_changes`; +CREATE TABLE `stock_price_changes` ( + `symbol` text CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL, + `name` text CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL, + `current` double NULL DEFAULT NULL, + `percent` double NULL DEFAULT NULL, + `time_mark` text CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL, + `add_time` text CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL +) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic; + +-- ---------------------------- +-- Table structure for stock_price_data +-- ---------------------------- +DROP TABLE IF EXISTS `stock_price_data`; +CREATE TABLE `stock_price_data` ( + `stock_code` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '股票代码', + `stock_name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '股票名称', + `latest_price` decimal(10, 2) NULL DEFAULT NULL COMMENT '最新价', + `change_percent` decimal(10, 2) NULL DEFAULT NULL COMMENT '涨跌幅', + `change_amount` decimal(10, 2) NULL DEFAULT NULL COMMENT '涨跌额', + `volume` bigint NULL DEFAULT NULL COMMENT '成交量(手)', + `amount` decimal(20, 2) NULL DEFAULT NULL COMMENT '成交额', + `amplitude` decimal(10, 2) NULL DEFAULT NULL COMMENT '振幅', + `turnover_rate` decimal(10, 2) NULL DEFAULT NULL COMMENT '换手率', + `pe_ratio` decimal(10, 2) NULL DEFAULT NULL COMMENT '市盈率', + `high_price` decimal(10, 2) NULL DEFAULT NULL COMMENT '最高价', + `low_price` decimal(10, 2) NULL DEFAULT NULL COMMENT '最低价', + `open_price` decimal(10, 2) NULL DEFAULT NULL COMMENT '开盘价', + `pre_close` decimal(10, 2) NULL DEFAULT NULL COMMENT '昨收价', + `total_market_value` decimal(20, 2) NULL DEFAULT NULL COMMENT '总市值', + `float_market_value` decimal(20, 2) NULL DEFAULT NULL COMMENT '流通市值', + `pb_ratio` decimal(10, 2) NULL DEFAULT NULL COMMENT '市净率', + `list_date` date NULL DEFAULT NULL COMMENT '上市日期', + `update_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', + `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', + PRIMARY KEY (`stock_code`) USING BTREE +) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci COMMENT = '实时股价数据表' ROW_FORMAT = Dynamic; + +SET FOREIGN_KEY_CHECKS = 1; diff --git a/requirements.txt b/requirements.txt index 5216a58..8feab48 100644 --- a/requirements.txt +++ b/requirements.txt @@ -17,4 +17,5 @@ google-genai redis==5.2.1 pandas==2.2.3 apscheduler==3.11.0 -pymongo==4.13.0 \ No newline at end of file +pymongo==4.13.0 +scikit-learn==1.6.1 diff --git a/src/app.py b/src/app.py index 895f387..a8bfac9 100644 --- a/src/app.py +++ b/src/app.py @@ -42,10 +42,12 @@ from src.valuation_analysis.index_analyzer import IndexAnalyzer # 导入股票日线数据采集器 from src.scripts.stock_daily_data_collector import collect_stock_daily_data +from src.scripts.stock_daily_data_collector_v2 import collect_stock_daily_data_v2 from valuation_analysis.financial_analysis import FinancialAnalyzer from src.valuation_analysis.stock_price_collector import StockPriceCollector -from src.quantitative_analysis.batch_stock_price_collector import fetch_and_store_stock_data, get_stock_realtime_info_from_redis +from src.quantitative_analysis.batch_stock_price_collector import fetch_and_store_stock_data +from src.quantitative_analysis.hk_stock_price_collector import fetch_and_store_hk_stock_data from src.quantitative_analysis.momentum_analysis import MomentumAnalyzer # 设置日志 @@ -207,6 +209,24 @@ def run_stock_daily_collection1(): # 获取当天日期 today = datetime.now().strftime('%Y-%m-%d') + # 定义数据库连接地址 + db_url = 'mysql+pymysql://root:Chlry#$.8@192.168.18.199:3306/db_gp_cj' + # collect_stock_daily_data(db_url, today) + collect_stock_daily_data_v2(db_url) + except Exception as e: + logger.error(f"启动股票日线数据采集任务失败: {str(e)}") + return jsonify({ + "status": "success" + }), 200 + +@app.route('/scheduler/stockDailyHK/collection', methods=['GET']) +def run_stock_daily_collection2(): + """执行股票日线数据采集任务 下午4点开始""" + try: + logger.info("开始执行股票日线数据采集") + # 获取当天日期 + today = datetime.now().strftime('%Y-%m-%d') + # 定义数据库连接地址 db_url = 'mysql+pymysql://root:Chlry#$.8@192.168.18.199:3306/db_gp_cj' collect_stock_daily_data(db_url, today) @@ -3002,6 +3022,16 @@ def run_batch_stock_price_collection(): logger.error(f"批量采集A股行情失败: {str(e)}") return jsonify({"status": "error", "message": str(e)}) +@app.route('/scheduler/batch_hk_stock_price/collection', methods=['GET']) +def run_batch_hk_stock_price_collection(): + """批量采集A股行情并保存到数据库""" + try: + fetch_and_store_hk_stock_data() + return jsonify({"status": "success", "message": "批量采集A股行情并保存到数据库成功"}) + except Exception as e: + logger.error(f"批量采集A股行情失败: {str(e)}") + return jsonify({"status": "error", "message": str(e)}) + if __name__ == '__main__': # 启动Web服务器 diff --git a/src/quantitative_analysis/average_distance_factor.py b/src/quantitative_analysis/average_distance_factor.py new file mode 100644 index 0000000..3394523 --- /dev/null +++ b/src/quantitative_analysis/average_distance_factor.py @@ -0,0 +1,310 @@ +# coding:utf-8 +#计算股价平均距离因子-行业个股列表来计算 + +import pandas as pd +import numpy as np +from sqlalchemy import create_engine, text +from datetime import datetime, timedelta +from sklearn.preprocessing import StandardScaler +from sklearn.metrics.pairwise import euclidean_distances +import warnings +warnings.filterwarnings('ignore') + +class AverageDistanceFactor: + """平均距离因子计算器""" + + def __init__(self, db_url): + self.engine = create_engine( + db_url, + pool_size=5, + max_overflow=10, + pool_recycle=3600 + ) + + def get_industry_stocks(self, industry_name=None, concept_name=None): + """获取指定行业或概念的股票列表""" + if industry_name: + query = text(""" + SELECT DISTINCT gp_code as symbol + FROM gp_hybk + WHERE bk_name = :name + """) + params = {"name": industry_name} + elif concept_name: + query = text(""" + SELECT DISTINCT gp_code as symbol + FROM gp_gnbk + WHERE bk_name = :name + """) + params = {"name": concept_name} + else: + raise ValueError("必须提供 industry_name 或 concept_name 之一") + + try: + with self.engine.connect() as conn: + result = conn.execute(query, params).fetchall() + + if result: + symbols = [row[0] for row in result] + print(f"获取到 {len(symbols)} 只股票") + return symbols + else: + print(f"未找到{'行业' if industry_name else '概念'} {industry_name or concept_name} 的股票") + return [] + except Exception as e: + print(f"获取股票列表失败: {e}") + return [] + + def get_stock_data(self, symbols, days=20): + """获取股票的历史数据""" + if not symbols: + return pd.DataFrame() + + # 计算开始日期 + end_date = datetime.now() + start_date = end_date - timedelta(days=days * 2) # 多取一些数据以防节假日 + + # 构建SQL查询 + symbols_str = "', '".join(symbols) + query = f""" + SELECT symbol, timestamp, volume, open, high, low, close, + chg, percent, turnoverrate, amount, pb, pe, ps + FROM gp_day_data + WHERE symbol IN ('{symbols_str}') + AND timestamp >= '{start_date.strftime('%Y-%m-%d')}' + ORDER BY symbol, timestamp DESC + """ + + try: + df = pd.read_sql(query, self.engine) + print(f"获取到 {len(df)} 条历史数据") + return df + except Exception as e: + print(f"获取历史数据失败: {e}") + return pd.DataFrame() + + def calculate_technical_indicators(self, df, days=20): + """计算技术指标""" + result_data = [] + + for symbol in df['symbol'].unique(): + stock_data = df[df['symbol'] == symbol].copy() + stock_data = stock_data.sort_values('timestamp') + + # 只取最近N天的数据 + stock_data = stock_data.tail(days) + + if len(stock_data) < days: + continue # 数据不足,跳过 + + # 转换数据类型 + for col in ['open', 'high', 'low', 'close', 'chg']: + stock_data[col] = pd.to_numeric(stock_data[col], errors='coerce') + + # 计算各种技术指标 + indicators = self._compute_indicators(stock_data) + indicators['symbol'] = symbol + result_data.append(indicators) + + return pd.DataFrame(result_data) + + def _compute_indicators(self, data): + """计算具体的技术指标""" + indicators = {} + + # 1. 收益率指标 + data['returns'] = data['close'].pct_change() + indicators['return_5d'] = data['returns'].tail(5).sum() # 5日累计收益率 + indicators['return_10d'] = data['returns'].tail(10).sum() # 10日累计收益率 + indicators['return_20d'] = data['returns'].tail(20).sum() # 20日累计收益率 + + # 2. 波动率指标 + indicators['volatility_5d'] = data['returns'].tail(5).std() # 5日波动率 + indicators['volatility_10d'] = data['returns'].tail(10).std() # 10日波动率 + indicators['volatility_20d'] = data['returns'].tail(20).std() # 20日波动率 + + # 3. 价格相对位置 + indicators['price_position_5d'] = (data['close'].iloc[-1] - data['low'].tail(5).min()) / (data['high'].tail(5).max() - data['low'].tail(5).min()) + indicators['price_position_10d'] = (data['close'].iloc[-1] - data['low'].tail(10).min()) / (data['high'].tail(10).max() - data['low'].tail(10).min()) + indicators['price_position_20d'] = (data['close'].iloc[-1] - data['low'].tail(20).min()) / (data['high'].tail(20).max() - data['low'].tail(20).min()) + + # 4. 移动平均偏离度 + ma_5 = data['close'].tail(5).mean() + ma_10 = data['close'].tail(10).mean() + ma_20 = data['close'].tail(20).mean() + current_price = data['close'].iloc[-1] + + indicators['ma_deviation_5d'] = (current_price - ma_5) / ma_5 + indicators['ma_deviation_10d'] = (current_price - ma_10) / ma_10 + indicators['ma_deviation_20d'] = (current_price - ma_20) / ma_20 + + # 5. 成交量相关指标 + indicators['volume_ratio_5d'] = data['volume'].tail(5).mean() / data['volume'].mean() + indicators['volume_ratio_10d'] = data['volume'].tail(10).mean() / data['volume'].mean() + indicators['turnover_avg_5d'] = data['turnoverrate'].tail(5).mean() + indicators['turnover_avg_10d'] = data['turnoverrate'].tail(10).mean() + + # 6. 价格振幅指标 + data['amplitude'] = (data['high'] - data['low']) / data['close'] + indicators['amplitude_avg_5d'] = data['amplitude'].tail(5).mean() + indicators['amplitude_avg_10d'] = data['amplitude'].tail(10).mean() + + # 7. 趋势强度(连续涨跌) + indicators['consecutive_up'] = self._count_consecutive(data['percent'] > 0) + indicators['consecutive_down'] = self._count_consecutive(data['percent'] < 0) + + # 8. 估值动量(如果有PE、PB、PS数据) + if 'pe' in data.columns and not data['pe'].isna().all(): + pe_change = data['pe'].pct_change().tail(5).mean() + indicators['pe_momentum'] = pe_change if not np.isnan(pe_change) else 0 + else: + indicators['pe_momentum'] = 0 + + if 'pb' in data.columns and not data['pb'].isna().all(): + pb_change = data['pb'].pct_change().tail(5).mean() + indicators['pb_momentum'] = pb_change if not np.isnan(pb_change) else 0 + else: + indicators['pb_momentum'] = 0 + + # 处理NaN值 + for key, value in indicators.items(): + if np.isnan(value) or np.isinf(value): + indicators[key] = 0 + + return indicators + + def _count_consecutive(self, condition_series): + """计算连续满足条件的天数""" + if len(condition_series) == 0: + return 0 + + count = 0 + for value in reversed(condition_series.tolist()): + if value: + count += 1 + else: + break + return count + + def calculate_distance_factor(self, indicators_df): + """计算平均距离因子""" + if len(indicators_df) < 2: + print("股票数量不足,无法计算距离因子") + return pd.DataFrame() + + # 准备特征矩阵 + feature_columns = [col for col in indicators_df.columns if col != 'symbol'] + X = indicators_df[feature_columns].values + + # 标准化 + scaler = StandardScaler() + X_scaled = scaler.fit_transform(X) + + # 计算距离矩阵 + distances = euclidean_distances(X_scaled) + + # 计算每只股票的平均距离 + n_stocks = len(indicators_df) + avg_distances = [] + + for i in range(n_stocks): + # 排除自己与自己的距离(对角线元素) + other_distances = np.concatenate([distances[i, :i], distances[i, i+1:]]) + avg_distance = np.mean(other_distances) + avg_distances.append(avg_distance) + + # 创建结果DataFrame + result_df = pd.DataFrame({ + 'symbol': indicators_df['symbol'], + 'avg_distance_factor': avg_distances + }) + + # 按距离因子降序排列 + result_df = result_df.sort_values('avg_distance_factor', ascending=False) + result_df['rank'] = range(1, len(result_df) + 1) + + return result_df + + def analyze_industry(self, industry_name=None, concept_name=None, days=20): + """分析指定行业或概念的平均距离因子""" + print(f"开始分析{'行业' if industry_name else '概念'}: {industry_name or concept_name}") + + # 1. 获取股票列表 + symbols = self.get_industry_stocks(industry_name, concept_name) + if not symbols: + return pd.DataFrame() + + # 2. 获取历史数据 + stock_data = self.get_stock_data(symbols, days) + if stock_data.empty: + return pd.DataFrame() + + # 3. 计算技术指标 + print("计算技术指标...") + indicators_df = self.calculate_technical_indicators(stock_data, days) + if indicators_df.empty: + return pd.DataFrame() + + print(f"成功计算了 {len(indicators_df)} 只股票的技术指标") + + # 4. 计算平均距离因子 + print("计算平均距离因子...") + distance_df = self.calculate_distance_factor(indicators_df) + + if not distance_df.empty: + print(f"计算完成,共 {len(distance_df)} 只股票") + print(distance_df.to_string(index=False)) + + return distance_df + + def get_available_industries(self): + """获取可用的行业列表""" + query = "SELECT DISTINCT bk_name FROM gp_hybk ORDER BY bk_name" + try: + df = pd.read_sql(query, self.engine) + return df['bk_name'].tolist() + except Exception as e: + print(f"获取行业列表失败: {e}") + return [] + + def get_available_concepts(self): + """获取可用的概念列表""" + query = "SELECT DISTINCT bk_name FROM gp_gnbk ORDER BY bk_name" + try: + df = pd.read_sql(query, self.engine) + return df['bk_name'].tolist() + except Exception as e: + print(f"获取概念列表失败: {e}") + return [] + + def __del__(self): + if hasattr(self, 'engine'): + self.engine.dispose() + +def main(): + """主函数示例""" + db_url = 'mysql+pymysql://root:Chlry#$.8@192.168.18.199:3306/db_gp_cj' + + # 创建分析器 + analyzer = AverageDistanceFactor(db_url) + + # 示例1: 分析特定行业 + result = analyzer.analyze_industry(industry_name="证券") + + # 示例2: 分析特定概念 + # result = analyzer.analyze_industry(concept_name="3D打印") + + # 示例3: 查看可用的行业列表 + # industries = analyzer.get_available_industries() + # print("可用行业列表(前10个):") + # for industry in industries[:10]: + # print(f" - {industry}") + + # 示例4: 查看可用的概念列表 + # concepts = analyzer.get_available_concepts() + # print("\n可用概念列表(前10个):") + # for concept in concepts[:10]: + # print(f" - {concept}") + +if __name__ == "__main__": + main() \ No newline at end of file diff --git a/src/quantitative_analysis/batch_stock_price_collector.py b/src/quantitative_analysis/batch_stock_price_collector.py index df270c1..2089c34 100644 --- a/src/quantitative_analysis/batch_stock_price_collector.py +++ b/src/quantitative_analysis/batch_stock_price_collector.py @@ -10,6 +10,9 @@ import json project_root = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) sys.path.append(project_root) +# 导入代理管理器 +from src.scripts.ProxyIP import EnhancedProxyManager + # 读取雪球headers和Redis配置 try: from src.scripts.config import XUEQIU_HEADERS @@ -28,6 +31,9 @@ except ImportError: REDIS_KEY = 'xq_stock_changes_latest' # 存放行情的主键 +# 创建全局代理管理器实例 +proxy_manager = EnhancedProxyManager() + def get_redis_conn(): """获取Redis连接""" @@ -62,8 +68,9 @@ def fetch_and_store_stock_data(page_size=90): 'type': stock_type } - # 初次请求以获取总页数 - response = requests.get(base_url, headers=headers, params=params) + # 初次请求以获取总页数,使用代理 + response = proxy_manager.request_with_proxy('get', base_url, headers=headers, params=params) + # response = requests.get(base_url, headers=headers, params=params) if response.status_code != 200: print(f"请求 {stock_type} 数据失败,状态码:{response.status_code}") continue @@ -74,10 +81,12 @@ def fetch_and_store_stock_data(page_size=90): for page in range(1, total_pages + 1): params['page'] = page - response = requests.get(base_url, headers=headers, params=params) + # response = requests.get(base_url, headers=headers, params=params) + response = proxy_manager.request_with_proxy('get', base_url, headers=headers, params=params) if response.status_code == 200: data = response.json() all_data.extend(data['data']['list']) + print(f"成功采集第 {page}/{total_pages} 页数据") else: print(f"请求 {stock_type} 数据第 {page} 页失败,状态码:{response.status_code}") # 转换为 DataFrame @@ -99,8 +108,12 @@ def fetch_and_store_stock_data(page_size=90): pipe.hset(REDIS_KEY, symbol, json.dumps(value, ensure_ascii=False)) pipe.execute() print(f"成功将数据写入Redis哈希 {REDIS_KEY},共{len(df)}条记录。") + + # 返回DataFrame供其他脚本使用 + return df else: print("未获取到任何数据。") + return pd.DataFrame() def format_stock_code(stock_code): diff --git a/src/quantitative_analysis/company_lifecycle_factor.py b/src/quantitative_analysis/company_lifecycle_factor.py new file mode 100644 index 0000000..5cc228b --- /dev/null +++ b/src/quantitative_analysis/company_lifecycle_factor.py @@ -0,0 +1,317 @@ +# coding:utf-8 +# 判断企业生命周期 +import pandas as pd +import pymongo +import logging +from typing import Dict, List, Optional +import sys +import os + +# 添加项目根目录到路径 +project_root = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) +sys.path.append(project_root) + +# 导入配置 +try: + from valuation_analysis.config import MONGO_CONFIG2 +except ImportError: + import importlib.util + config_path = os.path.join(project_root, 'valuation_analysis', 'config.py') + spec = importlib.util.spec_from_file_location("config", config_path) + config_module = importlib.util.module_from_spec(spec) + spec.loader.exec_module(config_module) + MONGO_CONFIG2 = config_module.MONGO_CONFIG2 + +# 导入股票代码格式化工具 +try: + from tools.stock_code_formatter import StockCodeFormatter +except ImportError: + import importlib.util + formatter_path = os.path.join(os.path.dirname(project_root), 'tools', 'stock_code_formatter.py') + spec = importlib.util.spec_from_file_location("stock_code_formatter", formatter_path) + formatter_module = importlib.util.module_from_spec(spec) + spec.loader.exec_module(formatter_module) + StockCodeFormatter = formatter_module.StockCodeFormatter + +# 配置日志 +logging.basicConfig(level=logging.INFO) +logger = logging.getLogger(__name__) + +class CompanyLifecycleFactor: + """企业生命周期阶段因子计算器""" + + def __init__(self): + """初始化""" + self.mongo_client = None + self.db = None + self.collection = None + self.connect_mongodb() + + # 初始化股票代码格式化工具 + self.stock_formatter = StockCodeFormatter() + + # 定义企业生命周期阶段 + self.lifecycle_stages = { + 1: "引入期", + 2: "成长期", + 3: "成熟期", + 4: "震荡期", + 5: "衰退期" + } + + # 现金流组合模式映射到生命周期阶段 + self.cashflow_pattern_mapping = { + ('负', '负', '正'): 1, # 引入期 + ('正', '负', '正'): 2, # 成长期 + ('正', '负', '负'): 3, # 成熟期 + ('负', '正', '正'): 4, # 震荡期 + ('正', '正', '负'): 5, # 衰退期 + ('负', '正', '负'): 4, # 震荡期(变种) + ('负', '负', '负'): 4, # 震荡期(困难期) + ('正', '正', '正'): 2, # 成长期(变种,现金充足) + } + + def connect_mongodb(self): + """连接MongoDB数据库""" + try: + self.mongo_client = pymongo.MongoClient( + host=MONGO_CONFIG2['host'], + port=MONGO_CONFIG2['port'], + username=MONGO_CONFIG2['username'], + password=MONGO_CONFIG2['password'] + ) + self.db = self.mongo_client[MONGO_CONFIG2['db']] + self.collection = self.db['eastmoney_financial_data_v2'] + + # 测试连接 + self.mongo_client.admin.command('ping') + logger.info("MongoDB连接成功") + + except Exception as e: + logger.error(f"MongoDB连接失败: {str(e)}") + raise + + + + + def get_annual_financial_data(self, stock_code: str, year: int) -> Optional[Dict]: + """ + 获取指定股票指定年份的年报数据 + + Args: + stock_code: 股票代码,支持多种格式 (300661.SZ, 300661, SZ300661) + year: 年份,如2024 + + Returns: + Dict: 年报财务数据,如果没有找到则返回None + """ + try: + # 标准化股票代码格式 + normalized_code = self.stock_formatter.to_dot_format(stock_code) + # 构建年报日期(12-31结尾) + report_date = f"{year}-12-31" + + # 查询指定股票指定年份的年报数据 + query = { + "stock_code": normalized_code, + "report_date": report_date + } + + annual_data = self.collection.find_one(query) + + if annual_data: + logger.info(f"找到年报数据: {stock_code} (标准化后: {normalized_code}) - {report_date}") + return annual_data + else: + logger.warning(f"未找到年报数据: {stock_code} (标准化后: {normalized_code}) - {report_date}") + return None + + except Exception as e: + logger.error(f"获取年报数据失败: {stock_code} - {year} - {str(e)}") + return None + + def extract_cashflow_values(self, financial_data: Dict) -> tuple: + """ + 从财务数据中提取现金流量表的三个关键指标 + + Returns: + Tuple: (经营现金流净额, 投资现金流净额, 筹资现金流净额) + """ + try: + cash_flow_statement = financial_data.get('cash_flow_statement', {}) + + # 提取三个现金流指标 + operating_cashflow = cash_flow_statement.get('NETCASH_OPERATE') + investing_cashflow = cash_flow_statement.get('NETCASH_INVEST') + financing_cashflow = cash_flow_statement.get('NETCASH_FINANCE') + + # 转换为浮点数 + def safe_float_convert(value): + if value is None or value == '': + return None + try: + return float(value) + except (ValueError, TypeError): + return None + + operating_cashflow = safe_float_convert(operating_cashflow) + investing_cashflow = safe_float_convert(investing_cashflow) + financing_cashflow = safe_float_convert(financing_cashflow) + + return operating_cashflow, investing_cashflow, financing_cashflow + + except Exception as e: + logger.error(f"提取现金流数据失败: {str(e)}") + return None, None, None + + def classify_cashflow_pattern(self, operating_cf: float, investing_cf: float, financing_cf: float) -> tuple: + """将现金流数值分类为正负""" + def classify_value(value): + if value is None: + return "未知" + return "正" if value >= 0 else "负" + + operating_pattern = classify_value(operating_cf) + investing_pattern = classify_value(investing_cf) + financing_pattern = classify_value(financing_cf) + + return operating_pattern, investing_pattern, financing_pattern + + def determine_lifecycle_stage(self, cashflow_pattern: tuple) -> int: + """ + 根据现金流模式确定企业生命周期阶段 + + Returns: + int: 阶段ID (1-5),0表示未知 + """ + stage_id = self.cashflow_pattern_mapping.get(cashflow_pattern, 0) + return stage_id + + def calculate_lifecycle_factor(self, stock_code: str, year: int) -> Dict: + """ + 计算指定股票指定年份的企业生命周期因子 + + Args: + stock_code: 股票代码,支持多种格式 (300661.SZ, 300661, SZ300661) + year: 年份 + + Returns: + Dict: 生命周期因子结果 + """ + try: + # 获取年报数据 + financial_data = self.get_annual_financial_data(stock_code, year) + if not financial_data: + return { + 'stock_code': stock_code, + 'year': year, + 'stage_id': 0, + 'stage_name': '数据缺失' + } + + # 提取现金流数据 + operating_cf, investing_cf, financing_cf = self.extract_cashflow_values(financial_data) + + if None in [operating_cf, investing_cf, financing_cf]: + return { + 'stock_code': stock_code, + 'year': year, + 'stage_id': 0, + 'stage_name': '数据不完整' + } + + # 分类现金流模式 + cashflow_pattern = self.classify_cashflow_pattern(operating_cf, investing_cf, financing_cf) + + # 确定生命周期阶段 + stage_id = self.determine_lifecycle_stage(cashflow_pattern) + stage_name = self.lifecycle_stages.get(stage_id, '未知阶段') + + return { + 'stock_code': stock_code, + 'year': year, + 'stage_id': stage_id, + 'stage_name': stage_name + } + + except Exception as e: + logger.error(f"计算生命周期因子失败: {stock_code} - {year} - {str(e)}") + return { + 'stock_code': stock_code, + 'year': year, + 'stage_id': 0, + 'stage_name': '计算失败' + } + + def batch_calculate_lifecycle_factors(self, stock_codes: List[str], year: int) -> pd.DataFrame: + """ + 批量计算多只股票指定年份的企业生命周期因子 + + Args: + stock_codes: 股票代码列表 + year: 年份 + + Returns: + pd.DataFrame: 包含所有股票生命周期因子的DataFrame + """ + results = [] + total_stocks = len(stock_codes) + + logger.info(f"开始批量计算 {total_stocks} 只股票 {year} 年的企业生命周期因子") + + for i, stock_code in enumerate(stock_codes, 1): + # 显示进度 + if i % 100 == 0 or i == total_stocks: + progress = (i / total_stocks) * 100 + logger.info(f"进度: [{i}/{total_stocks}] ({progress:.1f}%)") + + result = self.calculate_lifecycle_factor(stock_code, year) + results.append(result) + + # 转换为DataFrame + df = pd.DataFrame(results) + + # 统计各阶段分布 + stage_distribution = df['stage_name'].value_counts() + logger.info(f"{year}年企业生命周期阶段分布:") + for stage, count in stage_distribution.items(): + percentage = (count / len(df)) * 100 + logger.info(f" {stage}: {count} 只 ({percentage:.1f}%)") + + return df + + def __del__(self): + """关闭数据库连接""" + if hasattr(self, 'mongo_client') and self.mongo_client: + self.mongo_client.close() + +def main(): + """主函数示例""" + try: + # 创建生命周期因子计算器 + lifecycle_calculator = CompanyLifecycleFactor() + + # 示例1: 计算单只股票2024年的生命周期阶段 + print("=== 单只股票分析示例 ===") + result = lifecycle_calculator.calculate_lifecycle_factor('600519.SH', 2024) + print(f"股票: {result['stock_code']}") + print(f"年份: {result['year']}") + print(f"生命周期阶段: {result['stage_name']}") + + # 示例2: 批量分析 + print("\n=== 批量分析示例 ===") + test_stocks = ['300879.SZ', '301123.SZ', '300884.SZ', '300918.SZ', '600908.SH'] + df_results = lifecycle_calculator.batch_calculate_lifecycle_factors(test_stocks, 2024) + + print("\n2024年生命周期阶段结果:") + print(df_results[['stock_code', 'stage_name']].to_string(index=False)) + + # 保存结果 + # df_results.to_csv(f"company_lifecycle_{2024}.csv", index=False, encoding='utf-8-sig') + # print(f"\n结果已保存到: company_lifecycle_{2024}.csv") + + except Exception as e: + logger.error(f"程序执行失败: {str(e)}") + +if __name__ == "__main__": + main() \ No newline at end of file diff --git a/src/quantitative_analysis/data/前五供应商占比.csv b/src/quantitative_analysis/data/前五供应商占比.csv new file mode 100644 index 0000000..7e2c8fe --- /dev/null +++ b/src/quantitative_analysis/data/前五供应商占比.csv @@ -0,0 +1,5412 @@ +stock_code,20200331,20200630,20200930,20201231,20210331,20210630,20210930,20211231,20220331,20220630,20220930,20221231,20230331,20230630,20230930,20231231,20240331,20240630,20240930,20241231,20250331 +832876.BJ,0.0000,0.0000,0.0000,28.6700,0.0000,0.0000,0.0000,27.4700,0.0000,32.4500,0.0000,31.4000,0.0000,0.0000,0.0000,33.2300,0.0000,0.0000,0.0000,25.0400,0.0000 +873305.BJ,0.0000,0.0000,0.0000,45.0200,0.0000,0.0000,0.0000,43.6600,46.6700,0.0000,0.0000,38.4800,0.0000,0.0000,0.0000,49.4400,0.0000,0.0000,0.0000,34.8800,0.0000 +688280.SH,0.0000,0.0000,0.0000,21.6700,0.0000,0.0000,0.0000,25.7400,0.0000,0.0000,0.0000,26.3800,0.0000,0.0000,0.0000,15.2800,0.0000,0.0000,0.0000,21.3800,0.0000 +688609.SH,0.0000,0.0000,0.0000,65.4800,0.0000,0.0000,0.0000,64.3100,0.0000,0.0000,0.0000,55.0100,0.0000,0.0000,0.0000,44.8900,0.0000,0.0000,0.0000,38.4900,0.0000 +300963.SZ,0.0000,50.1200,0.0000,32.8600,0.0000,0.0000,0.0000,40.6300,0.0000,0.0000,0.0000,37.7100,0.0000,0.0000,0.0000,32.7000,0.0000,0.0000,0.0000,30.7000,0.0000 +301509.SZ,0.0000,0.0000,0.0000,22.3100,0.0000,0.0000,0.0000,25.4800,0.0000,0.0000,0.0000,28.6600,0.0000,0.0000,0.0000,20.2600,0.0000,0.0000,0.0000,14.7400,0.0000 +300093.SZ,0.0000,0.0000,0.0000,24.9000,0.0000,0.0000,0.0000,43.7200,0.0000,0.0000,0.0000,67.2700,0.0000,0.0000,0.0000,58.3800,0.0000,0.0000,0.0000,46.1600,0.0000 +300047.SZ,0.0000,0.0000,0.0000,89.9700,0.0000,0.0000,0.0000,83.7400,0.0000,0.0000,0.0000,66.4300,0.0000,0.0000,0.0000,86.9700,0.0000,0.0000,0.0000,76.2400,0.0000 +300879.SZ,0.0000,0.0000,0.0000,43.9600,0.0000,0.0000,0.0000,41.8700,0.0000,0.0000,0.0000,51.1600,0.0000,0.0000,0.0000,37.0600,0.0000,0.0000,0.0000,56.6500,0.0000 +301123.SZ,0.0000,0.0000,0.0000,26.6300,0.0000,0.0000,28.2400,27.3800,0.0000,0.0000,0.0000,24.8100,0.0000,0.0000,0.0000,29.5900,0.0000,0.0000,0.0000,36.1500,0.0000 +300884.SZ,0.0000,0.0000,0.0000,32.9100,0.0000,0.0000,0.0000,34.8300,0.0000,0.0000,0.0000,27.6000,0.0000,0.0000,0.0000,23.1400,0.0000,0.0000,0.0000,18.5200,0.0000 +300918.SZ,0.0000,0.0000,0.0000,25.1900,0.0000,0.0000,0.0000,36.0400,0.0000,0.0000,0.0000,30.6600,0.0000,0.0000,0.0000,23.7800,0.0000,0.0000,0.0000,25.4800,0.0000 +688511.SH,0.0000,0.0000,0.0000,53.4600,0.0000,0.0000,0.0000,46.6400,0.0000,0.0000,0.0000,46.4300,0.0000,0.0000,0.0000,39.7000,0.0000,0.0000,0.0000,39.0400,0.0000 +301082.SZ,0.0000,0.0000,0.0000,82.1300,0.0000,0.0000,0.0000,90.6100,0.0000,0.0000,0.0000,77.6600,0.0000,0.0000,0.0000,79.4800,0.0000,0.0000,0.0000,79.0300,0.0000 +873726.BJ,0.0000,0.0000,0.0000,31.0700,0.0000,0.0000,0.0000,34.2500,0.0000,0.0000,0.0000,44.6300,0.0000,0.0000,0.0000,37.1300,0.0000,0.0000,0.0000,49.1600,0.0000 +833751.BJ,0.0000,0.0000,0.0000,53.0200,0.0000,0.0000,0.0000,50.9600,0.0000,56.1600,0.0000,52.7300,0.0000,0.0000,0.0000,50.9100,0.0000,0.0000,0.0000,47.6500,0.0000 +688077.SH,0.0000,0.0000,0.0000,74.8000,0.0000,0.0000,0.0000,75.4900,0.0000,0.0000,0.0000,84.1600,0.0000,0.0000,0.0000,79.8300,0.0000,0.0000,0.0000,71.6900,0.0000 +835207.BJ,0.0000,0.0000,0.0000,74.6200,0.0000,0.0000,0.0000,60.2100,0.0000,0.0000,0.0000,47.0700,0.0000,0.0000,0.0000,47.8800,0.0000,0.0000,0.0000,58.4200,0.0000 +688722.SH,0.0000,0.0000,0.0000,56.1000,0.0000,0.0000,0.0000,52.2500,0.0000,0.0000,0.0000,43.9500,0.0000,0.0000,0.0000,32.2900,0.0000,0.0000,0.0000,34.6100,0.0000 +300984.SZ,0.0000,0.0000,0.0000,81.4400,0.0000,0.0000,0.0000,76.7100,0.0000,0.0000,0.0000,78.1600,0.0000,0.0000,0.0000,73.4900,0.0000,0.0000,0.0000,73.2700,0.0000 +836961.BJ,0.0000,0.0000,0.0000,56.2200,0.0000,0.0000,0.0000,59.1800,0.0000,0.0000,0.0000,53.2300,0.0000,51.2900,0.0000,52.7200,0.0000,0.0000,0.0000,53.2200,0.0000 +300870.SZ,0.0000,0.0000,0.0000,18.1700,0.0000,0.0000,0.0000,15.3700,0.0000,0.0000,0.0000,13.4800,0.0000,0.0000,0.0000,10.7600,0.0000,0.0000,0.0000,11.5800,0.0000 +300421.SZ,0.0000,0.0000,0.0000,21.4600,0.0000,0.0000,0.0000,50.1000,0.0000,0.0000,0.0000,37.7100,0.0000,0.0000,0.0000,37.2600,0.0000,0.0000,0.0000,37.8000,0.0000 +301310.SZ,0.0000,0.0000,0.0000,84.0900,0.0000,0.0000,0.0000,84.9000,0.0000,0.0000,0.0000,85.6700,0.0000,0.0000,0.0000,81.8500,0.0000,0.0000,0.0000,85.8200,0.0000 +688183.SH,0.0000,0.0000,0.0000,61.8200,0.0000,0.0000,0.0000,52.9700,0.0000,0.0000,0.0000,53.5800,0.0000,0.0000,0.0000,53.4000,0.0000,0.0000,0.0000,60.1400,0.0000 +300398.SZ,0.0000,0.0000,0.0000,26.3700,0.0000,0.0000,0.0000,20.4000,0.0000,0.0000,0.0000,29.3200,0.0000,0.0000,0.0000,18.2900,0.0000,0.0000,0.0000,27.2200,0.0000 +301525.SZ,0.0000,0.0000,0.0000,26.4900,0.0000,0.0000,0.0000,24.7100,0.0000,0.0000,0.0000,23.6600,0.0000,0.0000,0.0000,23.8000,0.0000,0.0000,0.0000,20.8000,0.0000 +301137.SZ,0.0000,0.0000,0.0000,45.3900,0.0000,54.0800,0.0000,49.3600,0.0000,0.0000,0.0000,45.3900,0.0000,0.0000,0.0000,39.7500,0.0000,0.0000,0.0000,39.6300,0.0000 +300368.SZ,0.0000,0.0000,0.0000,50.7900,0.0000,0.0000,0.0000,56.7500,0.0000,0.0000,0.0000,48.7100,0.0000,0.0000,0.0000,23.2900,0.0000,0.0000,0.0000,25.1900,0.0000 +870199.BJ,0.0000,0.0000,0.0000,28.1500,0.0000,0.0000,0.0000,26.6900,0.0000,31.1300,0.0000,28.5600,0.0000,0.0000,0.0000,20.9600,0.0000,0.0000,0.0000,19.9400,0.0000 +871396.BJ,0.0000,0.0000,0.0000,27.0100,0.0000,0.0000,0.0000,25.9800,0.0000,0.0000,0.0000,27.5700,0.0000,0.0000,0.0000,26.1500,0.0000,0.0000,0.0000,25.6600,0.0000 +301337.SZ,0.0000,0.0000,0.0000,27.3200,0.0000,0.0000,0.0000,29.9200,0.0000,0.0000,0.0000,22.8700,0.0000,0.0000,0.0000,26.3400,0.0000,0.0000,0.0000,33.1800,0.0000 +300638.SZ,0.0000,0.0000,0.0000,69.6900,0.0000,0.0000,0.0000,66.6700,0.0000,0.0000,0.0000,71.1200,0.0000,0.0000,0.0000,72.9400,0.0000,0.0000,0.0000,72.2600,0.0000 +836807.BJ,0.0000,0.0000,0.0000,27.3700,0.0000,0.0000,0.0000,25.9500,0.0000,30.6700,0.0000,25.8000,0.0000,0.0000,0.0000,20.9200,0.0000,0.0000,0.0000,20.6100,0.0000 +688299.SH,0.0000,0.0000,0.0000,74.5800,0.0000,0.0000,0.0000,75.9400,0.0000,0.0000,0.0000,76.5900,0.0000,0.0000,0.0000,73.2000,0.0000,0.0000,0.0000,74.3100,0.0000 +688719.SH,0.0000,0.0000,0.0000,23.2400,0.0000,0.0000,0.0000,19.8100,0.0000,0.0000,0.0000,17.2100,0.0000,0.0000,0.0000,22.2800,0.0000,0.0000,0.0000,25.1900,0.0000 +300031.SZ,0.0000,0.0000,0.0000,16.9300,0.0000,0.0000,0.0000,18.9600,0.0000,0.0000,0.0000,13.4400,0.0000,0.0000,0.0000,14.4000,0.0000,0.0000,0.0000,24.1700,0.0000 +300423.SZ,0.0000,0.0000,0.0000,38.6400,0.0000,0.0000,0.0000,25.9800,0.0000,0.0000,0.0000,20.1700,0.0000,0.0000,0.0000,14.8600,0.0000,0.0000,0.0000,12.7500,0.0000 +300382.SZ,0.0000,0.0000,0.0000,26.8100,0.0000,0.0000,0.0000,21.9100,0.0000,0.0000,0.0000,31.0500,0.0000,0.0000,0.0000,34.4200,0.0000,0.0000,0.0000,47.7800,0.0000 +300255.SZ,0.0000,0.0000,0.0000,28.0100,0.0000,0.0000,0.0000,28.6900,0.0000,0.0000,0.0000,36.6900,0.0000,0.0000,0.0000,30.9000,0.0000,0.0000,0.0000,29.8200,0.0000 +831856.BJ,0.0000,0.0000,0.0000,82.5300,0.0000,0.0000,0.0000,36.9200,0.0000,0.0000,0.0000,35.0400,0.0000,0.0000,0.0000,40.2200,0.0000,0.0000,0.0000,44.1400,0.0000 +300695.SZ,0.0000,0.0000,0.0000,32.2800,0.0000,0.0000,0.0000,33.4800,0.0000,0.0000,0.0000,25.9200,0.0000,0.0000,0.0000,24.2600,0.0000,0.0000,0.0000,23.4900,0.0000 +300169.SZ,0.0000,0.0000,0.0000,26.1700,0.0000,0.0000,0.0000,18.2300,0.0000,0.0000,0.0000,17.4300,0.0000,0.0000,0.0000,23.7500,0.0000,0.0000,0.0000,18.0700,0.0000 +300128.SZ,0.0000,0.0000,0.0000,17.4200,0.0000,0.0000,0.0000,29.1400,0.0000,0.0000,0.0000,33.3700,0.0000,0.0000,0.0000,27.0000,0.0000,0.0000,0.0000,33.1500,0.0000 +688313.SH,0.0000,0.0000,0.0000,26.1100,0.0000,0.0000,0.0000,20.6900,0.0000,0.0000,0.0000,18.6100,0.0000,0.0000,0.0000,19.6100,0.0000,0.0000,0.0000,23.0500,0.0000 +835184.BJ,0.0000,0.0000,0.0000,14.8400,0.0000,0.0000,0.0000,8.6200,0.0000,0.0000,0.0000,11.0900,0.0000,0.0000,0.0000,10.8500,0.0000,0.0000,0.0000,12.3300,0.0000 +301225.SZ,0.0000,0.0000,0.0000,14.8800,0.0000,0.0000,0.0000,14.4400,0.0000,0.0000,0.0000,17.9000,0.0000,0.0000,0.0000,14.7300,0.0000,0.0000,0.0000,13.0800,0.0000 +300044.SZ,0.0000,0.0000,0.0000,76.3800,0.0000,0.0000,0.0000,73.3500,0.0000,0.0000,0.0000,24.6800,0.0000,0.0000,0.0000,38.3400,0.0000,0.0000,0.0000,44.4800,0.0000 +834407.BJ,0.0000,0.0000,0.0000,24.7800,0.0000,0.0000,0.0000,20.2000,0.0000,19.2200,0.0000,24.5700,0.0000,0.0000,0.0000,31.1200,0.0000,0.0000,0.0000,22.5700,0.0000 +301259.SZ,0.0000,0.0000,0.0000,13.3300,0.0000,0.0000,0.0000,11.1500,0.0000,0.0000,0.0000,31.6300,0.0000,0.0000,0.0000,18.2800,0.0000,0.0000,0.0000,68.4400,0.0000 +688583.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,58.2700,0.0000,0.0000,0.0000,37.1000,0.0000,0.0000,0.0000,36.5800,0.0000,27.1900,0.0000,13.2800,0.0000 +688595.SH,0.0000,0.0000,0.0000,67.2300,0.0000,0.0000,0.0000,65.0400,0.0000,0.0000,0.0000,76.1100,0.0000,0.0000,0.0000,67.3500,0.0000,0.0000,0.0000,72.4700,0.0000 +300366.SZ,0.0000,0.0000,0.0000,40.7800,0.0000,0.0000,0.0000,27.9900,0.0000,0.0000,0.0000,42.9800,0.0000,0.0000,0.0000,17.0900,0.0000,0.0000,0.0000,27.7500,0.0000 +688159.SH,0.0000,0.0000,0.0000,61.7800,0.0000,0.0000,0.0000,55.4100,0.0000,0.0000,0.0000,44.4400,0.0000,0.0000,0.0000,48.9200,0.0000,0.0000,0.0000,68.8800,0.0000 +301336.SZ,0.0000,0.0000,0.0000,52.2200,0.0000,0.0000,0.0000,50.3100,0.0000,0.0000,0.0000,52.1000,0.0000,0.0000,0.0000,60.9500,0.0000,0.0000,0.0000,68.4000,0.0000 +300758.SZ,0.0000,0.0000,0.0000,27.1100,0.0000,0.0000,0.0000,28.0100,0.0000,0.0000,0.0000,23.5400,0.0000,0.0000,0.0000,23.9300,0.0000,0.0000,0.0000,26.3700,0.0000 +600396.SH,0.0000,0.0000,0.0000,50.3100,0.0000,0.0000,0.0000,66.9500,0.0000,0.0000,0.0000,58.4500,0.0000,0.0000,0.0000,53.8800,0.0000,0.0000,0.0000,57.5800,0.0000 +002490.SZ,0.0000,0.0000,0.0000,32.5700,0.0000,0.0000,0.0000,34.1200,0.0000,0.0000,0.0000,23.8500,0.0000,0.0000,0.0000,77.0000,0.0000,0.0000,0.0000,52.3800,0.0000 +600303.SH,0.0000,0.0000,0.0000,22.6600,0.0000,0.0000,0.0000,24.1800,0.0000,0.0000,0.0000,14.5400,0.0000,0.0000,0.0000,13.2400,0.0000,0.0000,0.0000,19.1300,0.0000 +600281.SH,0.0000,0.0000,0.0000,55.5700,0.0000,0.0000,0.0000,85.3900,0.0000,0.0000,0.0000,60.5300,0.0000,0.0000,0.0000,41.9600,0.0000,0.0000,0.0000,42.7000,0.0000 +000677.SZ,0.0000,0.0000,0.0000,59.1600,0.0000,0.0000,0.0000,62.1400,0.0000,0.0000,0.0000,63.7900,0.0000,0.0000,0.0000,65.2300,0.0000,0.0000,0.0000,65.0400,0.0000 +002471.SZ,0.0000,0.0000,0.0000,39.8400,0.0000,0.0000,0.0000,33.9600,0.0000,0.0000,0.0000,38.1600,0.0000,0.0000,0.0000,30.4400,0.0000,0.0000,0.0000,36.6200,0.0000 +002195.SZ,0.0000,0.0000,0.0000,32.2400,0.0000,0.0000,0.0000,28.5400,0.0000,0.0000,0.0000,34.7500,0.0000,0.0000,0.0000,27.1700,0.0000,0.0000,0.0000,28.6400,0.0000 +002672.SZ,0.0000,0.0000,0.0000,10.9400,0.0000,0.0000,0.0000,10.5500,0.0000,0.0000,0.0000,15.3100,0.0000,0.0000,0.0000,34.3300,0.0000,0.0000,0.0000,20.3600,0.0000 +601908.SH,0.0000,0.0000,0.0000,41.2100,0.0000,0.0000,0.0000,46.4400,0.0000,0.0000,0.0000,60.3800,0.0000,0.0000,0.0000,43.6900,0.0000,0.0000,0.0000,54.4500,0.0000 +002427.SZ,0.0000,0.0000,0.0000,64.9200,0.0000,0.0000,0.0000,56.8800,0.0000,0.0000,0.0000,45.8000,0.0000,0.0000,0.0000,60.9600,0.0000,0.0000,0.0000,47.3300,0.0000 +600448.SH,0.0000,0.0000,0.0000,18.5200,0.0000,0.0000,0.0000,20.6000,0.0000,0.0000,0.0000,23.7500,0.0000,0.0000,0.0000,39.9900,0.0000,0.0000,0.0000,22.9200,0.0000 +000565.SZ,0.0000,0.0000,0.0000,22.6000,0.0000,0.0000,0.0000,22.9100,0.0000,0.0000,0.0000,24.9100,0.0000,0.0000,0.0000,27.6200,0.0000,0.0000,0.0000,25.1500,0.0000 +002440.SZ,0.0000,0.0000,0.0000,26.4000,0.0000,0.0000,0.0000,27.6300,0.0000,0.0000,0.0000,27.8700,0.0000,0.0000,0.0000,32.4700,0.0000,0.0000,0.0000,28.3800,0.0000 +002355.SZ,0.0000,0.0000,0.0000,68.8800,0.0000,0.0000,0.0000,68.7700,0.0000,0.0000,0.0000,80.8900,0.0000,0.0000,0.0000,73.0200,0.0000,0.0000,0.0000,64.4000,0.0000 +605228.SH,0.0000,0.0000,0.0000,20.7000,0.0000,0.0000,0.0000,20.4200,0.0000,0.0000,0.0000,19.9300,0.0000,0.0000,0.0000,18.0100,0.0000,0.0000,0.0000,19.9500,0.0000 +603335.SH,0.0000,0.0000,0.0000,36.2000,0.0000,0.0000,0.0000,30.4100,0.0000,0.0000,0.0000,33.5700,0.0000,0.0000,0.0000,47.1100,0.0000,0.0000,0.0000,44.9800,0.0000 +603168.SH,0.0000,0.0000,0.0000,42.6000,0.0000,0.0000,0.0000,40.0500,0.0000,0.0000,0.0000,53.5300,0.0000,0.0000,0.0000,47.2400,0.0000,0.0000,0.0000,32.9100,0.0000 +603300.SH,0.0000,0.0000,0.0000,47.6800,0.0000,0.0000,0.0000,54.2100,0.0000,0.0000,0.0000,57.5200,0.0000,0.0000,0.0000,58.4500,0.0000,0.0000,0.0000,38.8400,0.0000 +002255.SZ,0.0000,0.0000,0.0000,15.5500,0.0000,0.0000,0.0000,17.8600,0.0000,0.0000,0.0000,17.3700,0.0000,0.0000,0.0000,18.5300,0.0000,0.0000,0.0000,24.3500,0.0000 +002860.SZ,0.0000,0.0000,0.0000,53.7200,0.0000,0.0000,0.0000,46.0200,0.0000,0.0000,0.0000,40.8000,0.0000,0.0000,0.0000,33.6300,0.0000,0.0000,0.0000,44.7200,0.0000 +002272.SZ,0.0000,0.0000,0.0000,17.5500,0.0000,0.0000,0.0000,14.4000,0.0000,0.0000,0.0000,15.7800,0.0000,0.0000,0.0000,13.7000,0.0000,0.0000,0.0000,14.7700,0.0000 +002106.SZ,0.0000,0.0000,0.0000,65.7500,0.0000,0.0000,0.0000,72.9600,0.0000,0.0000,0.0000,67.3400,0.0000,0.0000,0.0000,67.3100,0.0000,0.0000,0.0000,72.1300,0.0000 +603610.SH,0.0000,0.0000,0.0000,59.7200,0.0000,0.0000,0.0000,38.9600,0.0000,0.0000,0.0000,51.7600,0.0000,0.0000,0.0000,49.3000,0.0000,0.0000,0.0000,47.4000,0.0000 +600800.SH,0.0000,0.0000,0.0000,59.0000,0.0000,0.0000,0.0000,70.8100,0.0000,0.0000,0.0000,87.1200,0.0000,0.0000,0.0000,47.2400,0.0000,0.0000,0.0000,81.8100,0.0000 +002576.SZ,0.0000,0.0000,0.0000,67.2500,0.0000,0.0000,0.0000,71.4600,0.0000,0.0000,0.0000,67.1500,0.0000,0.0000,0.0000,60.3600,0.0000,0.0000,0.0000,59.3600,0.0000 +000948.SZ,0.0000,0.0000,0.0000,26.4000,0.0000,0.0000,0.0000,39.0300,0.0000,0.0000,0.0000,43.2100,0.0000,0.0000,0.0000,32.9300,0.0000,0.0000,0.0000,34.4500,0.0000 +002544.SZ,0.0000,0.0000,0.0000,7.3200,0.0000,0.0000,0.0000,7.9900,0.0000,0.0000,0.0000,10.4700,0.0000,0.0000,0.0000,11.9900,0.0000,0.0000,0.0000,14.7900,0.0000 +600392.SH,0.0000,0.0000,0.0000,33.7300,0.0000,0.0000,0.0000,36.9300,0.0000,0.0000,0.0000,39.6300,0.0000,0.0000,0.0000,29.0400,0.0000,0.0000,0.0000,19.4200,0.0000 +605068.SH,0.0000,0.0000,0.0000,45.4000,0.0000,0.0000,0.0000,27.1600,0.0000,0.0000,0.0000,33.0000,0.0000,0.0000,0.0000,48.1700,0.0000,0.0000,0.0000,38.5500,0.0000 +600774.SH,0.0000,0.0000,0.0000,21.9400,0.0000,0.0000,0.0000,41.2200,0.0000,0.0000,0.0000,28.1200,0.0000,0.0000,0.0000,36.1800,0.0000,0.0000,0.0000,29.1100,0.0000 +600735.SH,0.0000,0.0000,0.0000,23.8500,0.0000,0.0000,0.0000,28.5100,0.0000,0.0000,0.0000,18.0800,0.0000,0.0000,0.0000,17.1700,0.0000,0.0000,0.0000,24.4000,0.0000 +000158.SZ,0.0000,0.0000,0.0000,41.3100,0.0000,0.0000,0.0000,36.7900,0.0000,0.0000,0.0000,43.2900,0.0000,0.0000,0.0000,33.6200,0.0000,0.0000,0.0000,39.8900,0.0000 +603270.SH,0.0000,0.0000,0.0000,51.7000,0.0000,0.0000,0.0000,59.9500,0.0000,0.0000,0.0000,49.3300,0.0000,0.0000,0.0000,37.8400,0.0000,0.0000,0.0000,30.7100,0.0000 +605133.SH,0.0000,0.0000,0.0000,42.6200,0.0000,0.0000,0.0000,41.1300,0.0000,0.0000,0.0000,48.4200,0.0000,0.0000,0.0000,45.8800,0.0000,0.0000,0.0000,46.8000,0.0000 +605288.SH,0.0000,0.0000,0.0000,13.7600,0.0000,0.0000,0.0000,18.6000,0.0000,0.0000,0.0000,9.3100,0.0000,0.0000,0.0000,35.0500,0.0000,0.0000,0.0000,13.2100,0.0000 +001316.SZ,0.0000,0.0000,0.0000,61.1900,0.0000,0.0000,0.0000,68.0100,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,68.1500,0.0000,0.0000,0.0000,69.6600,0.0000 +600410.SH,0.0000,0.0000,0.0000,16.3900,0.0000,0.0000,0.0000,20.8600,0.0000,0.0000,0.0000,22.4900,0.0000,0.0000,0.0000,22.9100,0.0000,0.0000,0.0000,18.4500,0.0000 +603758.SH,0.0000,0.0000,0.0000,55.9600,0.0000,0.0000,0.0000,62.6300,0.0000,0.0000,0.0000,59.8900,0.0000,0.0000,0.0000,58.2400,0.0000,0.0000,0.0000,59.2000,0.0000 +603130.SH,0.0000,0.0000,0.0000,34.2800,0.0000,0.0000,0.0000,35.9400,0.0000,34.8700,0.0000,36.7000,0.0000,0.0000,0.0000,36.7900,0.0000,0.0000,0.0000,36.9100,0.0000 +603286.SH,0.0000,0.0000,0.0000,29.0200,0.0000,0.0000,0.0000,29.0100,0.0000,0.0000,0.0000,32.4500,0.0000,0.0000,0.0000,30.0000,0.0000,0.0000,0.0000,26.2600,0.0000 +603028.SH,0.0000,0.0000,0.0000,65.2600,0.0000,0.0000,0.0000,71.2500,0.0000,0.0000,0.0000,73.4100,0.0000,0.0000,0.0000,42.3200,0.0000,0.0000,0.0000,45.7400,0.0000 +002730.SZ,0.0000,0.0000,0.0000,24.2500,0.0000,0.0000,0.0000,22.2000,0.0000,0.0000,0.0000,18.0500,0.0000,0.0000,0.0000,20.2900,0.0000,0.0000,0.0000,19.5900,0.0000 +002549.SZ,0.0000,0.0000,0.0000,39.6200,0.0000,0.0000,0.0000,42.7200,0.0000,0.0000,0.0000,43.8700,0.0000,0.0000,0.0000,53.3500,0.0000,0.0000,0.0000,63.0000,0.0000 +003033.SZ,0.0000,0.0000,0.0000,46.6500,0.0000,0.0000,0.0000,45.1700,0.0000,0.0000,0.0000,44.5100,0.0000,0.0000,0.0000,40.8000,0.0000,0.0000,0.0000,36.4700,0.0000 +002639.SZ,0.0000,0.0000,0.0000,9.6700,0.0000,0.0000,0.0000,13.1100,0.0000,0.0000,0.0000,10.1800,0.0000,0.0000,0.0000,14.8900,0.0000,0.0000,0.0000,11.6200,0.0000 +002790.SZ,0.0000,0.0000,0.0000,27.0800,0.0000,0.0000,0.0000,25.9500,0.0000,0.0000,0.0000,23.0800,0.0000,0.0000,0.0000,22.6100,0.0000,0.0000,0.0000,22.8300,0.0000 +603109.SH,0.0000,0.0000,0.0000,23.0400,0.0000,0.0000,0.0000,25.8900,0.0000,0.0000,0.0000,23.1400,0.0000,0.0000,0.0000,19.1600,0.0000,0.0000,0.0000,17.9900,0.0000 +603040.SH,0.0000,0.0000,0.0000,47.5600,0.0000,0.0000,0.0000,48.4200,0.0000,0.0000,0.0000,46.3800,0.0000,0.0000,0.0000,41.1400,0.0000,0.0000,0.0000,36.1300,0.0000 +002122.SZ,0.0000,0.0000,0.0000,22.4800,0.0000,0.0000,0.0000,26.0500,0.0000,0.0000,0.0000,22.5600,0.0000,0.0000,0.0000,22.4100,0.0000,0.0000,0.0000,18.0300,0.0000 +002364.SZ,0.0000,0.0000,0.0000,25.5800,0.0000,0.0000,0.0000,22.1500,0.0000,0.0000,0.0000,19.5900,0.0000,0.0000,0.0000,20.5900,0.0000,0.0000,0.0000,25.4900,0.0000 +603086.SH,0.0000,0.0000,0.0000,29.3800,0.0000,0.0000,0.0000,22.5400,0.0000,0.0000,0.0000,31.5300,0.0000,0.0000,0.0000,20.7300,0.0000,0.0000,0.0000,13.6300,0.0000 +002290.SZ,0.0000,0.0000,0.0000,57.0900,0.0000,0.0000,0.0000,60.3600,0.0000,0.0000,0.0000,63.4800,0.0000,0.0000,0.0000,51.6800,0.0000,0.0000,0.0000,51.8200,0.0000 +603011.SH,0.0000,0.0000,0.0000,18.1900,0.0000,0.0000,0.0000,13.8200,0.0000,0.0000,0.0000,14.9400,0.0000,0.0000,0.0000,17.1200,0.0000,0.0000,0.0000,17.6900,0.0000 +603072.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,77.9100,0.0000,0.0000,0.0000,85.2100,0.0000,0.0000,0.0000,85.9800,0.0000,88.8400,0.0000,86.3300,0.0000 +603416.SH,0.0000,0.0000,0.0000,28.8800,0.0000,0.0000,0.0000,21.9300,0.0000,0.0000,0.0000,22.0500,0.0000,0.0000,0.0000,21.0100,0.0000,0.0000,0.0000,19.9800,0.0000 +603533.SH,0.0000,0.0000,0.0000,45.5400,0.0000,0.0000,0.0000,38.0400,0.0000,0.0000,0.0000,40.6100,0.0000,0.0000,0.0000,37.1900,0.0000,0.0000,0.0000,35.1300,0.0000 +603586.SH,0.0000,0.0000,0.0000,18.6900,0.0000,0.0000,0.0000,27.0200,0.0000,0.0000,0.0000,33.4000,0.0000,0.0000,0.0000,31.9200,0.0000,0.0000,0.0000,27.2300,0.0000 +600259.SH,0.0000,0.0000,0.0000,28.0700,0.0000,0.0000,0.0000,24.4700,0.0000,0.0000,0.0000,19.1800,0.0000,0.0000,0.0000,14.2600,0.0000,0.0000,0.0000,20.0900,0.0000 +605198.SH,0.0000,0.0000,0.0000,10.4400,0.0000,0.0000,0.0000,13.8300,0.0000,0.0000,0.0000,7.2700,0.0000,0.0000,0.0000,6.2400,0.0000,0.0000,0.0000,6.2900,0.0000 +000062.SZ,0.0000,0.0000,0.0000,52.1900,0.0000,0.0000,0.0000,44.9900,0.0000,0.0000,0.0000,40.7300,0.0000,0.0000,0.0000,51.5200,0.0000,0.0000,0.0000,54.0000,0.0000 +003038.SZ,0.0000,0.0000,0.0000,87.5100,0.0000,0.0000,0.0000,91.6700,0.0000,0.0000,0.0000,87.8500,0.0000,0.0000,0.0000,88.8800,0.0000,0.0000,0.0000,60.4700,0.0000 +600775.SH,0.0000,0.0000,0.0000,18.3300,0.0000,0.0000,0.0000,19.9400,0.0000,0.0000,0.0000,18.5800,0.0000,0.0000,0.0000,12.1200,0.0000,0.0000,0.0000,12.4800,0.0000 +002981.SZ,0.0000,0.0000,0.0000,32.8000,0.0000,0.0000,0.0000,38.4000,0.0000,0.0000,0.0000,28.7500,0.0000,0.0000,0.0000,35.3000,0.0000,0.0000,0.0000,29.1700,0.0000 +603900.SH,0.0000,0.0000,0.0000,52.5000,0.0000,0.0000,0.0000,65.2400,0.0000,0.0000,0.0000,51.4700,0.0000,0.0000,0.0000,49.9600,0.0000,0.0000,0.0000,88.2300,0.0000 +603316.SH,0.0000,0.0000,0.0000,18.8000,0.0000,0.0000,0.0000,9.9000,0.0000,0.0000,0.0000,11.7900,0.0000,0.0000,0.0000,20.1100,0.0000,0.0000,0.0000,29.8100,0.0000 +603657.SH,0.0000,0.0000,0.0000,22.0400,0.0000,0.0000,0.0000,15.2900,0.0000,0.0000,0.0000,14.2800,0.0000,0.0000,0.0000,13.8700,0.0000,0.0000,0.0000,18.9600,0.0000 +002664.SZ,0.0000,0.0000,0.0000,58.5200,0.0000,0.0000,0.0000,64.6300,0.0000,0.0000,0.0000,47.6000,0.0000,0.0000,0.0000,46.2600,0.0000,0.0000,0.0000,49.4300,0.0000 +002514.SZ,0.0000,0.0000,0.0000,24.2900,0.0000,0.0000,0.0000,35.8100,0.0000,0.0000,0.0000,39.1100,0.0000,0.0000,0.0000,48.8300,0.0000,0.0000,0.0000,22.7000,0.0000 +003036.SZ,0.0000,0.0000,0.0000,20.1200,0.0000,0.0000,0.0000,18.2800,0.0000,0.0000,0.0000,23.6200,0.0000,0.0000,0.0000,27.2900,0.0000,0.0000,0.0000,15.4900,0.0000 +600592.SH,0.0000,0.0000,0.0000,19.3000,0.0000,0.0000,0.0000,29.0800,0.0000,0.0000,0.0000,35.9800,0.0000,0.0000,0.0000,46.7700,0.0000,0.0000,0.0000,49.9600,0.0000 +001896.SZ,0.0000,0.0000,0.0000,33.3900,0.0000,0.0000,0.0000,32.5900,0.0000,0.0000,0.0000,15.0000,0.0000,0.0000,0.0000,20.5500,0.0000,0.0000,0.0000,18.3200,0.0000 +603166.SH,0.0000,0.0000,0.0000,47.4800,0.0000,0.0000,0.0000,43.5800,0.0000,0.0000,0.0000,52.6100,0.0000,0.0000,0.0000,52.2900,0.0000,0.0000,0.0000,56.5000,0.0000 +600053.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,116.8600,0.0000,0.0000,0.0000,32.2800,0.0000,0.0000,0.0000,128.5900,0.0000,0.0000,0.0000,194.1100,0.0000 +600105.SH,0.0000,0.0000,0.0000,15.9900,0.0000,0.0000,0.0000,20.8300,0.0000,0.0000,0.0000,18.9600,0.0000,0.0000,0.0000,18.9000,0.0000,0.0000,0.0000,23.4600,0.0000 +002462.SZ,0.0000,0.0000,0.0000,29.0800,0.0000,0.0000,0.0000,29.0800,0.0000,0.0000,0.0000,31.4800,0.0000,0.0000,0.0000,38.3200,0.0000,0.0000,0.0000,20.1500,0.0000 +002094.SZ,0.0000,0.0000,0.0000,40.9300,0.0000,0.0000,0.0000,33.6600,0.0000,0.0000,0.0000,26.5700,0.0000,0.0000,0.0000,39.3700,0.0000,0.0000,0.0000,27.0200,0.0000 +600203.SH,0.0000,0.0000,0.0000,32.8700,0.0000,0.0000,0.0000,34.0700,0.0000,0.0000,0.0000,34.1300,0.0000,0.0000,0.0000,25.4900,0.0000,0.0000,0.0000,36.3200,0.0000 +002719.SZ,0.0000,0.0000,0.0000,26.2000,0.0000,0.0000,0.0000,37.7100,0.0000,0.0000,0.0000,32.0500,0.0000,0.0000,0.0000,28.8400,0.0000,0.0000,0.0000,26.0800,0.0000 +002562.SZ,0.0000,0.0000,0.0000,25.2000,0.0000,0.0000,0.0000,27.6400,0.0000,0.0000,0.0000,21.7100,0.0000,0.0000,0.0000,24.5700,0.0000,0.0000,0.0000,24.5600,0.0000 +600589.SH,0.0000,0.0000,0.0000,56.1600,0.0000,0.0000,0.0000,34.3600,0.0000,0.0000,0.0000,51.8000,0.0000,0.0000,0.0000,73.5800,0.0000,0.0000,0.0000,54.5800,0.0000 +603169.SH,0.0000,0.0000,0.0000,33.7100,0.0000,0.0000,0.0000,72.8700,0.0000,0.0000,0.0000,35.7600,0.0000,0.0000,0.0000,30.9900,0.0000,0.0000,0.0000,20.9600,0.0000 +600744.SH,0.0000,0.0000,0.0000,16.4000,0.0000,0.0000,0.0000,24.1800,0.0000,0.0000,0.0000,24.8900,0.0000,0.0000,0.0000,20.9900,0.0000,0.0000,0.0000,24.6200,0.0000 +002482.SZ,0.0000,0.0000,0.0000,38.5000,0.0000,0.0000,0.0000,44.4700,0.0000,0.0000,0.0000,32.1200,0.0000,0.0000,0.0000,37.4100,0.0000,0.0000,0.0000,21.7200,0.0000 +000632.SZ,0.0000,0.0000,0.0000,32.5200,0.0000,0.0000,0.0000,35.4600,0.0000,0.0000,0.0000,35.1300,0.0000,0.0000,0.0000,35.6900,0.0000,0.0000,0.0000,42.5500,0.0000 +002512.SZ,0.0000,0.0000,0.0000,46.0400,0.0000,0.0000,0.0000,38.3200,0.0000,0.0000,0.0000,54.2100,0.0000,0.0000,0.0000,42.3300,0.0000,0.0000,0.0000,51.1100,0.0000 +688737.SH,0.0000,0.0000,0.0000,89.6800,0.0000,0.0000,0.0000,83.9200,0.0000,0.0000,0.0000,62.8200,0.0000,0.0000,0.0000,71.5500,0.0000,0.0000,0.0000,66.7600,0.0000 +600503.SH,0.0000,0.0000,0.0000,84.9500,0.0000,0.0000,0.0000,96.8700,0.0000,0.0000,0.0000,89.5000,0.0000,0.0000,0.0000,68.6000,0.0000,0.0000,0.0000,85.6300,0.0000 +688335.SH,0.0000,0.0000,0.0000,30.0000,0.0000,0.0000,0.0000,32.8700,0.0000,0.0000,0.0000,27.7500,0.0000,0.0000,0.0000,37.9600,0.0000,0.0000,0.0000,24.6100,0.0000 +000903.SZ,0.0000,0.0000,0.0000,31.0000,0.0000,0.0000,0.0000,44.9500,0.0000,0.0000,0.0000,37.2500,0.0000,0.0000,0.0000,46.8900,0.0000,0.0000,0.0000,38.0500,0.0000 +603030.SH,0.0000,0.0000,0.0000,44.3700,0.0000,0.0000,0.0000,33.5600,0.0000,0.0000,0.0000,37.7800,0.0000,0.0000,0.0000,21.3300,0.0000,0.0000,0.0000,0.0000,0.0000 +688611.SH,0.0000,0.0000,0.0000,43.6500,0.0000,0.0000,0.0000,37.2900,0.0000,0.0000,0.0000,48.7200,0.0000,0.0000,0.0000,47.5500,0.0000,0.0000,0.0000,85.2300,0.0000 +301208.SZ,0.0000,0.0000,0.0000,36.3100,0.0000,0.0000,0.0000,29.0000,0.0000,0.0000,0.0000,28.3800,0.0000,0.0000,0.0000,46.8700,0.0000,0.0000,0.0000,32.9100,0.0000 +300339.SZ,0.0000,0.0000,0.0000,39.1600,0.0000,0.0000,0.0000,40.7300,0.0000,0.0000,0.0000,34.4800,0.0000,0.0000,0.0000,38.6500,0.0000,0.0000,0.0000,26.1400,0.0000 +688776.SH,0.0000,21.0800,0.0000,18.7300,0.0000,0.0000,0.0000,19.9600,0.0000,0.0000,0.0000,24.0600,0.0000,0.0000,0.0000,38.9700,0.0000,0.0000,0.0000,34.0600,0.0000 +688244.SH,0.0000,0.0000,0.0000,20.6000,0.0000,0.0000,0.0000,19.3900,0.0000,0.0000,0.0000,19.6800,0.0000,0.0000,0.0000,14.5200,0.0000,0.0000,0.0000,16.8900,0.0000 +688395.SH,0.0000,0.0000,0.0000,31.2700,0.0000,0.0000,0.0000,32.0900,0.0000,0.0000,0.0000,36.7400,0.0000,0.0000,0.0000,35.8200,0.0000,0.0000,0.0000,28.7900,0.0000 +300233.SZ,0.0000,0.0000,0.0000,22.6800,0.0000,0.0000,0.0000,17.9900,0.0000,0.0000,0.0000,13.8200,0.0000,0.0000,0.0000,21.4700,0.0000,0.0000,0.0000,24.0200,0.0000 +688345.SH,0.0000,0.0000,0.0000,32.5200,0.0000,0.0000,0.0000,35.6000,0.0000,0.0000,0.0000,40.9400,0.0000,0.0000,0.0000,46.5100,0.0000,0.0000,0.0000,36.4400,0.0000 +300153.SZ,0.0000,0.0000,0.0000,60.4000,0.0000,0.0000,0.0000,56.1600,0.0000,0.0000,0.0000,60.2100,0.0000,0.0000,0.0000,56.7000,0.0000,0.0000,0.0000,56.9700,0.0000 +300994.SZ,0.0000,0.0000,0.0000,24.7600,0.0000,0.0000,0.0000,35.8200,0.0000,0.0000,0.0000,32.3600,0.0000,0.0000,0.0000,28.8100,0.0000,0.0000,0.0000,24.4000,0.0000 +688106.SH,0.0000,0.0000,0.0000,26.4500,0.0000,0.0000,0.0000,19.5200,0.0000,0.0000,0.0000,22.5700,0.0000,0.0000,0.0000,18.6300,0.0000,0.0000,0.0000,17.6700,0.0000 +300533.SZ,0.0000,0.0000,0.0000,48.4300,0.0000,0.0000,0.0000,65.3400,0.0000,0.0000,0.0000,64.7200,0.0000,0.0000,0.0000,52.4300,0.0000,0.0000,0.0000,63.1100,0.0000 +301117.SZ,0.0000,0.0000,0.0000,98.9400,0.0000,98.0100,0.0000,29.6700,0.0000,0.0000,0.0000,39.4400,0.0000,0.0000,0.0000,43.5600,0.0000,0.0000,0.0000,30.7500,0.0000 +300952.SZ,0.0000,0.0000,0.0000,18.3900,0.0000,0.0000,0.0000,16.3800,0.0000,0.0000,0.0000,21.3600,0.0000,0.0000,0.0000,8.6100,0.0000,0.0000,0.0000,15.8600,0.0000 +301007.SZ,0.0000,0.0000,0.0000,38.7800,0.0000,0.0000,0.0000,36.5200,0.0000,0.0000,0.0000,49.6500,0.0000,0.0000,0.0000,34.8700,0.0000,0.0000,0.0000,46.5600,0.0000 +688071.SH,0.0000,0.0000,0.0000,46.2500,0.0000,0.0000,0.0000,42.8400,0.0000,0.0000,0.0000,32.3800,0.0000,0.0000,0.0000,33.7000,0.0000,0.0000,0.0000,24.3000,0.0000 +300491.SZ,0.0000,0.0000,0.0000,18.0600,0.0000,0.0000,0.0000,19.0900,0.0000,0.0000,0.0000,19.7200,0.0000,0.0000,0.0000,22.0600,0.0000,0.0000,0.0000,22.9300,0.0000 +301268.SZ,0.0000,0.0000,0.0000,30.6700,0.0000,0.0000,25.0300,25.2500,0.0000,0.0000,0.0000,20.7700,0.0000,0.0000,0.0000,20.4100,0.0000,0.0000,0.0000,25.0600,0.0000 +603379.SH,0.0000,0.0000,0.0000,35.7300,0.0000,0.0000,0.0000,36.6400,0.0000,0.0000,0.0000,34.5500,0.0000,0.0000,0.0000,34.0900,0.0000,0.0000,0.0000,34.3000,0.0000 +688225.SH,0.0000,0.0000,0.0000,43.3200,0.0000,36.8400,0.0000,40.4800,0.0000,0.0000,0.0000,38.5000,0.0000,0.0000,0.0000,39.2700,0.0000,0.0000,0.0000,26.2400,0.0000 +300753.SZ,0.0000,0.0000,0.0000,72.9100,0.0000,0.0000,0.0000,56.6300,0.0000,0.0000,0.0000,58.2100,0.0000,0.0000,0.0000,52.7900,0.0000,0.0000,0.0000,50.4600,0.0000 +832225.BJ,0.0000,0.0000,0.0000,39.3100,0.0000,0.0000,0.0000,32.0400,0.0000,0.0000,0.0000,29.0900,0.0000,0.0000,0.0000,25.5800,0.0000,0.0000,0.0000,23.5900,0.0000 +600962.SH,0.0000,0.0000,0.0000,55.0300,0.0000,0.0000,0.0000,55.7000,0.0000,0.0000,0.0000,45.7400,0.0000,0.0000,0.0000,48.8600,0.0000,0.0000,0.0000,11.4200,0.0000 +870656.BJ,0.0000,0.0000,0.0000,47.2600,0.0000,0.0000,0.0000,42.3300,0.0000,0.0000,0.0000,46.7100,0.0000,54.9800,0.0000,48.6700,0.0000,0.0000,0.0000,59.3400,0.0000 +300217.SZ,0.0000,0.0000,0.0000,29.9100,0.0000,0.0000,0.0000,25.6700,0.0000,0.0000,0.0000,22.1700,0.0000,0.0000,0.0000,21.8100,0.0000,0.0000,0.0000,21.2500,0.0000 +835174.BJ,0.0000,0.0000,0.0000,32.9600,0.0000,0.0000,0.0000,21.3500,0.0000,0.0000,0.0000,22.6700,0.0000,0.0000,0.0000,22.1800,0.0000,0.0000,0.0000,22.0100,0.0000 +300022.SZ,0.0000,0.0000,0.0000,55.4000,0.0000,0.0000,0.0000,60.5100,0.0000,0.0000,0.0000,59.2800,0.0000,0.0000,0.0000,63.5300,0.0000,0.0000,0.0000,68.0300,0.0000 +300403.SZ,0.0000,0.0000,0.0000,25.2500,0.0000,0.0000,0.0000,24.9300,0.0000,0.0000,0.0000,24.0800,0.0000,0.0000,0.0000,25.1800,0.0000,0.0000,0.0000,24.0400,0.0000 +688178.SH,0.0000,0.0000,0.0000,17.1200,0.0000,0.0000,0.0000,17.6600,0.0000,0.0000,0.0000,19.9500,0.0000,0.0000,0.0000,15.7100,0.0000,0.0000,0.0000,14.0800,0.0000 +300652.SZ,0.0000,0.0000,0.0000,25.1800,0.0000,0.0000,0.0000,35.4800,0.0000,0.0000,0.0000,29.5300,0.0000,0.0000,0.0000,54.1700,0.0000,0.0000,0.0000,31.2200,0.0000 +300731.SZ,0.0000,0.0000,0.0000,47.8100,0.0000,0.0000,0.0000,29.3500,0.0000,0.0000,0.0000,35.3000,0.0000,0.0000,0.0000,35.1500,0.0000,0.0000,0.0000,33.2400,0.0000 +688539.SH,0.0000,0.0000,0.0000,35.4500,0.0000,0.0000,0.0000,35.3600,0.0000,34.0600,0.0000,0.0000,0.0000,0.0000,0.0000,30.2100,0.0000,0.0000,0.0000,26.5100,0.0000 +002229.SZ,0.0000,0.0000,0.0000,28.2000,0.0000,0.0000,0.0000,30.4800,0.0000,0.0000,0.0000,35.9600,0.0000,0.0000,0.0000,58.1100,0.0000,0.0000,0.0000,71.1200,0.0000 +600366.SH,0.0000,0.0000,0.0000,50.7800,0.0000,0.0000,0.0000,68.5200,0.0000,0.0000,0.0000,76.1800,0.0000,0.0000,0.0000,61.7600,0.0000,0.0000,0.0000,48.9200,0.0000 +300531.SZ,0.0000,0.0000,0.0000,24.2700,0.0000,0.0000,0.0000,23.8200,0.0000,0.0000,0.0000,21.9700,0.0000,0.0000,0.0000,22.2100,0.0000,0.0000,0.0000,23.2500,0.0000 +600610.SH,0.0000,0.0000,0.0000,39.6000,0.0000,0.0000,0.0000,42.7300,0.0000,0.0000,0.0000,28.9000,0.0000,0.0000,0.0000,52.0200,0.0000,0.0000,0.0000,51.6900,0.0000 +300830.SZ,0.0000,0.0000,0.0000,61.4000,0.0000,0.0000,0.0000,20.3900,0.0000,0.0000,0.0000,18.3000,0.0000,0.0000,0.0000,25.5800,0.0000,0.0000,0.0000,34.0500,0.0000 +300835.SZ,0.0000,0.0000,0.0000,34.2200,0.0000,0.0000,0.0000,31.6700,0.0000,0.0000,0.0000,25.8800,0.0000,0.0000,0.0000,19.5000,0.0000,0.0000,0.0000,23.1600,0.0000 +300476.SZ,0.0000,0.0000,0.0000,31.2200,0.0000,0.0000,0.0000,45.3400,0.0000,0.0000,0.0000,36.7900,0.0000,0.0000,0.0000,42.3600,0.0000,0.0000,0.0000,36.1100,0.0000 +603897.SH,0.0000,0.0000,0.0000,85.9300,0.0000,0.0000,0.0000,94.6000,0.0000,0.0000,0.0000,93.2000,0.0000,0.0000,0.0000,90.6500,0.0000,0.0000,0.0000,83.2500,0.0000 +873576.BJ,0.0000,0.0000,0.0000,54.0200,0.0000,0.0000,0.0000,53.9900,0.0000,62.4500,0.0000,67.5400,0.0000,0.0000,0.0000,71.4000,0.0000,0.0000,0.0000,55.8600,0.0000 +300010.SZ,0.0000,0.0000,0.0000,23.7000,0.0000,0.0000,0.0000,33.7800,0.0000,0.0000,0.0000,13.9100,0.0000,0.0000,0.0000,39.7500,0.0000,0.0000,0.0000,27.0800,0.0000 +300735.SZ,0.0000,0.0000,0.0000,34.6000,0.0000,0.0000,0.0000,58.7600,0.0000,0.0000,0.0000,43.2400,0.0000,0.0000,0.0000,37.9500,0.0000,0.0000,0.0000,49.8700,0.0000 +300913.SZ,0.0000,0.0000,0.0000,71.1400,0.0000,0.0000,0.0000,64.9700,0.0000,0.0000,0.0000,64.8900,0.0000,0.0000,0.0000,65.5600,0.0000,0.0000,0.0000,60.7800,0.0000 +002581.SZ,0.0000,0.0000,0.0000,58.3700,0.0000,0.0000,0.0000,60.1200,0.0000,0.0000,0.0000,66.6600,0.0000,0.0000,0.0000,71.9000,0.0000,0.0000,0.0000,61.0400,0.0000 +430090.BJ,0.0000,0.0000,0.0000,81.1300,0.0000,0.0000,0.0000,80.0400,0.0000,0.0000,0.0000,69.1100,0.0000,0.0000,0.0000,84.5100,0.0000,0.0000,0.0000,87.9300,0.0000 +300925.SZ,0.0000,0.0000,0.0000,32.1500,0.0000,0.0000,0.0000,28.9400,0.0000,0.0000,0.0000,19.7700,0.0000,0.0000,0.0000,15.7800,0.0000,0.0000,0.0000,23.9700,0.0000 +688559.SH,0.0000,0.0000,0.0000,22.1500,0.0000,0.0000,0.0000,11.1400,0.0000,0.0000,0.0000,20.9500,0.0000,0.0000,0.0000,14.3200,0.0000,0.0000,0.0000,10.9600,0.0000 +300437.SZ,0.0000,0.0000,0.0000,16.4200,0.0000,0.0000,0.0000,30.0900,0.0000,0.0000,0.0000,41.8300,0.0000,0.0000,0.0000,33.2200,0.0000,0.0000,0.0000,31.5500,0.0000 +688212.SH,0.0000,0.0000,0.0000,22.6600,0.0000,22.0700,0.0000,20.6700,0.0000,0.0000,0.0000,21.1000,0.0000,0.0000,0.0000,26.9000,0.0000,0.0000,0.0000,28.0500,0.0000 +603112.SH,0.0000,0.0000,0.0000,34.6500,0.0000,0.0000,0.0000,35.0000,0.0000,0.0000,0.0000,30.0700,0.0000,0.0000,0.0000,52.3700,0.0000,0.0000,0.0000,47.4400,0.0000 +600353.SH,0.0000,0.0000,0.0000,33.5700,0.0000,0.0000,0.0000,54.6300,0.0000,0.0000,0.0000,39.9100,0.0000,0.0000,0.0000,34.8800,0.0000,0.0000,0.0000,33.5500,0.0000 +603296.SH,0.0000,0.0000,0.0000,35.1500,0.0000,0.0000,0.0000,33.1200,0.0000,0.0000,0.0000,37.4100,0.0000,0.0000,0.0000,38.6300,0.0000,0.0000,0.0000,37.4300,0.0000 +301486.SZ,0.0000,0.0000,0.0000,66.2300,0.0000,0.0000,0.0000,44.5900,0.0000,0.0000,0.0000,39.2200,0.0000,0.0000,0.0000,29.0100,0.0000,0.0000,0.0000,22.2800,0.0000 +830896.BJ,0.0000,0.0000,0.0000,32.9300,0.0000,0.0000,0.0000,35.1500,0.0000,35.4400,0.0000,34.4200,0.0000,0.0000,0.0000,33.8200,0.0000,0.0000,0.0000,36.3600,0.0000 +300938.SZ,0.0000,0.0000,0.0000,31.2900,0.0000,0.0000,0.0000,30.1000,0.0000,0.0000,0.0000,31.4100,0.0000,0.0000,0.0000,34.0500,0.0000,0.0000,0.0000,24.5900,0.0000 +688206.SH,0.0000,0.0000,0.0000,74.3000,0.0000,93.1100,0.0000,92.8200,0.0000,0.0000,0.0000,84.2400,0.0000,0.0000,0.0000,68.5000,0.0000,0.0000,0.0000,49.7100,0.0000 +600160.SH,0.0000,0.0000,0.0000,63.5500,0.0000,0.0000,0.0000,42.5900,0.0000,0.0000,0.0000,28.8100,0.0000,0.0000,0.0000,33.7500,0.0000,0.0000,0.0000,22.2900,0.0000 +831834.BJ,0.0000,0.0000,0.0000,28.6400,0.0000,27.7100,0.0000,28.4600,0.0000,0.0000,0.0000,26.7600,0.0000,0.0000,0.0000,21.5800,0.0000,0.0000,0.0000,28.2600,0.0000 +873132.BJ,0.0000,0.0000,0.0000,28.2900,0.0000,0.0000,0.0000,28.7200,0.0000,0.0000,0.0000,35.8800,0.0000,27.7700,0.0000,32.4100,0.0000,0.0000,0.0000,23.2100,0.0000 +603890.SH,0.0000,0.0000,0.0000,15.3800,0.0000,0.0000,0.0000,19.2800,0.0000,0.0000,0.0000,14.2500,0.0000,0.0000,0.0000,25.8600,0.0000,0.0000,0.0000,28.4800,0.0000 +871981.BJ,0.0000,0.0000,0.0000,61.1300,0.0000,0.0000,0.0000,60.9400,0.0000,0.0000,0.0000,55.2800,0.0000,0.0000,0.0000,54.9300,0.0000,0.0000,0.0000,51.0000,0.0000 +600156.SH,0.0000,0.0000,0.0000,28.3000,0.0000,0.0000,0.0000,31.2800,0.0000,0.0000,0.0000,37.4200,0.0000,0.0000,0.0000,26.4800,0.0000,0.0000,0.0000,23.3200,0.0000 +301358.SZ,0.0000,0.0000,0.0000,76.3600,0.0000,0.0000,0.0000,40.9300,0.0000,51.7800,0.0000,56.9200,0.0000,0.0000,0.0000,75.5000,0.0000,0.0000,0.0000,48.0500,0.0000 +300049.SZ,0.0000,0.0000,0.0000,53.1900,0.0000,0.0000,0.0000,41.0100,0.0000,0.0000,0.0000,35.8600,0.0000,0.0000,0.0000,60.9300,0.0000,0.0000,0.0000,39.0900,0.0000 +834058.BJ,0.0000,0.0000,0.0000,29.0600,0.0000,0.0000,0.0000,28.6400,0.0000,0.0000,0.0000,30.8700,0.0000,0.0000,0.0000,30.1200,0.0000,0.0000,0.0000,34.6400,0.0000 +300748.SZ,0.0000,0.0000,0.0000,64.3100,0.0000,0.0000,0.0000,73.2000,0.0000,0.0000,0.0000,76.7000,0.0000,0.0000,0.0000,81.8100,0.0000,0.0000,0.0000,76.9500,0.0000 +300960.SZ,0.0000,0.0000,0.0000,32.3300,0.0000,0.0000,0.0000,34.7400,0.0000,0.0000,0.0000,31.3500,0.0000,0.0000,0.0000,23.3200,0.0000,0.0000,0.0000,24.8000,0.0000 +300542.SZ,0.0000,0.0000,0.0000,40.2800,0.0000,0.0000,0.0000,48.3600,0.0000,0.0000,0.0000,60.3200,0.0000,0.0000,0.0000,53.0900,0.0000,0.0000,0.0000,39.7400,0.0000 +300127.SZ,0.0000,0.0000,0.0000,58.7800,0.0000,0.0000,0.0000,61.1000,0.0000,0.0000,0.0000,69.5600,0.0000,0.0000,0.0000,62.1000,0.0000,0.0000,0.0000,41.1400,0.0000 +301321.SZ,0.0000,0.0000,0.0000,20.9000,0.0000,0.0000,0.0000,19.0000,0.0000,0.0000,0.0000,20.4600,0.0000,0.0000,0.0000,19.9800,0.0000,0.0000,0.0000,20.0900,0.0000 +002463.SZ,0.0000,0.0000,0.0000,46.5400,0.0000,0.0000,0.0000,42.4300,0.0000,0.0000,0.0000,42.9700,0.0000,0.0000,0.0000,48.7300,0.0000,0.0000,0.0000,54.4800,0.0000 +600246.SH,0.0000,0.0000,0.0000,70.5100,0.0000,0.0000,0.0000,53.6000,0.0000,0.0000,0.0000,86.1700,0.0000,0.0000,0.0000,19.5400,0.0000,0.0000,0.0000,45.9400,0.0000 +831010.BJ,0.0000,0.0000,0.0000,93.1500,0.0000,0.0000,0.0000,88.7600,0.0000,0.0000,0.0000,74.5400,0.0000,0.0000,0.0000,78.8700,0.0000,0.0000,0.0000,79.5500,0.0000 +688117.SH,0.0000,0.0000,0.0000,51.0400,0.0000,0.0000,0.0000,43.5500,0.0000,0.0000,0.0000,34.7300,0.0000,0.0000,0.0000,45.8400,0.0000,0.0000,0.0000,46.9000,0.0000 +688509.SH,0.0000,0.0000,0.0000,10.2800,0.0000,0.0000,0.0000,13.5000,0.0000,0.0000,0.0000,12.7900,0.0000,0.0000,0.0000,6.9800,0.0000,0.0000,0.0000,16.4800,0.0000 +000767.SZ,0.0000,0.0000,0.0000,63.6100,0.0000,0.0000,0.0000,54.3900,0.0000,0.0000,0.0000,79.5900,0.0000,0.0000,0.0000,81.0500,0.0000,0.0000,0.0000,68.3100,0.0000 +300163.SZ,0.0000,0.0000,0.0000,39.2300,0.0000,0.0000,0.0000,34.3600,0.0000,0.0000,0.0000,29.3600,0.0000,0.0000,0.0000,29.1100,0.0000,0.0000,0.0000,30.7500,0.0000 +300961.SZ,0.0000,44.8000,0.0000,38.5500,0.0000,0.0000,0.0000,31.1000,0.0000,0.0000,0.0000,32.3300,0.0000,0.0000,0.0000,28.2200,0.0000,0.0000,0.0000,53.1700,0.0000 +300598.SZ,0.0000,0.0000,0.0000,49.5300,0.0000,0.0000,0.0000,36.9400,0.0000,0.0000,0.0000,29.5800,0.0000,0.0000,0.0000,23.0000,0.0000,0.0000,0.0000,35.1200,0.0000 +688498.SH,0.0000,0.0000,0.0000,57.6200,0.0000,0.0000,0.0000,50.8000,0.0000,52.6200,0.0000,54.5300,0.0000,0.0000,0.0000,51.8100,0.0000,0.0000,0.0000,56.9800,0.0000 +300377.SZ,0.0000,0.0000,0.0000,48.2400,0.0000,0.0000,0.0000,45.5800,0.0000,0.0000,0.0000,40.5400,0.0000,0.0000,0.0000,37.2800,0.0000,0.0000,0.0000,36.4100,0.0000 +603881.SH,0.0000,0.0000,0.0000,80.7900,0.0000,0.0000,0.0000,90.5200,0.0000,0.0000,0.0000,49.2000,0.0000,0.0000,0.0000,42.1800,0.0000,0.0000,0.0000,64.1100,0.0000 +300663.SZ,0.0000,0.0000,0.0000,91.8200,0.0000,0.0000,0.0000,56.8200,0.0000,0.0000,0.0000,65.3000,0.0000,0.0000,0.0000,76.3500,0.0000,0.0000,0.0000,69.2300,0.0000 +300716.SZ,0.0000,0.0000,0.0000,29.9900,0.0000,0.0000,0.0000,28.6200,0.0000,0.0000,0.0000,43.4700,0.0000,0.0000,0.0000,41.6600,0.0000,0.0000,0.0000,61.3100,0.0000 +833781.BJ,0.0000,0.0000,0.0000,21.1100,0.0000,0.0000,0.0000,25.6500,0.0000,19.9700,0.0000,22.1000,0.0000,0.0000,0.0000,23.1200,0.0000,0.0000,0.0000,24.2400,0.0000 +605008.SH,0.0000,0.0000,0.0000,64.4500,0.0000,0.0000,0.0000,60.6800,0.0000,0.0000,0.0000,33.4800,0.0000,0.0000,0.0000,35.7200,0.0000,0.0000,0.0000,51.5600,0.0000 +000969.SZ,0.0000,0.0000,0.0000,18.0100,0.0000,0.0000,0.0000,20.5300,0.0000,0.0000,0.0000,23.8500,0.0000,0.0000,0.0000,23.2200,0.0000,0.0000,0.0000,21.4800,0.0000 +002378.SZ,0.0000,0.0000,0.0000,39.7800,0.0000,0.0000,0.0000,71.0700,0.0000,0.0000,0.0000,64.4600,0.0000,0.0000,0.0000,52.9700,0.0000,0.0000,0.0000,68.6600,0.0000 +300721.SZ,0.0000,0.0000,0.0000,54.3300,0.0000,0.0000,0.0000,47.0800,0.0000,0.0000,0.0000,45.9400,0.0000,0.0000,0.0000,42.9500,0.0000,0.0000,0.0000,43.7500,0.0000 +688205.SH,0.0000,0.0000,0.0000,34.3300,0.0000,0.0000,0.0000,31.8300,0.0000,0.0000,0.0000,32.7400,0.0000,0.0000,0.0000,39.0000,0.0000,0.0000,0.0000,30.2100,0.0000 +836717.BJ,0.0000,0.0000,0.0000,32.9000,0.0000,0.0000,0.0000,26.8900,0.0000,34.5700,0.0000,26.7500,0.0000,0.0000,0.0000,22.1300,0.0000,0.0000,0.0000,22.2800,0.0000 +301113.SZ,0.0000,0.0000,0.0000,36.0300,0.0000,40.4300,0.0000,38.4700,0.0000,0.0000,0.0000,29.3600,0.0000,0.0000,0.0000,35.2300,0.0000,0.0000,0.0000,29.7900,0.0000 +301092.SZ,0.0000,0.0000,0.0000,18.6200,0.0000,0.0000,0.0000,51.9600,0.0000,0.0000,0.0000,43.9700,0.0000,0.0000,0.0000,45.6900,0.0000,0.0000,0.0000,47.0500,0.0000 +603015.SH,0.0000,0.0000,0.0000,26.4800,0.0000,0.0000,0.0000,38.1600,0.0000,0.0000,0.0000,37.1500,0.0000,0.0000,0.0000,26.1700,0.0000,0.0000,0.0000,34.4700,0.0000 +300065.SZ,0.0000,0.0000,0.0000,48.1600,0.0000,0.0000,0.0000,52.2200,0.0000,0.0000,0.0000,56.1900,0.0000,0.0000,0.0000,52.0900,0.0000,0.0000,0.0000,29.7700,0.0000 +301270.SZ,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,69.4200,0.0000,0.0000,0.0000,62.4200,0.0000,0.0000,0.0000,57.3300,0.0000 +688679.SH,0.0000,0.0000,0.0000,15.9900,0.0000,0.0000,0.0000,12.9100,0.0000,0.0000,0.0000,16.9600,0.0000,0.0000,0.0000,11.0300,0.0000,0.0000,0.0000,11.1500,0.0000 +688378.SH,0.0000,0.0000,0.0000,48.2700,0.0000,0.0000,0.0000,37.0300,0.0000,0.0000,0.0000,32.1300,0.0000,0.0000,0.0000,29.5200,0.0000,0.0000,0.0000,28.7600,0.0000 +002115.SZ,0.0000,0.0000,0.0000,87.6500,0.0000,0.0000,0.0000,90.4500,0.0000,0.0000,0.0000,83.3600,0.0000,0.0000,0.0000,95.0000,0.0000,0.0000,0.0000,96.4700,0.0000 +300693.SZ,0.0000,0.0000,0.0000,24.9100,0.0000,0.0000,0.0000,24.1000,0.0000,0.0000,0.0000,25.1000,0.0000,0.0000,0.0000,21.5800,0.0000,0.0000,0.0000,18.3600,0.0000 +300824.SZ,0.0000,0.0000,0.0000,15.0200,0.0000,0.0000,0.0000,17.1600,0.0000,0.0000,0.0000,17.9800,0.0000,0.0000,0.0000,9.9500,0.0000,0.0000,0.0000,11.9300,0.0000 +001380.SZ,0.0000,0.0000,0.0000,57.5000,0.0000,0.0000,0.0000,61.7200,0.0000,0.0000,0.0000,59.3100,0.0000,0.0000,0.0000,52.4800,0.0000,0.0000,0.0000,50.8200,0.0000 +600658.SH,0.0000,0.0000,0.0000,42.1900,0.0000,0.0000,0.0000,59.0700,0.0000,0.0000,0.0000,47.8000,0.0000,0.0000,0.0000,39.6400,0.0000,0.0000,0.0000,37.6300,0.0000 +301377.SZ,0.0000,0.0000,0.0000,34.1900,0.0000,0.0000,0.0000,35.1900,0.0000,39.8800,0.0000,36.5400,0.0000,0.0000,0.0000,41.0100,0.0000,0.0000,0.0000,34.5000,0.0000 +002491.SZ,0.0000,0.0000,0.0000,30.3500,0.0000,0.0000,0.0000,41.9600,0.0000,0.0000,0.0000,41.4000,0.0000,0.0000,0.0000,44.8900,0.0000,0.0000,0.0000,58.9500,0.0000 +603197.SH,0.0000,0.0000,0.0000,21.0300,0.0000,0.0000,0.0000,17.5100,0.0000,0.0000,0.0000,19.2400,0.0000,0.0000,0.0000,20.5200,0.0000,0.0000,0.0000,17.6700,0.0000 +002928.SZ,0.0000,0.0000,0.0000,63.0800,0.0000,0.0000,0.0000,67.7500,0.0000,0.0000,0.0000,56.6800,0.0000,0.0000,0.0000,43.6100,0.0000,0.0000,0.0000,48.6100,0.0000 +001337.SZ,0.0000,0.0000,0.0000,80.9100,0.0000,0.0000,0.0000,81.6400,0.0000,84.7300,0.0000,72.8300,0.0000,0.0000,0.0000,67.8300,0.0000,0.0000,0.0000,62.1400,0.0000 +300002.SZ,0.0000,0.0000,0.0000,57.7800,0.0000,0.0000,0.0000,76.0600,0.0000,0.0000,0.0000,83.9000,0.0000,0.0000,0.0000,83.5100,0.0000,0.0000,0.0000,80.3300,0.0000 +688201.SH,0.0000,56.6100,0.0000,0.0000,0.0000,0.0000,0.0000,64.1800,0.0000,0.0000,0.0000,62.7000,0.0000,0.0000,0.0000,57.0700,0.0000,0.0000,0.0000,58.6400,0.0000 +300350.SZ,0.0000,0.0000,0.0000,17.0700,0.0000,0.0000,0.0000,21.7500,0.0000,0.0000,0.0000,21.4300,0.0000,0.0000,0.0000,35.7100,0.0000,0.0000,0.0000,51.8200,0.0000 +300460.SZ,0.0000,0.0000,0.0000,62.9200,0.0000,0.0000,0.0000,54.7600,0.0000,0.0000,0.0000,56.9500,0.0000,0.0000,0.0000,74.6300,0.0000,0.0000,0.0000,61.4300,0.0000 +300139.SZ,0.0000,0.0000,0.0000,59.9800,0.0000,0.0000,0.0000,64.5800,0.0000,0.0000,0.0000,47.3400,0.0000,0.0000,0.0000,66.3400,0.0000,0.0000,0.0000,45.4800,0.0000 +600839.SH,0.0000,0.0000,0.0000,27.3800,0.0000,0.0000,0.0000,31.2500,0.0000,0.0000,0.0000,27.1100,0.0000,0.0000,0.0000,26.5500,0.0000,0.0000,0.0000,25.4300,0.0000 +301141.SZ,0.0000,0.0000,0.0000,52.2500,0.0000,0.0000,0.0000,73.4400,0.0000,73.3800,0.0000,0.0000,0.0000,0.0000,0.0000,44.3900,0.0000,0.0000,0.0000,42.4600,0.0000 +873706.BJ,0.0000,0.0000,0.0000,29.6900,0.0000,0.0000,0.0000,29.4700,0.0000,0.0000,0.0000,29.5700,0.0000,25.6400,0.0000,26.5000,0.0000,0.0000,0.0000,24.8300,0.0000 +838971.BJ,0.0000,0.0000,0.0000,60.3800,0.0000,0.0000,0.0000,68.4100,0.0000,0.0000,0.0000,70.4600,0.0000,0.0000,0.0000,83.2000,0.0000,0.0000,0.0000,73.0200,0.0000 +002929.SZ,0.0000,0.0000,0.0000,46.7900,0.0000,0.0000,0.0000,42.7700,0.0000,0.0000,0.0000,29.3800,0.0000,0.0000,0.0000,36.8000,0.0000,0.0000,0.0000,33.2800,0.0000 +603063.SH,0.0000,0.0000,0.0000,21.6900,0.0000,0.0000,0.0000,24.6400,0.0000,0.0000,0.0000,18.6100,0.0000,0.0000,0.0000,20.9100,0.0000,0.0000,0.0000,22.5100,0.0000 +603322.SH,0.0000,0.0000,0.0000,23.3000,0.0000,0.0000,0.0000,38.9100,0.0000,0.0000,0.0000,47.6400,0.0000,0.0000,0.0000,39.2500,0.0000,0.0000,0.0000,56.1500,0.0000 +300644.SZ,0.0000,0.0000,0.0000,31.6600,0.0000,0.0000,0.0000,30.1600,0.0000,0.0000,0.0000,25.1500,0.0000,0.0000,0.0000,31.3800,0.0000,0.0000,0.0000,33.5600,0.0000 +002735.SZ,0.0000,0.0000,0.0000,19.0100,0.0000,0.0000,0.0000,24.7900,0.0000,0.0000,0.0000,24.9200,0.0000,0.0000,0.0000,23.6700,0.0000,0.0000,0.0000,20.9500,0.0000 +688171.SH,0.0000,0.0000,0.0000,46.1000,0.0000,38.9300,0.0000,28.1600,0.0000,0.0000,0.0000,40.3300,0.0000,0.0000,0.0000,44.9600,0.0000,0.0000,0.0000,33.8300,0.0000 +300157.SZ,0.0000,0.0000,0.0000,21.5900,0.0000,0.0000,0.0000,21.1800,0.0000,0.0000,0.0000,20.6300,0.0000,0.0000,0.0000,22.4400,0.0000,0.0000,0.0000,27.5400,0.0000 +871857.BJ,0.0000,0.0000,0.0000,41.7600,0.0000,38.3900,0.0000,35.0200,0.0000,0.0000,0.0000,37.0500,0.0000,0.0000,0.0000,31.0700,0.0000,0.0000,0.0000,33.7500,0.0000 +688162.SH,0.0000,0.0000,0.0000,11.2100,0.0000,14.0300,0.0000,9.5000,0.0000,0.0000,0.0000,11.0800,0.0000,0.0000,0.0000,7.9400,0.0000,0.0000,0.0000,9.6300,0.0000 +300245.SZ,0.0000,0.0000,0.0000,40.0100,0.0000,0.0000,0.0000,33.6900,0.0000,0.0000,0.0000,34.4500,0.0000,0.0000,0.0000,16.3000,0.0000,0.0000,0.0000,28.8600,0.0000 +688270.SH,0.0000,0.0000,0.0000,30.5300,0.0000,54.0700,0.0000,35.7300,0.0000,0.0000,0.0000,30.7000,0.0000,0.0000,0.0000,31.7200,0.0000,0.0000,0.0000,40.2700,0.0000 +831689.BJ,0.0000,0.0000,0.0000,26.6900,0.0000,25.0300,0.0000,24.4900,0.0000,0.0000,0.0000,21.3200,0.0000,0.0000,0.0000,22.3000,0.0000,0.0000,0.0000,24.7600,0.0000 +300290.SZ,0.0000,0.0000,0.0000,15.9600,0.0000,0.0000,0.0000,16.9900,0.0000,0.0000,0.0000,17.6800,0.0000,0.0000,0.0000,19.3100,0.0000,0.0000,0.0000,20.3800,0.0000 +301535.SZ,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,34.5800,0.0000,0.0000,0.0000,35.1700,0.0000,0.0000,0.0000,30.6100,0.0000,30.6800,0.0000,28.9100,0.0000 +002431.SZ,0.0000,0.0000,0.0000,12.6200,0.0000,0.0000,0.0000,16.4700,0.0000,0.0000,0.0000,20.1900,0.0000,0.0000,0.0000,19.1000,0.0000,0.0000,0.0000,19.4200,0.0000 +600590.SH,0.0000,0.0000,0.0000,16.8500,0.0000,0.0000,0.0000,16.2600,0.0000,0.0000,0.0000,24.2300,0.0000,0.0000,0.0000,26.0200,0.0000,0.0000,0.0000,25.9800,0.0000 +301187.SZ,0.0000,0.0000,0.0000,25.1300,0.0000,27.7700,0.0000,0.0000,0.0000,0.0000,0.0000,22.3300,0.0000,0.0000,0.0000,22.9600,0.0000,0.0000,0.0000,23.7400,0.0000 +002193.SZ,0.0000,0.0000,0.0000,30.8600,0.0000,0.0000,0.0000,36.9400,0.0000,0.0000,0.0000,30.4100,0.0000,0.0000,0.0000,57.3300,0.0000,0.0000,0.0000,53.8800,0.0000 +832978.BJ,0.0000,0.0000,0.0000,26.4100,0.0000,0.0000,0.0000,31.3800,0.0000,31.9100,0.0000,31.8200,0.0000,0.0000,0.0000,36.4300,0.0000,0.0000,0.0000,33.2100,0.0000 +839371.BJ,0.0000,0.0000,0.0000,56.9400,0.0000,0.0000,0.0000,61.2600,0.0000,56.3000,0.0000,54.1500,0.0000,0.0000,0.0000,50.9500,0.0000,0.0000,0.0000,48.1900,0.0000 +300798.SZ,0.0000,0.0000,0.0000,36.7300,0.0000,0.0000,0.0000,41.2700,0.0000,0.0000,0.0000,22.4000,0.0000,0.0000,0.0000,38.2900,0.0000,0.0000,0.0000,41.8300,0.0000 +002006.SZ,0.0000,0.0000,0.0000,13.4800,0.0000,0.0000,0.0000,29.6000,0.0000,0.0000,0.0000,37.7400,0.0000,0.0000,0.0000,15.5500,0.0000,0.0000,0.0000,10.6300,0.0000 +000510.SZ,0.0000,0.0000,0.0000,46.7800,0.0000,0.0000,0.0000,54.0000,0.0000,0.0000,0.0000,46.2300,0.0000,0.0000,0.0000,56.5200,0.0000,0.0000,0.0000,53.4900,0.0000 +300224.SZ,0.0000,0.0000,0.0000,40.3400,0.0000,0.0000,0.0000,68.3200,0.0000,0.0000,0.0000,67.2100,0.0000,0.0000,0.0000,64.1300,0.0000,0.0000,0.0000,48.1100,0.0000 +300130.SZ,0.0000,0.0000,0.0000,16.9700,0.0000,0.0000,0.0000,17.2200,0.0000,0.0000,0.0000,14.5100,0.0000,0.0000,0.0000,13.4100,0.0000,0.0000,0.0000,12.8500,0.0000 +300570.SZ,0.0000,0.0000,0.0000,68.9400,0.0000,0.0000,0.0000,66.0800,0.0000,0.0000,0.0000,70.6400,0.0000,0.0000,0.0000,68.4600,0.0000,0.0000,0.0000,68.5900,0.0000 +002851.SZ,0.0000,0.0000,0.0000,14.2800,0.0000,0.0000,0.0000,15.7800,0.0000,0.0000,0.0000,14.1200,0.0000,0.0000,0.0000,14.3100,0.0000,0.0000,0.0000,13.2300,0.0000 +430300.BJ,0.0000,0.0000,0.0000,38.2100,0.0000,0.0000,0.0000,31.0200,0.0000,37.0900,0.0000,37.0200,0.0000,0.0000,0.0000,36.5900,0.0000,0.0000,0.0000,39.1200,0.0000 +688003.SH,0.0000,0.0000,0.0000,27.7900,0.0000,0.0000,0.0000,20.9600,0.0000,0.0000,0.0000,22.5400,0.0000,0.0000,0.0000,17.3200,0.0000,0.0000,0.0000,18.3400,0.0000 +301153.SZ,0.0000,0.0000,0.0000,38.7500,0.0000,0.0000,0.0000,39.5900,0.0000,0.0000,0.0000,37.8000,0.0000,0.0000,0.0000,31.9900,0.0000,0.0000,0.0000,37.4600,0.0000 +002453.SZ,0.0000,0.0000,0.0000,73.5000,0.0000,0.0000,0.0000,73.6300,0.0000,0.0000,0.0000,74.5600,0.0000,0.0000,0.0000,36.4100,0.0000,0.0000,0.0000,52.1600,0.0000 +601900.SH,0.0000,0.0000,0.0000,17.1300,0.0000,0.0000,0.0000,15.9900,0.0000,0.0000,0.0000,15.3500,0.0000,0.0000,0.0000,13.3700,0.0000,0.0000,0.0000,18.6700,0.0000 +300468.SZ,0.0000,0.0000,0.0000,100.0000,0.0000,0.0000,0.0000,87.1400,0.0000,0.0000,0.0000,63.4700,0.0000,0.0000,0.0000,83.0700,0.0000,0.0000,0.0000,82.5600,0.0000 +002988.SZ,0.0000,0.0000,0.0000,70.5900,0.0000,0.0000,0.0000,72.1400,0.0000,0.0000,0.0000,40.5900,0.0000,0.0000,0.0000,29.4300,0.0000,0.0000,0.0000,41.6500,0.0000 +834765.BJ,0.0000,0.0000,0.0000,46.8200,0.0000,0.0000,0.0000,51.3000,0.0000,0.0000,0.0000,50.6300,0.0000,0.0000,0.0000,52.0600,0.0000,0.0000,0.0000,47.3400,0.0000 +300281.SZ,0.0000,0.0000,0.0000,39.6200,0.0000,0.0000,0.0000,48.0400,0.0000,0.0000,0.0000,36.9800,0.0000,0.0000,0.0000,35.3600,0.0000,0.0000,0.0000,28.7100,0.0000 +601083.SH,0.0000,0.0000,0.0000,45.6500,0.0000,0.0000,0.0000,39.6000,0.0000,0.0000,0.0000,42.2500,0.0000,43.1600,0.0000,37.9600,0.0000,0.0000,0.0000,39.9900,0.0000 +301256.SZ,0.0000,0.0000,0.0000,61.5000,0.0000,56.1500,0.0000,52.3100,0.0000,0.0000,0.0000,49.6800,0.0000,0.0000,0.0000,69.5700,0.0000,0.0000,0.0000,40.3700,0.0000 +600611.SH,0.0000,0.0000,0.0000,28.1000,0.0000,0.0000,0.0000,51.0200,0.0000,0.0000,0.0000,43.5600,0.0000,0.0000,0.0000,37.0600,0.0000,0.0000,0.0000,35.3100,0.0000 +600468.SH,0.0000,0.0000,0.0000,74.1000,0.0000,0.0000,0.0000,54.5900,0.0000,0.0000,0.0000,53.6500,0.0000,0.0000,0.0000,52.8600,0.0000,0.0000,0.0000,57.3400,0.0000 +301159.SZ,0.0000,0.0000,0.0000,18.4200,0.0000,15.9100,0.0000,50.0700,0.0000,0.0000,0.0000,46.1900,0.0000,0.0000,0.0000,45.9700,0.0000,0.0000,0.0000,26.7800,0.0000 +430564.BJ,0.0000,0.0000,0.0000,18.9700,0.0000,25.6200,0.0000,29.7800,0.0000,0.0000,0.0000,19.0000,0.0000,0.0000,0.0000,34.3900,0.0000,0.0000,0.0000,15.0200,0.0000 +300429.SZ,0.0000,0.0000,0.0000,34.3400,0.0000,0.0000,0.0000,21.0700,0.0000,0.0000,0.0000,23.4200,0.0000,0.0000,0.0000,20.4200,0.0000,0.0000,0.0000,21.0700,0.0000 +301367.SZ,0.0000,0.0000,0.0000,28.8600,0.0000,0.0000,0.0000,28.7000,0.0000,0.0000,0.0000,32.0200,0.0000,0.0000,0.0000,31.3800,0.0000,0.0000,0.0000,24.5200,0.0000 +832149.BJ,0.0000,0.0000,0.0000,51.4500,0.0000,0.0000,0.0000,51.5200,0.0000,67.1800,0.0000,66.9900,0.0000,0.0000,0.0000,71.0300,0.0000,0.0000,0.0000,51.5700,0.0000 +605178.SH,0.0000,0.0000,0.0000,31.7800,0.0000,0.0000,0.0000,19.5500,0.0000,0.0000,0.0000,27.2100,0.0000,0.0000,0.0000,28.0900,0.0000,0.0000,0.0000,25.6500,0.0000 +871245.BJ,0.0000,0.0000,0.0000,37.6200,0.0000,0.0000,0.0000,33.4200,0.0000,0.0000,0.0000,27.5800,0.0000,0.0000,0.0000,23.9500,0.0000,0.0000,0.0000,25.1100,0.0000 +002925.SZ,0.0000,0.0000,0.0000,13.1000,0.0000,0.0000,0.0000,14.8100,0.0000,0.0000,0.0000,14.7700,0.0000,0.0000,0.0000,10.7600,0.0000,0.0000,0.0000,10.1900,0.0000 +600206.SH,0.0000,0.0000,0.0000,49.2000,0.0000,0.0000,0.0000,40.5200,0.0000,0.0000,0.0000,33.2000,0.0000,0.0000,0.0000,38.2200,0.0000,0.0000,0.0000,30.6700,0.0000 +605128.SH,0.0000,0.0000,0.0000,36.4100,0.0000,0.0000,0.0000,28.7200,0.0000,0.0000,0.0000,35.3400,0.0000,0.0000,0.0000,37.8000,0.0000,0.0000,0.0000,48.4100,0.0000 +688793.SH,0.0000,0.0000,0.0000,33.6400,0.0000,0.0000,0.0000,35.2400,0.0000,0.0000,0.0000,37.7400,0.0000,0.0000,0.0000,48.0400,0.0000,0.0000,0.0000,41.4200,0.0000 +300180.SZ,0.0000,0.0000,0.0000,41.7600,0.0000,0.0000,0.0000,19.2200,0.0000,0.0000,0.0000,27.9200,0.0000,0.0000,0.0000,43.2200,0.0000,0.0000,0.0000,45.2600,0.0000 +300518.SZ,0.0000,0.0000,0.0000,90.7900,0.0000,0.0000,0.0000,62.3600,0.0000,0.0000,0.0000,87.2200,0.0000,0.0000,0.0000,85.4300,0.0000,0.0000,0.0000,68.1000,0.0000 +300430.SZ,0.0000,0.0000,0.0000,28.9700,0.0000,0.0000,0.0000,15.8800,0.0000,0.0000,0.0000,23.0800,0.0000,0.0000,0.0000,15.2100,0.0000,0.0000,0.0000,14.9500,0.0000 +000831.SZ,0.0000,0.0000,0.0000,58.8000,0.0000,0.0000,0.0000,53.2100,0.0000,0.0000,0.0000,40.0900,0.0000,0.0000,0.0000,33.6800,0.0000,0.0000,0.0000,44.6300,0.0000 +000661.SZ,0.0000,0.0000,0.0000,19.9000,0.0000,0.0000,0.0000,37.6800,0.0000,0.0000,0.0000,36.4000,0.0000,0.0000,0.0000,33.4400,0.0000,0.0000,0.0000,16.2100,0.0000 +300004.SZ,0.0000,0.0000,0.0000,28.3200,0.0000,0.0000,0.0000,30.3000,0.0000,0.0000,0.0000,33.4600,0.0000,0.0000,0.0000,25.0800,0.0000,0.0000,0.0000,21.0100,0.0000 +603880.SH,0.0000,0.0000,0.0000,23.0000,0.0000,0.0000,0.0000,23.7300,0.0000,0.0000,0.0000,29.1100,0.0000,0.0000,0.0000,30.3900,0.0000,0.0000,0.0000,27.5700,0.0000 +600363.SH,0.0000,0.0000,0.0000,19.2300,0.0000,0.0000,0.0000,33.3800,0.0000,0.0000,0.0000,9.2600,0.0000,0.0000,0.0000,12.7500,0.0000,0.0000,0.0000,12.1000,0.0000 +002175.SZ,0.0000,0.0000,0.0000,26.1400,0.0000,0.0000,0.0000,29.6200,0.0000,0.0000,0.0000,25.7900,0.0000,0.0000,0.0000,24.1300,0.0000,0.0000,0.0000,24.3500,0.0000 +300260.SZ,0.0000,0.0000,0.0000,19.3500,0.0000,0.0000,0.0000,17.9800,0.0000,0.0000,0.0000,18.3600,0.0000,0.0000,0.0000,30.2100,0.0000,0.0000,0.0000,22.7400,0.0000 +872925.BJ,0.0000,0.0000,0.0000,32.5400,0.0000,0.0000,0.0000,34.3100,0.0000,0.0000,0.0000,31.3500,0.0000,0.0000,0.0000,29.2300,0.0000,0.0000,0.0000,34.0700,0.0000 +300904.SZ,0.0000,0.0000,0.0000,40.4900,0.0000,0.0000,0.0000,36.5300,0.0000,0.0000,0.0000,31.3500,0.0000,0.0000,0.0000,42.9200,0.0000,0.0000,0.0000,28.6200,0.0000 +300559.SZ,0.0000,0.0000,0.0000,45.3000,0.0000,0.0000,0.0000,48.1600,0.0000,0.0000,0.0000,34.5000,0.0000,0.0000,0.0000,41.5500,0.0000,0.0000,0.0000,46.1300,0.0000 +832735.BJ,0.0000,0.0000,0.0000,44.4600,0.0000,0.0000,0.0000,53.9300,0.0000,0.0000,0.0000,48.3200,0.0000,0.0000,0.0000,39.9200,0.0000,0.0000,0.0000,35.6500,0.0000 +601020.SH,0.0000,0.0000,0.0000,66.7800,0.0000,0.0000,0.0000,68.2400,0.0000,0.0000,0.0000,49.5100,0.0000,0.0000,0.0000,34.2400,0.0000,0.0000,0.0000,33.2700,0.0000 +831167.BJ,0.0000,0.0000,0.0000,39.4900,0.0000,0.0000,39.5300,38.2700,0.0000,0.0000,0.0000,47.9400,0.0000,0.0000,0.0000,38.6300,0.0000,0.0000,0.0000,40.5000,0.0000 +603836.SH,0.0000,0.0000,0.0000,24.0500,0.0000,0.0000,0.0000,23.3500,0.0000,0.0000,0.0000,24.6400,0.0000,0.0000,0.0000,17.6700,0.0000,0.0000,0.0000,20.8500,0.0000 +002513.SZ,0.0000,0.0000,0.0000,52.7200,0.0000,0.0000,0.0000,54.5300,0.0000,0.0000,0.0000,49.4700,0.0000,0.0000,0.0000,47.2100,0.0000,0.0000,0.0000,38.6000,0.0000 +301372.SZ,0.0000,0.0000,0.0000,27.0900,0.0000,0.0000,0.0000,32.1400,0.0000,0.0000,0.0000,30.6300,0.0000,0.0000,0.0000,54.8600,0.0000,0.0000,0.0000,60.5000,0.0000 +300032.SZ,0.0000,0.0000,0.0000,18.1700,0.0000,0.0000,0.0000,14.7100,0.0000,0.0000,0.0000,25.0000,0.0000,0.0000,0.0000,15.8500,0.0000,0.0000,0.0000,28.6100,0.0000 +002072.SZ,0.0000,0.0000,0.0000,99.4500,0.0000,0.0000,0.0000,95.9900,0.0000,0.0000,0.0000,67.7900,0.0000,0.0000,0.0000,57.4600,0.0000,0.0000,0.0000,69.8100,0.0000 +688084.SH,0.0000,0.0000,0.0000,64.1600,0.0000,0.0000,0.0000,27.4900,0.0000,44.0400,0.0000,34.5500,0.0000,0.0000,0.0000,34.7200,0.0000,0.0000,0.0000,27.8800,0.0000 +688577.SH,0.0000,0.0000,0.0000,38.6200,0.0000,0.0000,0.0000,35.2400,0.0000,0.0000,0.0000,32.9700,0.0000,0.0000,0.0000,29.2800,0.0000,0.0000,0.0000,38.8200,0.0000 +003002.SZ,0.0000,0.0000,0.0000,43.5800,0.0000,0.0000,0.0000,44.6900,0.0000,0.0000,0.0000,49.7400,0.0000,0.0000,0.0000,39.7600,0.0000,0.0000,0.0000,37.3000,0.0000 +300200.SZ,0.0000,0.0000,0.0000,35.4800,0.0000,0.0000,0.0000,27.9200,0.0000,0.0000,0.0000,27.0700,0.0000,0.0000,0.0000,20.7300,0.0000,0.0000,0.0000,20.9300,0.0000 +002837.SZ,0.0000,0.0000,0.0000,18.1800,0.0000,0.0000,0.0000,24.8600,0.0000,0.0000,0.0000,18.4700,0.0000,0.0000,0.0000,17.0800,0.0000,0.0000,0.0000,16.2300,0.0000 +300499.SZ,0.0000,0.0000,0.0000,21.9900,0.0000,0.0000,0.0000,26.6300,0.0000,0.0000,0.0000,28.4300,0.0000,0.0000,0.0000,23.5500,0.0000,0.0000,0.0000,21.9100,0.0000 +000536.SZ,0.0000,0.0000,0.0000,24.8100,0.0000,0.0000,0.0000,20.9900,0.0000,0.0000,0.0000,18.0600,0.0000,0.0000,0.0000,23.1600,0.0000,0.0000,0.0000,23.6100,0.0000 +002131.SZ,0.0000,0.0000,0.0000,81.2900,0.0000,0.0000,0.0000,63.5400,0.0000,0.0000,0.0000,75.1600,0.0000,0.0000,0.0000,78.2200,0.0000,0.0000,0.0000,63.6800,0.0000 +000520.SZ,0.0000,0.0000,0.0000,40.1500,0.0000,0.0000,0.0000,42.4400,0.0000,0.0000,0.0000,45.0600,0.0000,0.0000,0.0000,25.3800,0.0000,0.0000,0.0000,26.7200,0.0000 +002486.SZ,0.0000,0.0000,0.0000,52.2800,0.0000,0.0000,0.0000,41.4000,0.0000,0.0000,0.0000,39.7300,0.0000,0.0000,0.0000,38.7800,0.0000,0.0000,0.0000,47.5800,0.0000 +605303.SH,0.0000,0.0000,0.0000,12.0800,0.0000,0.0000,0.0000,16.4100,0.0000,0.0000,0.0000,16.8600,0.0000,0.0000,0.0000,14.8100,0.0000,0.0000,0.0000,30.8800,0.0000 +301277.SZ,0.0000,0.0000,0.0000,50.8900,0.0000,0.0000,0.0000,45.0400,0.0000,46.9800,0.0000,41.8500,0.0000,0.0000,0.0000,33.7400,0.0000,0.0000,0.0000,43.6300,0.0000 +831175.BJ,0.0000,0.0000,0.0000,21.7400,0.0000,0.0000,0.0000,17.7600,0.0000,0.0000,0.0000,24.0700,0.0000,22.8600,0.0000,30.1300,0.0000,0.0000,0.0000,17.1000,0.0000 +300278.SZ,0.0000,0.0000,0.0000,24.9700,0.0000,0.0000,0.0000,21.3800,0.0000,0.0000,0.0000,33.8500,0.0000,0.0000,0.0000,32.7900,0.0000,0.0000,0.0000,20.2500,0.0000 +873169.BJ,0.0000,0.0000,0.0000,38.2300,0.0000,34.1200,0.0000,25.7900,0.0000,0.0000,0.0000,22.9500,0.0000,0.0000,0.0000,27.3800,0.0000,0.0000,0.0000,27.8300,0.0000 +688287.SH,0.0000,0.0000,0.0000,71.2000,0.0000,0.0000,0.0000,83.4300,0.0000,0.0000,0.0000,62.6500,0.0000,0.0000,0.0000,67.0500,0.0000,0.0000,0.0000,35.1700,0.0000 +688255.SH,0.0000,0.0000,0.0000,65.3800,0.0000,0.0000,0.0000,56.5300,0.0000,0.0000,0.0000,55.4300,0.0000,0.0000,0.0000,42.9100,0.0000,0.0000,0.0000,59.8500,0.0000 +300465.SZ,0.0000,0.0000,0.0000,38.0500,0.0000,0.0000,0.0000,46.3400,0.0000,0.0000,0.0000,23.1200,0.0000,0.0000,0.0000,34.1500,0.0000,0.0000,0.0000,36.2800,0.0000 +430198.BJ,0.0000,0.0000,0.0000,42.9100,0.0000,0.0000,0.0000,42.5500,0.0000,0.0000,0.0000,39.9000,0.0000,0.0000,0.0000,34.4100,0.0000,0.0000,0.0000,28.9800,0.0000 +002703.SZ,0.0000,0.0000,0.0000,19.5500,0.0000,0.0000,0.0000,20.8100,0.0000,0.0000,0.0000,18.4600,0.0000,0.0000,0.0000,22.3900,0.0000,0.0000,0.0000,24.3700,0.0000 +300738.SZ,0.0000,0.0000,0.0000,60.3700,0.0000,0.0000,0.0000,64.9900,0.0000,0.0000,0.0000,53.1200,0.0000,0.0000,0.0000,60.2300,0.0000,0.0000,0.0000,67.9500,0.0000 +301063.SZ,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,67.4900,0.0000,0.0000,0.0000,65.0000,0.0000,0.0000,0.0000,71.4200,0.0000,0.0000,0.0000,49.2100,0.0000 +300541.SZ,0.0000,0.0000,0.0000,63.5500,0.0000,0.0000,0.0000,65.9900,0.0000,0.0000,0.0000,61.4800,0.0000,0.0000,0.0000,67.2900,0.0000,0.0000,0.0000,64.9200,0.0000 +002103.SZ,0.0000,0.0000,0.0000,60.1700,0.0000,0.0000,0.0000,59.7500,0.0000,0.0000,0.0000,32.9100,0.0000,0.0000,0.0000,24.8000,0.0000,0.0000,0.0000,22.8000,0.0000 +601360.SH,0.0000,0.0000,0.0000,33.9300,0.0000,0.0000,0.0000,23.9100,0.0000,0.0000,0.0000,25.2300,0.0000,0.0000,0.0000,25.6700,0.0000,0.0000,0.0000,22.2300,0.0000 +002469.SZ,0.0000,0.0000,0.0000,32.7600,0.0000,0.0000,0.0000,46.8400,0.0000,0.0000,0.0000,46.1200,0.0000,0.0000,0.0000,51.5200,0.0000,0.0000,0.0000,46.3300,0.0000 +871634.BJ,0.0000,0.0000,0.0000,73.1200,0.0000,0.0000,0.0000,65.8600,0.0000,65.6900,0.0000,63.0900,0.0000,0.0000,0.0000,72.4900,0.0000,0.0000,0.0000,82.9100,0.0000 +600875.SH,0.0000,0.0000,0.0000,8.4000,0.0000,0.0000,0.0000,9.5300,0.0000,0.0000,0.0000,10.3600,0.0000,0.0000,0.0000,11.4600,0.0000,0.0000,0.0000,11.0000,0.0000 +300548.SZ,0.0000,0.0000,0.0000,41.2400,0.0000,0.0000,0.0000,46.7500,0.0000,0.0000,0.0000,61.3900,0.0000,0.0000,0.0000,46.4400,0.0000,0.0000,0.0000,48.4200,0.0000 +603344.SH,0.0000,0.0000,0.0000,22.0200,0.0000,0.0000,0.0000,23.6700,0.0000,0.0000,0.0000,23.6900,0.0000,22.8500,0.0000,22.1100,0.0000,0.0000,0.0000,19.3400,0.0000 +301131.SZ,0.0000,0.0000,0.0000,29.3900,0.0000,25.1600,0.0000,24.5800,0.0000,0.0000,0.0000,22.7500,0.0000,0.0000,0.0000,22.4500,0.0000,0.0000,0.0000,25.6600,0.0000 +688048.SH,0.0000,0.0000,0.0000,40.7700,0.0000,38.5300,0.0000,0.0000,0.0000,0.0000,0.0000,29.5800,0.0000,0.0000,0.0000,29.1000,0.0000,0.0000,0.0000,27.5900,0.0000 +603912.SH,0.0000,0.0000,0.0000,17.9400,0.0000,0.0000,0.0000,29.7800,0.0000,0.0000,0.0000,36.5900,0.0000,0.0000,0.0000,28.1300,0.0000,0.0000,0.0000,27.5700,0.0000 +300871.SZ,0.0000,0.0000,0.0000,42.5500,0.0000,0.0000,0.0000,43.0500,0.0000,0.0000,0.0000,48.1900,0.0000,0.0000,0.0000,38.4100,0.0000,0.0000,0.0000,37.8000,0.0000 +838262.BJ,0.0000,0.0000,0.0000,41.6400,0.0000,0.0000,0.0000,40.3800,0.0000,46.7600,0.0000,50.8100,0.0000,0.0000,0.0000,44.6500,0.0000,0.0000,0.0000,46.7100,0.0000 +000981.SZ,0.0000,0.0000,0.0000,11.0000,0.0000,0.0000,0.0000,8.4300,0.0000,0.0000,0.0000,28.0500,0.0000,0.0000,0.0000,11.9200,0.0000,0.0000,0.0000,37.4800,0.0000 +000880.SZ,0.0000,0.0000,0.0000,32.8500,0.0000,0.0000,0.0000,36.8100,0.0000,0.0000,0.0000,41.1100,0.0000,0.0000,0.0000,43.7600,0.0000,0.0000,0.0000,43.4900,0.0000 +300855.SZ,0.0000,0.0000,0.0000,65.2800,0.0000,0.0000,0.0000,70.4000,0.0000,0.0000,0.0000,73.3800,0.0000,0.0000,0.0000,65.6700,0.0000,0.0000,0.0000,56.4000,0.0000 +300561.SZ,0.0000,0.0000,0.0000,36.7200,0.0000,0.0000,0.0000,39.7100,0.0000,0.0000,0.0000,38.7200,0.0000,0.0000,0.0000,36.4800,0.0000,0.0000,0.0000,24.5800,0.0000 +300475.SZ,0.0000,0.0000,0.0000,32.4700,0.0000,0.0000,0.0000,97.2800,0.0000,0.0000,0.0000,98.5400,0.0000,0.0000,0.0000,96.1900,0.0000,0.0000,0.0000,95.1500,0.0000 +688122.SH,0.0000,0.0000,0.0000,53.8700,0.0000,0.0000,0.0000,55.0800,0.0000,0.0000,0.0000,56.5200,0.0000,0.0000,0.0000,44.7400,0.0000,0.0000,0.0000,35.9100,0.0000 +920819.BJ,0.0000,0.0000,0.0000,17.3000,0.0000,0.0000,0.0000,30.3000,0.0000,0.0000,0.0000,17.0800,0.0000,0.0000,0.0000,19.5200,0.0000,0.0000,0.0000,17.5100,0.0000 +001339.SZ,0.0000,0.0000,0.0000,50.2900,0.0000,0.0000,0.0000,40.3200,0.0000,0.0000,0.0000,33.0100,0.0000,0.0000,0.0000,37.3300,0.0000,0.0000,0.0000,47.2400,0.0000 +301307.SZ,0.0000,0.0000,0.0000,36.6400,0.0000,0.0000,0.0000,40.5500,0.0000,31.1400,0.0000,0.0000,0.0000,0.0000,0.0000,39.2000,0.0000,0.0000,0.0000,37.8700,0.0000 +300854.SZ,0.0000,0.0000,0.0000,38.4200,0.0000,0.0000,0.0000,24.1000,0.0000,0.0000,0.0000,25.2900,0.0000,0.0000,0.0000,26.5600,0.0000,0.0000,0.0000,22.7400,0.0000 +300214.SZ,0.0000,0.0000,0.0000,48.4500,0.0000,0.0000,0.0000,43.9300,0.0000,0.0000,0.0000,39.2400,0.0000,0.0000,0.0000,41.8700,0.0000,0.0000,0.0000,33.2800,0.0000 +600558.SH,0.0000,0.0000,0.0000,28.6700,0.0000,0.0000,0.0000,31.5400,0.0000,0.0000,0.0000,15.2600,0.0000,0.0000,0.0000,21.5900,0.0000,0.0000,0.0000,24.1700,0.0000 +688678.SH,0.0000,0.0000,0.0000,25.2700,0.0000,0.0000,0.0000,29.3000,0.0000,0.0000,0.0000,16.2200,0.0000,0.0000,0.0000,17.0300,0.0000,0.0000,0.0000,15.2100,0.0000 +688685.SH,0.0000,0.0000,0.0000,35.4000,0.0000,0.0000,0.0000,51.1500,0.0000,0.0000,0.0000,37.4700,0.0000,0.0000,0.0000,29.4100,0.0000,0.0000,0.0000,62.9800,0.0000 +002426.SZ,0.0000,0.0000,0.0000,22.8000,0.0000,0.0000,0.0000,19.9900,0.0000,0.0000,0.0000,19.3300,0.0000,0.0000,0.0000,20.4000,0.0000,0.0000,0.0000,19.0800,0.0000 +300287.SZ,0.0000,0.0000,0.0000,14.7800,0.0000,0.0000,0.0000,15.8400,0.0000,0.0000,0.0000,26.1400,0.0000,0.0000,0.0000,27.8400,0.0000,0.0000,0.0000,18.1400,0.0000 +001283.SZ,0.0000,0.0000,0.0000,40.0900,0.0000,0.0000,0.0000,39.6300,0.0000,0.0000,0.0000,38.9700,0.0000,0.0000,0.0000,31.6500,0.0000,0.0000,0.0000,26.8600,0.0000 +603496.SH,0.0000,0.0000,0.0000,30.2700,0.0000,0.0000,0.0000,24.1600,0.0000,0.0000,0.0000,37.8700,0.0000,0.0000,0.0000,36.0300,0.0000,0.0000,0.0000,54.7500,0.0000 +835508.BJ,0.0000,0.0000,0.0000,40.9800,0.0000,0.0000,0.0000,26.3600,0.0000,0.0000,0.0000,21.6000,0.0000,0.0000,0.0000,28.6400,0.0000,0.0000,0.0000,20.5200,0.0000 +301178.SZ,0.0000,0.0000,0.0000,43.5900,0.0000,55.4900,0.0000,48.2900,0.0000,0.0000,0.0000,65.4000,0.0000,0.0000,0.0000,61.6900,0.0000,0.0000,0.0000,66.1100,0.0000 +002366.SZ,0.0000,0.0000,0.0000,35.5900,0.0000,0.0000,0.0000,44.5600,0.0000,0.0000,0.0000,47.5300,0.0000,0.0000,0.0000,34.1900,0.0000,0.0000,0.0000,15.9700,0.0000 +688772.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,32.9000,0.0000,0.0000,0.0000,35.3100,0.0000,0.0000,0.0000,25.8100,0.0000,0.0000,0.0000,23.5900,0.0000 +002916.SZ,0.0000,0.0000,0.0000,37.4200,0.0000,0.0000,0.0000,29.7000,0.0000,0.0000,0.0000,27.6600,0.0000,0.0000,0.0000,25.6700,0.0000,0.0000,0.0000,27.4600,0.0000 +300591.SZ,0.0000,0.0000,0.0000,29.3300,0.0000,0.0000,0.0000,27.3100,0.0000,0.0000,0.0000,45.6500,0.0000,0.0000,0.0000,45.6500,0.0000,0.0000,0.0000,45.7300,0.0000 +300249.SZ,0.0000,0.0000,0.0000,16.8500,0.0000,0.0000,0.0000,15.8000,0.0000,0.0000,0.0000,16.8400,0.0000,0.0000,0.0000,16.4800,0.0000,0.0000,0.0000,18.6500,0.0000 +000813.SZ,0.0000,0.0000,0.0000,59.9300,0.0000,0.0000,0.0000,71.6500,0.0000,0.0000,0.0000,89.9000,0.0000,0.0000,0.0000,59.1100,0.0000,0.0000,0.0000,57.3900,0.0000 +837023.BJ,0.0000,0.0000,0.0000,18.5200,0.0000,0.0000,0.0000,24.9100,0.0000,0.0000,0.0000,27.4500,0.0000,41.1900,0.0000,34.6100,0.0000,0.0000,0.0000,22.9400,0.0000 +300184.SZ,0.0000,0.0000,0.0000,73.8700,0.0000,0.0000,0.0000,69.4400,0.0000,0.0000,0.0000,60.8500,0.0000,0.0000,0.0000,54.7500,0.0000,0.0000,0.0000,59.1000,0.0000 +301221.SZ,0.0000,0.0000,0.0000,47.3900,0.0000,39.0300,0.0000,36.6800,0.0000,0.0000,0.0000,46.6500,0.0000,0.0000,0.0000,46.9900,0.0000,0.0000,0.0000,44.5700,0.0000 +832662.BJ,0.0000,0.0000,0.0000,70.5000,0.0000,0.0000,0.0000,66.1100,0.0000,74.6800,0.0000,75.6900,0.0000,0.0000,0.0000,70.1800,0.0000,0.0000,0.0000,56.0600,0.0000 +600797.SH,0.0000,0.0000,0.0000,21.5000,0.0000,0.0000,0.0000,26.3600,0.0000,0.0000,0.0000,28.9500,0.0000,0.0000,0.0000,21.6300,0.0000,0.0000,0.0000,18.5700,0.0000 +002227.SZ,0.0000,0.0000,0.0000,27.9200,0.0000,0.0000,0.0000,32.7900,0.0000,0.0000,0.0000,39.7000,0.0000,0.0000,0.0000,28.3400,0.0000,0.0000,0.0000,23.2200,0.0000 +300827.SZ,0.0000,0.0000,0.0000,32.1600,0.0000,0.0000,0.0000,22.4000,0.0000,0.0000,0.0000,32.8100,0.0000,0.0000,0.0000,34.5000,0.0000,0.0000,0.0000,27.0000,0.0000 +300487.SZ,0.0000,0.0000,0.0000,19.7000,0.0000,0.0000,0.0000,15.3600,0.0000,0.0000,0.0000,19.9200,0.0000,0.0000,0.0000,11.7700,0.0000,0.0000,0.0000,16.2200,0.0000 +301139.SZ,0.0000,0.0000,0.0000,55.8600,0.0000,0.0000,0.0000,60.7000,0.0000,0.0000,0.0000,42.7600,0.0000,0.0000,0.0000,38.2000,0.0000,0.0000,0.0000,30.0100,0.0000 +001255.SZ,0.0000,0.0000,0.0000,20.7800,0.0000,0.0000,0.0000,23.6900,0.0000,0.0000,0.0000,23.3400,0.0000,0.0000,0.0000,25.0500,0.0000,0.0000,0.0000,25.5400,0.0000 +300050.SZ,0.0000,0.0000,0.0000,23.4400,0.0000,0.0000,0.0000,25.3700,0.0000,0.0000,0.0000,28.7300,0.0000,0.0000,0.0000,29.2600,0.0000,0.0000,0.0000,43.7600,0.0000 +002553.SZ,0.0000,0.0000,0.0000,16.2800,0.0000,0.0000,0.0000,21.0000,0.0000,0.0000,0.0000,16.9800,0.0000,0.0000,0.0000,17.4000,0.0000,0.0000,0.0000,22.0600,0.0000 +301501.SZ,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,61.1600,0.0000,0.0000,0.0000,66.5200,0.0000,0.0000,0.0000,57.5200,0.0000,59.5000,0.0000,58.9200,0.0000 +300379.SZ,0.0000,0.0000,0.0000,26.7100,0.0000,0.0000,0.0000,26.9700,0.0000,0.0000,0.0000,24.5900,0.0000,0.0000,0.0000,18.7000,0.0000,0.0000,0.0000,36.9400,0.0000 +301232.SZ,0.0000,0.0000,0.0000,49.3400,0.0000,0.0000,0.0000,53.8300,0.0000,0.0000,0.0000,58.6700,0.0000,0.0000,0.0000,48.2300,0.0000,0.0000,0.0000,49.0100,0.0000 +600728.SH,0.0000,0.0000,0.0000,69.1100,0.0000,0.0000,0.0000,54.0100,0.0000,0.0000,0.0000,68.6400,0.0000,0.0000,0.0000,65.9400,0.0000,0.0000,0.0000,65.9800,0.0000 +002421.SZ,0.0000,0.0000,0.0000,13.9400,0.0000,0.0000,0.0000,22.4400,0.0000,0.0000,0.0000,13.4800,0.0000,0.0000,0.0000,10.8100,0.0000,0.0000,0.0000,10.5600,0.0000 +001282.SZ,0.0000,0.0000,0.0000,62.0700,0.0000,0.0000,0.0000,58.8100,0.0000,0.0000,0.0000,61.1600,0.0000,0.0000,0.0000,62.2700,0.0000,0.0000,0.0000,60.0800,0.0000 +300947.SZ,0.0000,0.0000,0.0000,24.6700,0.0000,0.0000,0.0000,25.9500,0.0000,0.0000,0.0000,38.3000,0.0000,0.0000,0.0000,20.9700,0.0000,0.0000,0.0000,7.9900,0.0000 +301560.SZ,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,48.7800,0.0000,0.0000,0.0000,40.7900,0.0000,0.0000,0.0000,41.4000,0.0000 +300912.SZ,0.0000,0.0000,0.0000,31.7100,0.0000,0.0000,0.0000,33.5300,0.0000,0.0000,0.0000,35.1900,0.0000,0.0000,0.0000,33.0700,0.0000,0.0000,0.0000,28.7100,0.0000 +870299.BJ,0.0000,0.0000,0.0000,26.8700,0.0000,0.0000,0.0000,28.6300,0.0000,0.0000,0.0000,22.6200,0.0000,0.0000,0.0000,18.6500,0.0000,0.0000,0.0000,22.3800,0.0000 +300899.SZ,0.0000,0.0000,0.0000,40.1300,0.0000,0.0000,0.0000,41.1000,0.0000,0.0000,0.0000,41.2800,0.0000,0.0000,0.0000,44.6400,0.0000,0.0000,0.0000,38.0100,0.0000 +600577.SH,0.0000,0.0000,0.0000,61.7800,0.0000,0.0000,0.0000,62.1800,0.0000,0.0000,0.0000,54.7400,0.0000,0.0000,0.0000,46.5200,0.0000,0.0000,0.0000,49.6700,0.0000 +688023.SH,0.0000,0.0000,0.0000,43.0000,0.0000,0.0000,0.0000,41.5400,0.0000,0.0000,0.0000,39.0600,0.0000,0.0000,0.0000,25.2200,0.0000,0.0000,0.0000,17.5900,0.0000 +688265.SH,0.0000,0.0000,0.0000,19.9800,0.0000,21.7600,0.0000,47.4700,0.0000,0.0000,0.0000,30.2800,0.0000,0.0000,0.0000,24.0200,0.0000,0.0000,0.0000,25.8000,0.0000 +839273.BJ,0.0000,0.0000,0.0000,58.1000,0.0000,0.0000,0.0000,67.6500,0.0000,67.2700,0.0000,59.4200,0.0000,0.0000,0.0000,63.4200,0.0000,0.0000,0.0000,60.0500,0.0000 +300909.SZ,0.0000,0.0000,0.0000,47.6300,0.0000,0.0000,0.0000,43.5200,0.0000,0.0000,0.0000,33.8700,0.0000,0.0000,0.0000,20.1700,0.0000,0.0000,0.0000,27.0500,0.0000 +301013.SZ,0.0000,0.0000,0.0000,23.9000,0.0000,0.0000,0.0000,23.1200,0.0000,0.0000,0.0000,17.5700,0.0000,0.0000,0.0000,17.3200,0.0000,0.0000,0.0000,15.1000,0.0000 +603626.SH,0.0000,0.0000,0.0000,24.6500,0.0000,0.0000,0.0000,38.1900,0.0000,0.0000,0.0000,41.2300,0.0000,0.0000,0.0000,28.8100,0.0000,0.0000,0.0000,28.3600,0.0000 +002114.SZ,0.0000,0.0000,0.0000,16.7600,0.0000,0.0000,0.0000,33.4300,0.0000,0.0000,0.0000,57.7600,0.0000,0.0000,0.0000,61.2700,0.0000,0.0000,0.0000,61.1700,0.0000 +002194.SZ,0.0000,0.0000,0.0000,19.0900,0.0000,0.0000,0.0000,23.2500,0.0000,0.0000,0.0000,23.1900,0.0000,0.0000,0.0000,23.2000,0.0000,0.0000,0.0000,23.1600,0.0000 +300462.SZ,0.0000,0.0000,0.0000,25.0700,0.0000,0.0000,0.0000,29.7400,0.0000,0.0000,0.0000,15.5500,0.0000,0.0000,0.0000,19.6600,0.0000,0.0000,0.0000,16.6600,0.0000 +600715.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,4.8300,0.0000,0.0000,0.0000,7.7100,0.0000,0.0000,0.0000,31.3800,0.0000,0.0000,0.0000,30.0700,0.0000 +835670.BJ,0.0000,0.0000,0.0000,42.4800,0.0000,0.0000,0.0000,52.2200,0.0000,0.0000,0.0000,37.8900,0.0000,0.0000,0.0000,42.9400,0.0000,0.0000,0.0000,36.3400,0.0000 +300040.SZ,0.0000,0.0000,0.0000,29.7200,0.0000,0.0000,0.0000,32.4500,0.0000,0.0000,0.0000,19.8000,0.0000,0.0000,0.0000,33.5400,0.0000,0.0000,0.0000,15.6400,0.0000 +600624.SH,0.0000,0.0000,0.0000,77.7700,0.0000,0.0000,0.0000,75.3800,0.0000,0.0000,0.0000,77.4500,0.0000,0.0000,0.0000,61.3800,0.0000,0.0000,0.0000,68.3700,0.0000 +688768.SH,0.0000,0.0000,0.0000,23.6100,0.0000,0.0000,0.0000,17.3600,0.0000,0.0000,0.0000,13.6000,0.0000,0.0000,0.0000,16.7900,0.0000,0.0000,0.0000,18.2300,0.0000 +688630.SH,0.0000,0.0000,0.0000,43.5500,0.0000,0.0000,0.0000,43.1400,0.0000,0.0000,0.0000,40.0700,0.0000,0.0000,0.0000,42.6000,0.0000,0.0000,0.0000,38.8300,0.0000 +002591.SZ,0.0000,0.0000,0.0000,42.8100,0.0000,0.0000,0.0000,45.3900,0.0000,0.0000,0.0000,35.5700,0.0000,0.0000,0.0000,43.2100,0.0000,0.0000,0.0000,39.3900,0.0000 +688379.SH,0.0000,0.0000,0.0000,76.9200,0.0000,0.0000,0.0000,70.7000,0.0000,0.0000,0.0000,63.2700,0.0000,0.0000,0.0000,61.1200,0.0000,0.0000,0.0000,50.0500,0.0000 +002527.SZ,0.0000,0.0000,0.0000,46.5000,0.0000,0.0000,0.0000,39.7900,0.0000,0.0000,0.0000,34.3000,0.0000,0.0000,0.0000,30.4000,0.0000,0.0000,0.0000,35.5400,0.0000 +002480.SZ,0.0000,0.0000,0.0000,24.6900,0.0000,0.0000,0.0000,23.9800,0.0000,0.0000,0.0000,23.5600,0.0000,0.0000,0.0000,27.9600,0.0000,0.0000,0.0000,24.2200,0.0000 +688720.SH,0.0000,0.0000,0.0000,57.0700,0.0000,0.0000,0.0000,56.4000,0.0000,0.0000,0.0000,53.3400,0.0000,52.7200,0.0000,51.9600,0.0000,0.0000,0.0000,49.9800,0.0000 +832171.BJ,0.0000,0.0000,0.0000,35.6900,0.0000,0.0000,0.0000,24.2500,0.0000,0.0000,0.0000,36.5500,0.0000,0.0000,0.0000,41.9800,0.0000,0.0000,0.0000,64.9500,0.0000 +600969.SH,0.0000,0.0000,0.0000,70.8400,0.0000,0.0000,0.0000,77.0100,0.0000,0.0000,0.0000,71.6500,0.0000,0.0000,0.0000,76.3800,0.0000,0.0000,0.0000,50.4300,0.0000 +001236.SZ,0.0000,0.0000,0.0000,37.1700,0.0000,0.0000,0.0000,45.6300,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +300352.SZ,0.0000,0.0000,0.0000,26.1700,0.0000,0.0000,0.0000,29.3600,0.0000,0.0000,0.0000,40.4900,0.0000,0.0000,0.0000,7.3900,0.0000,0.0000,0.0000,18.9400,0.0000 +688021.SH,0.0000,0.0000,0.0000,46.4500,0.0000,0.0000,0.0000,44.6600,0.0000,0.0000,0.0000,42.9300,0.0000,0.0000,0.0000,40.5300,0.0000,0.0000,0.0000,33.7400,0.0000 +688148.SH,0.0000,0.0000,0.0000,72.2100,0.0000,0.0000,0.0000,66.5900,0.0000,0.0000,0.0000,82.2200,0.0000,0.0000,0.0000,79.9300,0.0000,0.0000,0.0000,51.8100,0.0000 +300545.SZ,0.0000,0.0000,0.0000,23.2400,0.0000,0.0000,0.0000,20.2500,0.0000,0.0000,0.0000,21.3900,0.0000,0.0000,0.0000,26.0600,0.0000,0.0000,0.0000,26.6800,0.0000 +603051.SH,0.0000,0.0000,0.0000,55.0200,0.0000,52.6700,0.0000,45.6500,0.0000,0.0000,0.0000,64.3100,0.0000,0.0000,0.0000,69.2900,0.0000,0.0000,0.0000,60.7200,0.0000 +300818.SZ,0.0000,0.0000,0.0000,37.2000,0.0000,0.0000,0.0000,57.8500,0.0000,0.0000,0.0000,33.7500,0.0000,0.0000,0.0000,35.8800,0.0000,0.0000,0.0000,37.2600,0.0000 +300402.SZ,0.0000,0.0000,0.0000,59.3100,0.0000,0.0000,0.0000,42.8900,0.0000,0.0000,0.0000,41.6500,0.0000,0.0000,0.0000,63.1700,0.0000,0.0000,0.0000,55.4900,0.0000 +301052.SZ,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,41.5700,0.0000,0.0000,0.0000,37.6500,0.0000,0.0000,0.0000,34.2300,0.0000,0.0000,0.0000,24.7300,0.0000 +000887.SZ,0.0000,0.0000,0.0000,8.5300,0.0000,0.0000,0.0000,8.9300,0.0000,0.0000,0.0000,9.5800,0.0000,0.0000,0.0000,9.2800,0.0000,0.0000,0.0000,7.9000,0.0000 +301120.SZ,0.0000,0.0000,0.0000,53.2600,0.0000,53.6700,0.0000,0.0000,0.0000,0.0000,0.0000,41.7800,0.0000,0.0000,0.0000,41.1500,0.0000,0.0000,0.0000,49.9100,0.0000 +600010.SH,0.0000,0.0000,0.0000,20.6600,0.0000,0.0000,0.0000,24.0400,0.0000,0.0000,0.0000,26.5200,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,23.1800,0.0000 +600545.SH,0.0000,0.0000,0.0000,9.0000,0.0000,0.0000,0.0000,10.3000,0.0000,0.0000,0.0000,15.5000,0.0000,0.0000,0.0000,14.7000,0.0000,0.0000,0.0000,12.8000,0.0000 +688726.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,18.7400,0.0000,0.0000,0.0000,20.5100,0.0000,0.0000,0.0000,18.0100,0.0000,16.8500,0.0000,12.3900,0.0000 +300229.SZ,0.0000,0.0000,0.0000,25.8100,0.0000,0.0000,0.0000,50.0100,0.0000,0.0000,0.0000,48.1200,0.0000,0.0000,0.0000,35.9500,0.0000,0.0000,0.0000,17.7100,0.0000 +300248.SZ,0.0000,0.0000,0.0000,9.4700,0.0000,0.0000,0.0000,13.9700,0.0000,0.0000,0.0000,14.5000,0.0000,0.0000,0.0000,11.8100,0.0000,0.0000,0.0000,9.5800,0.0000 +301128.SZ,0.0000,0.0000,0.0000,15.9300,0.0000,19.0900,0.0000,13.6100,0.0000,0.0000,0.0000,25.0200,0.0000,0.0000,0.0000,18.8500,0.0000,0.0000,0.0000,28.5500,0.0000 +002570.SZ,0.0000,0.0000,0.0000,36.7600,0.0000,0.0000,0.0000,36.9400,0.0000,0.0000,0.0000,28.8400,0.0000,0.0000,0.0000,27.2600,0.0000,0.0000,0.0000,27.5500,0.0000 +001301.SZ,0.0000,0.0000,0.0000,30.3900,0.0000,0.0000,0.0000,28.2900,0.0000,30.6400,0.0000,22.5200,0.0000,0.0000,0.0000,40.9900,0.0000,0.0000,0.0000,29.0900,0.0000 +600126.SH,0.0000,0.0000,0.0000,56.8600,0.0000,0.0000,0.0000,40.8200,0.0000,0.0000,0.0000,39.2100,0.0000,0.0000,0.0000,24.0700,0.0000,0.0000,0.0000,14.8800,0.0000 +838810.BJ,0.0000,0.0000,0.0000,33.0400,0.0000,0.0000,0.0000,32.2600,0.0000,34.2700,0.0000,28.8400,0.0000,0.0000,0.0000,32.0100,0.0000,0.0000,0.0000,30.2800,0.0000 +300659.SZ,0.0000,0.0000,0.0000,25.4200,0.0000,0.0000,0.0000,19.5000,0.0000,0.0000,0.0000,18.7000,0.0000,0.0000,0.0000,13.9700,0.0000,0.0000,0.0000,15.2700,0.0000 +301018.SZ,0.0000,0.0000,0.0000,12.2600,0.0000,0.0000,0.0000,10.6400,0.0000,0.0000,0.0000,11.2900,0.0000,0.0000,0.0000,10.2400,0.0000,0.0000,0.0000,12.1900,0.0000 +833284.BJ,0.0000,0.0000,0.0000,20.6200,0.0000,0.0000,0.0000,23.1300,0.0000,23.0300,0.0000,29.7400,0.0000,21.4100,0.0000,19.3900,0.0000,0.0000,0.0000,33.6800,0.0000 +002207.SZ,0.0000,0.0000,0.0000,50.2000,0.0000,0.0000,0.0000,41.4600,0.0000,0.0000,0.0000,40.1900,0.0000,0.0000,0.0000,39.4200,0.0000,0.0000,0.0000,23.8100,0.0000 +603882.SH,0.0000,0.0000,0.0000,36.1000,0.0000,0.0000,0.0000,35.9800,0.0000,0.0000,0.0000,31.9900,0.0000,0.0000,0.0000,31.8200,0.0000,0.0000,0.0000,31.6100,0.0000 +300895.SZ,0.0000,0.0000,0.0000,49.4100,0.0000,0.0000,0.0000,40.3600,0.0000,0.0000,0.0000,34.8100,0.0000,0.0000,0.0000,36.7600,0.0000,0.0000,0.0000,28.9200,0.0000 +603088.SH,0.0000,0.0000,0.0000,21.5800,0.0000,0.0000,0.0000,20.4100,0.0000,0.0000,0.0000,19.0400,0.0000,0.0000,0.0000,17.7700,0.0000,0.0000,0.0000,25.9900,0.0000 +000415.SZ,0.0000,0.0000,0.0000,71.4700,0.0000,0.0000,0.0000,69.1500,0.0000,0.0000,0.0000,80.2800,0.0000,0.0000,0.0000,78.7300,0.0000,0.0000,0.0000,71.3800,0.0000 +920682.BJ,0.0000,0.0000,0.0000,87.9000,0.0000,0.0000,0.0000,90.4200,0.0000,0.0000,0.0000,89.2900,0.0000,0.0000,0.0000,85.5400,0.0000,0.0000,0.0000,84.2000,0.0000 +688602.SH,0.0000,0.0000,0.0000,24.4300,0.0000,0.0000,0.0000,27.4100,0.0000,0.0000,0.0000,28.4900,0.0000,0.0000,0.0000,17.6400,0.0000,0.0000,0.0000,22.3600,0.0000 +837821.BJ,0.0000,0.0000,0.0000,69.2300,0.0000,64.7100,0.0000,68.2600,0.0000,0.0000,0.0000,63.9800,0.0000,0.0000,0.0000,51.0000,0.0000,0.0000,0.0000,40.1800,0.0000 +002155.SZ,0.0000,0.0000,0.0000,60.3300,0.0000,0.0000,0.0000,79.5200,0.0000,0.0000,0.0000,69.4000,0.0000,0.0000,0.0000,60.8800,0.0000,0.0000,0.0000,41.6900,0.0000 +300842.SZ,0.0000,0.0000,0.0000,96.0900,0.0000,0.0000,0.0000,95.4300,0.0000,0.0000,0.0000,88.6000,0.0000,0.0000,0.0000,84.9700,0.0000,0.0000,0.0000,84.4000,0.0000 +000712.SZ,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +001223.SZ,0.0000,0.0000,0.0000,23.3800,0.0000,0.0000,0.0000,25.6100,0.0000,20.6700,0.0000,27.5900,0.0000,0.0000,0.0000,19.4100,0.0000,0.0000,0.0000,20.2100,0.0000 +603256.SH,0.0000,0.0000,0.0000,93.6700,0.0000,0.0000,0.0000,84.6800,0.0000,0.0000,0.0000,40.5000,0.0000,0.0000,0.0000,54.0200,0.0000,0.0000,0.0000,63.4200,0.0000 +002261.SZ,0.0000,0.0000,0.0000,52.8700,0.0000,0.0000,0.0000,56.6700,0.0000,0.0000,0.0000,75.7200,0.0000,0.0000,0.0000,75.8200,0.0000,0.0000,0.0000,81.0100,0.0000 +000727.SZ,0.0000,0.0000,0.0000,31.6500,0.0000,0.0000,0.0000,36.1100,0.0000,0.0000,0.0000,34.6700,0.0000,0.0000,0.0000,34.5800,0.0000,0.0000,0.0000,34.4600,0.0000 +603038.SH,0.0000,0.0000,0.0000,45.1800,0.0000,0.0000,0.0000,45.1400,0.0000,0.0000,0.0000,46.4800,0.0000,0.0000,0.0000,29.0800,0.0000,0.0000,0.0000,28.0200,0.0000 +301212.SZ,0.0000,0.0000,0.0000,29.3800,0.0000,44.4400,0.0000,51.1700,0.0000,0.0000,0.0000,50.5900,0.0000,0.0000,0.0000,38.5200,0.0000,0.0000,0.0000,36.5700,0.0000 +301487.SZ,0.0000,0.0000,0.0000,85.2600,0.0000,0.0000,0.0000,74.5600,0.0000,0.0000,0.0000,73.4800,0.0000,0.0000,0.0000,72.8800,0.0000,0.0000,0.0000,78.6400,0.0000 +600847.SH,0.0000,0.0000,0.0000,72.6500,0.0000,0.0000,0.0000,72.5700,0.0000,0.0000,0.0000,61.6900,0.0000,0.0000,0.0000,62.9700,0.0000,0.0000,0.0000,71.6100,0.0000 +002806.SZ,0.0000,0.0000,0.0000,30.3300,0.0000,0.0000,0.0000,38.9600,0.0000,0.0000,0.0000,46.6000,0.0000,0.0000,0.0000,37.0700,0.0000,0.0000,0.0000,40.0800,0.0000 +688458.SH,0.0000,0.0000,0.0000,64.2500,0.0000,0.0000,0.0000,56.1100,0.0000,0.0000,0.0000,55.9700,0.0000,0.0000,0.0000,65.7400,0.0000,0.0000,0.0000,61.7000,0.0000 +002281.SZ,0.0000,0.0000,0.0000,17.3200,0.0000,0.0000,0.0000,16.6600,0.0000,0.0000,0.0000,16.4600,0.0000,0.0000,0.0000,16.0800,0.0000,0.0000,0.0000,28.0000,0.0000 +300840.SZ,0.0000,0.0000,0.0000,24.4300,0.0000,0.0000,0.0000,28.3500,0.0000,0.0000,0.0000,31.4300,0.0000,0.0000,0.0000,24.9300,0.0000,0.0000,0.0000,27.2600,0.0000 +002536.SZ,0.0000,0.0000,0.0000,32.5400,0.0000,0.0000,0.0000,30.7900,0.0000,0.0000,0.0000,32.0600,0.0000,0.0000,0.0000,25.4400,0.0000,0.0000,0.0000,22.7200,0.0000 +300267.SZ,0.0000,0.0000,0.0000,23.6000,0.0000,0.0000,0.0000,37.6600,0.0000,0.0000,0.0000,31.7600,0.0000,0.0000,0.0000,46.1000,0.0000,0.0000,0.0000,22.7200,0.0000 +300386.SZ,0.0000,0.0000,0.0000,24.7100,0.0000,0.0000,0.0000,14.5400,0.0000,0.0000,0.0000,36.8500,0.0000,0.0000,0.0000,35.1900,0.0000,0.0000,0.0000,30.9500,0.0000 +688598.SH,0.0000,0.0000,0.0000,63.4800,0.0000,0.0000,0.0000,61.7400,0.0000,0.0000,0.0000,70.0700,0.0000,0.0000,0.0000,57.6400,0.0000,0.0000,0.0000,61.3300,0.0000 +600114.SH,0.0000,0.0000,0.0000,28.4200,0.0000,0.0000,0.0000,30.7700,0.0000,0.0000,0.0000,19.6400,0.0000,0.0000,0.0000,26.7300,0.0000,0.0000,0.0000,23.6800,0.0000 +688661.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,45.9500,0.0000,0.0000,0.0000,43.6400,0.0000,0.0000,0.0000,26.0800,0.0000,0.0000,0.0000,27.7900,0.0000 +873570.BJ,0.0000,0.0000,0.0000,52.5000,0.0000,0.0000,0.0000,45.7400,0.0000,0.0000,0.0000,47.7900,0.0000,54.2800,0.0000,47.1300,0.0000,0.0000,0.0000,40.1200,0.0000 +300230.SZ,0.0000,0.0000,0.0000,10.1700,0.0000,0.0000,0.0000,12.3200,0.0000,0.0000,0.0000,16.1600,0.0000,0.0000,0.0000,16.2700,0.0000,0.0000,0.0000,16.2400,0.0000 +831370.BJ,0.0000,0.0000,0.0000,27.5600,0.0000,0.0000,0.0000,25.7700,0.0000,0.0000,0.0000,18.9600,0.0000,0.0000,0.0000,17.9300,0.0000,0.0000,0.0000,18.2300,0.0000 +300555.SZ,0.0000,0.0000,0.0000,37.5700,0.0000,0.0000,0.0000,39.3400,0.0000,0.0000,0.0000,28.3300,0.0000,0.0000,0.0000,20.3900,0.0000,0.0000,0.0000,29.2400,0.0000 +300411.SZ,0.0000,0.0000,0.0000,28.1800,0.0000,0.0000,0.0000,32.9200,0.0000,0.0000,0.0000,25.8400,0.0000,0.0000,0.0000,30.2100,0.0000,0.0000,0.0000,29.5900,0.0000 +833427.BJ,0.0000,0.0000,0.0000,34.7600,0.0000,0.0000,0.0000,32.9700,0.0000,0.0000,0.0000,21.0500,0.0000,0.0000,0.0000,33.0000,0.0000,0.0000,0.0000,30.1000,0.0000 +600336.SH,0.0000,0.0000,0.0000,8.0700,0.0000,0.0000,0.0000,10.7900,0.0000,0.0000,0.0000,10.6100,0.0000,0.0000,0.0000,15.9000,0.0000,0.0000,0.0000,15.9700,0.0000 +688269.SH,0.0000,0.0000,0.0000,53.1800,0.0000,0.0000,0.0000,59.3300,0.0000,0.0000,0.0000,54.3200,0.0000,0.0000,0.0000,58.9100,0.0000,0.0000,0.0000,53.2600,0.0000 +002575.SZ,0.0000,0.0000,0.0000,76.8400,0.0000,0.0000,0.0000,95.7300,0.0000,0.0000,0.0000,95.5000,0.0000,0.0000,0.0000,78.5400,0.0000,0.0000,0.0000,34.9800,0.0000 +600110.SH,0.0000,0.0000,0.0000,46.4700,0.0000,0.0000,0.0000,42.5100,0.0000,0.0000,0.0000,53.4100,0.0000,0.0000,0.0000,40.0700,0.0000,0.0000,0.0000,0.0000,0.0000 +834062.BJ,0.0000,0.0000,0.0000,21.6000,0.0000,0.0000,0.0000,24.8900,0.0000,0.0000,0.0000,21.5900,0.0000,0.0000,0.0000,25.8800,0.0000,0.0000,0.0000,47.4200,0.0000 +002362.SZ,0.0000,0.0000,0.0000,24.1400,0.0000,0.0000,0.0000,26.7500,0.0000,0.0000,0.0000,28.0700,0.0000,0.0000,0.0000,32.2500,0.0000,0.0000,0.0000,35.6200,0.0000 +301210.SZ,0.0000,0.0000,0.0000,52.8200,0.0000,0.0000,0.0000,51.3600,0.0000,0.0000,0.0000,46.2200,0.0000,0.0000,0.0000,59.0400,0.0000,0.0000,0.0000,54.3900,0.0000 +837663.BJ,0.0000,0.0000,0.0000,59.7500,0.0000,0.0000,0.0000,58.7800,0.0000,56.2100,0.0000,38.0300,0.0000,0.0000,0.0000,46.9300,0.0000,0.0000,0.0000,45.5200,0.0000 +688251.SH,0.0000,0.0000,0.0000,28.6200,0.0000,0.0000,0.0000,38.6300,0.0000,0.0000,0.0000,42.7900,0.0000,0.0000,0.0000,29.5800,0.0000,0.0000,0.0000,30.1400,0.0000 +301528.SZ,0.0000,0.0000,0.0000,27.3300,0.0000,0.0000,0.0000,28.5600,0.0000,0.0000,0.0000,26.5200,0.0000,0.0000,0.0000,26.9900,0.0000,0.0000,0.0000,20.4300,0.0000 +688004.SH,0.0000,0.0000,0.0000,18.3200,0.0000,0.0000,0.0000,17.7100,0.0000,0.0000,0.0000,12.2100,0.0000,0.0000,0.0000,18.8900,0.0000,0.0000,0.0000,17.2600,0.0000 +301389.SZ,0.0000,0.0000,0.0000,40.8100,0.0000,0.0000,0.0000,40.2200,0.0000,0.0000,0.0000,39.7500,0.0000,0.0000,0.0000,40.9900,0.0000,0.0000,0.0000,35.7300,0.0000 +300916.SZ,0.0000,0.0000,0.0000,13.3800,0.0000,0.0000,0.0000,14.7800,0.0000,0.0000,0.0000,24.5400,0.0000,0.0000,0.0000,16.0900,0.0000,0.0000,0.0000,15.4200,0.0000 +835179.BJ,0.0000,0.0000,0.0000,63.4500,0.0000,53.7000,0.0000,57.2900,0.0000,0.0000,0.0000,51.3700,0.0000,0.0000,0.0000,28.3400,0.0000,0.0000,0.0000,36.4200,0.0000 +870436.BJ,0.0000,0.0000,0.0000,54.4800,0.0000,0.0000,0.0000,52.1100,0.0000,0.0000,0.0000,56.6100,0.0000,0.0000,0.0000,50.3100,0.0000,0.0000,0.0000,49.8500,0.0000 +600807.SH,0.0000,0.0000,0.0000,16.2700,0.0000,0.0000,0.0000,31.4300,0.0000,0.0000,0.0000,39.4900,0.0000,0.0000,0.0000,19.0800,0.0000,0.0000,0.0000,34.5100,0.0000 +603306.SH,0.0000,0.0000,0.0000,71.0300,0.0000,0.0000,0.0000,77.2000,0.0000,0.0000,0.0000,75.5000,0.0000,0.0000,0.0000,65.2200,0.0000,0.0000,0.0000,71.4700,0.0000 +600111.SH,0.0000,0.0000,0.0000,32.1000,0.0000,0.0000,0.0000,27.5900,0.0000,0.0000,0.0000,46.2400,0.0000,0.0000,0.0000,45.5900,0.0000,0.0000,0.0000,38.7800,0.0000 +688671.SH,0.0000,0.0000,0.0000,21.2300,0.0000,0.0000,0.0000,16.2900,0.0000,0.0000,0.0000,22.3700,0.0000,0.0000,0.0000,14.9700,0.0000,0.0000,0.0000,21.9500,0.0000 +300428.SZ,0.0000,0.0000,0.0000,34.8700,0.0000,0.0000,0.0000,32.2300,0.0000,0.0000,0.0000,33.7800,0.0000,0.0000,0.0000,42.3300,0.0000,0.0000,0.0000,41.4800,0.0000 +837046.BJ,0.0000,0.0000,0.0000,41.0800,0.0000,0.0000,0.0000,31.4400,0.0000,0.0000,0.0000,24.0500,0.0000,0.0000,0.0000,28.6300,0.0000,0.0000,0.0000,31.9100,0.0000 +002384.SZ,0.0000,0.0000,0.0000,26.7800,0.0000,0.0000,0.0000,29.6800,0.0000,0.0000,0.0000,27.0300,0.0000,0.0000,0.0000,25.8200,0.0000,0.0000,0.0000,26.0800,0.0000 +301011.SZ,0.0000,0.0000,0.0000,52.1000,0.0000,0.0000,0.0000,56.7900,0.0000,0.0000,0.0000,49.3800,0.0000,0.0000,0.0000,58.6200,0.0000,0.0000,0.0000,58.0800,0.0000 +002649.SZ,0.0000,0.0000,0.0000,15.0700,0.0000,0.0000,0.0000,10.9400,0.0000,0.0000,0.0000,11.0000,0.0000,0.0000,0.0000,8.8600,0.0000,0.0000,0.0000,25.2900,0.0000 +300324.SZ,0.0000,0.0000,0.0000,8.2700,0.0000,0.0000,0.0000,5.4900,0.0000,0.0000,0.0000,8.1300,0.0000,0.0000,0.0000,18.2600,0.0000,0.0000,0.0000,21.2700,0.0000 +300399.SZ,0.0000,0.0000,0.0000,45.6900,0.0000,0.0000,0.0000,47.5500,0.0000,0.0000,0.0000,33.1800,0.0000,0.0000,0.0000,34.2900,0.0000,0.0000,0.0000,32.7100,0.0000 +605069.SH,0.0000,0.0000,0.0000,19.3300,0.0000,0.0000,0.0000,15.0500,0.0000,0.0000,0.0000,19.9300,0.0000,0.0000,0.0000,24.8800,0.0000,0.0000,0.0000,21.7500,0.0000 +301322.SZ,0.0000,0.0000,0.0000,37.7200,0.0000,0.0000,0.0000,37.2000,0.0000,35.9700,0.0000,36.1000,0.0000,0.0000,0.0000,36.9900,0.0000,0.0000,0.0000,34.2900,0.0000 +300786.SZ,0.0000,0.0000,0.0000,27.2400,0.0000,0.0000,0.0000,26.7500,0.0000,0.0000,0.0000,23.3700,0.0000,0.0000,0.0000,29.5600,0.0000,0.0000,0.0000,44.5000,0.0000 +002819.SZ,0.0000,0.0000,0.0000,72.1900,0.0000,0.0000,0.0000,42.7600,0.0000,0.0000,0.0000,42.6200,0.0000,0.0000,0.0000,48.6600,0.0000,0.0000,0.0000,35.6500,0.0000 +603990.SH,0.0000,0.0000,0.0000,43.9800,0.0000,0.0000,0.0000,39.6500,0.0000,0.0000,0.0000,43.7100,0.0000,0.0000,0.0000,34.9400,0.0000,0.0000,0.0000,52.4300,0.0000 +300941.SZ,0.0000,0.0000,0.0000,91.7000,0.0000,0.0000,0.0000,81.2000,0.0000,0.0000,0.0000,78.9500,0.0000,0.0000,0.0000,43.7200,0.0000,0.0000,0.0000,27.6000,0.0000 +300068.SZ,0.0000,0.0000,0.0000,13.8100,0.0000,0.0000,0.0000,14.4600,0.0000,0.0000,0.0000,38.0400,0.0000,0.0000,0.0000,54.1700,0.0000,0.0000,0.0000,47.8800,0.0000 +600666.SH,0.0000,0.0000,0.0000,34.7200,0.0000,0.0000,0.0000,61.5100,0.0000,0.0000,0.0000,61.6000,0.0000,0.0000,0.0000,59.5100,0.0000,0.0000,0.0000,52.5100,0.0000 +300703.SZ,0.0000,0.0000,0.0000,27.1500,0.0000,0.0000,0.0000,27.6100,0.0000,0.0000,0.0000,13.2900,0.0000,0.0000,0.0000,20.7700,0.0000,0.0000,0.0000,22.7400,0.0000 +603429.SH,0.0000,0.0000,0.0000,29.3500,0.0000,0.0000,0.0000,26.6900,0.0000,0.0000,0.0000,23.9100,0.0000,0.0000,0.0000,26.2700,0.0000,0.0000,0.0000,42.3400,0.0000 +300647.SZ,0.0000,0.0000,0.0000,21.9000,0.0000,0.0000,0.0000,18.9500,0.0000,0.0000,0.0000,45.6500,0.0000,0.0000,0.0000,37.6100,0.0000,0.0000,0.0000,21.3500,0.0000 +000890.SZ,0.0000,0.0000,0.0000,59.7300,0.0000,0.0000,0.0000,47.3300,0.0000,0.0000,0.0000,41.9000,0.0000,0.0000,0.0000,51.6300,0.0000,0.0000,0.0000,62.3300,0.0000 +603280.SH,0.0000,0.0000,0.0000,15.1800,0.0000,0.0000,0.0000,19.0400,0.0000,19.3700,0.0000,14.2900,0.0000,0.0000,0.0000,13.7400,0.0000,0.0000,0.0000,14.5600,0.0000 +300005.SZ,0.0000,0.0000,0.0000,39.6100,0.0000,0.0000,0.0000,30.2300,0.0000,0.0000,0.0000,37.3000,0.0000,0.0000,0.0000,38.3300,0.0000,0.0000,0.0000,48.8500,0.0000 +688259.SH,0.0000,0.0000,0.0000,54.2100,0.0000,83.0600,0.0000,85.6600,0.0000,0.0000,0.0000,93.8300,0.0000,0.0000,0.0000,92.2800,0.0000,0.0000,0.0000,91.1800,0.0000 +873593.BJ,0.0000,0.0000,0.0000,43.4900,0.0000,0.0000,0.0000,42.3900,43.2100,0.0000,48.1100,48.0100,0.0000,0.0000,0.0000,48.8300,0.0000,0.0000,0.0000,36.7400,0.0000 +300353.SZ,0.0000,0.0000,0.0000,21.0600,0.0000,0.0000,0.0000,20.1200,0.0000,0.0000,0.0000,22.1700,0.0000,0.0000,0.0000,11.8900,0.0000,0.0000,0.0000,19.3400,0.0000 +600115.SH,0.0000,0.0000,0.0000,19.6900,0.0000,0.0000,0.0000,25.7600,0.0000,0.0000,0.0000,27.2100,0.0000,0.0000,0.0000,34.3200,0.0000,0.0000,0.0000,36.1700,0.0000 +300025.SZ,0.0000,0.0000,0.0000,43.6100,0.0000,0.0000,0.0000,55.3400,0.0000,0.0000,0.0000,62.7000,0.0000,0.0000,0.0000,62.0300,0.0000,0.0000,0.0000,63.0500,0.0000 +688112.SH,0.0000,0.0000,0.0000,32.2200,0.0000,38.9000,0.0000,39.0000,0.0000,0.0000,0.0000,45.1200,0.0000,0.0000,0.0000,43.7300,0.0000,0.0000,0.0000,32.6800,0.0000 +002633.SZ,0.0000,0.0000,0.0000,21.0500,0.0000,0.0000,0.0000,21.4600,0.0000,0.0000,0.0000,18.0100,0.0000,0.0000,0.0000,20.7700,0.0000,0.0000,0.0000,20.1700,0.0000 +688111.SH,0.0000,0.0000,0.0000,51.3700,0.0000,0.0000,0.0000,44.7800,0.0000,0.0000,0.0000,60.9800,0.0000,0.0000,0.0000,61.9900,0.0000,0.0000,0.0000,47.7600,0.0000 +002456.SZ,0.0000,0.0000,0.0000,31.0100,0.0000,0.0000,0.0000,45.2200,0.0000,0.0000,0.0000,41.5600,0.0000,0.0000,0.0000,34.8600,0.0000,0.0000,0.0000,42.7900,0.0000 +300547.SZ,0.0000,0.0000,0.0000,25.0800,0.0000,0.0000,0.0000,25.3000,0.0000,0.0000,0.0000,22.2800,0.0000,0.0000,0.0000,24.5400,0.0000,0.0000,0.0000,0.0000,0.0000 +601611.SH,0.0000,0.0000,0.0000,2.8000,0.0000,0.0000,0.0000,3.6600,0.0000,0.0000,0.0000,3.8900,0.0000,0.0000,0.0000,4.3000,0.0000,0.0000,0.0000,5.8000,0.0000 +300109.SZ,0.0000,0.0000,0.0000,36.3700,0.0000,0.0000,0.0000,60.7000,0.0000,0.0000,0.0000,70.7000,0.0000,0.0000,0.0000,31.0800,0.0000,0.0000,0.0000,60.2300,0.0000 +301293.SZ,0.0000,0.0000,0.0000,48.9300,0.0000,0.0000,0.0000,46.6600,0.0000,0.0000,0.0000,43.6400,0.0000,0.0000,0.0000,40.0400,0.0000,0.0000,0.0000,35.1900,0.0000 +301382.SZ,0.0000,0.0000,0.0000,45.7200,0.0000,0.0000,0.0000,49.0500,0.0000,0.0000,0.0000,48.1800,0.0000,0.0000,0.0000,55.8700,0.0000,0.0000,0.0000,48.6700,0.0000 +688246.SH,0.0000,0.0000,0.0000,26.4900,0.0000,35.5400,0.0000,16.6300,0.0000,0.0000,0.0000,10.1400,0.0000,0.0000,0.0000,21.7300,0.0000,0.0000,0.0000,12.4800,0.0000 +300553.SZ,0.0000,0.0000,0.0000,36.0700,0.0000,0.0000,0.0000,26.4200,0.0000,0.0000,0.0000,30.6900,0.0000,0.0000,0.0000,29.5800,0.0000,0.0000,0.0000,26.2300,0.0000 +300066.SZ,0.0000,0.0000,0.0000,20.9900,0.0000,0.0000,0.0000,23.0700,0.0000,0.0000,0.0000,19.2600,0.0000,0.0000,0.0000,27.5000,0.0000,0.0000,0.0000,24.6400,0.0000 +601111.SH,0.0000,0.0000,0.0000,15.9500,0.0000,0.0000,0.0000,32.4700,0.0000,0.0000,0.0000,47.7600,0.0000,0.0000,0.0000,38.9100,0.0000,0.0000,0.0000,38.5500,0.0000 +605080.SH,0.0000,0.0000,0.0000,28.5600,0.0000,0.0000,0.0000,33.0200,0.0000,0.0000,0.0000,28.2000,0.0000,0.0000,0.0000,36.7800,0.0000,0.0000,0.0000,31.9000,0.0000 +002613.SZ,0.0000,0.0000,0.0000,18.9400,0.0000,0.0000,0.0000,23.3500,0.0000,0.0000,0.0000,20.4600,0.0000,0.0000,0.0000,38.6500,0.0000,0.0000,0.0000,27.3600,0.0000 +605099.SH,0.0000,0.0000,0.0000,31.3100,0.0000,0.0000,0.0000,25.6500,0.0000,0.0000,0.0000,27.2300,0.0000,0.0000,0.0000,29.8100,0.0000,0.0000,0.0000,31.0300,0.0000 +301031.SZ,0.0000,0.0000,0.0000,35.1700,0.0000,0.0000,0.0000,32.3800,0.0000,0.0000,0.0000,27.1200,0.0000,0.0000,0.0000,26.7300,0.0000,0.0000,0.0000,30.1700,0.0000 +000567.SZ,0.0000,0.0000,0.0000,99.8100,0.0000,0.0000,0.0000,99.7500,0.0000,0.0000,0.0000,91.1400,0.0000,0.0000,0.0000,94.7400,0.0000,0.0000,0.0000,51.8000,0.0000 +300240.SZ,0.0000,0.0000,0.0000,23.0300,0.0000,0.0000,0.0000,18.2900,0.0000,0.0000,0.0000,14.2500,0.0000,0.0000,0.0000,22.0300,0.0000,0.0000,0.0000,19.3700,0.0000 +600212.SH,0.0000,0.0000,0.0000,81.6300,0.0000,0.0000,0.0000,99.0800,0.0000,0.0000,0.0000,55.0600,0.0000,0.0000,0.0000,46.1900,0.0000,0.0000,0.0000,40.9700,0.0000 +000555.SZ,0.0000,0.0000,0.0000,46.6200,0.0000,0.0000,0.0000,34.0300,0.0000,0.0000,0.0000,32.6100,0.0000,0.0000,0.0000,44.5600,0.0000,0.0000,0.0000,55.1800,0.0000 +002420.SZ,0.0000,0.0000,0.0000,18.3700,0.0000,0.0000,0.0000,34.0700,0.0000,0.0000,0.0000,31.2000,0.0000,0.0000,0.0000,26.5800,0.0000,0.0000,0.0000,28.7100,0.0000 +836504.BJ,0.0000,0.0000,0.0000,43.4700,0.0000,0.0000,0.0000,43.2800,0.0000,42.5500,0.0000,41.3600,0.0000,0.0000,0.0000,40.8000,0.0000,0.0000,0.0000,43.3700,0.0000 +301558.SZ,0.0000,0.0000,0.0000,5.0200,0.0000,0.0000,0.0000,2.3200,0.0000,0.0000,0.0000,2.2100,0.0000,0.0000,0.0000,28.3900,0.0000,0.0000,0.0000,23.7400,0.0000 +688623.SH,0.0000,0.0000,0.0000,34.4800,0.0000,0.0000,0.0000,26.1900,0.0000,0.0000,0.0000,23.0600,0.0000,0.0000,0.0000,21.8300,0.0000,0.0000,0.0000,22.7200,0.0000 +688119.SH,0.0000,0.0000,0.0000,35.5500,0.0000,0.0000,0.0000,33.2900,0.0000,0.0000,0.0000,23.7200,0.0000,0.0000,0.0000,22.7300,0.0000,0.0000,0.0000,25.3500,0.0000 +603915.SH,0.0000,0.0000,0.0000,15.6800,0.0000,0.0000,0.0000,14.9000,0.0000,0.0000,0.0000,16.1700,0.0000,0.0000,0.0000,16.0600,0.0000,0.0000,0.0000,15.1800,0.0000 +002583.SZ,0.0000,0.0000,0.0000,15.2800,0.0000,0.0000,0.0000,15.1900,0.0000,0.0000,0.0000,13.8400,0.0000,0.0000,0.0000,13.5600,0.0000,0.0000,0.0000,13.0200,0.0000 +603093.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +605089.SH,0.0000,0.0000,0.0000,31.8400,0.0000,0.0000,0.0000,33.5400,0.0000,0.0000,0.0000,31.3900,0.0000,0.0000,0.0000,33.9100,0.0000,0.0000,0.0000,40.6000,0.0000 +301258.SZ,0.0000,0.0000,0.0000,43.7200,0.0000,48.3200,0.0000,42.3000,0.0000,0.0000,0.0000,41.1600,0.0000,0.0000,0.0000,39.3600,0.0000,0.0000,0.0000,46.0400,0.0000 +301522.SZ,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,35.8700,0.0000,0.0000,0.0000,45.3400,0.0000,0.0000,0.0000,47.5800,0.0000,0.0000,0.0000,36.3200,0.0000 +301213.SZ,0.0000,0.0000,0.0000,45.5800,0.0000,82.3100,0.0000,67.1400,0.0000,0.0000,0.0000,52.9700,0.0000,0.0000,0.0000,32.0400,0.0000,0.0000,0.0000,63.3700,0.0000 +833873.BJ,0.0000,0.0000,0.0000,18.6500,0.0000,0.0000,0.0000,17.2300,0.0000,0.0000,0.0000,21.0900,0.0000,0.0000,0.0000,17.9500,0.0000,0.0000,0.0000,15.3800,0.0000 +603327.SH,0.0000,0.0000,0.0000,75.8100,0.0000,0.0000,0.0000,81.8300,0.0000,0.0000,0.0000,70.9500,0.0000,0.0000,0.0000,74.6000,0.0000,0.0000,0.0000,71.8900,0.0000 +002640.SZ,0.0000,0.0000,0.0000,51.6000,0.0000,0.0000,0.0000,87.0900,0.0000,0.0000,0.0000,96.8000,0.0000,95.4300,0.0000,96.0500,0.0000,97.6600,0.0000,97.4300,0.0000 +830964.BJ,0.0000,0.0000,0.0000,19.8000,0.0000,0.0000,0.0000,18.2700,0.0000,0.0000,0.0000,16.6600,0.0000,0.0000,0.0000,18.5000,0.0000,0.0000,0.0000,14.2700,0.0000 +688226.SH,0.0000,0.0000,0.0000,52.4200,0.0000,0.0000,0.0000,47.7200,0.0000,0.0000,0.0000,54.2900,0.0000,0.0000,0.0000,54.1000,0.0000,0.0000,0.0000,52.7800,0.0000 +300811.SZ,0.0000,0.0000,0.0000,46.3100,0.0000,0.0000,0.0000,45.5800,0.0000,0.0000,0.0000,47.4500,0.0000,0.0000,0.0000,52.9100,0.0000,0.0000,0.0000,50.9100,0.0000 +300493.SZ,0.0000,0.0000,0.0000,71.7400,0.0000,0.0000,0.0000,68.5400,0.0000,0.0000,0.0000,66.9600,0.0000,0.0000,0.0000,71.4200,0.0000,0.0000,0.0000,74.5500,0.0000 +300862.SZ,0.0000,0.0000,0.0000,26.9100,0.0000,0.0000,0.0000,16.5600,0.0000,0.0000,0.0000,18.2400,0.0000,0.0000,0.0000,22.1400,0.0000,0.0000,0.0000,26.1200,0.0000 +603179.SH,0.0000,0.0000,0.0000,27.5500,0.0000,0.0000,0.0000,27.3500,0.0000,0.0000,0.0000,26.9100,0.0000,0.0000,0.0000,24.6600,0.0000,0.0000,0.0000,15.3200,0.0000 +600337.SH,0.0000,0.0000,0.0000,12.4500,0.0000,0.0000,0.0000,15.1900,0.0000,0.0000,0.0000,14.1600,0.0000,0.0000,0.0000,11.9600,0.0000,0.0000,0.0000,13.1500,0.0000 +601133.SH,0.0000,0.0000,0.0000,24.7700,0.0000,0.0000,0.0000,19.4200,0.0000,15.4500,0.0000,10.0800,0.0000,0.0000,0.0000,18.1000,0.0000,0.0000,0.0000,12.1000,0.0000 +300337.SZ,0.0000,0.0000,0.0000,50.4900,0.0000,0.0000,0.0000,65.4600,0.0000,0.0000,0.0000,83.6400,0.0000,0.0000,0.0000,83.2400,0.0000,0.0000,0.0000,67.4800,0.0000 +600673.SH,0.0000,0.0000,0.0000,44.4900,0.0000,0.0000,0.0000,35.2300,0.0000,0.0000,0.0000,34.1800,0.0000,0.0000,0.0000,39.2400,0.0000,0.0000,0.0000,33.4200,0.0000 +839792.BJ,0.0000,0.0000,0.0000,54.4200,0.0000,0.0000,0.0000,45.2100,0.0000,47.1800,0.0000,31.7000,0.0000,0.0000,0.0000,43.2200,0.0000,0.0000,0.0000,45.8800,0.0000 +836675.BJ,0.0000,0.0000,0.0000,54.1000,0.0000,0.0000,0.0000,43.4100,0.0000,0.0000,0.0000,54.1400,0.0000,0.0000,0.0000,32.6000,0.0000,0.0000,0.0000,30.7300,0.0000 +002901.SZ,0.0000,0.0000,0.0000,32.0900,0.0000,0.0000,0.0000,24.7600,0.0000,0.0000,0.0000,27.4200,0.0000,0.0000,0.0000,27.5500,0.0000,0.0000,0.0000,25.3700,0.0000 +300745.SZ,0.0000,0.0000,0.0000,34.8600,0.0000,0.0000,0.0000,35.7500,0.0000,0.0000,0.0000,41.4000,0.0000,0.0000,0.0000,32.8100,0.0000,0.0000,0.0000,31.3500,0.0000 +000851.SZ,0.0000,0.0000,0.0000,40.6300,0.0000,0.0000,0.0000,42.9500,0.0000,0.0000,0.0000,54.0100,0.0000,0.0000,0.0000,56.2900,0.0000,0.0000,0.0000,52.0800,0.0000 +603206.SH,0.0000,0.0000,0.0000,24.8700,0.0000,0.0000,0.0000,34.7800,0.0000,0.0000,0.0000,26.9900,0.0000,0.0000,0.0000,20.7800,0.0000,0.0000,0.0000,26.4800,0.0000 +600678.SH,0.0000,0.0000,0.0000,58.5500,0.0000,0.0000,0.0000,52.4700,0.0000,0.0000,0.0000,39.9000,0.0000,0.0000,0.0000,61.2700,0.0000,0.0000,0.0000,55.6900,0.0000 +300250.SZ,0.0000,0.0000,0.0000,42.8700,0.0000,0.0000,0.0000,39.6900,0.0000,0.0000,0.0000,52.0000,0.0000,0.0000,0.0000,25.4700,0.0000,0.0000,0.0000,32.8400,0.0000 +688757.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,74.2000,0.0000,0.0000,0.0000,80.5800,0.0000,0.0000,0.0000,78.1700,0.0000,88.0500,0.0000,0.0000,0.0000 +600552.SH,0.0000,0.0000,0.0000,26.9200,0.0000,0.0000,0.0000,23.5000,0.0000,0.0000,0.0000,29.5600,0.0000,0.0000,0.0000,16.1000,0.0000,0.0000,0.0000,21.0200,0.0000 +000970.SZ,0.0000,0.0000,0.0000,36.5300,0.0000,0.0000,0.0000,50.9600,0.0000,0.0000,0.0000,36.1200,0.0000,0.0000,0.0000,37.7700,0.0000,0.0000,0.0000,51.7000,0.0000 +002645.SZ,0.0000,0.0000,0.0000,29.4000,0.0000,0.0000,0.0000,37.9200,0.0000,0.0000,0.0000,37.9400,0.0000,0.0000,0.0000,27.0700,0.0000,0.0000,0.0000,27.0400,0.0000 +833509.BJ,0.0000,0.0000,0.0000,32.2100,0.0000,0.0000,0.0000,32.4200,0.0000,0.0000,0.0000,26.4100,0.0000,0.0000,0.0000,37.6600,0.0000,0.0000,0.0000,29.8300,0.0000 +603124.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,76.0700,0.0000,0.0000,0.0000,66.5500,0.0000,0.0000,0.0000,60.6000,0.0000,51.8700,0.0000,52.8900,0.0000 +600439.SH,0.0000,0.0000,0.0000,19.4100,0.0000,0.0000,0.0000,26.9700,0.0000,0.0000,0.0000,14.4400,0.0000,0.0000,0.0000,16.1500,0.0000,0.0000,0.0000,14.9500,0.0000 +301356.SZ,0.0000,0.0000,0.0000,23.4700,0.0000,0.0000,0.0000,37.9600,0.0000,42.8900,0.0000,41.9600,0.0000,0.0000,0.0000,44.8200,0.0000,0.0000,0.0000,39.1200,0.0000 +600130.SH,0.0000,0.0000,0.0000,68.1400,0.0000,0.0000,0.0000,59.0000,0.0000,0.0000,0.0000,50.7400,0.0000,0.0000,0.0000,65.3400,0.0000,0.0000,0.0000,43.0000,0.0000 +300118.SZ,0.0000,0.0000,0.0000,31.5000,0.0000,0.0000,0.0000,31.0200,0.0000,0.0000,0.0000,34.9400,0.0000,0.0000,0.0000,20.9200,0.0000,0.0000,0.0000,20.8100,0.0000 +300444.SZ,0.0000,0.0000,0.0000,19.9100,0.0000,0.0000,0.0000,17.7800,0.0000,0.0000,0.0000,36.3100,0.0000,0.0000,0.0000,22.4800,0.0000,0.0000,0.0000,29.0100,0.0000 +300383.SZ,0.0000,0.0000,0.0000,83.1900,0.0000,0.0000,0.0000,80.7200,0.0000,0.0000,0.0000,85.4900,0.0000,0.0000,0.0000,72.7500,0.0000,0.0000,0.0000,70.2700,0.0000 +603588.SH,0.0000,0.0000,0.0000,8.1700,0.0000,0.0000,0.0000,22.9600,0.0000,0.0000,0.0000,20.7200,0.0000,0.0000,0.0000,3.7600,0.0000,0.0000,0.0000,17.5300,0.0000 +002305.SZ,0.0000,0.0000,0.0000,29.0000,0.0000,0.0000,0.0000,42.9900,0.0000,0.0000,0.0000,27.4800,0.0000,0.0000,0.0000,34.9700,0.0000,0.0000,0.0000,21.2600,0.0000 +300328.SZ,0.0000,0.0000,0.0000,26.2300,0.0000,0.0000,0.0000,44.9700,0.0000,0.0000,0.0000,40.1100,0.0000,0.0000,0.0000,36.6300,0.0000,0.0000,0.0000,29.3000,0.0000 +000609.SZ,0.0000,0.0000,0.0000,87.4800,0.0000,0.0000,0.0000,92.9200,0.0000,0.0000,0.0000,90.8500,0.0000,0.0000,0.0000,91.4200,0.0000,0.0000,0.0000,87.6400,0.0000 +600243.SH,0.0000,0.0000,0.0000,22.0500,0.0000,0.0000,0.0000,20.0800,0.0000,0.0000,0.0000,21.0200,0.0000,0.0000,0.0000,28.6600,0.0000,0.0000,0.0000,37.6400,0.0000 +832786.BJ,0.0000,0.0000,0.0000,17.5700,0.0000,0.0000,0.0000,16.3700,0.0000,0.0000,0.0000,17.3100,0.0000,0.0000,0.0000,18.5100,0.0000,0.0000,0.0000,19.4700,0.0000 +688165.SH,0.0000,0.0000,0.0000,9.1900,0.0000,0.0000,0.0000,17.6500,0.0000,0.0000,0.0000,13.4600,0.0000,0.0000,0.0000,21.1100,0.0000,0.0000,0.0000,25.3200,0.0000 +601188.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +603557.SH,0.0000,0.0000,0.0000,35.2000,0.0000,0.0000,0.0000,36.3400,0.0000,0.0000,0.0000,66.7100,0.0000,0.0000,0.0000,67.0700,0.0000,0.0000,0.0000,42.0300,0.0000 +872351.BJ,0.0000,0.0000,0.0000,26.1100,0.0000,0.0000,0.0000,29.2800,0.0000,30.9100,0.0000,28.3200,0.0000,0.0000,0.0000,22.4900,0.0000,0.0000,0.0000,22.1600,0.0000 +831195.BJ,0.0000,0.0000,0.0000,27.6700,0.0000,0.0000,0.0000,23.1000,0.0000,20.3100,0.0000,20.6900,0.0000,0.0000,0.0000,21.4100,0.0000,0.0000,0.0000,20.6700,0.0000 +831961.BJ,0.0000,0.0000,0.0000,46.4100,0.0000,0.0000,0.0000,42.1800,0.0000,0.0000,0.0000,46.0600,0.0000,0.0000,0.0000,39.4700,0.0000,0.0000,0.0000,58.8800,0.0000 +300850.SZ,0.0000,0.0000,0.0000,43.4400,0.0000,0.0000,0.0000,63.0600,0.0000,0.0000,0.0000,62.3200,0.0000,0.0000,0.0000,61.1300,0.0000,0.0000,0.0000,64.3800,0.0000 +603278.SH,0.0000,0.0000,0.0000,59.8200,0.0000,0.0000,0.0000,63.7400,0.0000,0.0000,0.0000,72.3600,0.0000,0.0000,0.0000,76.4100,0.0000,0.0000,0.0000,64.8100,0.0000 +002345.SZ,0.0000,0.0000,0.0000,76.4400,0.0000,0.0000,0.0000,77.0100,0.0000,0.0000,0.0000,82.7100,0.0000,0.0000,0.0000,78.7700,0.0000,0.0000,0.0000,84.2500,0.0000 +300806.SZ,0.0000,0.0000,0.0000,43.9400,0.0000,0.0000,0.0000,36.8200,0.0000,0.0000,0.0000,37.9000,0.0000,0.0000,0.0000,43.1600,0.0000,0.0000,0.0000,40.7100,0.0000 +600029.SH,0.0000,0.0000,0.0000,34.9300,0.0000,0.0000,0.0000,38.7800,0.0000,0.0000,0.0000,42.1600,0.0000,0.0000,0.0000,41.5700,0.0000,0.0000,0.0000,40.5900,0.0000 +001395.SZ,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,25.8600,0.0000,0.0000,0.0000,24.4500,0.0000,0.0000,0.0000,26.4700,0.0000,26.9100,0.0000,27.7900,0.0000 +600381.SH,0.0000,0.0000,0.0000,59.5400,0.0000,0.0000,0.0000,54.7900,0.0000,0.0000,0.0000,96.6100,0.0000,0.0000,0.0000,92.4500,0.0000,0.0000,0.0000,79.1700,0.0000 +600643.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +301025.SZ,0.0000,0.0000,0.0000,49.7100,0.0000,0.0000,0.0000,54.5400,0.0000,0.0000,0.0000,45.8400,0.0000,0.0000,0.0000,49.8900,0.0000,0.0000,0.0000,38.3200,0.0000 +001382.SZ,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,85.6300,0.0000,0.0000,0.0000,86.4800,0.0000,0.0000,0.0000,86.1300,0.0000,85.5100,0.0000,85.1700,0.0000 +600318.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +605188.SH,0.0000,0.0000,0.0000,9.4200,0.0000,0.0000,0.0000,8.9000,0.0000,0.0000,0.0000,7.9300,0.0000,0.0000,0.0000,9.3200,0.0000,0.0000,0.0000,10.9000,0.0000 +301273.SZ,0.0000,0.0000,0.0000,58.2400,0.0000,0.0000,0.0000,50.7600,0.0000,0.0000,0.0000,47.6500,0.0000,0.0000,0.0000,51.5200,0.0000,0.0000,0.0000,40.6000,0.0000 +300494.SZ,0.0000,0.0000,0.0000,58.6400,0.0000,0.0000,0.0000,80.8800,0.0000,48.3300,0.0000,36.2600,0.0000,0.0000,0.0000,22.7300,0.0000,0.0000,0.0000,27.6400,0.0000 +000601.SZ,0.0000,0.0000,0.0000,22.4500,0.0000,0.0000,0.0000,32.3500,0.0000,0.0000,0.0000,35.9500,0.0000,0.0000,0.0000,27.9700,0.0000,0.0000,0.0000,16.1200,0.0000 +301607.SZ,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,33.9400,0.0000,0.0000,0.0000,33.3500,0.0000,0.0000,0.0000,32.0400,0.0000,0.0000,0.0000,33.4400,0.0000 +300539.SZ,0.0000,0.0000,0.0000,17.8900,0.0000,0.0000,0.0000,17.2200,0.0000,0.0000,0.0000,12.6700,0.0000,0.0000,0.0000,13.1000,0.0000,0.0000,0.0000,15.3300,0.0000 +601869.SH,0.0000,0.0000,0.0000,28.7900,0.0000,0.0000,0.0000,21.8300,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,26.8400,0.0000,0.0000,0.0000,22.7300,0.0000 +003026.SZ,0.0000,0.0000,0.0000,56.5700,0.0000,0.0000,0.0000,65.3900,0.0000,0.0000,0.0000,66.1000,0.0000,0.0000,0.0000,57.0000,0.0000,0.0000,0.0000,61.1100,0.0000 +603118.SH,0.0000,0.0000,0.0000,27.5000,0.0000,0.0000,0.0000,28.3000,0.0000,0.0000,0.0000,28.5700,0.0000,0.0000,0.0000,32.5400,0.0000,0.0000,0.0000,33.4300,0.0000 +002173.SZ,0.0000,0.0000,0.0000,28.1100,0.0000,0.0000,0.0000,22.3400,0.0000,0.0000,0.0000,22.1600,0.0000,0.0000,0.0000,28.3800,0.0000,0.0000,0.0000,23.1400,0.0000 +836414.BJ,0.0000,0.0000,0.0000,43.3600,0.0000,0.0000,0.0000,54.9300,0.0000,48.0200,0.0000,45.6900,0.0000,0.0000,0.0000,36.3400,0.0000,0.0000,0.0000,40.4200,0.0000 +000736.SZ,0.0000,0.0000,0.0000,39.2300,0.0000,0.0000,0.0000,37.0500,0.0000,0.0000,0.0000,44.1800,0.0000,0.0000,0.0000,42.9500,0.0000,0.0000,0.0000,35.6800,0.0000 +688125.SH,0.0000,0.0000,0.0000,16.5200,0.0000,22.6500,0.0000,0.0000,0.0000,0.0000,0.0000,16.4400,0.0000,0.0000,0.0000,18.7600,0.0000,0.0000,0.0000,26.0900,0.0000 +688283.SH,0.0000,0.0000,0.0000,56.3400,0.0000,52.1600,0.0000,48.8400,0.0000,0.0000,0.0000,46.5700,0.0000,0.0000,0.0000,38.5700,0.0000,0.0000,0.0000,26.9800,0.0000 +836395.BJ,0.0000,0.0000,0.0000,24.8900,0.0000,0.0000,0.0000,23.3000,0.0000,0.0000,0.0000,21.8800,0.0000,0.0000,0.0000,28.2100,0.0000,0.0000,0.0000,29.5100,0.0000 +002126.SZ,0.0000,0.0000,0.0000,14.9000,0.0000,0.0000,0.0000,16.8900,0.0000,0.0000,0.0000,18.3600,0.0000,0.0000,0.0000,17.4900,0.0000,0.0000,0.0000,20.2600,0.0000 +837592.BJ,0.0000,0.0000,0.0000,29.5100,0.0000,0.0000,0.0000,31.1500,0.0000,26.5800,0.0000,12.7400,0.0000,0.0000,0.0000,37.1900,0.0000,0.0000,0.0000,22.8600,0.0000 +870204.BJ,0.0000,0.0000,0.0000,60.7200,0.0000,0.0000,0.0000,59.2500,0.0000,0.0000,0.0000,68.0900,0.0000,0.0000,0.0000,60.8500,0.0000,0.0000,0.0000,61.2900,0.0000 +831832.BJ,0.0000,0.0000,0.0000,31.9900,0.0000,0.0000,0.0000,14.5000,0.0000,0.0000,0.0000,35.9100,0.0000,0.0000,0.0000,19.3400,0.0000,0.0000,0.0000,19.6000,0.0000 +002620.SZ,0.0000,0.0000,0.0000,12.6100,0.0000,0.0000,0.0000,23.1300,0.0000,0.0000,0.0000,14.0800,0.0000,0.0000,0.0000,10.2900,0.0000,0.0000,0.0000,17.6900,0.0000 +300237.SZ,0.0000,0.0000,0.0000,13.7900,0.0000,0.0000,0.0000,14.9700,0.0000,0.0000,0.0000,16.6800,0.0000,0.0000,0.0000,12.6300,0.0000,0.0000,0.0000,12.4900,0.0000 +002021.SZ,0.0000,0.0000,0.0000,30.9300,0.0000,0.0000,0.0000,29.0400,0.0000,0.0000,0.0000,27.5500,0.0000,0.0000,0.0000,27.5400,0.0000,0.0000,0.0000,27.6900,0.0000 +300530.SZ,0.0000,0.0000,0.0000,53.3900,0.0000,0.0000,0.0000,32.0200,0.0000,0.0000,0.0000,42.5300,0.0000,0.0000,0.0000,75.4400,0.0000,0.0000,0.0000,52.9900,0.0000 +000691.SZ,0.0000,0.0000,0.0000,66.4500,0.0000,0.0000,0.0000,58.6100,0.0000,0.0000,0.0000,55.8000,0.0000,0.0000,0.0000,51.3100,0.0000,0.0000,0.0000,66.1300,0.0000 +603215.SH,0.0000,0.0000,0.0000,20.5500,0.0000,17.8900,0.0000,19.2000,0.0000,0.0000,0.0000,23.3300,0.0000,0.0000,0.0000,23.1300,0.0000,0.0000,0.0000,18.0100,0.0000 +300649.SZ,0.0000,0.0000,0.0000,73.5600,0.0000,0.0000,0.0000,59.0900,0.0000,0.0000,0.0000,30.4500,0.0000,0.0000,0.0000,36.6800,0.0000,0.0000,0.0000,32.7200,0.0000 +605180.SH,0.0000,0.0000,0.0000,71.1000,0.0000,0.0000,0.0000,44.1800,0.0000,0.0000,0.0000,41.1900,0.0000,0.0000,0.0000,40.8900,0.0000,0.0000,0.0000,34.4300,0.0000 +603985.SH,0.0000,0.0000,0.0000,76.7600,0.0000,0.0000,0.0000,72.2800,0.0000,0.0000,0.0000,79.4500,0.0000,0.0000,0.0000,78.0100,0.0000,0.0000,0.0000,71.9100,0.0000 +301459.SZ,0.0000,0.0000,0.0000,16.5700,0.0000,0.0000,0.0000,15.3000,0.0000,0.0000,0.0000,16.4500,0.0000,22.3300,0.0000,24.2600,0.0000,0.0000,0.0000,19.5700,0.0000 +000504.SZ,0.0000,0.0000,0.0000,75.5200,0.0000,0.0000,0.0000,23.4500,0.0000,0.0000,0.0000,61.1000,0.0000,0.0000,0.0000,41.3300,0.0000,0.0000,0.0000,54.8600,0.0000 +688227.SH,0.0000,0.0000,0.0000,28.8700,0.0000,28.2500,0.0000,19.9200,0.0000,0.0000,0.0000,28.9700,0.0000,0.0000,0.0000,37.3100,0.0000,0.0000,0.0000,35.9200,0.0000 +600408.SH,0.0000,0.0000,0.0000,66.6300,0.0000,0.0000,0.0000,65.4800,0.0000,0.0000,0.0000,61.7700,0.0000,0.0000,0.0000,67.2000,0.0000,0.0000,0.0000,78.7200,0.0000 +002845.SZ,0.0000,0.0000,0.0000,27.8300,0.0000,0.0000,0.0000,24.8400,0.0000,0.0000,0.0000,20.1300,0.0000,0.0000,0.0000,27.4000,0.0000,0.0000,0.0000,25.5200,0.0000 +837092.BJ,0.0000,0.0000,0.0000,39.0900,0.0000,0.0000,0.0000,54.6900,0.0000,0.0000,0.0000,60.7700,0.0000,0.0000,0.0000,46.4100,0.0000,0.0000,0.0000,29.6000,0.0000 +603389.SH,0.0000,0.0000,0.0000,15.2200,0.0000,0.0000,0.0000,22.8900,0.0000,0.0000,0.0000,21.9300,0.0000,0.0000,0.0000,24.7200,0.0000,0.0000,0.0000,34.4900,0.0000 +002130.SZ,0.0000,0.0000,0.0000,21.6400,0.0000,0.0000,0.0000,25.8900,0.0000,0.0000,0.0000,25.5400,0.0000,0.0000,0.0000,22.8600,0.0000,0.0000,0.0000,20.6000,0.0000 +300551.SZ,0.0000,0.0000,0.0000,31.2600,0.0000,0.0000,0.0000,29.8700,0.0000,0.0000,0.0000,29.9400,0.0000,0.0000,0.0000,26.4300,0.0000,0.0000,0.0000,28.5600,0.0000 +002855.SZ,0.0000,0.0000,0.0000,17.3800,0.0000,0.0000,0.0000,18.9200,0.0000,0.0000,0.0000,21.3600,0.0000,0.0000,0.0000,22.6400,0.0000,0.0000,0.0000,27.1000,0.0000 +002762.SZ,0.0000,0.0000,0.0000,52.1800,0.0000,0.0000,0.0000,46.0700,0.0000,0.0000,0.0000,41.7700,0.0000,0.0000,0.0000,49.6500,0.0000,0.0000,0.0000,42.3700,0.0000 +300244.SZ,0.0000,0.0000,0.0000,63.8500,0.0000,0.0000,0.0000,65.4900,0.0000,0.0000,0.0000,63.5000,0.0000,0.0000,0.0000,62.0800,0.0000,0.0000,0.0000,55.9800,0.0000 +300885.SZ,0.0000,0.0000,0.0000,39.1800,0.0000,0.0000,0.0000,43.2100,0.0000,0.0000,0.0000,43.0500,0.0000,0.0000,0.0000,39.1400,0.0000,0.0000,0.0000,46.9700,0.0000 +301286.SZ,0.0000,0.0000,0.0000,56.5200,0.0000,0.0000,0.0000,53.5900,0.0000,0.0000,0.0000,48.6100,0.0000,0.0000,0.0000,67.5900,0.0000,0.0000,0.0000,67.6800,0.0000 +688665.SH,0.0000,0.0000,0.0000,30.2000,0.0000,0.0000,0.0000,27.6400,0.0000,0.0000,0.0000,24.3300,0.0000,0.0000,0.0000,19.8200,0.0000,0.0000,0.0000,17.1400,0.0000 +300445.SZ,0.0000,0.0000,0.0000,35.6800,0.0000,0.0000,0.0000,31.7300,0.0000,0.0000,0.0000,24.4400,0.0000,0.0000,0.0000,24.2700,0.0000,0.0000,0.0000,25.9500,0.0000 +688651.SH,0.0000,0.0000,0.0000,39.7400,0.0000,0.0000,0.0000,41.5300,0.0000,0.0000,0.0000,48.5200,0.0000,0.0000,0.0000,33.0000,0.0000,0.0000,0.0000,32.2300,0.0000 +301312.SZ,0.0000,0.0000,0.0000,38.8000,0.0000,0.0000,0.0000,31.2900,0.0000,0.0000,0.0000,27.4900,0.0000,0.0000,0.0000,30.3200,0.0000,0.0000,0.0000,28.0400,0.0000 +600193.SH,0.0000,0.0000,0.0000,17.1300,0.0000,0.0000,0.0000,17.5500,0.0000,0.0000,0.0000,23.1800,0.0000,0.0000,0.0000,34.5400,0.0000,0.0000,0.0000,52.6800,0.0000 +688037.SH,0.0000,0.0000,0.0000,29.0800,0.0000,0.0000,0.0000,26.3900,0.0000,0.0000,0.0000,24.4600,0.0000,0.0000,0.0000,25.6700,0.0000,0.0000,0.0000,20.8600,0.0000 +870726.BJ,0.0000,0.0000,0.0000,37.5400,0.0000,0.0000,0.0000,35.0700,0.0000,44.8000,0.0000,41.6300,0.0000,0.0000,0.0000,37.2000,0.0000,0.0000,0.0000,36.9200,0.0000 +301622.SZ,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,47.3100,0.0000,0.0000,0.0000,59.4700,0.0000,0.0000,0.0000,48.2400,57.8500,0.0000,0.0000,48.9600,0.0000 +002519.SZ,0.0000,0.0000,0.0000,19.6300,0.0000,0.0000,0.0000,14.1400,0.0000,0.0000,0.0000,18.7400,0.0000,0.0000,0.0000,44.7200,0.0000,0.0000,0.0000,37.2300,0.0000 +002278.SZ,0.0000,0.0000,0.0000,18.0900,0.0000,0.0000,0.0000,20.9200,0.0000,0.0000,0.0000,13.2300,0.0000,0.0000,0.0000,11.7800,0.0000,0.0000,0.0000,10.7700,0.0000 +002535.SZ,0.0000,0.0000,0.0000,37.7500,0.0000,0.0000,0.0000,52.5500,0.0000,0.0000,0.0000,48.5200,0.0000,0.0000,0.0000,48.5100,0.0000,0.0000,0.0000,31.8500,0.0000 +002569.SZ,0.0000,0.0000,0.0000,23.9000,0.0000,0.0000,0.0000,16.6100,0.0000,0.0000,0.0000,23.1300,0.0000,0.0000,0.0000,36.6900,0.0000,0.0000,0.0000,27.6300,0.0000 +600696.SH,0.0000,0.0000,0.0000,92.9000,0.0000,0.0000,0.0000,69.5200,0.0000,0.0000,0.0000,65.3200,0.0000,0.0000,0.0000,67.8000,0.0000,0.0000,0.0000,79.3200,0.0000 +600185.SH,0.0000,0.0000,0.0000,38.8900,0.0000,0.0000,0.0000,50.1600,0.0000,0.0000,0.0000,37.4700,0.0000,0.0000,0.0000,41.9800,0.0000,0.0000,0.0000,38.2200,0.0000 +830832.BJ,0.0000,0.0000,0.0000,31.3600,0.0000,0.0000,0.0000,32.8800,0.0000,0.0000,0.0000,27.7400,0.0000,0.0000,0.0000,30.4000,0.0000,0.0000,0.0000,49.3600,0.0000 +002197.SZ,0.0000,0.0000,0.0000,26.4200,0.0000,0.0000,0.0000,16.2100,0.0000,0.0000,0.0000,28.0700,0.0000,0.0000,0.0000,33.7000,0.0000,0.0000,0.0000,37.7200,0.0000 +300197.SZ,0.0000,0.0000,0.0000,15.1800,0.0000,0.0000,0.0000,16.5900,0.0000,0.0000,0.0000,7.9500,0.0000,0.0000,0.0000,11.7500,0.0000,0.0000,0.0000,9.0000,0.0000 +002650.SZ,0.0000,0.0000,0.0000,33.6400,0.0000,0.0000,0.0000,35.4900,0.0000,0.0000,0.0000,26.0700,0.0000,0.0000,0.0000,23.3400,0.0000,0.0000,0.0000,26.6500,0.0000 +300656.SZ,0.0000,0.0000,0.0000,43.0000,0.0000,0.0000,0.0000,48.9000,0.0000,0.0000,0.0000,58.6500,0.0000,0.0000,0.0000,34.0400,0.0000,0.0000,0.0000,28.6700,0.0000 +603388.SH,0.0000,0.0000,0.0000,48.9700,0.0000,0.0000,0.0000,38.4400,0.0000,0.0000,0.0000,36.8800,0.0000,0.0000,0.0000,22.7100,0.0000,0.0000,0.0000,25.0000,0.0000 +002685.SZ,0.0000,0.0000,0.0000,44.3500,0.0000,0.0000,0.0000,53.4300,0.0000,0.0000,0.0000,39.5500,0.0000,0.0000,0.0000,39.0000,0.0000,0.0000,0.0000,36.7800,0.0000 +834639.BJ,0.0000,0.0000,0.0000,55.3900,0.0000,55.3900,0.0000,57.7500,0.0000,0.0000,0.0000,69.8100,0.0000,0.0000,0.0000,68.4300,0.0000,0.0000,0.0000,61.5900,0.0000 +002204.SZ,0.0000,0.0000,0.0000,8.9500,0.0000,0.0000,0.0000,5.4400,0.0000,0.0000,0.0000,7.8100,0.0000,0.0000,0.0000,13.3100,0.0000,0.0000,0.0000,9.8200,0.0000 +002199.SZ,0.0000,0.0000,0.0000,50.8700,0.0000,0.0000,0.0000,56.0800,0.0000,0.0000,0.0000,58.7300,0.0000,0.0000,0.0000,64.7200,0.0000,0.0000,0.0000,65.7100,0.0000 +603813.SH,0.0000,0.0000,0.0000,51.0400,0.0000,0.0000,0.0000,45.9300,0.0000,0.0000,0.0000,40.4000,0.0000,0.0000,0.0000,34.6800,0.0000,0.0000,0.0000,33.4200,0.0000 +688549.SH,0.0000,0.0000,0.0000,75.2200,0.0000,0.0000,0.0000,72.3000,0.0000,0.0000,0.0000,57.7400,0.0000,0.0000,0.0000,53.1000,0.0000,0.0000,0.0000,41.0700,0.0000 +831526.BJ,0.0000,0.0000,0.0000,41.0100,0.0000,0.0000,0.0000,49.0900,0.0000,49.7800,0.0000,49.3200,0.0000,0.0000,0.0000,35.6100,0.0000,0.0000,0.0000,44.1300,0.0000 +002816.SZ,0.0000,0.0000,0.0000,17.5700,0.0000,0.0000,0.0000,20.8600,0.0000,0.0000,0.0000,32.0300,0.0000,0.0000,0.0000,50.4200,0.0000,0.0000,0.0000,68.6400,0.0000 +605050.SH,0.0000,0.0000,0.0000,78.0500,0.0000,0.0000,0.0000,83.7900,0.0000,0.0000,0.0000,85.6100,0.0000,0.0000,0.0000,80.9400,0.0000,0.0000,0.0000,76.1200,0.0000 +603268.SH,0.0000,0.0000,0.0000,15.3200,0.0000,0.0000,0.0000,26.5100,0.0000,0.0000,0.0000,24.7000,0.0000,0.0000,0.0000,27.9700,0.0000,0.0000,0.0000,28.7500,0.0000 +300572.SZ,0.0000,0.0000,0.0000,37.7600,0.0000,0.0000,0.0000,28.4700,0.0000,0.0000,0.0000,35.3900,0.0000,0.0000,0.0000,27.5500,0.0000,0.0000,0.0000,30.9800,0.0000 +603261.SH,0.0000,0.0000,0.0000,30.7300,0.0000,33.4100,0.0000,27.3200,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +002200.SZ,0.0000,0.0000,0.0000,36.6700,0.0000,0.0000,0.0000,47.4300,0.0000,0.0000,0.0000,52.7600,0.0000,0.0000,0.0000,27.4500,0.0000,0.0000,0.0000,29.2200,0.0000 +002848.SZ,0.0000,0.0000,0.0000,16.0200,0.0000,0.0000,0.0000,26.8100,0.0000,0.0000,0.0000,40.5900,0.0000,0.0000,0.0000,50.9300,0.0000,0.0000,0.0000,30.3000,0.0000 +000566.SZ,0.0000,0.0000,0.0000,33.3700,0.0000,0.0000,0.0000,37.2600,0.0000,0.0000,0.0000,26.5300,0.0000,0.0000,0.0000,29.8200,0.0000,0.0000,0.0000,31.6400,0.0000 +603007.SH,0.0000,0.0000,0.0000,40.8600,0.0000,0.0000,0.0000,24.4700,0.0000,0.0000,0.0000,24.8300,0.0000,0.0000,0.0000,57.6800,0.0000,0.0000,0.0000,87.5300,0.0000 +002112.SZ,0.0000,0.0000,0.0000,39.3100,0.0000,0.0000,0.0000,50.7500,0.0000,0.0000,0.0000,50.4900,0.0000,0.0000,0.0000,45.5500,0.0000,0.0000,0.0000,41.5100,0.0000 +603917.SH,0.0000,0.0000,0.0000,45.1700,0.0000,0.0000,0.0000,34.5600,0.0000,0.0000,0.0000,38.7300,0.0000,0.0000,0.0000,34.4700,0.0000,0.0000,0.0000,38.9300,0.0000 +002289.SZ,0.0000,0.0000,0.0000,59.7100,0.0000,0.0000,0.0000,38.7400,0.0000,0.0000,0.0000,37.7400,0.0000,0.0000,0.0000,57.8200,0.0000,0.0000,0.0000,59.8100,0.0000 +300464.SZ,0.0000,0.0000,0.0000,21.1000,0.0000,0.0000,0.0000,23.7800,0.0000,0.0000,0.0000,32.1200,0.0000,31.1600,0.0000,28.3900,0.0000,34.8900,0.0000,37.0300,0.0000 +300293.SZ,0.0000,0.0000,0.0000,8.1500,0.0000,0.0000,0.0000,11.0300,0.0000,0.0000,0.0000,12.9600,0.0000,0.0000,0.0000,8.2000,0.0000,0.0000,0.0000,8.1400,0.0000 +002868.SZ,0.0000,0.0000,0.0000,46.9600,0.0000,0.0000,0.0000,48.6700,0.0000,0.0000,0.0000,45.7300,0.0000,0.0000,0.0000,40.6000,0.0000,0.0000,0.0000,39.3300,0.0000 +002095.SZ,0.0000,0.0000,0.0000,50.6000,0.0000,0.0000,0.0000,58.0400,0.0000,0.0000,0.0000,58.7000,0.0000,0.0000,0.0000,46.6800,0.0000,0.0000,0.0000,61.9600,0.0000 +000676.SZ,0.0000,0.0000,0.0000,80.4800,0.0000,0.0000,0.0000,78.4900,0.0000,0.0000,0.0000,69.3900,0.0000,0.0000,0.0000,81.0300,0.0000,0.0000,0.0000,77.7800,0.0000 +300657.SZ,0.0000,0.0000,0.0000,15.4500,0.0000,0.0000,0.0000,14.2600,0.0000,0.0000,0.0000,13.7200,0.0000,0.0000,0.0000,23.9000,0.0000,0.0000,0.0000,27.5000,0.0000 +600980.SH,0.0000,0.0000,0.0000,22.8000,0.0000,0.0000,0.0000,32.0700,0.0000,0.0000,0.0000,16.1300,0.0000,0.0000,0.0000,25.8400,0.0000,0.0000,0.0000,15.9600,0.0000 +830779.BJ,0.0000,0.0000,0.0000,43.5500,0.0000,0.0000,0.0000,34.7900,0.0000,39.2000,0.0000,32.5300,0.0000,0.0000,0.0000,29.3300,0.0000,0.0000,0.0000,31.4200,0.0000 +300067.SZ,0.0000,0.0000,0.0000,23.3400,0.0000,0.0000,0.0000,33.4900,0.0000,0.0000,0.0000,30.9600,0.0000,0.0000,0.0000,30.4300,0.0000,0.0000,0.0000,33.5100,0.0000 +002058.SZ,0.0000,0.0000,0.0000,28.8300,0.0000,0.0000,0.0000,20.6300,0.0000,0.0000,0.0000,19.8100,0.0000,0.0000,0.0000,27.3500,0.0000,0.0000,0.0000,16.5100,0.0000 +603569.SH,0.0000,0.0000,0.0000,21.7000,0.0000,0.0000,0.0000,22.3000,0.0000,0.0000,0.0000,27.5500,0.0000,0.0000,0.0000,28.1200,0.0000,0.0000,0.0000,17.1400,0.0000 +601399.SH,0.0000,0.0000,0.0000,8.9800,0.0000,0.0000,0.0000,7.5500,0.0000,0.0000,0.0000,12.8100,0.0000,0.0000,0.0000,19.1500,0.0000,0.0000,0.0000,10.0700,0.0000 +000929.SZ,0.0000,0.0000,0.0000,35.7500,0.0000,0.0000,0.0000,33.6800,0.0000,0.0000,0.0000,28.4200,0.0000,0.0000,0.0000,23.3600,0.0000,0.0000,0.0000,29.8700,0.0000 +300822.SZ,0.0000,0.0000,0.0000,31.8700,0.0000,0.0000,0.0000,22.6700,0.0000,0.0000,0.0000,16.2800,0.0000,0.0000,0.0000,16.8700,0.0000,0.0000,0.0000,19.9500,0.0000 +002881.SZ,0.0000,0.0000,0.0000,51.6100,0.0000,0.0000,0.0000,58.4800,0.0000,0.0000,0.0000,56.7700,0.0000,0.0000,0.0000,52.5900,0.0000,0.0000,0.0000,62.9000,0.0000 +300103.SZ,0.0000,0.0000,0.0000,42.7300,0.0000,0.0000,0.0000,35.4900,0.0000,0.0000,0.0000,43.1700,0.0000,0.0000,0.0000,42.4900,0.0000,0.0000,0.0000,19.4900,0.0000 +605289.SH,0.0000,84.0900,0.0000,28.0300,0.0000,0.0000,0.0000,22.6300,0.0000,0.0000,0.0000,28.1700,0.0000,0.0000,0.0000,23.6900,0.0000,0.0000,0.0000,18.8300,0.0000 +000710.SZ,0.0000,0.0000,0.0000,44.1700,0.0000,0.0000,0.0000,86.2200,0.0000,0.0000,0.0000,84.6200,0.0000,0.0000,0.0000,62.9500,0.0000,0.0000,0.0000,75.8000,0.0000 +300461.SZ,0.0000,0.0000,0.0000,29.1400,0.0000,0.0000,0.0000,20.1100,0.0000,0.0000,0.0000,19.5000,0.0000,0.0000,0.0000,17.1800,0.0000,0.0000,0.0000,12.3500,0.0000 +688157.SH,0.0000,0.0000,0.0000,30.4200,0.0000,0.0000,0.0000,27.2500,0.0000,0.0000,0.0000,27.0900,0.0000,0.0000,0.0000,24.5600,0.0000,0.0000,0.0000,23.7300,0.0000 +301118.SZ,0.0000,0.0000,0.0000,54.7200,0.0000,59.3200,0.0000,70.6100,0.0000,0.0000,0.0000,44.3600,0.0000,0.0000,0.0000,55.5700,0.0000,0.0000,0.0000,50.9800,0.0000 +920799.BJ,0.0000,0.0000,0.0000,74.2300,0.0000,0.0000,0.0000,63.1500,0.0000,0.0000,0.0000,63.5800,0.0000,0.0000,0.0000,71.1800,0.0000,0.0000,0.0000,83.2800,0.0000 +001212.SZ,0.0000,0.0000,0.0000,37.6400,0.0000,0.0000,0.0000,37.5600,0.0000,0.0000,0.0000,30.5200,0.0000,0.0000,0.0000,28.3200,0.0000,0.0000,0.0000,51.0200,0.0000 +002898.SZ,0.0000,0.0000,0.0000,63.6400,0.0000,0.0000,0.0000,57.6600,0.0000,0.0000,0.0000,49.6600,0.0000,0.0000,0.0000,51.3000,0.0000,0.0000,0.0000,44.0700,0.0000 +600753.SH,0.0000,0.0000,0.0000,54.9300,0.0000,0.0000,0.0000,58.3700,0.0000,0.0000,0.0000,64.7100,0.0000,0.0000,0.0000,54.9400,0.0000,0.0000,0.0000,71.5000,0.0000 +688035.SH,0.0000,0.0000,0.0000,39.7100,0.0000,0.0000,0.0000,42.2800,0.0000,0.0000,0.0000,47.9500,0.0000,0.0000,0.0000,54.6900,0.0000,0.0000,0.0000,47.1700,0.0000 +002713.SZ,0.0000,0.0000,0.0000,11.2600,0.0000,0.0000,0.0000,9.9000,0.0000,0.0000,0.0000,9.7500,0.0000,0.0000,0.0000,7.6500,0.0000,0.0000,0.0000,8.2700,0.0000 +831087.BJ,0.0000,0.0000,0.0000,36.1100,0.0000,0.0000,0.0000,27.9200,0.0000,53.2800,0.0000,26.9800,0.0000,0.0000,0.0000,34.6600,0.0000,0.0000,0.0000,15.9400,0.0000 +600636.SH,0.0000,0.0000,0.0000,56.3700,0.0000,0.0000,0.0000,51.4600,0.0000,0.0000,0.0000,65.8300,0.0000,0.0000,0.0000,36.0200,0.0000,0.0000,0.0000,38.9000,0.0000 +603579.SH,0.0000,0.0000,0.0000,18.7300,0.0000,0.0000,0.0000,20.2400,0.0000,0.0000,0.0000,23.9000,0.0000,0.0000,0.0000,24.2100,0.0000,0.0000,0.0000,24.2400,0.0000 +301516.SZ,0.0000,0.0000,0.0000,22.0800,0.0000,0.0000,0.0000,28.5100,0.0000,0.0000,0.0000,26.1100,0.0000,31.4200,0.0000,27.1000,0.0000,0.0000,0.0000,19.6500,0.0000 +688680.SH,0.0000,0.0000,0.0000,62.0800,0.0000,0.0000,0.0000,77.2100,0.0000,0.0000,0.0000,63.7800,0.0000,0.0000,0.0000,54.3900,0.0000,0.0000,0.0000,60.9900,0.0000 +833580.BJ,0.0000,0.0000,0.0000,65.1000,0.0000,0.0000,0.0000,63.7000,0.0000,0.0000,0.0000,55.9800,0.0000,0.0000,0.0000,72.2000,0.0000,0.0000,0.0000,67.6800,0.0000 +301191.SZ,0.0000,0.0000,0.0000,50.7300,0.0000,0.0000,0.0000,59.5500,0.0000,0.0000,0.0000,51.7900,0.0000,0.0000,0.0000,51.2100,0.0000,0.0000,0.0000,44.1100,0.0000 +002542.SZ,0.0000,0.0000,0.0000,24.5400,0.0000,0.0000,0.0000,22.4800,0.0000,0.0000,0.0000,16.9900,0.0000,0.0000,0.0000,11.7900,0.0000,0.0000,0.0000,9.5100,0.0000 +603023.SH,0.0000,0.0000,0.0000,46.5000,0.0000,0.0000,0.0000,39.7000,0.0000,0.0000,0.0000,58.4400,0.0000,0.0000,0.0000,48.9500,0.0000,0.0000,0.0000,42.9900,0.0000 +688557.SH,0.0000,0.0000,0.0000,14.0200,0.0000,0.0000,0.0000,13.8700,0.0000,0.0000,0.0000,12.0900,0.0000,0.0000,0.0000,9.8900,0.0000,0.0000,0.0000,12.9600,0.0000 +600776.SH,0.0000,0.0000,0.0000,27.9400,0.0000,0.0000,0.0000,38.5000,0.0000,0.0000,0.0000,34.9600,0.0000,0.0000,0.0000,55.1800,0.0000,0.0000,0.0000,43.7000,0.0000 +000668.SZ,0.0000,0.0000,0.0000,59.3300,0.0000,0.0000,0.0000,34.4700,0.0000,0.0000,0.0000,56.9100,0.0000,0.0000,0.0000,69.4500,0.0000,0.0000,0.0000,64.4400,0.0000 +688309.SH,0.0000,0.0000,0.0000,56.4200,0.0000,0.0000,0.0000,52.9000,0.0000,0.0000,0.0000,45.1700,0.0000,0.0000,0.0000,56.8900,0.0000,0.0000,0.0000,31.8500,0.0000 +002626.SZ,0.0000,0.0000,0.0000,29.9600,0.0000,0.0000,0.0000,27.0400,0.0000,0.0000,0.0000,30.3900,0.0000,0.0000,0.0000,36.9200,0.0000,0.0000,0.0000,32.5600,0.0000 +600608.SH,0.0000,0.0000,0.0000,100.0000,0.0000,0.0000,0.0000,95.8200,0.0000,0.0000,0.0000,99.6800,0.0000,0.0000,0.0000,73.2400,0.0000,0.0000,0.0000,94.4700,0.0000 +603838.SH,0.0000,0.0000,0.0000,27.8600,0.0000,0.0000,0.0000,39.0500,0.0000,0.0000,0.0000,34.2200,0.0000,0.0000,0.0000,40.8500,0.0000,0.0000,0.0000,32.8400,0.0000 +833030.BJ,0.0000,0.0000,0.0000,15.2700,0.0000,0.0000,18.7700,17.8800,0.0000,0.0000,0.0000,18.2600,0.0000,19.1900,0.0000,21.3000,0.0000,0.0000,0.0000,12.6200,0.0000 +688135.SH,0.0000,0.0000,0.0000,65.8500,0.0000,0.0000,0.0000,63.5200,0.0000,0.0000,0.0000,45.5600,0.0000,0.0000,0.0000,54.5800,0.0000,0.0000,0.0000,50.2800,0.0000 +688800.SH,0.0000,0.0000,0.0000,19.3500,0.0000,0.0000,0.0000,15.2300,0.0000,0.0000,0.0000,13.0500,0.0000,0.0000,0.0000,16.4200,0.0000,0.0000,0.0000,13.4400,0.0000 +002528.SZ,0.0000,0.0000,0.0000,56.6200,0.0000,0.0000,0.0000,63.3200,0.0000,0.0000,0.0000,67.7100,0.0000,0.0000,0.0000,70.1800,0.0000,0.0000,0.0000,69.1000,0.0000 +300416.SZ,0.0000,0.0000,0.0000,18.8100,0.0000,0.0000,0.0000,18.3500,0.0000,0.0000,0.0000,18.3000,0.0000,0.0000,0.0000,18.9900,0.0000,0.0000,0.0000,19.3800,0.0000 +300348.SZ,0.0000,0.0000,0.0000,54.3800,0.0000,0.0000,0.0000,62.0400,0.0000,0.0000,0.0000,34.5100,0.0000,0.0000,0.0000,55.9300,0.0000,0.0000,0.0000,61.7100,0.0000 +000545.SZ,0.0000,0.0000,0.0000,29.1800,0.0000,0.0000,0.0000,30.2000,0.0000,0.0000,0.0000,28.5500,0.0000,0.0000,0.0000,26.7900,0.0000,0.0000,0.0000,27.7300,0.0000 +002857.SZ,0.0000,0.0000,0.0000,33.0400,0.0000,0.0000,0.0000,26.5200,0.0000,0.0000,0.0000,22.9600,0.0000,0.0000,0.0000,53.3900,0.0000,0.0000,0.0000,65.7400,0.0000 +301366.SZ,0.0000,0.0000,0.0000,27.0400,0.0000,0.0000,0.0000,24.3500,0.0000,0.0000,0.0000,26.9400,0.0000,0.0000,0.0000,24.7200,0.0000,0.0000,0.0000,23.5200,0.0000 +600187.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,28.8600,0.0000,0.0000,0.0000,39.6200,0.0000,0.0000,0.0000,58.6200,0.0000,0.0000,0.0000,41.2000,0.0000 +300056.SZ,0.0000,0.0000,0.0000,38.2600,0.0000,0.0000,0.0000,34.4800,0.0000,0.0000,0.0000,29.7600,0.0000,0.0000,0.0000,27.8600,0.0000,0.0000,0.0000,22.8800,0.0000 +002322.SZ,0.0000,0.0000,0.0000,16.3800,0.0000,0.0000,0.0000,24.9100,0.0000,0.0000,0.0000,15.6000,0.0000,0.0000,0.0000,22.0000,0.0000,0.0000,0.0000,11.3600,0.0000 +002842.SZ,0.0000,0.0000,0.0000,50.9600,0.0000,0.0000,0.0000,33.5000,0.0000,0.0000,0.0000,66.0600,0.0000,0.0000,0.0000,64.7500,0.0000,0.0000,0.0000,58.3500,0.0000 +002306.SZ,0.0000,0.0000,0.0000,64.6900,0.0000,0.0000,0.0000,60.0500,0.0000,0.0000,0.0000,43.1800,0.0000,0.0000,0.0000,39.0300,0.0000,0.0000,0.0000,75.2600,0.0000 +300302.SZ,0.0000,0.0000,0.0000,33.7000,0.0000,0.0000,0.0000,33.8700,0.0000,0.0000,0.0000,45.4800,0.0000,0.0000,0.0000,54.0000,0.0000,0.0000,0.0000,35.7400,0.0000 +300098.SZ,0.0000,0.0000,0.0000,15.0200,0.0000,0.0000,0.0000,20.2800,0.0000,0.0000,0.0000,16.0300,0.0000,0.0000,0.0000,13.5900,0.0000,0.0000,0.0000,21.8700,0.0000 +002769.SZ,0.0000,0.0000,0.0000,66.8000,0.0000,0.0000,0.0000,66.3600,0.0000,0.0000,0.0000,54.5500,0.0000,0.0000,0.0000,37.3700,0.0000,0.0000,0.0000,50.4300,0.0000 +300949.SZ,0.0000,0.0000,0.0000,37.5500,0.0000,0.0000,0.0000,31.0000,0.0000,0.0000,0.0000,20.1800,0.0000,0.0000,0.0000,26.8000,0.0000,0.0000,0.0000,29.5300,0.0000 +688435.SH,0.0000,0.0000,0.0000,83.1900,0.0000,0.0000,0.0000,73.6000,0.0000,82.2600,0.0000,81.1200,0.0000,0.0000,0.0000,69.9500,0.0000,0.0000,0.0000,76.3900,0.0000 +002277.SZ,0.0000,0.0000,0.0000,11.8800,0.0000,0.0000,0.0000,12.1400,0.0000,0.0000,0.0000,12.8300,0.0000,0.0000,0.0000,14.3300,0.0000,0.0000,0.0000,15.3100,0.0000 +301608.SZ,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,30.7100,0.0000,0.0000,0.0000,27.4800,0.0000,0.0000,0.0000,20.0800,0.0000,0.0000,0.0000,15.4100,0.0000 +002141.SZ,0.0000,0.0000,0.0000,82.9300,0.0000,0.0000,0.0000,86.9400,0.0000,0.0000,0.0000,82.7800,0.0000,0.0000,0.0000,33.0700,0.0000,0.0000,0.0000,49.0400,0.0000 +600835.SH,0.0000,0.0000,0.0000,25.3300,0.0000,0.0000,0.0000,24.5600,0.0000,0.0000,0.0000,24.2600,0.0000,0.0000,0.0000,24.1700,0.0000,0.0000,0.0000,26.1200,0.0000 +002298.SZ,0.0000,0.0000,0.0000,30.4900,0.0000,0.0000,0.0000,28.8900,0.0000,0.0000,0.0000,19.6500,0.0000,0.0000,0.0000,14.6200,0.0000,0.0000,0.0000,16.1300,0.0000 +301517.SZ,0.0000,0.0000,0.0000,40.2400,0.0000,0.0000,0.0000,44.1100,0.0000,0.0000,0.0000,33.3600,0.0000,0.0000,0.0000,27.0100,0.0000,0.0000,0.0000,23.8500,0.0000 +300340.SZ,0.0000,0.0000,0.0000,40.2100,0.0000,0.0000,0.0000,38.3900,0.0000,0.0000,0.0000,39.4900,0.0000,0.0000,0.0000,59.1200,0.0000,0.0000,0.0000,58.0200,0.0000 +002093.SZ,0.0000,0.0000,0.0000,64.6300,0.0000,0.0000,0.0000,61.2800,0.0000,0.0000,0.0000,57.7700,0.0000,0.0000,0.0000,71.2500,0.0000,0.0000,0.0000,73.1800,0.0000 +002323.SZ,0.0000,0.0000,0.0000,23.4100,0.0000,0.0000,0.0000,36.5100,0.0000,0.0000,0.0000,44.4000,0.0000,0.0000,0.0000,23.9900,0.0000,0.0000,0.0000,31.8100,0.0000 +600841.SH,0.0000,0.0000,0.0000,24.1300,0.0000,0.0000,0.0000,23.1100,0.0000,0.0000,0.0000,19.4000,0.0000,0.0000,0.0000,19.9700,0.0000,0.0000,0.0000,14.7800,0.0000 +002580.SZ,0.0000,0.0000,0.0000,57.9400,0.0000,0.0000,0.0000,39.0600,0.0000,0.0000,0.0000,39.6000,0.0000,0.0000,0.0000,42.9000,0.0000,0.0000,0.0000,64.6200,0.0000 +300488.SZ,0.0000,0.0000,0.0000,55.8100,0.0000,0.0000,0.0000,54.6900,0.0000,0.0000,0.0000,44.7400,0.0000,0.0000,0.0000,54.3700,0.0000,0.0000,0.0000,50.4300,0.0000 +002602.SZ,0.0000,0.0000,0.0000,45.6600,0.0000,0.0000,0.0000,31.2200,0.0000,0.0000,0.0000,27.7100,0.0000,0.0000,0.0000,38.8700,0.0000,0.0000,0.0000,55.2600,0.0000 +300242.SZ,0.0000,0.0000,0.0000,89.0500,0.0000,0.0000,0.0000,89.4700,0.0000,0.0000,0.0000,77.8200,0.0000,0.0000,0.0000,76.2800,0.0000,0.0000,0.0000,93.9800,0.0000 +834475.BJ,0.0000,0.0000,0.0000,58.3200,0.0000,0.0000,0.0000,67.5800,0.0000,0.0000,0.0000,70.9300,0.0000,0.0000,0.0000,65.3600,0.0000,0.0000,0.0000,64.9400,0.0000 +300520.SZ,0.0000,0.0000,0.0000,16.8000,0.0000,0.0000,0.0000,13.6700,0.0000,0.0000,0.0000,24.6100,0.0000,0.0000,0.0000,45.4600,0.0000,0.0000,0.0000,12.0900,0.0000 +300814.SZ,0.0000,0.0000,0.0000,62.5400,0.0000,0.0000,0.0000,56.8100,0.0000,0.0000,0.0000,59.7100,0.0000,0.0000,0.0000,52.5700,0.0000,0.0000,0.0000,56.1600,0.0000 +873679.BJ,0.0000,0.0000,0.0000,81.7000,0.0000,0.0000,0.0000,83.6700,0.0000,0.0000,0.0000,81.0900,0.0000,81.9900,0.0000,78.9300,0.0000,0.0000,0.0000,79.4100,0.0000 +002208.SZ,0.0000,0.0000,0.0000,47.8500,0.0000,0.0000,0.0000,83.1900,0.0000,0.0000,0.0000,64.2200,0.0000,0.0000,0.0000,58.0800,0.0000,0.0000,0.0000,56.7800,0.0000 +301176.SZ,0.0000,0.0000,0.0000,77.8700,0.0000,0.0000,0.0000,72.8200,0.0000,0.0000,0.0000,89.6500,0.0000,0.0000,0.0000,80.7900,0.0000,0.0000,0.0000,71.2900,0.0000 +688167.SH,0.0000,0.0000,0.0000,36.0400,0.0000,35.5900,0.0000,35.2900,0.0000,0.0000,0.0000,43.9000,0.0000,0.0000,0.0000,26.5100,0.0000,0.0000,0.0000,33.4800,0.0000 +000034.SZ,0.0000,0.0000,0.0000,53.1000,0.0000,0.0000,0.0000,61.1100,0.0000,0.0000,0.0000,54.5700,0.0000,0.0000,0.0000,57.0100,0.0000,0.0000,0.0000,50.4500,0.0000 +002149.SZ,0.0000,0.0000,0.0000,26.8600,0.0000,0.0000,0.0000,23.6300,0.0000,0.0000,0.0000,27.6400,0.0000,0.0000,0.0000,23.2600,0.0000,0.0000,0.0000,26.1500,0.0000 +600198.SH,0.0000,0.0000,0.0000,21.7200,0.0000,0.0000,0.0000,26.1000,0.0000,0.0000,0.0000,34.9700,0.0000,0.0000,0.0000,40.9000,0.0000,0.0000,0.0000,34.3700,0.0000 +600644.SH,0.0000,0.0000,0.0000,44.9500,0.0000,0.0000,0.0000,54.3000,0.0000,0.0000,0.0000,61.9600,0.0000,0.0000,0.0000,65.4100,0.0000,0.0000,0.0000,66.3000,0.0000 +002168.SZ,0.0000,0.0000,0.0000,39.9900,0.0000,0.0000,0.0000,43.9700,0.0000,0.0000,0.0000,21.5800,0.0000,0.0000,0.0000,16.9700,0.0000,0.0000,0.0000,25.9600,0.0000 +603766.SH,0.0000,0.0000,0.0000,10.3900,0.0000,0.0000,0.0000,8.3000,0.0000,0.0000,0.0000,8.3000,0.0000,0.0000,0.0000,8.2300,0.0000,0.0000,0.0000,9.6600,0.0000 +301555.SZ,0.0000,0.0000,0.0000,60.5200,0.0000,0.0000,0.0000,63.2200,0.0000,0.0000,0.0000,57.8000,0.0000,58.2000,0.0000,47.5100,0.0000,0.0000,0.0000,41.4000,0.0000 +002335.SZ,0.0000,0.0000,0.0000,12.3400,0.0000,0.0000,0.0000,14.7800,0.0000,0.0000,0.0000,16.7300,0.0000,0.0000,0.0000,23.4100,0.0000,0.0000,0.0000,24.4600,0.0000 +301288.SZ,0.0000,0.0000,0.0000,54.7900,0.0000,62.1200,0.0000,0.0000,0.0000,0.0000,0.0000,44.2500,0.0000,0.0000,0.0000,44.6300,0.0000,0.0000,0.0000,50.1200,0.0000 +601608.SH,0.0000,0.0000,0.0000,12.9900,0.0000,0.0000,0.0000,16.3300,0.0000,0.0000,0.0000,17.0400,0.0000,0.0000,0.0000,12.1000,0.0000,0.0000,0.0000,22.0400,0.0000 +000997.SZ,0.0000,0.0000,0.0000,18.5300,0.0000,0.0000,0.0000,22.4600,0.0000,0.0000,0.0000,20.1100,0.0000,0.0000,0.0000,23.5900,0.0000,0.0000,0.0000,26.3900,0.0000 +603219.SH,0.0000,0.0000,0.0000,31.3200,0.0000,29.9300,0.0000,29.4100,0.0000,0.0000,0.0000,28.0700,0.0000,0.0000,0.0000,24.8200,0.0000,0.0000,0.0000,22.5300,0.0000 +688418.SH,0.0000,0.0000,0.0000,40.2600,0.0000,0.0000,0.0000,40.4400,0.0000,0.0000,0.0000,29.6500,0.0000,0.0000,0.0000,42.8500,0.0000,0.0000,0.0000,29.8700,0.0000 +600550.SH,0.0000,0.0000,0.0000,43.6400,0.0000,0.0000,0.0000,23.6400,0.0000,0.0000,0.0000,27.4500,0.0000,0.0000,0.0000,27.0600,0.0000,0.0000,0.0000,31.4900,0.0000 +002622.SZ,0.0000,0.0000,0.0000,24.7400,0.0000,0.0000,0.0000,20.8100,0.0000,0.0000,0.0000,27.6100,0.0000,0.0000,0.0000,26.9500,0.0000,0.0000,0.0000,20.6200,0.0000 +301226.SZ,0.0000,0.0000,0.0000,30.3300,0.0000,34.6800,0.0000,34.7500,0.0000,0.0000,0.0000,31.2300,0.0000,0.0000,0.0000,26.2300,0.0000,0.0000,0.0000,26.3000,0.0000 +002104.SZ,0.0000,0.0000,0.0000,48.6800,0.0000,0.0000,0.0000,57.7600,0.0000,0.0000,0.0000,58.9000,0.0000,0.0000,0.0000,70.2300,0.0000,0.0000,0.0000,69.1300,0.0000 +601216.SH,0.0000,0.0000,0.0000,10.5400,0.0000,0.0000,0.0000,12.5700,0.0000,0.0000,0.0000,12.4400,0.0000,0.0000,0.0000,11.8600,0.0000,0.0000,0.0000,14.8700,0.0000 +603108.SH,0.0000,0.0000,0.0000,36.6100,0.0000,0.0000,0.0000,38.2200,0.0000,0.0000,0.0000,31.7900,0.0000,0.0000,0.0000,40.5200,0.0000,0.0000,0.0000,42.0700,0.0000 +832175.BJ,0.0000,0.0000,0.0000,42.5900,0.0000,0.0000,0.0000,38.7900,0.0000,55.7300,0.0000,38.8200,0.0000,0.0000,0.0000,62.2300,0.0000,0.0000,0.0000,39.2900,0.0000 +831039.BJ,0.0000,0.0000,0.0000,69.7700,0.0000,0.0000,0.0000,70.6100,0.0000,0.0000,0.0000,75.0300,0.0000,0.0000,0.0000,71.6000,0.0000,0.0000,0.0000,55.5600,0.0000 +872895.BJ,0.0000,0.0000,0.0000,40.7500,0.0000,0.0000,0.0000,44.2100,0.0000,0.0000,41.5800,45.6900,0.0000,0.0000,0.0000,38.3100,0.0000,0.0000,0.0000,41.1800,0.0000 +833943.BJ,0.0000,0.0000,0.0000,25.0600,0.0000,0.0000,0.0000,23.4500,0.0000,0.0000,0.0000,21.2000,0.0000,0.0000,0.0000,19.2500,0.0000,0.0000,0.0000,16.2700,0.0000 +872808.BJ,0.0000,0.0000,0.0000,42.7600,0.0000,0.0000,0.0000,36.6600,0.0000,52.2400,0.0000,40.0500,0.0000,0.0000,0.0000,26.4700,0.0000,0.0000,0.0000,16.0900,0.0000 +831768.BJ,0.0000,0.0000,0.0000,58.4100,0.0000,0.0000,0.0000,65.7700,0.0000,0.0000,0.0000,69.0800,0.0000,0.0000,0.0000,54.1800,0.0000,0.0000,0.0000,47.4300,0.0000 +002694.SZ,0.0000,0.0000,0.0000,27.2700,0.0000,0.0000,0.0000,38.5000,0.0000,0.0000,0.0000,32.5400,0.0000,0.0000,0.0000,30.0200,0.0000,0.0000,0.0000,26.0300,0.0000 +001319.SZ,0.0000,0.0000,0.0000,33.5300,0.0000,0.0000,0.0000,26.4100,0.0000,0.0000,0.0000,32.9500,0.0000,0.0000,0.0000,35.4800,0.0000,0.0000,0.0000,37.5200,0.0000 +300018.SZ,0.0000,0.0000,0.0000,13.5800,0.0000,0.0000,0.0000,11.4600,0.0000,0.0000,0.0000,16.4700,0.0000,0.0000,0.0000,16.4100,0.0000,0.0000,0.0000,16.3000,0.0000 +301072.SZ,0.0000,0.0000,0.0000,37.1700,0.0000,0.0000,0.0000,35.2000,0.0000,0.0000,0.0000,32.9000,0.0000,0.0000,0.0000,28.4900,0.0000,0.0000,0.0000,31.5300,0.0000 +002434.SZ,0.0000,0.0000,0.0000,20.0500,0.0000,0.0000,0.0000,19.1200,0.0000,0.0000,0.0000,26.6700,0.0000,0.0000,0.0000,29.3800,0.0000,0.0000,0.0000,25.7200,0.0000 +603228.SH,0.0000,0.0000,0.0000,31.2400,0.0000,0.0000,0.0000,35.5400,0.0000,0.0000,0.0000,35.8600,0.0000,0.0000,0.0000,36.4200,0.0000,0.0000,0.0000,38.7600,0.0000 +002031.SZ,0.0000,0.0000,0.0000,21.1200,0.0000,0.0000,0.0000,24.0300,0.0000,0.0000,0.0000,23.5700,0.0000,0.0000,0.0000,24.7900,0.0000,0.0000,0.0000,24.1500,0.0000 +300459.SZ,0.0000,0.0000,0.0000,37.3900,0.0000,0.0000,0.0000,35.7400,0.0000,0.0000,0.0000,38.0900,0.0000,0.0000,0.0000,46.4400,0.0000,0.0000,0.0000,38.3600,0.0000 +002987.SZ,0.0000,0.0000,0.0000,34.5900,0.0000,0.0000,0.0000,34.1700,0.0000,0.0000,0.0000,34.2000,0.0000,0.0000,0.0000,31.0700,0.0000,0.0000,0.0000,38.7800,0.0000 +603899.SH,0.0000,0.0000,0.0000,15.3900,0.0000,0.0000,0.0000,11.5700,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,8.6000,0.0000,0.0000,0.0000,7.7300,0.0000 +600458.SH,0.0000,0.0000,0.0000,21.2700,0.0000,0.0000,0.0000,20.6600,0.0000,0.0000,0.0000,18.7300,0.0000,0.0000,0.0000,18.4700,0.0000,0.0000,0.0000,12.6700,0.0000 +603949.SH,0.0000,0.0000,0.0000,39.8700,0.0000,0.0000,0.0000,41.6600,0.0000,0.0000,0.0000,44.1200,0.0000,0.0000,0.0000,40.1100,0.0000,0.0000,0.0000,42.9700,0.0000 +688290.SH,0.0000,0.0000,0.0000,24.2700,0.0000,0.0000,0.0000,20.0000,0.0000,0.0000,0.0000,32.6000,0.0000,0.0000,0.0000,20.9600,0.0000,0.0000,0.0000,17.2200,0.0000 +601100.SH,0.0000,0.0000,0.0000,23.1000,0.0000,0.0000,0.0000,24.2800,0.0000,0.0000,0.0000,17.6500,0.0000,0.0000,0.0000,15.4400,0.0000,0.0000,0.0000,9.6100,0.0000 +002943.SZ,0.0000,0.0000,0.0000,20.9100,0.0000,0.0000,0.0000,32.8700,0.0000,0.0000,0.0000,27.3700,0.0000,0.0000,0.0000,39.3300,0.0000,0.0000,0.0000,31.6700,0.0000 +600734.SH,0.0000,0.0000,0.0000,16.0700,0.0000,0.0000,0.0000,24.2200,0.0000,0.0000,0.0000,80.7800,0.0000,0.0000,0.0000,67.4000,0.0000,0.0000,0.0000,73.0100,0.0000 +002506.SZ,0.0000,0.0000,0.0000,16.5000,0.0000,0.0000,0.0000,9.4900,0.0000,0.0000,0.0000,28.8900,0.0000,0.0000,0.0000,30.4600,0.0000,0.0000,0.0000,23.4000,0.0000 +600986.SH,0.0000,0.0000,0.0000,73.3600,0.0000,0.0000,0.0000,82.7500,0.0000,0.0000,0.0000,87.9500,0.0000,0.0000,0.0000,73.4700,0.0000,0.0000,0.0000,77.0300,0.0000 +002428.SZ,0.0000,0.0000,0.0000,54.7600,0.0000,0.0000,0.0000,56.4000,0.0000,0.0000,0.0000,36.1100,0.0000,0.0000,0.0000,33.6000,0.0000,0.0000,0.0000,52.7300,0.0000 +300887.SZ,0.0000,0.0000,0.0000,37.8100,0.0000,0.0000,0.0000,25.8100,0.0000,0.0000,0.0000,29.2000,0.0000,0.0000,0.0000,8.0100,0.0000,0.0000,0.0000,3.9600,0.0000 +600183.SH,0.0000,0.0000,0.0000,23.4400,0.0000,0.0000,0.0000,24.2100,0.0000,0.0000,0.0000,21.7400,0.0000,0.0000,0.0000,23.2200,0.0000,0.0000,0.0000,22.1800,0.0000 +000048.SZ,0.0000,0.0000,0.0000,44.4700,0.0000,0.0000,0.0000,88.5000,0.0000,0.0000,0.0000,56.2400,0.0000,0.0000,0.0000,30.6400,0.0000,0.0000,0.0000,29.5400,0.0000 +003028.SZ,0.0000,0.0000,0.0000,21.1100,0.0000,0.0000,0.0000,21.0500,0.0000,0.0000,0.0000,16.6600,0.0000,0.0000,0.0000,17.1900,0.0000,0.0000,0.0000,11.9400,0.0000 +300359.SZ,0.0000,0.0000,0.0000,11.8500,0.0000,0.0000,0.0000,4.9400,0.0000,0.0000,0.0000,7.8300,0.0000,0.0000,0.0000,6.0600,0.0000,0.0000,0.0000,6.5300,0.0000 +600681.SH,0.0000,0.0000,0.0000,77.4400,0.0000,0.0000,0.0000,74.3200,0.0000,0.0000,0.0000,74.1100,0.0000,0.0000,0.0000,79.6700,0.0000,0.0000,0.0000,83.2700,0.0000 +300438.SZ,0.0000,0.0000,0.0000,21.2900,0.0000,0.0000,0.0000,21.6800,0.0000,0.0000,0.0000,22.7900,0.0000,0.0000,0.0000,26.5000,0.0000,0.0000,0.0000,20.0800,0.0000 +688545.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,64.0000,0.0000,0.0000,0.0000,50.0400,0.0000,0.0000,0.0000,38.3500,0.0000,36.3700,0.0000,34.0400,0.0000 +600538.SH,0.0000,0.0000,0.0000,21.2800,0.0000,0.0000,0.0000,22.5700,0.0000,0.0000,0.0000,18.8000,0.0000,0.0000,0.0000,21.1600,0.0000,0.0000,0.0000,27.9000,0.0000 +603918.SH,0.0000,0.0000,0.0000,40.2700,0.0000,0.0000,0.0000,35.0700,0.0000,0.0000,0.0000,39.2600,0.0000,0.0000,0.0000,34.5200,0.0000,0.0000,0.0000,23.2500,0.0000 +300571.SZ,0.0000,0.0000,0.0000,46.7200,0.0000,0.0000,0.0000,43.6700,0.0000,0.0000,0.0000,48.2500,0.0000,0.0000,0.0000,34.0100,0.0000,0.0000,0.0000,51.7200,0.0000 +872392.BJ,0.0000,0.0000,0.0000,46.9000,0.0000,0.0000,0.0000,49.6600,0.0000,46.0200,0.0000,32.6600,0.0000,0.0000,0.0000,42.3200,0.0000,0.0000,0.0000,36.1600,0.0000 +301085.SZ,0.0000,0.0000,0.0000,72.8400,0.0000,0.0000,0.0000,45.9300,0.0000,0.0000,0.0000,52.9400,0.0000,0.0000,0.0000,30.3300,0.0000,0.0000,0.0000,37.9000,0.0000 +002547.SZ,0.0000,0.0000,0.0000,65.0500,0.0000,0.0000,0.0000,26.8400,0.0000,0.0000,0.0000,22.5800,0.0000,0.0000,0.0000,30.5800,0.0000,0.0000,0.0000,27.0400,0.0000 +688275.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,68.8100,0.0000,0.0000,0.0000,80.4400,0.0000,0.0000,0.0000,58.7600,0.0000 +002689.SZ,0.0000,0.0000,0.0000,17.6900,0.0000,0.0000,0.0000,20.2800,0.0000,0.0000,0.0000,20.8300,0.0000,0.0000,0.0000,28.1200,0.0000,0.0000,0.0000,24.4500,0.0000 +300921.SZ,0.0000,0.0000,0.0000,56.2200,0.0000,0.0000,0.0000,45.3300,0.0000,0.0000,0.0000,42.0800,0.0000,0.0000,0.0000,36.5900,0.0000,0.0000,0.0000,35.9200,0.0000 +833171.BJ,0.0000,0.0000,0.0000,57.3700,0.0000,0.0000,0.0000,54.3700,0.0000,46.8000,0.0000,32.2700,0.0000,0.0000,0.0000,31.4800,0.0000,0.0000,0.0000,78.2400,0.0000 +871553.BJ,0.0000,0.0000,0.0000,39.0100,0.0000,0.0000,0.0000,39.0300,0.0000,0.0000,0.0000,45.2700,0.0000,0.0000,0.0000,43.3400,0.0000,0.0000,0.0000,41.5800,0.0000 +002824.SZ,0.0000,0.0000,0.0000,46.5800,0.0000,0.0000,0.0000,45.0100,0.0000,0.0000,0.0000,34.7700,0.0000,0.0000,0.0000,37.0600,0.0000,0.0000,0.0000,31.4500,0.0000 +600192.SH,0.0000,0.0000,0.0000,27.5800,0.0000,0.0000,0.0000,19.3300,0.0000,0.0000,0.0000,2.2200,0.0000,0.0000,0.0000,5.5500,0.0000,0.0000,0.0000,4.6900,0.0000 +603042.SH,0.0000,0.0000,0.0000,16.8400,0.0000,0.0000,0.0000,12.3300,0.0000,0.0000,0.0000,26.6200,0.0000,0.0000,0.0000,25.2500,0.0000,0.0000,0.0000,19.7000,0.0000 +603901.SH,0.0000,0.0000,0.0000,12.3500,0.0000,0.0000,0.0000,12.4400,0.0000,0.0000,0.0000,13.6300,0.0000,0.0000,0.0000,11.4900,0.0000,0.0000,0.0000,9.3400,0.0000 +601519.SH,0.0000,0.0000,0.0000,40.2900,0.0000,0.0000,0.0000,42.8600,0.0000,0.0000,0.0000,22.8900,0.0000,0.0000,0.0000,25.1800,0.0000,0.0000,0.0000,25.4500,0.0000 +002634.SZ,0.0000,0.0000,0.0000,26.6200,0.0000,0.0000,0.0000,23.2300,0.0000,0.0000,0.0000,28.1900,0.0000,0.0000,0.0000,55.7800,0.0000,0.0000,0.0000,34.6100,0.0000 +301439.SZ,0.0000,0.0000,0.0000,58.8200,0.0000,0.0000,0.0000,58.5300,0.0000,0.0000,61.3900,62.7800,0.0000,0.0000,0.0000,62.0800,0.0000,0.0000,0.0000,61.8200,0.0000 +603767.SH,0.0000,0.0000,0.0000,32.2100,0.0000,0.0000,0.0000,33.0900,0.0000,0.0000,0.0000,31.5300,0.0000,0.0000,0.0000,30.8000,0.0000,0.0000,0.0000,36.6800,0.0000 +833455.BJ,0.0000,0.0000,0.0000,50.3300,0.0000,0.0000,0.0000,46.1200,49.7100,0.0000,0.0000,39.5800,0.0000,0.0000,0.0000,45.0200,0.0000,0.0000,0.0000,41.5000,0.0000 +603045.SH,0.0000,0.0000,0.0000,91.0000,0.0000,0.0000,0.0000,88.4700,0.0000,0.0000,0.0000,87.2000,0.0000,0.0000,0.0000,90.1200,0.0000,0.0000,0.0000,91.9000,0.0000 +300772.SZ,0.0000,0.0000,0.0000,42.3700,0.0000,0.0000,0.0000,49.7200,0.0000,0.0000,0.0000,29.7500,0.0000,0.0000,0.0000,50.2700,0.0000,0.0000,0.0000,46.4600,0.0000 +688260.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,46.6000,0.0000,0.0000,0.0000,43.5700,0.0000,0.0000,0.0000,41.7300,0.0000,0.0000,0.0000,42.7500,0.0000 +872374.BJ,0.0000,0.0000,0.0000,54.7800,0.0000,0.0000,0.0000,62.9900,0.0000,71.2900,0.0000,67.1300,0.0000,0.0000,0.0000,51.8900,0.0000,0.0000,0.0000,52.7400,0.0000 +688409.SH,0.0000,0.0000,0.0000,48.0000,0.0000,0.0000,0.0000,41.6000,0.0000,0.0000,0.0000,37.2000,0.0000,0.0000,0.0000,31.7200,0.0000,0.0000,0.0000,27.6600,0.0000 +601113.SH,0.0000,0.0000,0.0000,23.0000,0.0000,0.0000,0.0000,35.6700,0.0000,0.0000,0.0000,41.3900,0.0000,0.0000,0.0000,44.3000,0.0000,0.0000,0.0000,47.1300,0.0000 +301236.SZ,0.0000,0.0000,0.0000,18.9400,0.0000,23.9000,0.0000,23.7300,0.0000,0.0000,0.0000,25.9900,0.0000,0.0000,0.0000,26.2000,0.0000,0.0000,0.0000,53.7900,0.0000 +600726.SH,0.0000,0.0000,0.0000,37.8200,0.0000,0.0000,0.0000,41.3900,0.0000,0.0000,0.0000,26.9300,0.0000,0.0000,0.0000,40.1000,0.0000,0.0000,0.0000,49.0000,0.0000 +001300.SZ,0.0000,0.0000,0.0000,80.6100,0.0000,0.0000,0.0000,88.0900,0.0000,83.9800,0.0000,35.8300,0.0000,0.0000,0.0000,34.2200,0.0000,0.0000,0.0000,30.6800,0.0000 +301448.SZ,0.0000,0.0000,0.0000,22.2000,0.0000,0.0000,0.0000,20.3300,0.0000,0.0000,0.0000,25.7200,0.0000,0.0000,0.0000,25.9300,0.0000,0.0000,0.0000,28.4500,0.0000 +002658.SZ,0.0000,0.0000,0.0000,24.2300,0.0000,0.0000,0.0000,27.8600,0.0000,0.0000,0.0000,33.1300,0.0000,0.0000,0.0000,30.6400,0.0000,0.0000,0.0000,21.2000,0.0000 +301300.SZ,0.0000,0.0000,0.0000,73.4700,0.0000,0.0000,0.0000,74.9400,0.0000,0.0000,0.0000,67.5100,0.0000,0.0000,0.0000,65.8200,0.0000,0.0000,0.0000,65.1100,0.0000 +688295.SH,0.0000,0.0000,0.0000,68.8000,0.0000,55.1500,0.0000,0.0000,0.0000,0.0000,0.0000,45.9800,0.0000,0.0000,0.0000,43.4900,0.0000,0.0000,0.0000,40.1800,0.0000 +300819.SZ,0.0000,0.0000,0.0000,23.1000,0.0000,0.0000,0.0000,29.3200,0.0000,0.0000,0.0000,25.1500,0.0000,0.0000,0.0000,41.8400,0.0000,0.0000,0.0000,39.4000,0.0000 +002294.SZ,0.0000,0.0000,0.0000,25.4200,0.0000,0.0000,0.0000,30.2800,0.0000,0.0000,0.0000,23.0100,0.0000,0.0000,0.0000,25.5800,0.0000,0.0000,0.0000,25.3400,0.0000 +839790.BJ,0.0000,0.0000,0.0000,37.5300,0.0000,30.0500,0.0000,26.5700,0.0000,0.0000,0.0000,27.3300,0.0000,0.0000,0.0000,32.7600,0.0000,0.0000,0.0000,41.3700,0.0000 +688573.SH,0.0000,0.0000,0.0000,60.3200,0.0000,0.0000,0.0000,85.5500,0.0000,0.0000,0.0000,66.3800,0.0000,0.0000,0.0000,16.9100,0.0000,0.0000,0.0000,36.4700,0.0000 +002291.SZ,0.0000,0.0000,0.0000,28.0200,0.0000,0.0000,0.0000,38.9300,0.0000,0.0000,0.0000,54.2400,0.0000,0.0000,0.0000,66.7100,0.0000,0.0000,0.0000,81.8200,0.0000 +831906.BJ,0.0000,0.0000,0.0000,23.1400,0.0000,0.0000,0.0000,23.4200,0.0000,30.5600,0.0000,27.7500,0.0000,0.0000,0.0000,22.6400,0.0000,0.0000,0.0000,22.8700,0.0000 +688667.SH,0.0000,0.0000,0.0000,40.0400,0.0000,0.0000,0.0000,43.4800,0.0000,0.0000,0.0000,44.8700,0.0000,0.0000,0.0000,34.9600,0.0000,0.0000,0.0000,39.2100,0.0000 +002841.SZ,0.0000,0.0000,0.0000,29.6400,0.0000,0.0000,0.0000,32.6000,0.0000,0.0000,0.0000,26.5900,0.0000,0.0000,0.0000,25.7000,0.0000,0.0000,0.0000,20.0600,0.0000 +301012.SZ,0.0000,0.0000,0.0000,66.2000,0.0000,0.0000,0.0000,58.2400,0.0000,0.0000,0.0000,58.2000,0.0000,0.0000,0.0000,28.0200,0.0000,0.0000,0.0000,42.6700,0.0000 +300785.SZ,0.0000,0.0000,0.0000,47.7400,0.0000,0.0000,0.0000,34.1600,0.0000,0.0000,0.0000,48.8900,0.0000,0.0000,0.0000,32.8000,0.0000,0.0000,0.0000,39.5800,0.0000 +688639.SH,0.0000,42.7000,0.0000,0.0000,0.0000,0.0000,0.0000,30.8900,0.0000,0.0000,0.0000,29.3100,0.0000,0.0000,0.0000,33.8100,0.0000,0.0000,0.0000,11.2600,0.0000 +002574.SZ,0.0000,0.0000,0.0000,87.1400,0.0000,0.0000,0.0000,94.7100,0.0000,0.0000,0.0000,95.1000,0.0000,0.0000,0.0000,93.6500,0.0000,0.0000,0.0000,81.9800,0.0000 +001270.SZ,0.0000,0.0000,0.0000,89.4000,0.0000,0.0000,0.0000,92.6000,0.0000,0.0000,0.0000,91.9700,0.0000,0.0000,0.0000,91.3300,0.0000,0.0000,0.0000,89.3900,0.0000 +600382.SH,0.0000,0.0000,0.0000,93.4400,0.0000,0.0000,0.0000,77.0300,0.0000,0.0000,0.0000,50.6900,0.0000,0.0000,0.0000,62.5200,0.0000,0.0000,0.0000,70.2300,0.0000 +002747.SZ,0.0000,0.0000,0.0000,17.7300,0.0000,0.0000,0.0000,17.2100,0.0000,0.0000,0.0000,15.0400,0.0000,0.0000,0.0000,16.1300,0.0000,0.0000,0.0000,17.8200,0.0000 +600679.SH,0.0000,0.0000,0.0000,12.2800,0.0000,0.0000,0.0000,14.4900,0.0000,0.0000,0.0000,11.6600,0.0000,0.0000,0.0000,18.2600,0.0000,0.0000,0.0000,13.7300,0.0000 +688659.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,26.4800,0.0000,0.0000,0.0000,26.0700,0.0000,0.0000,0.0000,28.9900,0.0000,0.0000,0.0000,29.0200,0.0000 +830809.BJ,0.0000,0.0000,0.0000,53.7700,0.0000,0.0000,0.0000,44.3600,0.0000,72.2600,0.0000,64.1900,0.0000,0.0000,0.0000,69.1700,0.0000,0.0000,0.0000,70.8200,0.0000 +000659.SZ,0.0000,0.0000,0.0000,28.2100,0.0000,0.0000,0.0000,26.3200,0.0000,0.0000,0.0000,29.5700,0.0000,0.0000,0.0000,30.4000,0.0000,0.0000,0.0000,45.5400,0.0000 +831627.BJ,0.0000,0.0000,0.0000,36.6100,0.0000,0.0000,0.0000,37.9400,0.0000,0.0000,0.0000,47.0900,0.0000,0.0000,0.0000,36.3800,0.0000,0.0000,0.0000,44.5500,0.0000 +920489.BJ,0.0000,0.0000,0.0000,59.8400,0.0000,0.0000,0.0000,64.8200,0.0000,0.0000,0.0000,57.8200,0.0000,0.0000,0.0000,52.4600,0.0000,0.0000,0.0000,57.5700,0.0000 +002638.SZ,0.0000,0.0000,0.0000,27.1400,0.0000,0.0000,0.0000,32.0400,0.0000,0.0000,0.0000,31.0300,0.0000,0.0000,0.0000,22.3300,0.0000,0.0000,0.0000,38.4100,0.0000 +002520.SZ,0.0000,0.0000,0.0000,26.5500,0.0000,0.0000,0.0000,18.1200,0.0000,0.0000,0.0000,22.9500,0.0000,0.0000,0.0000,23.0500,0.0000,0.0000,0.0000,15.2000,0.0000 +002045.SZ,0.0000,0.0000,0.0000,21.8400,0.0000,0.0000,0.0000,13.6000,0.0000,0.0000,0.0000,14.2800,0.0000,0.0000,0.0000,12.7200,0.0000,0.0000,0.0000,11.8400,0.0000 +300511.SZ,0.0000,0.0000,0.0000,16.2800,0.0000,0.0000,0.0000,14.7000,0.0000,0.0000,0.0000,12.5600,0.0000,0.0000,0.0000,15.7100,0.0000,0.0000,0.0000,12.6600,0.0000 +002329.SZ,0.0000,0.0000,0.0000,32.0500,0.0000,0.0000,0.0000,28.9200,0.0000,0.0000,0.0000,27.0300,0.0000,0.0000,0.0000,12.7600,0.0000,0.0000,0.0000,26.5300,0.0000 +000636.SZ,0.0000,0.0000,0.0000,23.8600,0.0000,0.0000,0.0000,26.2200,0.0000,0.0000,0.0000,17.5900,0.0000,0.0000,0.0000,22.2100,0.0000,0.0000,0.0000,21.2700,0.0000 +000777.SZ,0.0000,0.0000,0.0000,32.0600,0.0000,0.0000,0.0000,26.6600,0.0000,0.0000,0.0000,22.0400,0.0000,0.0000,0.0000,34.8500,0.0000,0.0000,0.0000,25.8700,0.0000 +300333.SZ,0.0000,0.0000,0.0000,79.0400,0.0000,0.0000,0.0000,86.6800,0.0000,0.0000,0.0000,54.4100,0.0000,0.0000,0.0000,83.0000,0.0000,0.0000,0.0000,76.5900,0.0000 +688272.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,69.1000,0.0000,0.0000,0.0000,65.3100,0.0000,0.0000,0.0000,50.8900,0.0000,0.0000,0.0000,46.7300,0.0000 +600386.SH,0.0000,0.0000,0.0000,62.5000,0.0000,0.0000,0.0000,66.7400,0.0000,0.0000,0.0000,60.5300,0.0000,0.0000,0.0000,58.7600,0.0000,0.0000,0.0000,52.7700,0.0000 +838163.BJ,0.0000,0.0000,0.0000,30.9500,0.0000,0.0000,0.0000,34.3700,0.0000,0.0000,0.0000,42.9400,0.0000,0.0000,0.0000,38.7800,0.0000,0.0000,0.0000,33.7600,0.0000 +688618.SH,0.0000,0.0000,0.0000,35.3800,0.0000,0.0000,0.0000,34.6600,0.0000,0.0000,0.0000,32.8800,0.0000,0.0000,0.0000,43.6700,0.0000,0.0000,0.0000,33.6000,0.0000 +301348.SZ,0.0000,0.0000,0.0000,41.3100,0.0000,0.0000,0.0000,42.1200,0.0000,0.0000,0.0000,38.3800,0.0000,0.0000,0.0000,32.0100,0.0000,0.0000,0.0000,34.0100,0.0000 +002467.SZ,0.0000,0.0000,0.0000,16.1500,0.0000,0.0000,0.0000,35.3300,0.0000,0.0000,0.0000,37.2800,0.0000,0.0000,0.0000,39.3000,0.0000,0.0000,0.0000,36.7900,0.0000 +301163.SZ,0.0000,0.0000,0.0000,33.3700,0.0000,41.1000,0.0000,0.0000,0.0000,0.0000,0.0000,40.3000,0.0000,0.0000,0.0000,54.7600,0.0000,0.0000,0.0000,44.9200,0.0000 +300817.SZ,0.0000,0.0000,0.0000,55.9900,0.0000,0.0000,0.0000,52.9700,0.0000,0.0000,0.0000,54.8700,0.0000,0.0000,0.0000,47.6100,0.0000,0.0000,0.0000,48.1300,0.0000 +833346.BJ,0.0000,0.0000,0.0000,25.3300,0.0000,24.4500,0.0000,24.0400,0.0000,0.0000,0.0000,27.2800,0.0000,0.0000,0.0000,32.5500,0.0000,0.0000,0.0000,29.6900,0.0000 +002164.SZ,0.0000,0.0000,0.0000,19.6900,0.0000,0.0000,0.0000,21.9700,0.0000,0.0000,0.0000,22.5000,0.0000,0.0000,0.0000,18.5100,0.0000,0.0000,0.0000,21.8600,0.0000 +300077.SZ,0.0000,0.0000,0.0000,51.1200,0.0000,0.0000,0.0000,60.0900,0.0000,0.0000,0.0000,56.4200,0.0000,0.0000,0.0000,41.8300,0.0000,0.0000,0.0000,44.2600,0.0000 +605186.SH,0.0000,0.0000,0.0000,43.3500,0.0000,0.0000,0.0000,71.5700,0.0000,0.0000,0.0000,49.4000,0.0000,0.0000,0.0000,52.2800,0.0000,0.0000,0.0000,81.4300,0.0000 +002760.SZ,0.0000,0.0000,0.0000,37.2800,0.0000,0.0000,0.0000,40.1700,0.0000,0.0000,0.0000,50.1900,0.0000,0.0000,0.0000,54.6500,0.0000,0.0000,0.0000,43.2000,0.0000 +001328.SZ,0.0000,0.0000,0.0000,41.4200,0.0000,0.0000,0.0000,37.1200,0.0000,37.0100,0.0000,0.0000,0.0000,0.0000,0.0000,41.7800,0.0000,0.0000,0.0000,34.7500,0.0000 +600370.SH,0.0000,0.0000,0.0000,45.8100,0.0000,0.0000,0.0000,41.9100,0.0000,0.0000,0.0000,45.7900,0.0000,0.0000,0.0000,35.2900,0.0000,0.0000,0.0000,20.4100,0.0000 +300603.SZ,0.0000,0.0000,0.0000,28.1500,0.0000,0.0000,0.0000,37.3100,0.0000,0.0000,0.0000,36.2500,0.0000,0.0000,0.0000,27.9400,0.0000,0.0000,0.0000,29.7000,0.0000 +836826.BJ,0.0000,0.0000,0.0000,43.2600,0.0000,0.0000,0.0000,34.5900,0.0000,0.0000,0.0000,45.6900,0.0000,0.0000,0.0000,28.0500,0.0000,0.0000,0.0000,28.3200,0.0000 +300394.SZ,0.0000,0.0000,0.0000,33.7300,0.0000,0.0000,0.0000,31.7300,0.0000,0.0000,0.0000,39.2400,0.0000,0.0000,0.0000,54.7300,0.0000,0.0000,0.0000,54.4100,0.0000 +688361.SH,0.0000,0.0000,0.0000,41.0700,0.0000,0.0000,0.0000,37.0800,0.0000,0.0000,0.0000,36.0300,0.0000,0.0000,0.0000,33.0400,0.0000,0.0000,0.0000,36.7300,0.0000 +688217.SH,0.0000,0.0000,0.0000,19.8100,0.0000,0.0000,0.0000,25.4900,0.0000,0.0000,0.0000,34.8400,0.0000,0.0000,0.0000,46.5800,0.0000,0.0000,0.0000,27.3300,0.0000 +301205.SZ,0.0000,0.0000,0.0000,46.5800,0.0000,0.0000,0.0000,43.6500,0.0000,0.0000,0.0000,33.2300,0.0000,0.0000,0.0000,35.2400,0.0000,0.0000,0.0000,35.2500,0.0000 +300980.SZ,0.0000,69.3800,0.0000,56.6200,0.0000,0.0000,0.0000,45.1000,0.0000,0.0000,0.0000,56.7100,0.0000,0.0000,0.0000,41.5200,0.0000,0.0000,0.0000,42.7500,0.0000 +688655.SH,0.0000,0.0000,0.0000,59.0200,0.0000,0.0000,0.0000,65.2300,0.0000,0.0000,0.0000,54.3400,0.0000,0.0000,0.0000,54.8400,0.0000,0.0000,0.0000,55.8900,0.0000 +688403.SH,0.0000,0.0000,0.0000,83.1400,0.0000,0.0000,0.0000,83.7900,0.0000,0.0000,0.0000,53.8400,0.0000,61.2600,0.0000,58.0200,0.0000,0.0000,0.0000,61.0700,0.0000 +830974.BJ,0.0000,0.0000,0.0000,88.0100,0.0000,0.0000,0.0000,80.2700,0.0000,78.6000,0.0000,64.0300,0.0000,0.0000,0.0000,85.7500,0.0000,0.0000,0.0000,79.7400,0.0000 +603076.SH,0.0000,0.0000,0.0000,22.8700,0.0000,0.0000,0.0000,35.6800,0.0000,0.0000,0.0000,20.9500,0.0000,0.0000,0.0000,19.1200,0.0000,0.0000,0.0000,13.6400,0.0000 +833075.BJ,0.0000,0.0000,0.0000,28.9500,0.0000,0.0000,0.0000,23.9900,0.0000,23.6400,0.0000,27.4000,0.0000,0.0000,0.0000,19.2900,0.0000,0.0000,0.0000,25.4000,0.0000 +603629.SH,0.0000,0.0000,0.0000,47.1000,0.0000,0.0000,0.0000,46.3000,0.0000,0.0000,0.0000,42.1300,0.0000,0.0000,0.0000,52.3000,0.0000,0.0000,0.0000,41.3400,0.0000 +002123.SZ,0.0000,0.0000,0.0000,40.6500,0.0000,0.0000,0.0000,31.4400,0.0000,0.0000,0.0000,17.3700,0.0000,0.0000,0.0000,17.8700,0.0000,0.0000,0.0000,29.8300,0.0000 +831152.BJ,0.0000,0.0000,0.0000,55.0700,0.0000,0.0000,0.0000,63.2000,0.0000,0.0000,0.0000,65.4400,0.0000,0.0000,0.0000,62.0700,0.0000,0.0000,0.0000,61.5500,0.0000 +300365.SZ,0.0000,0.0000,0.0000,23.2900,0.0000,0.0000,0.0000,21.4000,0.0000,0.0000,0.0000,19.3300,0.0000,0.0000,0.0000,17.6800,0.0000,0.0000,0.0000,27.8200,0.0000 +300848.SZ,0.0000,0.0000,0.0000,78.2100,0.0000,0.0000,0.0000,81.4500,0.0000,0.0000,0.0000,70.3400,0.0000,0.0000,0.0000,37.6000,0.0000,0.0000,0.0000,37.7400,0.0000 +002279.SZ,0.0000,0.0000,0.0000,80.7200,0.0000,0.0000,0.0000,79.5300,0.0000,0.0000,0.0000,80.4100,0.0000,0.0000,0.0000,86.2000,0.0000,0.0000,0.0000,95.0800,0.0000 +300410.SZ,0.0000,0.0000,0.0000,17.3800,0.0000,0.0000,0.0000,19.8100,0.0000,0.0000,0.0000,20.3300,0.0000,0.0000,0.0000,17.3000,0.0000,0.0000,0.0000,23.1700,0.0000 +301162.SZ,0.0000,0.0000,0.0000,41.2300,0.0000,36.5900,0.0000,0.0000,0.0000,0.0000,0.0000,25.7300,0.0000,0.0000,0.0000,26.4000,0.0000,0.0000,0.0000,22.6200,0.0000 +600255.SH,0.0000,0.0000,0.0000,42.0000,0.0000,0.0000,0.0000,56.4600,0.0000,0.0000,0.0000,48.7700,0.0000,0.0000,0.0000,46.8700,0.0000,0.0000,0.0000,58.4100,0.0000 +301169.SZ,0.0000,0.0000,0.0000,24.3200,0.0000,28.7500,0.0000,26.4900,0.0000,0.0000,0.0000,24.4400,0.0000,0.0000,0.0000,35.4700,0.0000,0.0000,0.0000,42.2100,0.0000 +000859.SZ,0.0000,0.0000,0.0000,36.3700,0.0000,0.0000,0.0000,38.8800,0.0000,0.0000,0.0000,30.3300,0.0000,0.0000,0.0000,25.3200,0.0000,0.0000,0.0000,19.4600,0.0000 +300370.SZ,0.0000,0.0000,0.0000,16.5300,0.0000,0.0000,0.0000,21.5700,0.0000,0.0000,0.0000,25.8700,0.0000,0.0000,0.0000,28.1300,0.0000,0.0000,0.0000,28.1400,0.0000 +002369.SZ,0.0000,0.0000,0.0000,19.2300,0.0000,0.0000,0.0000,16.7000,0.0000,0.0000,0.0000,39.5800,0.0000,0.0000,0.0000,37.5400,0.0000,0.0000,0.0000,18.2700,0.0000 +873693.BJ,0.0000,0.0000,0.0000,34.2900,0.0000,0.0000,0.0000,27.5000,0.0000,0.0000,0.0000,29.4200,0.0000,0.0000,0.0000,26.8300,0.0000,0.0000,0.0000,29.7400,0.0000 +600881.SH,0.0000,0.0000,0.0000,40.9200,0.0000,0.0000,0.0000,4.8000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,12.1800,0.0000,0.0000,0.0000,5.8700,0.0000 +300927.SZ,0.0000,0.0000,0.0000,56.5300,0.0000,0.0000,0.0000,74.6100,0.0000,0.0000,0.0000,74.1600,0.0000,0.0000,0.0000,54.7300,0.0000,0.0000,0.0000,34.9900,0.0000 +600768.SH,0.0000,0.0000,0.0000,84.7900,0.0000,0.0000,0.0000,99.9000,0.0000,0.0000,0.0000,96.5000,0.0000,0.0000,0.0000,97.5000,0.0000,0.0000,0.0000,91.9100,0.0000 +300606.SZ,0.0000,0.0000,0.0000,29.3200,0.0000,0.0000,0.0000,40.1500,0.0000,0.0000,0.0000,34.7900,0.0000,0.0000,0.0000,37.9300,0.0000,0.0000,0.0000,31.8200,0.0000 +300080.SZ,0.0000,0.0000,0.0000,77.0000,0.0000,0.0000,0.0000,73.2500,0.0000,0.0000,0.0000,70.0200,0.0000,0.0000,0.0000,77.1900,0.0000,0.0000,0.0000,55.9800,0.0000 +603829.SH,0.0000,0.0000,0.0000,28.4500,0.0000,0.0000,0.0000,25.4200,0.0000,0.0000,0.0000,22.2300,0.0000,0.0000,0.0000,21.8800,0.0000,0.0000,0.0000,14.2400,0.0000 +833454.BJ,0.0000,0.0000,0.0000,47.5100,0.0000,0.0000,0.0000,40.6700,0.0000,0.0000,0.0000,40.7400,0.0000,0.0000,0.0000,54.9100,0.0000,0.0000,0.0000,46.6700,0.0000 +301030.SZ,0.0000,0.0000,0.0000,46.4300,0.0000,0.0000,0.0000,38.2300,0.0000,0.0000,0.0000,21.1300,0.0000,0.0000,0.0000,21.2700,0.0000,0.0000,0.0000,24.7500,0.0000 +301252.SZ,0.0000,0.0000,0.0000,47.2300,0.0000,0.0000,0.0000,50.5200,0.0000,0.0000,0.0000,45.2500,0.0000,0.0000,0.0000,43.7200,0.0000,0.0000,0.0000,35.7100,0.0000 +300637.SZ,0.0000,0.0000,0.0000,27.4500,0.0000,0.0000,0.0000,23.5800,0.0000,0.0000,0.0000,16.2800,0.0000,0.0000,0.0000,17.1700,0.0000,0.0000,0.0000,25.4600,0.0000 +300279.SZ,0.0000,0.0000,0.0000,16.4100,0.0000,0.0000,0.0000,12.3800,0.0000,0.0000,0.0000,8.8200,0.0000,0.0000,0.0000,12.3300,0.0000,0.0000,0.0000,15.8000,0.0000 +920116.BJ,0.0000,0.0000,0.0000,53.8100,0.0000,0.0000,0.0000,69.3100,0.0000,0.0000,0.0000,38.5800,0.0000,47.5400,0.0000,32.9300,0.0000,34.2900,0.0000,28.0200,0.0000 +300320.SZ,0.0000,0.0000,0.0000,17.8400,0.0000,0.0000,0.0000,27.0700,0.0000,0.0000,0.0000,29.1200,0.0000,0.0000,0.0000,29.3100,0.0000,0.0000,0.0000,21.9700,0.0000 +300053.SZ,0.0000,0.0000,0.0000,20.2600,0.0000,0.0000,0.0000,32.0300,0.0000,0.0000,0.0000,26.4200,0.0000,0.0000,0.0000,21.9400,0.0000,0.0000,0.0000,29.3100,0.0000 +300081.SZ,0.0000,0.0000,0.0000,48.0900,0.0000,0.0000,0.0000,58.7800,0.0000,0.0000,0.0000,60.4700,0.0000,0.0000,0.0000,44.2300,0.0000,0.0000,0.0000,31.9300,0.0000 +301032.SZ,0.0000,0.0000,0.0000,30.6900,0.0000,0.0000,0.0000,30.8200,0.0000,0.0000,0.0000,30.1700,0.0000,0.0000,0.0000,31.8200,0.0000,0.0000,0.0000,28.0900,0.0000 +832471.BJ,0.0000,0.0000,0.0000,57.6300,0.0000,0.0000,0.0000,48.4600,0.0000,0.0000,46.6400,47.2300,0.0000,0.0000,0.0000,64.6200,0.0000,0.0000,0.0000,56.0100,0.0000 +301099.SZ,0.0000,0.0000,0.0000,79.8400,0.0000,77.0400,0.0000,67.8700,0.0000,0.0000,0.0000,70.1300,0.0000,0.0000,0.0000,64.2700,0.0000,0.0000,0.0000,57.1900,0.0000 +603803.SH,0.0000,0.0000,0.0000,49.0200,0.0000,0.0000,0.0000,46.7000,0.0000,0.0000,0.0000,57.0000,0.0000,0.0000,0.0000,45.0000,0.0000,0.0000,0.0000,43.0000,0.0000 +600996.SH,0.0000,0.0000,0.0000,18.7800,0.0000,0.0000,0.0000,15.7800,0.0000,0.0000,0.0000,32.0500,0.0000,0.0000,0.0000,30.8500,0.0000,0.0000,0.0000,28.9800,0.0000 +300729.SZ,0.0000,0.0000,0.0000,20.7400,0.0000,0.0000,0.0000,20.9000,0.0000,0.0000,0.0000,36.1000,0.0000,0.0000,0.0000,35.5700,0.0000,0.0000,0.0000,43.4200,0.0000 +300380.SZ,0.0000,0.0000,0.0000,42.7300,0.0000,0.0000,0.0000,40.1800,0.0000,0.0000,0.0000,43.3600,0.0000,0.0000,0.0000,26.9300,0.0000,0.0000,0.0000,0.0000,0.0000 +002265.SZ,0.0000,0.0000,0.0000,19.1700,0.0000,0.0000,0.0000,33.5900,0.0000,0.0000,0.0000,13.7600,0.0000,0.0000,0.0000,25.7100,0.0000,0.0000,0.0000,17.2800,0.0000 +301261.SZ,0.0000,0.0000,0.0000,62.4100,0.0000,0.0000,0.0000,59.2500,0.0000,0.0000,0.0000,64.1000,0.0000,0.0000,0.0000,68.2300,0.0000,0.0000,0.0000,67.5600,0.0000 +601212.SH,0.0000,0.0000,0.0000,35.6400,0.0000,0.0000,0.0000,34.0100,0.0000,0.0000,0.0000,35.1100,0.0000,0.0000,0.0000,32.7800,0.0000,0.0000,0.0000,34.2300,0.0000 +300106.SZ,0.0000,0.0000,0.0000,51.9500,0.0000,0.0000,0.0000,60.6200,0.0000,0.0000,0.0000,42.0600,0.0000,0.0000,0.0000,40.2500,0.0000,0.0000,0.0000,43.4600,0.0000 +872953.BJ,0.0000,0.0000,0.0000,50.9200,0.0000,0.0000,0.0000,47.3700,0.0000,68.5000,0.0000,44.3300,0.0000,0.0000,0.0000,53.2600,0.0000,0.0000,0.0000,48.9900,0.0000 +301091.SZ,0.0000,0.0000,0.0000,18.4600,0.0000,0.0000,0.0000,28.1600,0.0000,0.0000,0.0000,21.3800,0.0000,0.0000,0.0000,18.1000,0.0000,0.0000,0.0000,16.7100,0.0000 +000670.SZ,0.0000,0.0000,0.0000,93.6900,0.0000,0.0000,0.0000,92.4900,0.0000,0.0000,0.0000,75.8400,0.0000,0.0000,0.0000,83.0500,0.0000,0.0000,0.0000,67.4400,0.0000 +600966.SH,0.0000,0.0000,0.0000,28.2600,0.0000,0.0000,0.0000,41.2000,0.0000,0.0000,0.0000,48.5300,0.0000,0.0000,0.0000,47.3900,0.0000,0.0000,0.0000,45.8000,0.0000 +300199.SZ,0.0000,0.0000,0.0000,39.2000,0.0000,0.0000,0.0000,20.3100,0.0000,0.0000,0.0000,36.7700,0.0000,0.0000,0.0000,23.3100,0.0000,0.0000,0.0000,46.4900,0.0000 +002766.SZ,0.0000,0.0000,0.0000,15.4400,0.0000,0.0000,0.0000,12.6000,0.0000,0.0000,0.0000,24.5000,0.0000,0.0000,0.0000,34.2200,0.0000,0.0000,0.0000,38.8100,0.0000 +688699.SH,0.0000,0.0000,0.0000,52.1000,0.0000,0.0000,0.0000,58.7400,0.0000,0.0000,0.0000,63.9200,0.0000,0.0000,0.0000,54.8600,0.0000,0.0000,0.0000,57.3900,0.0000 +002313.SZ,0.0000,0.0000,0.0000,24.2300,0.0000,0.0000,0.0000,39.7100,0.0000,0.0000,0.0000,31.6800,0.0000,0.0000,0.0000,25.8000,0.0000,0.0000,0.0000,40.1500,0.0000 +300931.SZ,0.0000,0.0000,0.0000,33.8700,0.0000,0.0000,0.0000,34.2800,0.0000,0.0000,0.0000,31.2200,0.0000,0.0000,0.0000,29.0100,0.0000,0.0000,0.0000,30.1600,0.0000 +600390.SH,0.0000,0.0000,0.0000,36.6100,0.0000,0.0000,0.0000,52.8300,0.0000,0.0000,0.0000,50.6900,0.0000,0.0000,0.0000,69.0600,0.0000,0.0000,0.0000,33.1700,0.0000 +000779.SZ,0.0000,0.0000,0.0000,24.5100,0.0000,0.0000,0.0000,20.3000,0.0000,0.0000,0.0000,29.4900,0.0000,0.0000,0.0000,22.1300,0.0000,0.0000,0.0000,11.4500,0.0000 +300713.SZ,0.0000,0.0000,0.0000,23.7500,0.0000,0.0000,0.0000,28.1900,0.0000,0.0000,0.0000,28.6400,0.0000,0.0000,0.0000,25.3800,0.0000,0.0000,0.0000,22.5600,0.0000 +603366.SH,0.0000,0.0000,0.0000,8.4700,0.0000,0.0000,0.0000,6.9600,0.0000,0.0000,0.0000,8.2600,0.0000,0.0000,0.0000,7.6000,0.0000,0.0000,0.0000,10.2200,0.0000 +300915.SZ,0.0000,0.0000,0.0000,35.1500,0.0000,0.0000,0.0000,37.1100,0.0000,0.0000,0.0000,35.9200,0.0000,0.0000,0.0000,30.0200,0.0000,0.0000,0.0000,20.5800,0.0000 +603308.SH,0.0000,0.0000,0.0000,35.9100,0.0000,0.0000,0.0000,30.2800,0.0000,0.0000,0.0000,40.2600,0.0000,0.0000,0.0000,33.2400,0.0000,0.0000,0.0000,42.6700,0.0000 +688601.SH,0.0000,0.0000,0.0000,74.5700,0.0000,0.0000,0.0000,61.6100,0.0000,0.0000,0.0000,51.2400,0.0000,0.0000,0.0000,54.9200,0.0000,0.0000,0.0000,61.7100,0.0000 +603048.SH,0.0000,0.0000,0.0000,57.5100,0.0000,52.6000,0.0000,54.2200,0.0000,0.0000,0.0000,54.4400,0.0000,0.0000,0.0000,62.2300,0.0000,0.0000,0.0000,52.0400,0.0000 +603116.SH,0.0000,0.0000,0.0000,11.2100,0.0000,0.0000,0.0000,13.1600,0.0000,0.0000,0.0000,12.1600,0.0000,0.0000,0.0000,13.9600,0.0000,0.0000,0.0000,12.2300,0.0000 +301665.SZ,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,20.7600,0.0000,0.0000,0.0000,22.6900,0.0000,0.0000,0.0000,24.1200,0.0000,23.3800,0.0000,26.3600,0.0000 +603585.SH,0.0000,0.0000,0.0000,40.8700,0.0000,0.0000,0.0000,41.2700,0.0000,0.0000,0.0000,42.2100,0.0000,0.0000,0.0000,24.6800,0.0000,0.0000,0.0000,30.4400,0.0000 +300576.SZ,0.0000,0.0000,0.0000,37.3000,0.0000,0.0000,0.0000,35.8400,0.0000,0.0000,0.0000,31.8500,0.0000,0.0000,0.0000,32.8200,0.0000,0.0000,0.0000,27.5600,0.0000 +300134.SZ,0.0000,0.0000,0.0000,16.6800,0.0000,0.0000,0.0000,18.7900,0.0000,0.0000,0.0000,19.5000,0.0000,0.0000,0.0000,16.6700,0.0000,0.0000,0.0000,19.4900,0.0000 +831396.BJ,0.0000,0.0000,0.0000,24.0100,0.0000,0.0000,0.0000,22.3100,0.0000,22.0900,0.0000,14.9000,0.0000,18.4000,0.0000,19.0700,0.0000,0.0000,0.0000,19.5500,0.0000 +000757.SZ,0.0000,0.0000,0.0000,81.5100,0.0000,0.0000,0.0000,81.4900,0.0000,0.0000,0.0000,78.7600,0.0000,0.0000,0.0000,82.0000,0.0000,0.0000,0.0000,75.8400,0.0000 +300420.SZ,0.0000,0.0000,0.0000,20.2900,0.0000,0.0000,0.0000,26.2300,0.0000,0.0000,0.0000,20.4400,0.0000,0.0000,0.0000,13.9700,0.0000,0.0000,0.0000,8.5900,0.0000 +301157.SZ,0.0000,0.0000,0.0000,44.3500,0.0000,0.0000,0.0000,41.4500,0.0000,20.3200,0.0000,43.5400,0.0000,0.0000,0.0000,43.2600,0.0000,0.0000,0.0000,55.9700,0.0000 +002209.SZ,0.0000,0.0000,0.0000,16.8400,0.0000,0.0000,0.0000,18.9700,0.0000,0.0000,0.0000,19.3800,0.0000,0.0000,0.0000,18.7200,0.0000,0.0000,0.0000,21.6400,0.0000 +688113.SH,0.0000,0.0000,0.0000,29.1100,0.0000,0.0000,0.0000,22.9600,0.0000,0.0000,0.0000,21.0600,0.0000,0.0000,0.0000,18.4300,0.0000,0.0000,0.0000,21.9300,0.0000 +300045.SZ,0.0000,0.0000,0.0000,22.8800,0.0000,0.0000,0.0000,12.1800,0.0000,0.0000,0.0000,17.3100,0.0000,0.0000,0.0000,46.6800,0.0000,0.0000,0.0000,34.7300,0.0000 +603966.SH,0.0000,0.0000,0.0000,17.6200,0.0000,0.0000,0.0000,18.1500,0.0000,0.0000,0.0000,19.6200,0.0000,0.0000,0.0000,19.2000,0.0000,0.0000,0.0000,16.2500,0.0000 +600601.SH,0.0000,0.0000,0.0000,14.2300,0.0000,0.0000,0.0000,23.5000,0.0000,0.0000,0.0000,25.7400,0.0000,0.0000,0.0000,38.7100,0.0000,0.0000,0.0000,40.8400,0.0000 +873527.BJ,0.0000,0.0000,0.0000,43.7700,0.0000,0.0000,0.0000,42.1200,0.0000,0.0000,0.0000,38.5000,0.0000,0.0000,0.0000,39.6000,0.0000,0.0000,0.0000,38.3000,0.0000 +835857.BJ,0.0000,0.0000,0.0000,20.3300,0.0000,0.0000,0.0000,30.8500,0.0000,30.9400,0.0000,24.4500,0.0000,0.0000,0.0000,25.7200,0.0000,0.0000,0.0000,30.5600,0.0000 +836422.BJ,0.0000,0.0000,0.0000,63.1200,0.0000,0.0000,0.0000,43.4600,0.0000,53.4600,0.0000,50.3500,0.0000,0.0000,0.0000,46.3800,0.0000,0.0000,0.0000,42.3900,0.0000 +000810.SZ,0.0000,0.0000,0.0000,17.9800,0.0000,0.0000,0.0000,17.9500,0.0000,0.0000,0.0000,23.1100,0.0000,0.0000,0.0000,20.5600,0.0000,0.0000,0.0000,21.6000,0.0000 +301526.SZ,0.0000,0.0000,0.0000,18.5100,0.0000,0.0000,0.0000,13.4800,0.0000,0.0000,0.0000,18.8800,0.0000,16.2900,0.0000,12.7200,0.0000,0.0000,0.0000,21.4100,0.0000 +300427.SZ,0.0000,0.0000,0.0000,19.2800,0.0000,0.0000,0.0000,20.0000,0.0000,0.0000,0.0000,25.8700,0.0000,0.0000,0.0000,19.7900,0.0000,0.0000,0.0000,12.6300,0.0000 +300079.SZ,0.0000,0.0000,0.0000,40.9300,0.0000,0.0000,0.0000,38.0000,0.0000,0.0000,0.0000,42.9200,0.0000,0.0000,0.0000,40.3400,0.0000,0.0000,0.0000,25.7600,0.0000 +300666.SZ,0.0000,0.0000,0.0000,61.5400,0.0000,0.0000,0.0000,52.0400,0.0000,0.0000,0.0000,51.8500,0.0000,0.0000,0.0000,48.6200,0.0000,0.0000,0.0000,53.7500,0.0000 +600721.SH,0.0000,0.0000,0.0000,29.7100,0.0000,0.0000,0.0000,26.8600,0.0000,0.0000,0.0000,11.8700,0.0000,0.0000,0.0000,19.1600,0.0000,0.0000,0.0000,22.4400,0.0000 +837174.BJ,0.0000,0.0000,0.0000,30.4500,0.0000,0.0000,0.0000,34.7600,0.0000,41.7700,0.0000,39.5800,0.0000,0.0000,0.0000,36.1400,0.0000,0.0000,0.0000,33.6300,0.0000 +688143.SH,0.0000,0.0000,0.0000,67.0000,0.0000,0.0000,0.0000,68.1900,0.0000,60.4500,0.0000,50.4500,0.0000,0.0000,0.0000,49.9100,0.0000,0.0000,0.0000,26.2600,0.0000 +300478.SZ,0.0000,0.0000,0.0000,39.4900,0.0000,0.0000,0.0000,32.9100,0.0000,0.0000,0.0000,48.7200,0.0000,0.0000,0.0000,57.1400,0.0000,0.0000,0.0000,73.8700,0.0000 +601279.SH,0.0000,16.9000,0.0000,0.0000,0.0000,0.0000,0.0000,17.1200,0.0000,0.0000,0.0000,16.9100,0.0000,0.0000,0.0000,13.8400,0.0000,0.0000,0.0000,14.9800,0.0000 +835368.BJ,0.0000,0.0000,0.0000,20.6500,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,15.5400,0.0000,0.0000,0.0000,14.9900,0.0000,0.0000,0.0000,21.2400,0.0000 +688053.SH,0.0000,0.0000,0.0000,65.3700,0.0000,0.0000,0.0000,56.3600,0.0000,0.0000,0.0000,46.7800,0.0000,0.0000,0.0000,47.8800,0.0000,0.0000,0.0000,59.9900,0.0000 +873833.BJ,0.0000,0.0000,0.0000,33.7900,0.0000,0.0000,0.0000,33.3000,0.0000,0.0000,0.0000,35.9000,0.0000,42.4200,0.0000,44.5000,0.0000,0.0000,0.0000,39.5300,0.0000 +688529.SH,0.0000,0.0000,0.0000,17.5500,0.0000,0.0000,0.0000,18.4400,0.0000,0.0000,0.0000,18.0400,0.0000,0.0000,0.0000,27.1100,0.0000,0.0000,0.0000,29.0700,0.0000 +603688.SH,0.0000,0.0000,0.0000,51.4000,0.0000,0.0000,0.0000,41.6100,0.0000,0.0000,0.0000,46.2000,0.0000,0.0000,0.0000,47.5600,0.0000,0.0000,0.0000,43.0200,0.0000 +835579.BJ,0.0000,0.0000,0.0000,32.6900,0.0000,0.0000,0.0000,29.4900,0.0000,46.4500,0.0000,37.9300,0.0000,27.8200,0.0000,28.0200,0.0000,0.0000,0.0000,19.8100,0.0000 +300583.SZ,0.0000,0.0000,0.0000,36.0900,0.0000,0.0000,0.0000,25.8200,0.0000,0.0000,0.0000,33.4800,0.0000,0.0000,0.0000,27.0900,0.0000,0.0000,0.0000,26.5300,0.0000 +835640.BJ,0.0000,0.0000,0.0000,39.5400,0.0000,0.0000,0.0000,24.8000,0.0000,0.0000,0.0000,23.6200,0.0000,0.0000,0.0000,24.2000,0.0000,0.0000,0.0000,27.6800,0.0000 +301578.SZ,0.0000,0.0000,0.0000,22.5100,0.0000,0.0000,0.0000,17.8200,0.0000,0.0000,0.0000,20.4200,0.0000,23.8300,0.0000,21.0600,0.0000,0.0000,0.0000,14.9600,0.0000 +601003.SH,0.0000,0.0000,0.0000,48.4000,0.0000,0.0000,0.0000,38.7100,0.0000,0.0000,0.0000,30.8800,0.0000,0.0000,0.0000,31.2600,0.0000,0.0000,0.0000,30.2200,0.0000 +002108.SZ,0.0000,0.0000,0.0000,68.5300,0.0000,0.0000,0.0000,63.9400,0.0000,0.0000,0.0000,63.8000,0.0000,0.0000,0.0000,61.8100,0.0000,0.0000,0.0000,69.6900,0.0000 +688088.SH,0.0000,0.0000,0.0000,39.7600,0.0000,0.0000,0.0000,63.2600,0.0000,0.0000,0.0000,22.4100,0.0000,0.0000,0.0000,45.1600,0.0000,0.0000,0.0000,33.5000,0.0000 +871970.BJ,0.0000,0.0000,0.0000,20.1200,0.0000,22.5900,0.0000,22.8100,0.0000,0.0000,0.0000,30.4300,0.0000,0.0000,0.0000,45.9900,0.0000,0.0000,0.0000,34.5600,0.0000 +002875.SZ,0.0000,0.0000,0.0000,18.2000,0.0000,19.9800,0.0000,17.6000,0.0000,0.0000,0.0000,16.1600,0.0000,0.0000,0.0000,27.4100,0.0000,0.0000,0.0000,21.7700,0.0000 +605020.SH,0.0000,0.0000,0.0000,26.9600,0.0000,0.0000,0.0000,22.3300,0.0000,0.0000,0.0000,21.9400,0.0000,0.0000,0.0000,20.6300,0.0000,0.0000,0.0000,24.8400,0.0000 +835438.BJ,0.0000,0.0000,0.0000,53.3900,0.0000,0.0000,0.0000,34.8900,0.0000,44.7200,0.0000,49.7500,0.0000,64.5100,0.0000,59.9000,0.0000,0.0000,0.0000,29.3200,0.0000 +603272.SH,0.0000,0.0000,0.0000,65.8500,0.0000,0.0000,0.0000,65.9900,0.0000,0.0000,0.0000,47.2100,0.0000,0.0000,0.0000,40.6300,0.0000,0.0000,0.0000,26.8400,0.0000 +002921.SZ,0.0000,0.0000,0.0000,36.2900,0.0000,0.0000,0.0000,25.8600,0.0000,0.0000,0.0000,33.6900,0.0000,0.0000,0.0000,27.0200,0.0000,0.0000,0.0000,29.9700,0.0000 +830839.BJ,0.0000,0.0000,0.0000,42.9900,0.0000,0.0000,0.0000,47.8700,0.0000,0.0000,0.0000,48.4500,0.0000,0.0000,0.0000,45.5100,0.0000,0.0000,0.0000,39.3700,0.0000 +603151.SH,0.0000,0.0000,0.0000,34.2900,0.0000,0.0000,0.0000,35.3300,0.0000,0.0000,0.0000,40.0700,0.0000,0.0000,0.0000,31.7900,0.0000,0.0000,0.0000,19.0000,0.0000 +300512.SZ,0.0000,0.0000,0.0000,18.6700,0.0000,0.0000,0.0000,16.2100,0.0000,0.0000,0.0000,13.7700,0.0000,0.0000,0.0000,12.1600,0.0000,0.0000,0.0000,13.3400,0.0000 +832469.BJ,0.0000,0.0000,0.0000,41.6300,0.0000,0.0000,0.0000,33.6100,0.0000,43.5900,0.0000,42.3800,0.0000,0.0000,0.0000,40.2100,0.0000,0.0000,0.0000,39.1800,0.0000 +688102.SH,0.0000,0.0000,0.0000,64.5700,0.0000,69.3600,0.0000,70.8300,0.0000,0.0000,0.0000,66.7400,0.0000,0.0000,0.0000,64.6300,0.0000,0.0000,0.0000,65.9700,0.0000 +688327.SH,0.0000,0.0000,0.0000,25.3400,0.0000,0.0000,0.0000,45.4400,0.0000,0.0000,0.0000,66.7200,0.0000,0.0000,0.0000,37.2700,0.0000,0.0000,0.0000,56.6000,0.0000 +002109.SZ,0.0000,0.0000,0.0000,63.9300,0.0000,0.0000,0.0000,68.8600,0.0000,0.0000,0.0000,67.3600,0.0000,0.0000,0.0000,71.7900,0.0000,0.0000,0.0000,67.0400,0.0000 +688668.SH,0.0000,0.0000,0.0000,41.7400,0.0000,0.0000,0.0000,30.6400,0.0000,0.0000,0.0000,26.5000,0.0000,0.0000,0.0000,28.8800,0.0000,0.0000,0.0000,30.2100,0.0000 +301171.SZ,0.0000,0.0000,0.0000,90.7200,0.0000,0.0000,0.0000,94.2600,0.0000,0.0000,0.0000,87.2200,0.0000,0.0000,0.0000,79.5400,0.0000,0.0000,0.0000,83.5600,0.0000 +832278.BJ,0.0000,0.0000,0.0000,31.4600,0.0000,0.0000,0.0000,22.4500,0.0000,0.0000,0.0000,30.1300,0.0000,0.0000,0.0000,30.9400,0.0000,0.0000,0.0000,28.8800,0.0000 +002691.SZ,0.0000,0.0000,0.0000,14.3000,0.0000,0.0000,0.0000,10.9500,0.0000,0.0000,0.0000,11.8600,0.0000,0.0000,0.0000,11.0700,0.0000,0.0000,0.0000,20.6900,0.0000 +300136.SZ,0.0000,0.0000,0.0000,18.4200,0.0000,0.0000,0.0000,24.9800,0.0000,0.0000,0.0000,22.7200,0.0000,0.0000,0.0000,18.1800,0.0000,0.0000,0.0000,17.0800,0.0000 +688013.SH,0.0000,0.0000,0.0000,86.1500,0.0000,0.0000,0.0000,81.2600,0.0000,0.0000,0.0000,81.6000,0.0000,0.0000,0.0000,84.6300,0.0000,0.0000,0.0000,76.3700,0.0000 +000965.SZ,0.0000,0.0000,0.0000,90.2900,0.0000,0.0000,0.0000,77.3400,0.0000,0.0000,0.0000,66.2600,0.0000,0.0000,0.0000,68.2200,0.0000,0.0000,0.0000,87.2200,0.0000 +002909.SZ,0.0000,0.0000,0.0000,33.7800,0.0000,0.0000,0.0000,39.3700,0.0000,0.0000,0.0000,45.7400,0.0000,0.0000,0.0000,37.4200,0.0000,0.0000,0.0000,33.9400,0.0000 +002474.SZ,0.0000,0.0000,0.0000,20.3000,0.0000,0.0000,0.0000,26.6400,0.0000,0.0000,0.0000,17.6700,0.0000,0.0000,0.0000,28.0500,0.0000,0.0000,0.0000,26.9300,0.0000 +301320.SZ,0.0000,0.0000,0.0000,39.9400,0.0000,0.0000,0.0000,35.3200,0.0000,0.0000,0.0000,30.5200,0.0000,0.0000,0.0000,26.1700,0.0000,0.0000,0.0000,23.1700,0.0000 +600330.SH,0.0000,0.0000,0.0000,13.0100,0.0000,0.0000,0.0000,12.4800,0.0000,0.0000,0.0000,10.7500,0.0000,0.0000,0.0000,15.0400,0.0000,0.0000,0.0000,17.6200,0.0000 +301539.SZ,0.0000,0.0000,0.0000,93.4700,0.0000,0.0000,0.0000,93.3200,0.0000,0.0000,0.0000,91.3500,0.0000,92.9100,0.0000,89.8100,0.0000,0.0000,0.0000,91.9300,0.0000 +300902.SZ,0.0000,0.0000,0.0000,27.2800,0.0000,0.0000,0.0000,18.7300,0.0000,0.0000,0.0000,25.2700,0.0000,0.0000,0.0000,20.3000,0.0000,0.0000,0.0000,25.2300,0.0000 +603578.SH,0.0000,0.0000,0.0000,30.7000,0.0000,0.0000,0.0000,31.8500,0.0000,0.0000,0.0000,34.8200,0.0000,0.0000,0.0000,38.3500,0.0000,0.0000,0.0000,25.6000,0.0000 +688296.SH,0.0000,0.0000,0.0000,15.0200,0.0000,0.0000,0.0000,14.8200,0.0000,0.0000,0.0000,27.0900,0.0000,0.0000,0.0000,22.9300,0.0000,0.0000,0.0000,15.3600,0.0000 +300355.SZ,0.0000,0.0000,0.0000,11.0000,0.0000,0.0000,0.0000,20.6500,0.0000,0.0000,0.0000,10.7400,0.0000,0.0000,0.0000,10.4800,0.0000,0.0000,0.0000,12.8000,0.0000 +300252.SZ,0.0000,0.0000,0.0000,61.7700,0.0000,0.0000,0.0000,77.6300,0.0000,0.0000,0.0000,72.7100,0.0000,0.0000,0.0000,75.0500,0.0000,0.0000,0.0000,77.1300,0.0000 +002162.SZ,0.0000,0.0000,0.0000,38.0300,0.0000,0.0000,0.0000,25.0500,0.0000,0.0000,0.0000,26.9200,0.0000,0.0000,0.0000,24.3200,0.0000,0.0000,0.0000,29.6500,0.0000 +000541.SZ,0.0000,0.0000,0.0000,10.1500,0.0000,0.0000,0.0000,6.6700,0.0000,0.0000,0.0000,14.8100,0.0000,0.0000,0.0000,11.9400,0.0000,0.0000,0.0000,10.0600,0.0000 +002178.SZ,0.0000,0.0000,0.0000,10.8900,0.0000,0.0000,0.0000,13.1300,0.0000,0.0000,0.0000,22.6900,0.0000,0.0000,0.0000,22.9800,0.0000,0.0000,0.0000,18.9400,0.0000 +300269.SZ,0.0000,0.0000,0.0000,25.0500,0.0000,0.0000,0.0000,31.6500,0.0000,0.0000,0.0000,26.8000,0.0000,0.0000,0.0000,37.5800,0.0000,0.0000,0.0000,32.9100,0.0000 +300192.SZ,0.0000,0.0000,0.0000,28.4600,0.0000,0.0000,0.0000,23.9000,0.0000,0.0000,0.0000,40.9900,0.0000,0.0000,0.0000,35.4700,0.0000,0.0000,0.0000,41.4300,0.0000 +605196.SH,0.0000,0.0000,0.0000,62.8500,0.0000,0.0000,0.0000,56.2100,0.0000,0.0000,0.0000,50.1700,0.0000,0.0000,0.0000,49.3300,0.0000,0.0000,0.0000,47.3400,0.0000 +300853.SZ,0.0000,0.0000,0.0000,35.5600,0.0000,0.0000,0.0000,29.1000,0.0000,0.0000,0.0000,26.9200,0.0000,0.0000,0.0000,38.6300,0.0000,0.0000,0.0000,27.0600,0.0000 +000790.SZ,0.0000,0.0000,0.0000,40.1000,0.0000,0.0000,0.0000,40.3700,0.0000,0.0000,0.0000,26.6500,0.0000,0.0000,0.0000,18.2900,0.0000,0.0000,0.0000,23.6500,0.0000 +002796.SZ,0.0000,0.0000,0.0000,18.7500,0.0000,0.0000,0.0000,21.4400,0.0000,0.0000,0.0000,17.2200,0.0000,0.0000,0.0000,16.7400,0.0000,0.0000,0.0000,15.0200,0.0000 +300061.SZ,0.0000,0.0000,0.0000,35.0600,0.0000,0.0000,0.0000,17.4700,0.0000,0.0000,0.0000,48.8300,0.0000,0.0000,0.0000,45.3900,0.0000,0.0000,0.0000,31.3900,0.0000 +300809.SZ,0.0000,0.0000,0.0000,32.5200,0.0000,0.0000,0.0000,28.5400,0.0000,0.0000,0.0000,35.9700,0.0000,0.0000,0.0000,41.8000,0.0000,0.0000,0.0000,31.8500,0.0000 +000633.SZ,0.0000,0.0000,0.0000,61.1600,0.0000,0.0000,0.0000,67.9700,0.0000,0.0000,0.0000,53.8900,0.0000,0.0000,0.0000,67.4700,0.0000,0.0000,0.0000,64.9800,0.0000 +600026.SH,0.0000,0.0000,0.0000,77.4200,0.0000,0.0000,0.0000,78.1600,0.0000,0.0000,0.0000,71.9800,0.0000,0.0000,0.0000,77.3200,0.0000,0.0000,0.0000,81.6000,0.0000 +000839.SZ,0.0000,0.0000,0.0000,23.6100,0.0000,0.0000,0.0000,23.5900,0.0000,0.0000,0.0000,39.5200,0.0000,0.0000,0.0000,38.9300,0.0000,0.0000,0.0000,55.2100,0.0000 +301056.SZ,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,28.6800,0.0000,0.0000,0.0000,31.9400,0.0000,0.0000,0.0000,27.3600,0.0000,0.0000,0.0000,23.4900,0.0000 +300084.SZ,0.0000,0.0000,0.0000,13.9200,0.0000,0.0000,0.0000,18.1600,0.0000,0.0000,0.0000,16.9900,0.0000,0.0000,0.0000,21.4400,0.0000,0.0000,0.0000,16.7200,0.0000 +300502.SZ,0.0000,0.0000,0.0000,39.8400,0.0000,0.0000,0.0000,50.7100,0.0000,0.0000,0.0000,41.3100,0.0000,0.0000,0.0000,40.6100,0.0000,0.0000,0.0000,45.2000,0.0000 +002822.SZ,0.0000,0.0000,0.0000,13.1600,0.0000,0.0000,0.0000,13.4700,0.0000,0.0000,0.0000,10.2600,0.0000,0.0000,0.0000,13.1400,0.0000,0.0000,0.0000,15.9300,0.0000 +002406.SZ,0.0000,0.0000,0.0000,47.6100,0.0000,0.0000,0.0000,40.4600,0.0000,0.0000,0.0000,59.3000,0.0000,0.0000,0.0000,50.7500,0.0000,0.0000,0.0000,46.6100,0.0000 +300565.SZ,0.0000,0.0000,0.0000,40.4300,0.0000,0.0000,0.0000,40.8200,0.0000,0.0000,0.0000,41.7300,0.0000,0.0000,0.0000,36.5200,0.0000,0.0000,0.0000,32.4700,0.0000 +001266.SZ,0.0000,0.0000,0.0000,31.1100,0.0000,0.0000,0.0000,27.3500,0.0000,0.0000,0.0000,21.4300,0.0000,0.0000,0.0000,19.5800,0.0000,0.0000,0.0000,49.7300,0.0000 +301428.SZ,0.0000,0.0000,0.0000,7.2100,0.0000,0.0000,0.0000,7.9400,0.0000,0.0000,0.0000,10.1200,0.0000,0.0000,0.0000,24.7900,0.0000,0.0000,0.0000,21.3400,0.0000 +001279.SZ,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,73.6300,0.0000,0.0000,0.0000,77.0500,0.0000,0.0000,0.0000,75.6300,0.0000,0.0000,0.0000,70.6600,0.0000 +688448.SH,0.0000,0.0000,0.0000,33.0000,0.0000,0.0000,0.0000,22.3500,0.0000,0.0000,0.0000,22.4600,0.0000,0.0000,0.0000,23.9000,0.0000,0.0000,0.0000,20.0400,0.0000 +600258.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,9.4300,0.0000,0.0000,0.0000,9.0000,0.0000 +688121.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,55.7500,0.0000,0.0000,0.0000,31.3600,0.0000,0.0000,0.0000,36.9800,0.0000,0.0000,0.0000,25.5600,0.0000 +002846.SZ,0.0000,0.0000,0.0000,42.5600,0.0000,0.0000,0.0000,42.0700,0.0000,0.0000,0.0000,48.4900,0.0000,0.0000,0.0000,59.1400,0.0000,0.0000,0.0000,55.2600,0.0000 +002552.SZ,0.0000,0.0000,0.0000,63.5000,0.0000,0.0000,0.0000,74.3800,0.0000,0.0000,0.0000,36.4100,0.0000,0.0000,0.0000,69.3200,0.0000,0.0000,0.0000,51.1900,0.0000 +002733.SZ,0.0000,0.0000,0.0000,40.5800,0.0000,0.0000,0.0000,38.1900,0.0000,0.0000,0.0000,33.3200,0.0000,0.0000,0.0000,29.3600,0.0000,0.0000,0.0000,27.4300,0.0000 +000056.SZ,0.0000,0.0000,0.0000,43.0900,0.0000,0.0000,0.0000,63.0200,0.0000,0.0000,0.0000,62.8200,0.0000,0.0000,0.0000,27.3700,0.0000,0.0000,0.0000,31.3000,0.0000 +838275.BJ,0.0000,0.0000,0.0000,50.7300,0.0000,0.0000,0.0000,49.7200,0.0000,0.0000,0.0000,64.4900,0.0000,0.0000,0.0000,31.0200,0.0000,0.0000,0.0000,40.5500,0.0000 +002780.SZ,0.0000,0.0000,0.0000,49.5500,0.0000,0.0000,0.0000,51.7200,0.0000,0.0000,0.0000,51.6600,0.0000,0.0000,0.0000,43.5300,0.0000,0.0000,0.0000,44.5900,0.0000 +600973.SH,0.0000,0.0000,0.0000,29.5800,0.0000,0.0000,0.0000,38.1000,0.0000,0.0000,0.0000,41.2800,0.0000,0.0000,0.0000,38.3800,0.0000,0.0000,0.0000,43.4200,0.0000 +300151.SZ,0.0000,0.0000,0.0000,17.5800,0.0000,0.0000,0.0000,22.9900,0.0000,0.0000,0.0000,22.3300,0.0000,0.0000,0.0000,21.9200,0.0000,0.0000,0.0000,19.9600,0.0000 +603823.SH,0.0000,0.0000,0.0000,22.4000,0.0000,0.0000,0.0000,19.3200,0.0000,0.0000,0.0000,16.4000,0.0000,0.0000,0.0000,13.7800,0.0000,0.0000,0.0000,22.7500,0.0000 +300762.SZ,0.0000,0.0000,0.0000,42.4200,0.0000,0.0000,0.0000,29.3500,0.0000,0.0000,0.0000,26.2800,0.0000,0.0000,0.0000,52.3400,0.0000,0.0000,0.0000,31.5200,0.0000 +600770.SH,0.0000,0.0000,0.0000,25.2500,0.0000,0.0000,0.0000,18.1500,0.0000,0.0000,0.0000,17.7700,0.0000,0.0000,0.0000,19.3600,0.0000,0.0000,0.0000,18.7900,0.0000 +301065.SZ,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,54.9700,0.0000,0.0000,0.0000,49.8100,0.0000,0.0000,0.0000,49.3400,0.0000,0.0000,0.0000,33.2300,0.0000 +688721.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,84.6200,0.0000,0.0000,0.0000,88.0800,0.0000,0.0000,0.0000,81.3700,0.0000,0.0000,0.0000,0.0000,0.0000 +300578.SZ,0.0000,0.0000,0.0000,24.7400,0.0000,0.0000,0.0000,21.4600,0.0000,0.0000,0.0000,20.1900,0.0000,0.0000,0.0000,24.3000,0.0000,0.0000,0.0000,26.9700,0.0000 +300322.SZ,0.0000,0.0000,0.0000,21.0200,0.0000,0.0000,0.0000,14.6000,0.0000,0.0000,0.0000,13.6000,0.0000,0.0000,0.0000,15.1200,0.0000,0.0000,0.0000,11.2800,0.0000 +603738.SH,0.0000,0.0000,0.0000,45.8500,0.0000,0.0000,0.0000,57.7100,0.0000,0.0000,0.0000,57.6100,0.0000,0.0000,0.0000,51.5400,0.0000,0.0000,0.0000,50.1900,0.0000 +000829.SZ,0.0000,0.0000,0.0000,93.7200,0.0000,0.0000,0.0000,91.2900,0.0000,0.0000,0.0000,83.1700,0.0000,0.0000,0.0000,75.4100,0.0000,0.0000,0.0000,61.3100,0.0000 +688079.SH,0.0000,0.0000,0.0000,36.9900,0.0000,0.0000,0.0000,31.0200,0.0000,0.0000,0.0000,31.1900,0.0000,0.0000,0.0000,32.9400,0.0000,0.0000,0.0000,27.2500,0.0000 +834415.BJ,0.0000,0.0000,0.0000,45.7700,0.0000,0.0000,0.0000,41.4500,0.0000,0.0000,0.0000,62.3900,0.0000,0.0000,0.0000,71.8700,0.0000,0.0000,0.0000,53.1300,0.0000 +000957.SZ,0.0000,0.0000,0.0000,28.9000,0.0000,0.0000,0.0000,39.9600,0.0000,0.0000,0.0000,39.1000,0.0000,0.0000,0.0000,27.5300,0.0000,0.0000,0.0000,30.5200,0.0000 +300150.SZ,0.0000,0.0000,0.0000,17.3400,0.0000,0.0000,0.0000,13.5000,0.0000,0.0000,0.0000,13.5800,0.0000,0.0000,0.0000,11.2300,0.0000,0.0000,0.0000,6.0300,0.0000 +002356.SZ,0.0000,0.0000,0.0000,38.9800,0.0000,0.0000,0.0000,56.7800,0.0000,0.0000,0.0000,61.6600,0.0000,78.4900,0.0000,77.2600,0.0000,0.0000,0.0000,78.3300,0.0000 +831641.BJ,0.0000,0.0000,0.0000,24.9900,0.0000,0.0000,0.0000,26.6300,0.0000,29.9500,0.0000,29.5500,0.0000,0.0000,0.0000,25.7700,0.0000,0.0000,0.0000,31.9800,0.0000 +002300.SZ,0.0000,0.0000,0.0000,88.4200,0.0000,0.0000,0.0000,87.6900,0.0000,0.0000,0.0000,85.6200,0.0000,0.0000,0.0000,81.2700,0.0000,0.0000,0.0000,84.7000,0.0000 +000157.SZ,0.0000,0.0000,0.0000,17.0600,0.0000,0.0000,0.0000,14.6300,0.0000,0.0000,0.0000,12.7300,0.0000,0.0000,0.0000,12.9600,0.0000,0.0000,0.0000,15.1600,0.0000 +837403.BJ,0.0000,0.0000,0.0000,65.0800,0.0000,0.0000,0.0000,51.5900,0.0000,0.0000,0.0000,43.9500,0.0000,77.5700,0.0000,39.1000,0.0000,0.0000,0.0000,39.4200,0.0000 +301189.SZ,0.0000,0.0000,0.0000,37.2000,0.0000,36.2300,0.0000,32.6200,0.0000,0.0000,0.0000,32.9800,0.0000,0.0000,0.0000,36.1200,0.0000,0.0000,0.0000,26.7600,0.0000 +603618.SH,0.0000,0.0000,0.0000,57.4300,0.0000,0.0000,0.0000,59.1800,0.0000,0.0000,0.0000,55.9700,0.0000,0.0000,0.0000,54.9300,0.0000,0.0000,0.0000,46.8100,0.0000 +002170.SZ,0.0000,0.0000,0.0000,28.6200,0.0000,0.0000,0.0000,28.1100,0.0000,0.0000,0.0000,25.4400,0.0000,0.0000,0.0000,24.3100,0.0000,0.0000,0.0000,31.7600,0.0000 +605018.SH,0.0000,0.0000,0.0000,71.3000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,74.0100,0.0000,0.0000,0.0000,76.6800,0.0000,0.0000,0.0000,70.5800,0.0000 +300727.SZ,0.0000,0.0000,0.0000,37.3200,0.0000,0.0000,0.0000,45.1000,0.0000,0.0000,0.0000,38.3100,0.0000,0.0000,0.0000,29.8700,0.0000,0.0000,0.0000,34.9700,0.0000 +301230.SZ,0.0000,0.0000,0.0000,30.9300,0.0000,0.0000,0.0000,14.2700,0.0000,0.0000,0.0000,21.7500,0.0000,0.0000,0.0000,26.3200,0.0000,0.0000,0.0000,25.7500,0.0000 +300299.SZ,0.0000,0.0000,0.0000,29.0200,0.0000,0.0000,0.0000,55.4300,0.0000,0.0000,0.0000,33.4800,0.0000,0.0000,0.0000,48.0000,0.0000,0.0000,0.0000,36.9700,0.0000 +873665.BJ,0.0000,0.0000,0.0000,52.3000,0.0000,0.0000,0.0000,48.4900,0.0000,0.0000,44.7000,44.4700,0.0000,0.0000,0.0000,40.7400,0.0000,0.0000,0.0000,29.6500,0.0000 +603255.SH,0.0000,0.0000,0.0000,30.0300,0.0000,0.0000,0.0000,44.2900,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,42.3400,0.0000,0.0000,0.0000,25.7600,0.0000 +002047.SZ,0.0000,0.0000,0.0000,11.4400,0.0000,0.0000,0.0000,26.1400,0.0000,0.0000,0.0000,11.5000,0.0000,0.0000,0.0000,16.2100,0.0000,0.0000,0.0000,11.0400,0.0000 +601686.SH,0.0000,0.0000,0.0000,17.8200,0.0000,0.0000,0.0000,22.7600,0.0000,0.0000,0.0000,25.1200,0.0000,0.0000,0.0000,24.0800,0.0000,0.0000,0.0000,24.9300,0.0000 +002184.SZ,0.0000,0.0000,0.0000,78.4500,0.0000,0.0000,0.0000,74.5700,0.0000,0.0000,0.0000,69.0900,0.0000,0.0000,0.0000,64.0900,0.0000,0.0000,0.0000,70.1000,0.0000 +688153.SH,0.0000,0.0000,0.0000,76.2400,0.0000,75.2600,0.0000,0.0000,0.0000,0.0000,0.0000,60.6600,0.0000,0.0000,0.0000,57.7000,0.0000,0.0000,0.0000,54.7700,0.0000 +605100.SH,0.0000,0.0000,0.0000,84.1400,0.0000,0.0000,0.0000,76.9200,0.0000,0.0000,0.0000,60.3600,0.0000,0.0000,0.0000,83.8700,0.0000,0.0000,0.0000,76.7000,0.0000 +000783.SZ,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +300569.SZ,0.0000,0.0000,0.0000,40.5100,0.0000,0.0000,0.0000,36.3400,0.0000,0.0000,0.0000,37.7900,0.0000,0.0000,0.0000,33.4400,0.0000,0.0000,0.0000,32.1500,0.0000 +605399.SH,0.0000,0.0000,0.0000,25.6700,0.0000,0.0000,0.0000,29.0900,0.0000,0.0000,0.0000,19.2000,0.0000,0.0000,0.0000,18.3300,0.0000,0.0000,0.0000,14.9200,0.0000 +430139.BJ,0.0000,0.0000,0.0000,72.5500,0.0000,0.0000,0.0000,71.6100,0.0000,0.0000,0.0000,70.2500,0.0000,0.0000,0.0000,52.6400,0.0000,0.0000,0.0000,66.0600,0.0000 +002241.SZ,0.0000,0.0000,0.0000,25.1400,0.0000,0.0000,0.0000,30.5400,0.0000,0.0000,0.0000,38.3500,0.0000,0.0000,0.0000,46.1600,0.0000,0.0000,0.0000,42.9100,0.0000 +688561.SH,0.0000,0.0000,0.0000,16.5800,0.0000,0.0000,0.0000,18.1900,0.0000,0.0000,0.0000,11.3000,0.0000,0.0000,0.0000,11.6000,0.0000,0.0000,0.0000,12.6600,0.0000 +301129.SZ,0.0000,0.0000,0.0000,20.5100,0.0000,16.6200,0.0000,19.2800,0.0000,0.0000,0.0000,22.3300,0.0000,0.0000,0.0000,25.7200,0.0000,0.0000,0.0000,14.8400,0.0000 +002596.SZ,0.0000,0.0000,0.0000,15.7300,0.0000,0.0000,0.0000,20.4800,0.0000,0.0000,0.0000,19.5600,0.0000,0.0000,0.0000,19.4100,0.0000,0.0000,0.0000,13.3900,0.0000 +000795.SZ,0.0000,0.0000,0.0000,35.2700,0.0000,0.0000,0.0000,34.0500,0.0000,0.0000,0.0000,37.9700,0.0000,0.0000,0.0000,42.2700,0.0000,0.0000,0.0000,28.9500,0.0000 +301266.SZ,0.0000,0.0000,0.0000,73.6900,0.0000,0.0000,0.0000,64.9100,0.0000,0.0000,0.0000,75.4900,0.0000,0.0000,0.0000,61.2400,0.0000,0.0000,0.0000,55.9900,0.0000 +605167.SH,0.0000,0.0000,0.0000,19.2700,0.0000,0.0000,0.0000,22.8700,0.0000,0.0000,0.0000,23.0300,0.0000,0.0000,0.0000,19.7600,0.0000,0.0000,0.0000,21.0300,0.0000 +300335.SZ,0.0000,0.0000,0.0000,23.2200,0.0000,0.0000,0.0000,20.6100,0.0000,0.0000,0.0000,22.5700,0.0000,0.0000,0.0000,21.0100,0.0000,0.0000,0.0000,23.9400,0.0000 +603220.SH,0.0000,0.0000,0.0000,14.2600,0.0000,0.0000,0.0000,20.1300,0.0000,0.0000,0.0000,13.6200,0.0000,0.0000,0.0000,15.5000,0.0000,0.0000,0.0000,25.9100,0.0000 +000533.SZ,0.0000,0.0000,0.0000,31.9300,0.0000,0.0000,0.0000,36.5500,0.0000,0.0000,0.0000,35.2800,0.0000,0.0000,0.0000,26.6500,0.0000,0.0000,0.0000,28.1500,0.0000 +000967.SZ,0.0000,0.0000,0.0000,31.1300,0.0000,0.0000,0.0000,31.1500,0.0000,0.0000,0.0000,23.9600,0.0000,0.0000,0.0000,19.8500,0.0000,0.0000,0.0000,24.2900,0.0000 +002663.SZ,0.0000,0.0000,0.0000,6.7700,0.0000,0.0000,0.0000,6.2100,0.0000,0.0000,0.0000,5.0900,0.0000,0.0000,0.0000,5.6600,0.0000,0.0000,0.0000,10.3800,0.0000 +002682.SZ,0.0000,0.0000,0.0000,23.7200,0.0000,0.0000,0.0000,21.3700,0.0000,0.0000,0.0000,20.6800,0.0000,0.0000,0.0000,29.1900,0.0000,0.0000,0.0000,38.1500,0.0000 +300739.SZ,0.0000,0.0000,0.0000,50.1200,0.0000,0.0000,0.0000,46.9500,0.0000,0.0000,0.0000,45.0800,0.0000,0.0000,0.0000,44.9700,0.0000,0.0000,0.0000,43.1300,0.0000 +300876.SZ,0.0000,0.0000,0.0000,39.7000,0.0000,0.0000,0.0000,78.1000,0.0000,0.0000,0.0000,87.8100,0.0000,0.0000,0.0000,72.3600,0.0000,0.0000,0.0000,65.7400,0.0000 +300568.SZ,0.0000,0.0000,0.0000,39.0300,0.0000,0.0000,0.0000,47.9000,0.0000,0.0000,0.0000,44.1200,0.0000,0.0000,0.0000,47.4900,0.0000,0.0000,0.0000,44.2200,0.0000 +688627.SH,0.0000,0.0000,0.0000,37.6100,0.0000,0.0000,0.0000,41.6100,0.0000,0.0000,0.0000,45.0600,0.0000,0.0000,0.0000,34.5900,0.0000,0.0000,0.0000,52.1000,0.0000 +300177.SZ,0.0000,0.0000,0.0000,13.3100,0.0000,0.0000,0.0000,11.1800,0.0000,0.0000,0.0000,17.5100,0.0000,0.0000,0.0000,17.2100,0.0000,0.0000,0.0000,15.2800,0.0000 +300828.SZ,0.0000,0.0000,0.0000,73.4600,0.0000,0.0000,0.0000,85.5800,0.0000,0.0000,0.0000,79.1000,0.0000,0.0000,0.0000,81.5100,0.0000,0.0000,0.0000,82.7500,0.0000 +920108.BJ,0.0000,0.0000,0.0000,93.4400,0.0000,0.0000,0.0000,93.9800,0.0000,0.0000,0.0000,92.5700,0.0000,89.9100,0.0000,88.4200,0.0000,89.2900,0.0000,84.9300,0.0000 +002899.SZ,0.0000,0.0000,0.0000,24.0400,0.0000,0.0000,0.0000,24.9100,0.0000,0.0000,0.0000,32.5500,0.0000,0.0000,0.0000,27.0800,0.0000,0.0000,0.0000,19.0700,0.0000 +301361.SZ,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,29.1600,0.0000,0.0000,0.0000,26.5600,0.0000,0.0000,0.0000,23.3600,0.0000 +600031.SH,0.0000,0.0000,0.0000,12.0300,0.0000,0.0000,0.0000,11.1900,0.0000,0.0000,0.0000,12.7500,0.0000,0.0000,0.0000,10.9900,0.0000,0.0000,0.0000,11.0800,0.0000 +600671.SH,0.0000,0.0000,0.0000,64.5200,0.0000,0.0000,0.0000,48.3100,0.0000,0.0000,0.0000,44.4500,0.0000,0.0000,0.0000,32.8100,0.0000,0.0000,0.0000,34.3500,0.0000 +600860.SH,0.0000,0.0000,0.0000,30.7200,0.0000,0.0000,0.0000,38.2000,0.0000,0.0000,0.0000,43.4700,0.0000,0.0000,0.0000,37.9700,0.0000,0.0000,0.0000,29.8500,0.0000 +603926.SH,0.0000,0.0000,0.0000,18.9700,0.0000,0.0000,0.0000,20.6200,0.0000,0.0000,0.0000,27.7100,0.0000,0.0000,0.0000,21.8200,0.0000,0.0000,0.0000,21.4600,0.0000 +871263.BJ,0.0000,0.0000,0.0000,37.0700,0.0000,0.0000,0.0000,30.0700,0.0000,0.0000,0.0000,36.3500,0.0000,36.2100,0.0000,36.8100,0.0000,0.0000,0.0000,33.2700,0.0000 +873152.BJ,0.0000,0.0000,0.0000,57.3900,0.0000,0.0000,0.0000,40.8700,0.0000,48.4700,0.0000,46.1800,0.0000,0.0000,0.0000,46.8600,0.0000,0.0000,0.0000,46.7900,0.0000 +300626.SZ,0.0000,0.0000,0.0000,65.5400,0.0000,0.0000,0.0000,64.1000,0.0000,0.0000,0.0000,51.9400,0.0000,0.0000,0.0000,70.4500,0.0000,0.0000,0.0000,70.8700,0.0000 +300007.SZ,0.0000,0.0000,0.0000,20.9100,0.0000,0.0000,0.0000,17.1500,0.0000,0.0000,0.0000,21.9900,0.0000,0.0000,0.0000,16.8400,0.0000,0.0000,0.0000,15.5800,0.0000 +603818.SH,0.0000,0.0000,0.0000,12.0000,0.0000,0.0000,0.0000,11.1000,0.0000,0.0000,0.0000,16.5300,0.0000,0.0000,0.0000,16.2100,0.0000,0.0000,0.0000,15.6500,0.0000 +300154.SZ,0.0000,0.0000,0.0000,25.1600,0.0000,0.0000,0.0000,20.6700,0.0000,0.0000,0.0000,18.9000,0.0000,0.0000,0.0000,22.3800,0.0000,0.0000,0.0000,23.0500,0.0000 +688059.SH,0.0000,0.0000,0.0000,62.0200,0.0000,0.0000,0.0000,68.6300,0.0000,0.0000,0.0000,63.5400,0.0000,57.2600,0.0000,60.8900,0.0000,0.0000,0.0000,58.5200,0.0000 +002256.SZ,0.0000,0.0000,0.0000,41.3700,0.0000,0.0000,0.0000,46.8500,0.0000,0.0000,0.0000,49.1300,0.0000,0.0000,0.0000,44.8500,0.0000,0.0000,0.0000,53.1200,0.0000 +300477.SZ,0.0000,0.0000,0.0000,19.4300,0.0000,0.0000,0.0000,21.9600,0.0000,0.0000,0.0000,19.8600,0.0000,0.0000,0.0000,4.4900,0.0000,0.0000,0.0000,22.4400,0.0000 +002443.SZ,0.0000,0.0000,0.0000,59.5300,0.0000,0.0000,0.0000,47.0300,0.0000,0.0000,0.0000,40.9100,0.0000,0.0000,0.0000,49.6500,0.0000,0.0000,0.0000,46.0300,0.0000 +300858.SZ,0.0000,0.0000,0.0000,81.2700,0.0000,0.0000,0.0000,65.4600,0.0000,0.0000,0.0000,65.1400,0.0000,0.0000,0.0000,51.7000,0.0000,0.0000,0.0000,37.3400,0.0000 +300155.SZ,0.0000,0.0000,0.0000,25.9600,0.0000,0.0000,0.0000,34.9500,0.0000,0.0000,0.0000,25.4800,0.0000,0.0000,0.0000,32.7000,0.0000,0.0000,0.0000,29.9400,0.0000 +000037.SZ,0.0000,0.0000,0.0000,81.6000,0.0000,0.0000,0.0000,95.1400,0.0000,0.0000,0.0000,95.9700,0.0000,0.0000,0.0000,99.1600,0.0000,0.0000,0.0000,83.5400,0.0000 +001359.SZ,0.0000,0.0000,0.0000,37.2900,0.0000,0.0000,0.0000,33.1000,0.0000,0.0000,0.0000,35.5600,0.0000,30.4600,0.0000,29.9400,0.0000,0.0000,0.0000,23.2300,0.0000 +603686.SH,0.0000,0.0000,0.0000,53.2000,0.0000,0.0000,0.0000,51.4800,0.0000,0.0000,0.0000,40.7300,0.0000,0.0000,0.0000,46.2700,0.0000,0.0000,0.0000,43.6600,0.0000 +300665.SZ,0.0000,0.0000,0.0000,30.9900,0.0000,0.0000,0.0000,20.4400,0.0000,0.0000,0.0000,27.7000,0.0000,0.0000,0.0000,32.2100,0.0000,0.0000,0.0000,29.7600,0.0000 +300968.SZ,0.0000,20.0600,0.0000,20.7600,0.0000,0.0000,0.0000,20.1500,0.0000,0.0000,0.0000,18.0500,0.0000,0.0000,0.0000,25.9100,0.0000,0.0000,0.0000,23.3200,0.0000 +603978.SH,0.0000,0.0000,0.0000,75.8900,0.0000,0.0000,0.0000,82.0600,0.0000,0.0000,0.0000,57.7800,0.0000,0.0000,0.0000,66.4800,0.0000,0.0000,0.0000,61.6700,0.0000 +002342.SZ,0.0000,0.0000,0.0000,30.9500,0.0000,0.0000,0.0000,16.6200,0.0000,0.0000,0.0000,25.9300,0.0000,0.0000,0.0000,13.9800,0.0000,0.0000,0.0000,18.7700,0.0000 +300538.SZ,0.0000,0.0000,0.0000,63.5900,0.0000,0.0000,0.0000,57.8100,0.0000,0.0000,0.0000,48.0600,0.0000,0.0000,0.0000,48.7100,0.0000,0.0000,0.0000,48.6600,0.0000 +300836.SZ,0.0000,0.0000,0.0000,57.8700,0.0000,0.0000,0.0000,35.2400,0.0000,0.0000,0.0000,21.0700,0.0000,0.0000,0.0000,26.5200,0.0000,0.0000,0.0000,25.3200,0.0000 +601138.SH,0.0000,0.0000,0.0000,48.3400,0.0000,0.0000,0.0000,52.9300,0.0000,0.0000,0.0000,42.9000,0.0000,0.0000,0.0000,27.2300,0.0000,0.0000,0.0000,56.2700,0.0000 +603596.SH,0.0000,0.0000,0.0000,45.5400,0.0000,0.0000,0.0000,43.4600,0.0000,0.0000,0.0000,18.9100,0.0000,0.0000,0.0000,29.2000,0.0000,0.0000,0.0000,25.5500,0.0000 +600990.SH,0.0000,0.0000,0.0000,10.3000,0.0000,0.0000,0.0000,7.6100,0.0000,0.0000,0.0000,8.6500,0.0000,0.0000,0.0000,10.2600,0.0000,0.0000,0.0000,9.1700,0.0000 +301075.SZ,0.0000,0.0000,0.0000,68.9000,0.0000,0.0000,0.0000,31.4600,0.0000,0.0000,0.0000,35.1700,0.0000,0.0000,0.0000,32.9100,0.0000,0.0000,0.0000,28.9100,0.0000 +688268.SH,0.0000,0.0000,0.0000,23.2900,0.0000,0.0000,0.0000,18.0700,0.0000,0.0000,0.0000,21.9900,0.0000,0.0000,0.0000,27.7800,0.0000,0.0000,0.0000,26.0400,0.0000 +600756.SH,0.0000,0.0000,0.0000,18.9000,0.0000,0.0000,0.0000,24.7300,0.0000,0.0000,0.0000,17.1700,0.0000,0.0000,0.0000,28.7500,0.0000,0.0000,0.0000,25.5100,0.0000 +300849.SZ,0.0000,0.0000,0.0000,42.4800,0.0000,0.0000,0.0000,37.6700,0.0000,0.0000,0.0000,26.3600,0.0000,0.0000,0.0000,24.4200,0.0000,0.0000,0.0000,25.9600,0.0000 +000590.SZ,0.0000,0.0000,0.0000,39.1500,0.0000,0.0000,0.0000,48.3800,0.0000,0.0000,0.0000,39.1500,0.0000,0.0000,0.0000,35.7400,0.0000,0.0000,0.0000,34.9300,0.0000 +300052.SZ,0.0000,0.0000,0.0000,46.1200,0.0000,0.0000,0.0000,35.0000,0.0000,0.0000,0.0000,55.5400,0.0000,0.0000,0.0000,46.9600,0.0000,0.0000,0.0000,57.2200,0.0000 +301272.SZ,0.0000,0.0000,0.0000,59.3700,0.0000,0.0000,0.0000,64.7700,0.0000,0.0000,0.0000,61.8600,0.0000,0.0000,0.0000,55.7700,0.0000,0.0000,0.0000,54.1300,0.0000 +920167.BJ,0.0000,0.0000,0.0000,97.5500,0.0000,0.0000,0.0000,99.0600,0.0000,0.0000,0.0000,98.6500,0.0000,0.0000,0.0000,94.1300,0.0000,0.0000,0.0000,86.2300,0.0000 +300733.SZ,0.0000,0.0000,0.0000,25.6600,0.0000,0.0000,0.0000,28.7500,0.0000,0.0000,0.0000,23.2300,0.0000,0.0000,0.0000,26.7300,0.0000,0.0000,0.0000,29.3400,0.0000 +600101.SH,0.0000,0.0000,0.0000,60.7000,0.0000,0.0000,0.0000,60.5900,0.0000,0.0000,0.0000,62.4900,0.0000,0.0000,0.0000,65.7300,0.0000,0.0000,0.0000,65.1300,0.0000 +002163.SZ,0.0000,0.0000,0.0000,9.6700,0.0000,0.0000,0.0000,12.3200,0.0000,0.0000,0.0000,13.9400,0.0000,0.0000,0.0000,14.1200,0.0000,0.0000,0.0000,12.2800,0.0000 +300936.SZ,0.0000,0.0000,0.0000,74.6600,0.0000,0.0000,0.0000,66.6100,0.0000,0.0000,0.0000,60.1000,0.0000,0.0000,0.0000,77.8700,0.0000,0.0000,0.0000,69.9500,0.0000 +603356.SH,0.0000,0.0000,0.0000,24.7400,0.0000,0.0000,0.0000,29.0000,0.0000,0.0000,0.0000,32.1300,0.0000,0.0000,0.0000,24.6700,0.0000,0.0000,0.0000,35.4300,0.0000 +002444.SZ,0.0000,0.0000,0.0000,3.8300,0.0000,0.0000,0.0000,5.2200,0.0000,0.0000,0.0000,5.6100,0.0000,0.0000,0.0000,5.1900,0.0000,0.0000,0.0000,5.5600,0.0000 +300784.SZ,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,50.1700,0.0000,0.0000,0.0000,31.2400,0.0000,0.0000,0.0000,32.8100,0.0000,0.0000,0.0000,34.0400,0.0000 +300012.SZ,0.0000,0.0000,0.0000,15.2400,0.0000,0.0000,0.0000,14.1600,0.0000,0.0000,0.0000,10.9200,0.0000,0.0000,0.0000,10.6600,0.0000,0.0000,0.0000,10.4400,0.0000 +002912.SZ,0.0000,0.0000,0.0000,31.9600,0.0000,0.0000,0.0000,27.2900,0.0000,0.0000,0.0000,31.4000,0.0000,0.0000,0.0000,24.7800,0.0000,0.0000,0.0000,24.1400,0.0000 +301198.SZ,0.0000,0.0000,0.0000,34.1200,0.0000,38.4300,0.0000,31.3000,0.0000,0.0000,0.0000,22.4200,0.0000,0.0000,0.0000,33.9900,0.0000,0.0000,0.0000,38.1900,0.0000 +300608.SZ,0.0000,0.0000,0.0000,59.0800,0.0000,0.0000,0.0000,65.5900,0.0000,0.0000,0.0000,47.2800,0.0000,0.0000,0.0000,42.0800,0.0000,0.0000,0.0000,42.6500,0.0000 +001314.SZ,0.0000,0.0000,0.0000,39.8700,0.0000,0.0000,0.0000,31.1500,0.0000,0.0000,35.4000,33.0500,0.0000,0.0000,0.0000,37.4900,0.0000,0.0000,0.0000,34.3700,0.0000 +600818.SH,0.0000,0.0000,0.0000,31.2600,0.0000,0.0000,0.0000,28.8700,0.0000,0.0000,0.0000,27.7300,0.0000,0.0000,0.0000,33.5600,0.0000,0.0000,0.0000,27.7600,0.0000 +300042.SZ,0.0000,0.0000,0.0000,41.6800,0.0000,0.0000,0.0000,42.1700,0.0000,0.0000,0.0000,26.0000,0.0000,0.0000,0.0000,35.0000,0.0000,0.0000,0.0000,39.1300,0.0000 +300092.SZ,0.0000,0.0000,0.0000,33.0000,0.0000,0.0000,0.0000,28.8400,0.0000,0.0000,0.0000,30.8000,0.0000,0.0000,0.0000,25.6900,0.0000,0.0000,0.0000,29.2900,0.0000 +002715.SZ,0.0000,0.0000,0.0000,55.3400,0.0000,0.0000,0.0000,60.7200,0.0000,0.0000,0.0000,60.3100,0.0000,0.0000,0.0000,62.8200,0.0000,0.0000,0.0000,59.8100,0.0000 +300988.SZ,0.0000,0.0000,0.0000,51.7200,0.0000,0.0000,0.0000,33.8200,0.0000,0.0000,0.0000,38.4400,0.0000,0.0000,0.0000,31.6900,0.0000,0.0000,0.0000,38.3100,0.0000 +300756.SZ,0.0000,0.0000,0.0000,21.3500,0.0000,0.0000,0.0000,19.5800,0.0000,0.0000,0.0000,23.9400,0.0000,0.0000,0.0000,21.9200,0.0000,0.0000,0.0000,16.5600,0.0000 +300364.SZ,0.0000,0.0000,0.0000,60.6800,0.0000,0.0000,0.0000,48.2500,0.0000,0.0000,0.0000,28.0200,0.0000,0.0000,0.0000,29.9800,0.0000,0.0000,0.0000,23.6200,0.0000 +301251.SZ,0.0000,0.0000,0.0000,55.5500,0.0000,0.0000,0.0000,55.1400,0.0000,0.0000,0.0000,42.9000,0.0000,0.0000,0.0000,46.9600,0.0000,0.0000,0.0000,43.3200,0.0000 +870866.BJ,0.0000,0.0000,0.0000,36.3200,0.0000,0.0000,0.0000,24.8200,0.0000,26.6600,0.0000,24.5600,0.0000,0.0000,0.0000,18.2100,0.0000,0.0000,0.0000,14.2400,0.0000 +600186.SH,0.0000,0.0000,0.0000,49.0000,0.0000,0.0000,0.0000,63.1900,0.0000,0.0000,0.0000,72.6100,0.0000,0.0000,0.0000,79.6700,0.0000,0.0000,0.0000,75.2000,0.0000 +002902.SZ,0.0000,0.0000,0.0000,25.6700,0.0000,0.0000,0.0000,21.8100,0.0000,0.0000,0.0000,24.7200,0.0000,0.0000,0.0000,15.2600,0.0000,0.0000,0.0000,17.8400,0.0000 +300890.SZ,0.0000,0.0000,0.0000,61.4500,0.0000,0.0000,0.0000,43.2800,0.0000,0.0000,0.0000,38.1700,0.0000,0.0000,0.0000,48.1100,0.0000,0.0000,0.0000,52.3700,0.0000 +002801.SZ,0.0000,0.0000,0.0000,28.6200,0.0000,0.0000,0.0000,30.9700,0.0000,0.0000,0.0000,30.8200,0.0000,0.0000,0.0000,36.8500,0.0000,0.0000,0.0000,34.2700,0.0000 +600501.SH,0.0000,0.0000,0.0000,28.8000,0.0000,0.0000,0.0000,29.5900,0.0000,0.0000,0.0000,30.8000,0.0000,0.0000,0.0000,23.3800,0.0000,0.0000,0.0000,16.6100,0.0000 +001269.SZ,0.0000,0.0000,0.0000,45.8200,0.0000,0.0000,0.0000,42.0100,0.0000,0.0000,0.0000,37.4200,0.0000,0.0000,0.0000,41.6100,0.0000,0.0000,0.0000,57.4800,0.0000 +300964.SZ,0.0000,0.0000,0.0000,69.1700,0.0000,0.0000,0.0000,51.0600,0.0000,0.0000,0.0000,19.7100,0.0000,0.0000,0.0000,50.9300,0.0000,0.0000,0.0000,52.7100,0.0000 +300546.SZ,0.0000,0.0000,0.0000,25.9800,0.0000,0.0000,0.0000,23.1400,0.0000,0.0000,0.0000,50.7800,0.0000,0.0000,0.0000,21.6000,0.0000,0.0000,0.0000,15.9800,0.0000 +688408.SH,0.0000,0.0000,0.0000,25.5000,0.0000,0.0000,0.0000,30.7900,0.0000,0.0000,0.0000,27.3100,0.0000,0.0000,0.0000,27.6100,0.0000,0.0000,0.0000,29.8900,0.0000 +300567.SZ,0.0000,0.0000,0.0000,13.0300,0.0000,0.0000,0.0000,12.7500,0.0000,0.0000,0.0000,15.3300,0.0000,0.0000,0.0000,14.0100,0.0000,0.0000,0.0000,17.5300,0.0000 +600549.SH,0.0000,0.0000,0.0000,26.9900,0.0000,0.0000,0.0000,34.7300,0.0000,0.0000,0.0000,34.8600,0.0000,0.0000,0.0000,29.9600,0.0000,0.0000,0.0000,30.3500,0.0000 +601069.SH,0.0000,0.0000,0.0000,81.8300,0.0000,0.0000,0.0000,87.1000,0.0000,0.0000,0.0000,66.0800,0.0000,0.0000,0.0000,72.5800,0.0000,0.0000,0.0000,0.0000,0.0000 +601086.SH,0.0000,0.0000,0.0000,31.5300,0.0000,0.0000,0.0000,19.1300,0.0000,0.0000,0.0000,17.1300,0.0000,0.0000,0.0000,27.2000,0.0000,0.0000,0.0000,27.4500,0.0000 +603004.SH,0.0000,0.0000,0.0000,38.9600,0.0000,0.0000,0.0000,37.3900,0.0000,0.0000,0.0000,31.3500,0.0000,31.9900,0.0000,34.1900,0.0000,0.0000,0.0000,33.6300,0.0000 +300008.SZ,0.0000,0.0000,0.0000,43.9000,0.0000,0.0000,0.0000,27.1500,0.0000,0.0000,0.0000,17.9600,0.0000,0.0000,0.0000,29.0100,0.0000,0.0000,0.0000,25.3600,0.0000 +000820.SZ,0.0000,0.0000,0.0000,100.0000,0.0000,0.0000,0.0000,73.5200,0.0000,0.0000,0.0000,53.0000,0.0000,0.0000,0.0000,39.9000,0.0000,0.0000,0.0000,45.6700,0.0000 +300942.SZ,0.0000,0.0000,0.0000,45.1100,0.0000,0.0000,0.0000,51.4600,0.0000,0.0000,0.0000,42.2100,0.0000,0.0000,0.0000,25.0800,0.0000,0.0000,0.0000,23.1600,0.0000 +837212.BJ,0.0000,0.0000,0.0000,41.9900,0.0000,0.0000,0.0000,44.2300,0.0000,0.0000,0.0000,42.2000,0.0000,0.0000,0.0000,34.5700,0.0000,0.0000,0.0000,37.6600,0.0000 +002518.SZ,0.0000,0.0000,0.0000,21.1700,0.0000,0.0000,0.0000,21.1100,0.0000,0.0000,0.0000,37.3000,0.0000,0.0000,0.0000,36.1400,0.0000,0.0000,0.0000,22.5100,0.0000 +838670.BJ,0.0000,0.0000,0.0000,34.7200,0.0000,34.1200,0.0000,31.8800,0.0000,0.0000,0.0000,20.4600,0.0000,0.0000,0.0000,34.6400,0.0000,0.0000,0.0000,18.6900,0.0000 +002376.SZ,0.0000,0.0000,0.0000,11.5900,0.0000,0.0000,0.0000,11.3900,0.0000,0.0000,0.0000,12.9400,0.0000,0.0000,0.0000,11.6200,0.0000,0.0000,0.0000,11.4500,0.0000 +301255.SZ,0.0000,0.0000,0.0000,33.7300,0.0000,0.0000,0.0000,33.3000,0.0000,35.9500,0.0000,33.1200,0.0000,0.0000,0.0000,29.3200,0.0000,0.0000,0.0000,26.3800,0.0000 +600498.SH,0.0000,0.0000,0.0000,12.2600,0.0000,0.0000,0.0000,13.0200,0.0000,0.0000,0.0000,16.8200,0.0000,0.0000,0.0000,21.9200,0.0000,0.0000,0.0000,35.4600,0.0000 +300990.SZ,0.0000,0.0000,0.0000,21.0300,0.0000,0.0000,0.0000,21.7000,0.0000,0.0000,0.0000,22.6500,0.0000,0.0000,0.0000,24.0600,0.0000,0.0000,0.0000,23.4700,0.0000 +301502.SZ,0.0000,0.0000,0.0000,36.4800,0.0000,0.0000,0.0000,35.3900,0.0000,0.0000,0.0000,34.4300,0.0000,30.1800,0.0000,25.3200,0.0000,0.0000,0.0000,31.5000,0.0000 +688503.SH,0.0000,0.0000,0.0000,99.4500,0.0000,0.0000,0.0000,97.0300,0.0000,91.2800,0.0000,90.1400,0.0000,0.0000,0.0000,81.4500,0.0000,0.0000,0.0000,79.3900,0.0000 +873223.BJ,0.0000,0.0000,0.0000,61.2100,0.0000,0.0000,0.0000,46.5800,0.0000,0.0000,0.0000,39.7600,0.0000,0.0000,0.0000,30.7400,0.0000,0.0000,0.0000,38.1500,0.0000 +300183.SZ,0.0000,0.0000,0.0000,42.3600,0.0000,0.0000,0.0000,38.8000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,24.1800,0.0000,0.0000,0.0000,38.1600,0.0000 +920111.BJ,0.0000,0.0000,0.0000,76.6200,0.0000,0.0000,0.0000,72.1500,0.0000,0.0000,0.0000,66.4600,0.0000,72.6500,0.0000,67.2500,0.0000,69.9800,0.0000,72.0800,0.0000 +600983.SH,0.0000,0.0000,0.0000,14.4800,0.0000,0.0000,0.0000,15.6800,0.0000,0.0000,0.0000,13.3900,0.0000,0.0000,0.0000,13.3600,0.0000,0.0000,0.0000,12.7900,0.0000 +002269.SZ,0.0000,0.0000,0.0000,15.9900,0.0000,0.0000,0.0000,18.8700,0.0000,0.0000,0.0000,24.2700,0.0000,0.0000,0.0000,28.8400,0.0000,0.0000,0.0000,47.0900,0.0000 +300166.SZ,0.0000,0.0000,0.0000,7.0200,0.0000,0.0000,0.0000,3.7100,0.0000,0.0000,0.0000,2.4300,0.0000,0.0000,0.0000,2.9000,0.0000,0.0000,0.0000,9.6400,0.0000 +301311.SZ,0.0000,0.0000,0.0000,43.0200,0.0000,0.0000,0.0000,33.6100,0.0000,57.2600,0.0000,24.1300,0.0000,0.0000,0.0000,25.8000,0.0000,0.0000,0.0000,23.6400,0.0000 +002348.SZ,0.0000,0.0000,0.0000,35.6700,0.0000,0.0000,0.0000,39.9100,0.0000,0.0000,0.0000,20.7900,0.0000,0.0000,0.0000,17.3700,0.0000,0.0000,0.0000,30.9100,0.0000 +000557.SZ,0.0000,0.0000,0.0000,44.4400,0.0000,0.0000,0.0000,40.0700,0.0000,0.0000,0.0000,77.3100,0.0000,0.0000,0.0000,66.5600,0.0000,0.0000,0.0000,71.6000,0.0000 +300256.SZ,0.0000,0.0000,0.0000,52.9200,0.0000,0.0000,0.0000,53.9900,0.0000,0.0000,0.0000,26.8400,0.0000,0.0000,0.0000,20.5300,0.0000,0.0000,0.0000,42.5900,0.0000 +002955.SZ,0.0000,0.0000,0.0000,40.0800,0.0000,0.0000,0.0000,40.9200,0.0000,0.0000,0.0000,37.7700,0.0000,0.0000,0.0000,41.3900,0.0000,0.0000,0.0000,41.4800,0.0000 +300097.SZ,0.0000,0.0000,0.0000,18.0500,0.0000,0.0000,0.0000,13.0400,0.0000,0.0000,0.0000,32.0000,0.0000,0.0000,0.0000,24.1700,0.0000,0.0000,0.0000,24.0400,0.0000 +002409.SZ,0.0000,0.0000,0.0000,32.3700,0.0000,0.0000,0.0000,19.7500,0.0000,0.0000,0.0000,17.6000,0.0000,0.0000,0.0000,17.3600,0.0000,0.0000,0.0000,16.8900,0.0000 +300149.SZ,0.0000,0.0000,0.0000,15.8500,0.0000,0.0000,0.0000,21.0800,0.0000,0.0000,0.0000,19.9200,0.0000,0.0000,0.0000,29.9900,0.0000,0.0000,0.0000,21.4900,0.0000 +603131.SH,0.0000,0.0000,0.0000,10.5400,0.0000,0.0000,0.0000,11.8300,0.0000,0.0000,0.0000,11.3200,0.0000,0.0000,0.0000,14.0700,0.0000,0.0000,0.0000,13.1200,0.0000 +836149.BJ,0.0000,0.0000,0.0000,37.5600,0.0000,0.0000,0.0000,27.7300,0.0000,0.0000,0.0000,25.8700,0.0000,0.0000,0.0000,17.7400,0.0000,0.0000,0.0000,19.6000,0.0000 +300222.SZ,0.0000,0.0000,0.0000,10.6200,0.0000,0.0000,0.0000,12.9800,0.0000,0.0000,0.0000,13.1800,0.0000,0.0000,0.0000,7.4900,0.0000,0.0000,0.0000,8.5700,0.0000 +300697.SZ,0.0000,0.0000,0.0000,94.5800,0.0000,0.0000,0.0000,97.5400,0.0000,0.0000,0.0000,91.4900,0.0000,0.0000,0.0000,83.6400,0.0000,0.0000,0.0000,89.6500,0.0000 +603283.SH,0.0000,0.0000,0.0000,28.3800,0.0000,0.0000,0.0000,19.6600,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,23.7900,0.0000,0.0000,0.0000,16.4800,0.0000 +300671.SZ,0.0000,0.0000,0.0000,54.6600,0.0000,0.0000,0.0000,45.5900,0.0000,0.0000,0.0000,60.3000,0.0000,0.0000,0.0000,54.8000,0.0000,0.0000,0.0000,52.9500,0.0000 +688599.SH,0.0000,0.0000,0.0000,31.1800,0.0000,0.0000,0.0000,32.2100,0.0000,0.0000,0.0000,30.5100,0.0000,0.0000,0.0000,25.7300,0.0000,0.0000,0.0000,14.6800,0.0000 +839729.BJ,0.0000,0.0000,0.0000,39.8100,0.0000,0.0000,0.0000,36.8800,0.0000,0.0000,0.0000,35.6300,0.0000,0.0000,0.0000,35.7000,0.0000,0.0000,0.0000,33.8500,0.0000 +300231.SZ,0.0000,0.0000,0.0000,41.8800,0.0000,0.0000,0.0000,35.1300,0.0000,0.0000,0.0000,34.9400,0.0000,0.0000,0.0000,30.4700,0.0000,0.0000,0.0000,44.7000,0.0000 +603005.SH,0.0000,0.0000,0.0000,34.2200,0.0000,0.0000,0.0000,38.8000,0.0000,0.0000,0.0000,44.9800,0.0000,0.0000,0.0000,31.8300,0.0000,0.0000,0.0000,36.9700,0.0000 +300102.SZ,0.0000,0.0000,0.0000,43.7200,0.0000,0.0000,0.0000,38.0500,0.0000,0.0000,0.0000,44.2500,0.0000,0.0000,0.0000,55.8400,0.0000,0.0000,0.0000,48.8300,0.0000 +300189.SZ,0.0000,0.0000,0.0000,48.8400,0.0000,0.0000,0.0000,55.6700,0.0000,0.0000,0.0000,50.1500,0.0000,0.0000,0.0000,33.3100,0.0000,0.0000,0.0000,0.0000,0.0000 +300011.SZ,0.0000,0.0000,0.0000,13.5100,0.0000,0.0000,0.0000,11.4100,0.0000,0.0000,0.0000,13.4300,0.0000,0.0000,0.0000,15.8000,0.0000,0.0000,0.0000,17.1200,0.0000 +603778.SH,0.0000,0.0000,0.0000,21.3900,0.0000,0.0000,0.0000,28.0900,0.0000,0.0000,0.0000,34.2800,0.0000,0.0000,0.0000,48.9900,0.0000,0.0000,0.0000,45.1500,0.0000 +300223.SZ,0.0000,0.0000,0.0000,42.5500,0.0000,0.0000,0.0000,37.6000,0.0000,0.0000,0.0000,61.0700,0.0000,0.0000,0.0000,45.1900,0.0000,0.0000,0.0000,50.1800,0.0000 +300021.SZ,0.0000,0.0000,0.0000,13.5300,0.0000,0.0000,0.0000,11.3800,0.0000,0.0000,0.0000,19.5300,0.0000,0.0000,0.0000,7.4400,0.0000,0.0000,0.0000,8.7600,0.0000 +871478.BJ,0.0000,0.0000,0.0000,28.6000,0.0000,0.0000,0.0000,33.9500,0.0000,37.0900,0.0000,35.3500,0.0000,0.0000,0.0000,24.9200,0.0000,0.0000,0.0000,23.4800,0.0000 +600619.SH,0.0000,0.0000,0.0000,35.9500,0.0000,0.0000,0.0000,25.9300,0.0000,0.0000,0.0000,18.9900,0.0000,0.0000,0.0000,20.1100,0.0000,0.0000,0.0000,21.9200,0.0000 +688788.SH,0.0000,0.0000,0.0000,62.0900,0.0000,0.0000,0.0000,49.3700,0.0000,0.0000,0.0000,37.8600,0.0000,0.0000,0.0000,30.4900,0.0000,0.0000,0.0000,30.1800,0.0000 +833230.BJ,0.0000,0.0000,0.0000,68.2400,0.0000,0.0000,0.0000,74.8100,0.0000,85.4500,0.0000,74.3700,0.0000,0.0000,0.0000,51.1500,0.0000,0.0000,0.0000,56.1900,0.0000 +831278.BJ,0.0000,0.0000,0.0000,48.3000,0.0000,0.0000,0.0000,54.0500,0.0000,0.0000,0.0000,46.8300,0.0000,0.0000,0.0000,46.2000,0.0000,0.0000,0.0000,41.3000,0.0000 +300632.SZ,0.0000,0.0000,0.0000,19.5400,0.0000,0.0000,0.0000,20.6300,0.0000,0.0000,0.0000,28.1000,0.0000,0.0000,0.0000,27.6100,0.0000,0.0000,0.0000,28.0000,0.0000 +688029.SH,0.0000,0.0000,0.0000,36.8900,0.0000,0.0000,0.0000,33.2300,0.0000,0.0000,0.0000,27.6600,0.0000,0.0000,0.0000,26.5400,0.0000,0.0000,0.0000,26.0400,0.0000 +300311.SZ,0.0000,0.0000,0.0000,19.2100,0.0000,0.0000,0.0000,38.7500,0.0000,0.0000,0.0000,33.4100,0.0000,0.0000,0.0000,10.8800,0.0000,0.0000,0.0000,23.0000,0.0000 +300537.SZ,0.0000,0.0000,0.0000,20.0200,0.0000,0.0000,0.0000,24.9600,0.0000,0.0000,0.0000,41.6800,0.0000,0.0000,0.0000,13.8900,0.0000,0.0000,0.0000,20.4700,0.0000 +000678.SZ,0.0000,0.0000,0.0000,19.9100,0.0000,0.0000,0.0000,13.3600,0.0000,0.0000,0.0000,21.3800,0.0000,0.0000,0.0000,15.3100,0.0000,0.0000,0.0000,15.4600,0.0000 +001311.SZ,0.0000,0.0000,0.0000,44.0200,0.0000,0.0000,0.0000,43.8800,0.0000,47.8600,0.0000,50.3800,0.0000,0.0000,0.0000,51.0700,0.0000,0.0000,0.0000,40.4700,0.0000 +002642.SZ,0.0000,0.0000,0.0000,40.3500,0.0000,0.0000,0.0000,40.2800,0.0000,0.0000,0.0000,47.6500,0.0000,0.0000,0.0000,36.9900,0.0000,0.0000,0.0000,52.3400,0.0000 +300875.SZ,0.0000,0.0000,0.0000,42.2200,0.0000,0.0000,0.0000,18.0800,0.0000,0.0000,0.0000,27.9000,0.0000,0.0000,0.0000,18.7400,0.0000,0.0000,0.0000,24.4300,0.0000 +871694.BJ,0.0000,0.0000,0.0000,52.1400,0.0000,0.0000,0.0000,52.0600,68.5300,57.1200,0.0000,52.5600,0.0000,0.0000,0.0000,65.2300,0.0000,0.0000,0.0000,57.9100,0.0000 +688236.SH,0.0000,0.0000,0.0000,51.5500,0.0000,63.7700,0.0000,69.4900,0.0000,0.0000,0.0000,46.1400,0.0000,0.0000,0.0000,71.7900,0.0000,0.0000,0.0000,35.1000,0.0000 +600367.SH,0.0000,0.0000,0.0000,24.9800,0.0000,0.0000,0.0000,23.8900,0.0000,0.0000,0.0000,32.9800,0.0000,0.0000,0.0000,35.2000,0.0000,0.0000,0.0000,37.9700,0.0000 +000856.SZ,0.0000,0.0000,0.0000,13.2300,0.0000,0.0000,0.0000,14.3400,0.0000,0.0000,0.0000,16.3400,0.0000,0.0000,0.0000,11.3400,0.0000,0.0000,0.0000,17.5800,0.0000 +300778.SZ,0.0000,0.0000,0.0000,4.8200,0.0000,0.0000,0.0000,7.2900,0.0000,0.0000,0.0000,3.6200,0.0000,0.0000,0.0000,5.9300,0.0000,0.0000,0.0000,5.5000,0.0000 +300575.SZ,0.0000,0.0000,0.0000,20.6200,0.0000,0.0000,0.0000,22.3400,0.0000,0.0000,0.0000,20.0900,0.0000,0.0000,0.0000,13.6800,0.0000,0.0000,0.0000,16.4500,0.0000 +600615.SH,0.0000,0.0000,0.0000,65.9800,0.0000,0.0000,0.0000,64.0800,0.0000,0.0000,0.0000,65.3500,0.0000,0.0000,0.0000,56.0000,0.0000,0.0000,0.0000,57.7100,0.0000 +301125.SZ,0.0000,0.0000,0.0000,24.8800,0.0000,0.0000,0.0000,22.7000,0.0000,0.0000,0.0000,25.3900,0.0000,0.0000,0.0000,18.5700,0.0000,0.0000,0.0000,21.9400,0.0000 +600843.SH,0.0000,0.0000,0.0000,6.8500,0.0000,0.0000,0.0000,8.3800,0.0000,0.0000,0.0000,9.6600,0.0000,0.0000,0.0000,8.9100,0.0000,0.0000,0.0000,8.9200,0.0000 +300619.SZ,0.0000,0.0000,0.0000,26.3400,0.0000,0.0000,0.0000,20.2300,0.0000,0.0000,0.0000,17.1100,0.0000,0.0000,0.0000,18.3100,0.0000,0.0000,0.0000,29.8700,0.0000 +873339.BJ,0.0000,0.0000,0.0000,51.9700,0.0000,0.0000,0.0000,53.3800,0.0000,45.8200,0.0000,45.3000,0.0000,0.0000,0.0000,45.4200,0.0000,0.0000,0.0000,40.2900,0.0000 +430556.BJ,0.0000,0.0000,0.0000,25.7300,0.0000,0.0000,0.0000,19.9800,0.0000,25.3000,0.0000,24.4400,0.0000,0.0000,0.0000,22.1600,0.0000,0.0000,0.0000,23.7000,0.0000 +300803.SZ,0.0000,0.0000,0.0000,22.3400,0.0000,0.0000,0.0000,24.3300,0.0000,0.0000,0.0000,19.8400,0.0000,0.0000,0.0000,17.7800,0.0000,0.0000,0.0000,18.6200,0.0000 +300749.SZ,0.0000,0.0000,0.0000,16.8800,0.0000,0.0000,0.0000,16.7700,0.0000,0.0000,0.0000,18.3000,0.0000,0.0000,0.0000,14.2400,0.0000,0.0000,0.0000,23.6400,0.0000 +002357.SZ,0.0000,0.0000,0.0000,54.6500,0.0000,0.0000,0.0000,53.7200,0.0000,0.0000,0.0000,55.3800,0.0000,0.0000,0.0000,28.0300,0.0000,0.0000,0.0000,28.7800,0.0000 +603499.SH,0.0000,0.0000,0.0000,14.7800,0.0000,0.0000,0.0000,21.7200,0.0000,0.0000,0.0000,17.0900,0.0000,0.0000,0.0000,17.9200,0.0000,0.0000,0.0000,16.4700,0.0000 +301325.SZ,0.0000,0.0000,0.0000,45.1700,0.0000,0.0000,0.0000,34.7400,0.0000,0.0000,0.0000,28.7500,0.0000,0.0000,0.0000,35.0700,0.0000,0.0000,0.0000,56.5800,0.0000 +000526.SZ,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,13.3300,0.0000,0.0000,0.0000,12.5100,0.0000 +603528.SH,0.0000,0.0000,0.0000,29.1800,0.0000,0.0000,0.0000,25.7000,0.0000,0.0000,0.0000,42.5100,0.0000,0.0000,0.0000,23.8600,0.0000,0.0000,0.0000,23.6400,0.0000 +300043.SZ,0.0000,0.0000,0.0000,43.2000,0.0000,0.0000,0.0000,25.5900,0.0000,0.0000,0.0000,31.7600,0.0000,0.0000,0.0000,19.3600,0.0000,0.0000,0.0000,26.1900,0.0000 +300101.SZ,0.0000,0.0000,0.0000,31.1400,0.0000,0.0000,0.0000,26.7500,0.0000,0.0000,0.0000,34.0900,0.0000,0.0000,0.0000,31.3800,0.0000,0.0000,0.0000,26.7900,0.0000 +603070.SH,0.0000,0.0000,0.0000,45.8300,0.0000,53.9600,0.0000,52.0000,0.0000,0.0000,0.0000,53.8000,0.0000,0.0000,0.0000,43.8700,0.0000,0.0000,0.0000,30.0500,0.0000 +300121.SZ,0.0000,0.0000,0.0000,21.3000,0.0000,0.0000,0.0000,26.3300,0.0000,0.0000,0.0000,26.4600,0.0000,0.0000,0.0000,23.1600,0.0000,0.0000,0.0000,17.5800,0.0000 +605006.SH,0.0000,0.0000,0.0000,37.5000,0.0000,0.0000,0.0000,40.6800,0.0000,0.0000,0.0000,39.5500,0.0000,0.0000,0.0000,29.1900,0.0000,0.0000,0.0000,38.3600,0.0000 +002062.SZ,0.0000,0.0000,0.0000,15.5100,0.0000,0.0000,0.0000,16.9400,0.0000,0.0000,0.0000,14.2500,0.0000,0.0000,0.0000,14.0500,0.0000,0.0000,0.0000,16.9700,0.0000 +002400.SZ,0.0000,0.0000,0.0000,42.4100,0.0000,0.0000,0.0000,40.9500,0.0000,0.0000,0.0000,51.6300,0.0000,0.0000,0.0000,59.5800,0.0000,0.0000,0.0000,70.2200,0.0000 +301172.SZ,0.0000,0.0000,0.0000,13.9900,0.0000,0.0000,0.0000,21.2700,0.0000,0.0000,0.0000,14.3800,0.0000,0.0000,0.0000,16.7700,0.0000,0.0000,0.0000,15.2900,0.0000 +600149.SH,0.0000,0.0000,0.0000,59.1100,0.0000,0.0000,0.0000,53.2100,0.0000,0.0000,0.0000,64.4300,0.0000,0.0000,0.0000,52.8700,0.0000,0.0000,0.0000,71.3200,0.0000 +605580.SH,0.0000,0.0000,0.0000,87.0000,0.0000,0.0000,0.0000,91.6800,0.0000,0.0000,0.0000,83.5400,0.0000,0.0000,0.0000,55.4500,0.0000,0.0000,0.0000,50.9400,0.0000 +688320.SH,0.0000,0.0000,0.0000,25.3700,0.0000,0.0000,0.0000,26.8500,0.0000,0.0000,0.0000,17.6200,0.0000,0.0000,0.0000,17.5300,0.0000,0.0000,0.0000,13.9800,0.0000 +002866.SZ,0.0000,0.0000,0.0000,42.5300,0.0000,0.0000,0.0000,35.0600,0.0000,0.0000,0.0000,35.2600,0.0000,0.0000,0.0000,33.0800,0.0000,0.0000,0.0000,28.9600,0.0000 +300196.SZ,0.0000,0.0000,0.0000,33.3300,0.0000,0.0000,0.0000,33.7500,0.0000,0.0000,0.0000,35.0400,0.0000,0.0000,0.0000,33.2600,0.0000,0.0000,0.0000,28.0700,0.0000 +000657.SZ,0.0000,0.0000,0.0000,44.5600,0.0000,0.0000,0.0000,47.4500,0.0000,0.0000,0.0000,44.3100,0.0000,0.0000,0.0000,45.3300,0.0000,0.0000,0.0000,41.6200,0.0000 +003029.SZ,0.0000,0.0000,0.0000,27.8500,0.0000,0.0000,0.0000,46.4800,0.0000,0.0000,0.0000,50.5100,0.0000,0.0000,0.0000,33.4000,0.0000,0.0000,0.0000,34.5000,0.0000 +300998.SZ,0.0000,0.0000,0.0000,39.2700,0.0000,0.0000,0.0000,36.0300,0.0000,0.0000,0.0000,21.4900,0.0000,0.0000,0.0000,15.4500,0.0000,0.0000,0.0000,12.5900,0.0000 +300651.SZ,0.0000,0.0000,0.0000,12.9200,0.0000,0.0000,0.0000,18.5400,0.0000,0.0000,0.0000,14.9700,0.0000,0.0000,0.0000,21.9700,0.0000,0.0000,0.0000,10.7100,0.0000 +000509.SZ,0.0000,0.0000,0.0000,97.1500,0.0000,0.0000,0.0000,62.4200,0.0000,0.0000,0.0000,41.7800,0.0000,0.0000,0.0000,42.4900,0.0000,0.0000,0.0000,51.5100,0.0000 +300667.SZ,0.0000,0.0000,0.0000,40.1000,0.0000,0.0000,0.0000,35.6300,0.0000,0.0000,0.0000,37.9700,0.0000,0.0000,0.0000,39.5900,0.0000,0.0000,0.0000,43.0400,0.0000 +600505.SH,0.0000,0.0000,0.0000,37.7000,0.0000,0.0000,0.0000,48.4300,0.0000,0.0000,0.0000,52.6900,0.0000,0.0000,0.0000,58.7100,0.0000,0.0000,0.0000,90.6700,0.0000 +000759.SZ,0.0000,0.0000,0.0000,12.9100,0.0000,0.0000,0.0000,12.9100,0.0000,0.0000,0.0000,13.8800,0.0000,18.0300,0.0000,16.7300,0.0000,0.0000,0.0000,16.8400,0.0000 +871753.BJ,0.0000,0.0000,0.0000,36.3500,0.0000,0.0000,0.0000,49.2000,0.0000,0.0000,0.0000,31.7700,0.0000,0.0000,0.0000,29.2100,0.0000,0.0000,0.0000,23.9600,0.0000 +688560.SH,0.0000,0.0000,0.0000,68.5400,0.0000,0.0000,0.0000,57.5400,0.0000,0.0000,0.0000,52.2700,0.0000,0.0000,0.0000,49.6300,0.0000,0.0000,0.0000,56.7300,0.0000 +002986.SZ,0.0000,0.0000,0.0000,93.1700,0.0000,0.0000,0.0000,64.8500,0.0000,0.0000,0.0000,78.6100,0.0000,0.0000,0.0000,61.2900,0.0000,0.0000,0.0000,69.9100,0.0000 +831305.BJ,0.0000,0.0000,0.0000,88.1900,0.0000,0.0000,0.0000,75.1000,0.0000,0.0000,0.0000,64.4500,0.0000,0.0000,0.0000,64.9100,0.0000,0.0000,0.0000,61.0700,0.0000 +002599.SZ,0.0000,0.0000,0.0000,34.2800,0.0000,0.0000,0.0000,39.8300,0.0000,0.0000,0.0000,47.4400,0.0000,0.0000,0.0000,50.2300,0.0000,0.0000,0.0000,48.7000,0.0000 +002448.SZ,0.0000,0.0000,0.0000,13.2600,0.0000,0.0000,0.0000,20.4600,0.0000,0.0000,0.0000,21.5000,0.0000,0.0000,0.0000,23.2400,0.0000,0.0000,0.0000,20.4800,0.0000 +002539.SZ,0.0000,0.0000,0.0000,13.8200,0.0000,0.0000,0.0000,18.5800,0.0000,0.0000,0.0000,18.5500,0.0000,0.0000,0.0000,16.1700,0.0000,0.0000,0.0000,17.9100,0.0000 +300331.SZ,0.0000,0.0000,0.0000,24.5500,0.0000,0.0000,0.0000,23.6200,0.0000,0.0000,0.0000,19.0500,0.0000,0.0000,0.0000,19.7900,0.0000,0.0000,0.0000,17.0100,0.0000 +600476.SH,0.0000,0.0000,0.0000,68.0000,0.0000,0.0000,0.0000,56.3900,0.0000,0.0000,0.0000,52.5200,0.0000,0.0000,0.0000,64.5100,0.0000,0.0000,0.0000,56.1500,0.0000 +603960.SH,0.0000,0.0000,0.0000,39.0100,0.0000,0.0000,0.0000,26.2200,0.0000,0.0000,0.0000,24.2300,0.0000,0.0000,0.0000,44.5700,0.0000,0.0000,0.0000,46.1300,0.0000 +605599.SH,0.0000,0.0000,0.0000,97.9400,0.0000,0.0000,0.0000,86.5500,0.0000,0.0000,0.0000,86.0500,0.0000,0.0000,0.0000,89.3700,0.0000,0.0000,0.0000,89.0300,0.0000 +600719.SH,0.0000,0.0000,0.0000,73.3900,0.0000,0.0000,0.0000,76.0500,0.0000,0.0000,0.0000,67.2400,0.0000,0.0000,0.0000,68.5900,0.0000,0.0000,0.0000,66.5600,0.0000 +002387.SZ,0.0000,0.0000,0.0000,23.7900,0.0000,0.0000,0.0000,22.9300,0.0000,0.0000,0.0000,37.8500,0.0000,0.0000,0.0000,41.5300,0.0000,0.0000,0.0000,38.2900,0.0000 +600446.SH,0.0000,0.0000,0.0000,84.7100,0.0000,0.0000,0.0000,70.1400,0.0000,0.0000,0.0000,71.4300,0.0000,0.0000,0.0000,90.3900,0.0000,0.0000,0.0000,77.2600,0.0000 +300602.SZ,0.0000,0.0000,0.0000,24.5500,0.0000,0.0000,0.0000,13.5700,0.0000,0.0000,0.0000,16.7300,0.0000,0.0000,0.0000,11.8400,0.0000,0.0000,0.0000,16.4900,0.0000 +300956.SZ,0.0000,0.0000,0.0000,22.2100,0.0000,0.0000,0.0000,17.0600,0.0000,0.0000,0.0000,21.4600,0.0000,0.0000,0.0000,23.9900,0.0000,0.0000,0.0000,11.6000,0.0000 +002771.SZ,0.0000,0.0000,0.0000,26.2700,0.0000,0.0000,0.0000,21.9400,0.0000,0.0000,0.0000,18.8600,0.0000,0.0000,0.0000,16.5800,0.0000,0.0000,0.0000,12.7400,0.0000 +002401.SZ,0.0000,0.0000,0.0000,25.4300,0.0000,0.0000,0.0000,13.4800,0.0000,0.0000,0.0000,10.9000,0.0000,0.0000,0.0000,3.6900,0.0000,0.0000,0.0000,8.0500,0.0000 +001228.SZ,0.0000,0.0000,0.0000,31.5700,0.0000,0.0000,0.0000,42.4000,0.0000,0.0000,0.0000,40.3200,0.0000,0.0000,0.0000,27.9200,0.0000,0.0000,0.0000,26.2400,0.0000 +300635.SZ,0.0000,0.0000,0.0000,33.1800,0.0000,0.0000,0.0000,36.1600,0.0000,0.0000,0.0000,41.2200,0.0000,0.0000,0.0000,28.3800,0.0000,0.0000,0.0000,31.3900,0.0000 +002510.SZ,0.0000,0.0000,0.0000,22.6400,0.0000,0.0000,0.0000,27.4200,0.0000,0.0000,0.0000,29.0800,0.0000,0.0000,0.0000,25.0900,0.0000,0.0000,0.0000,29.0200,0.0000 +688095.SH,0.0000,0.0000,0.0000,31.1400,0.0000,0.0000,0.0000,26.4400,0.0000,0.0000,0.0000,33.2400,0.0000,0.0000,0.0000,26.5400,0.0000,0.0000,0.0000,25.5000,0.0000 +831726.BJ,0.0000,0.0000,0.0000,48.9700,0.0000,0.0000,0.0000,55.9200,0.0000,0.0000,0.0000,41.3300,0.0000,0.0000,0.0000,36.8200,0.0000,0.0000,0.0000,43.4700,0.0000 +301533.SZ,0.0000,0.0000,0.0000,18.7000,0.0000,0.0000,0.0000,18.7800,0.0000,0.0000,0.0000,17.8100,0.0000,0.0000,0.0000,15.6400,0.0000,0.0000,0.0000,15.6600,0.0000 +301156.SZ,0.0000,0.0000,0.0000,28.1900,0.0000,0.0000,0.0000,35.8800,0.0000,0.0000,0.0000,36.8900,0.0000,0.0000,0.0000,38.3800,0.0000,0.0000,0.0000,31.0000,0.0000 +688786.SH,0.0000,0.0000,0.0000,77.3300,0.0000,0.0000,0.0000,59.7300,0.0000,0.0000,0.0000,42.4500,0.0000,0.0000,0.0000,54.4700,0.0000,0.0000,0.0000,45.9500,0.0000 +688443.SH,0.0000,0.0000,0.0000,23.7800,0.0000,0.0000,0.0000,28.4700,0.0000,0.0000,0.0000,38.8500,0.0000,0.0000,0.0000,25.1700,0.0000,0.0000,0.0000,19.0500,0.0000 +300442.SZ,0.0000,0.0000,0.0000,35.4700,0.0000,0.0000,0.0000,32.1400,0.0000,0.0000,0.0000,44.2900,0.0000,0.0000,0.0000,52.2500,0.0000,0.0000,0.0000,45.2600,0.0000 +300417.SZ,0.0000,0.0000,0.0000,30.3600,0.0000,0.0000,0.0000,30.8800,0.0000,0.0000,0.0000,28.7500,0.0000,0.0000,0.0000,26.0700,0.0000,0.0000,0.0000,20.1700,0.0000 +000922.SZ,0.0000,0.0000,0.0000,41.6400,0.0000,0.0000,0.0000,31.6500,0.0000,0.0000,0.0000,32.7900,0.0000,0.0000,0.0000,24.2700,0.0000,0.0000,0.0000,16.8000,0.0000 +300419.SZ,0.0000,0.0000,0.0000,58.1400,0.0000,0.0000,0.0000,57.7600,0.0000,0.0000,0.0000,68.2500,0.0000,0.0000,0.0000,47.6500,0.0000,0.0000,0.0000,32.6900,0.0000 +603759.SH,0.0000,0.0000,0.0000,17.2200,0.0000,0.0000,0.0000,20.4000,0.0000,0.0000,0.0000,16.4000,0.0000,0.0000,0.0000,18.6500,0.0000,0.0000,0.0000,21.7500,0.0000 +301046.SZ,0.0000,0.0000,0.0000,45.5800,0.0000,0.0000,0.0000,36.4100,0.0000,0.0000,0.0000,36.1500,0.0000,0.0000,0.0000,31.8900,0.0000,0.0000,0.0000,30.5000,0.0000 +002167.SZ,0.0000,0.0000,0.0000,46.3300,0.0000,0.0000,0.0000,36.3300,0.0000,0.0000,0.0000,38.4400,0.0000,0.0000,0.0000,47.0700,0.0000,0.0000,0.0000,49.4200,0.0000 +601872.SH,0.0000,0.0000,0.0000,5.1800,0.0000,0.0000,0.0000,4.7200,0.0000,0.0000,0.0000,20.4400,0.0000,0.0000,0.0000,25.8600,0.0000,0.0000,0.0000,21.5000,0.0000 +600403.SH,0.0000,0.0000,0.0000,22.0800,0.0000,0.0000,0.0000,9.0200,0.0000,0.0000,0.0000,36.4700,0.0000,0.0000,0.0000,37.5200,0.0000,0.0000,0.0000,31.8600,0.0000 +600620.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,79.5500,0.0000,0.0000,0.0000,83.9500,0.0000,0.0000,0.0000,58.7100,0.0000,0.0000,0.0000,66.9800,0.0000 +002800.SZ,0.0000,0.0000,0.0000,58.5600,0.0000,0.0000,0.0000,62.7900,0.0000,0.0000,0.0000,66.1200,0.0000,0.0000,0.0000,71.8500,0.0000,0.0000,0.0000,63.9400,0.0000 +832802.BJ,0.0000,0.0000,0.0000,33.8900,0.0000,0.0000,0.0000,40.7900,0.0000,48.2200,0.0000,46.2500,0.0000,0.0000,0.0000,48.9400,0.0000,0.0000,0.0000,52.5700,0.0000 +002681.SZ,0.0000,0.0000,0.0000,10.2400,0.0000,0.0000,0.0000,9.2900,0.0000,0.0000,0.0000,8.5000,0.0000,0.0000,0.0000,13.7600,0.0000,0.0000,0.0000,11.5900,0.0000 +002725.SZ,0.0000,0.0000,0.0000,68.9000,0.0000,0.0000,0.0000,75.4600,0.0000,0.0000,0.0000,73.9300,0.0000,0.0000,0.0000,74.6900,0.0000,0.0000,0.0000,75.2200,0.0000 +603506.SH,0.0000,0.0000,0.0000,13.1400,0.0000,0.0000,0.0000,12.9200,0.0000,0.0000,0.0000,16.5000,0.0000,0.0000,0.0000,15.5800,0.0000,0.0000,0.0000,18.3100,0.0000 +301616.SZ,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,43.1700,0.0000,0.0000,0.0000,29.2600,0.0000,0.0000,0.0000,30.7600,0.0000,35.7900,0.0000,50.8100,0.0000 +300820.SZ,0.0000,0.0000,0.0000,18.1500,0.0000,0.0000,0.0000,15.0400,0.0000,0.0000,0.0000,17.7600,0.0000,0.0000,0.0000,15.1600,0.0000,0.0000,0.0000,17.6200,0.0000 +300841.SZ,0.0000,0.0000,0.0000,51.7000,0.0000,0.0000,0.0000,58.8100,0.0000,0.0000,0.0000,51.2200,0.0000,0.0000,0.0000,55.7900,0.0000,0.0000,0.0000,47.8200,0.0000 +002993.SZ,0.0000,0.0000,0.0000,17.3400,0.0000,0.0000,0.0000,14.0800,0.0000,0.0000,0.0000,11.9200,0.0000,0.0000,0.0000,11.9100,0.0000,0.0000,0.0000,12.1100,0.0000 +300319.SZ,0.0000,0.0000,0.0000,29.6100,0.0000,0.0000,0.0000,29.5800,0.0000,0.0000,0.0000,31.8800,0.0000,0.0000,0.0000,24.5600,0.0000,0.0000,0.0000,19.4200,0.0000 +688398.SH,0.0000,0.0000,0.0000,33.8600,0.0000,0.0000,0.0000,29.5400,0.0000,0.0000,0.0000,39.2400,0.0000,0.0000,0.0000,56.8300,0.0000,0.0000,0.0000,44.0700,0.0000 +830879.BJ,0.0000,0.0000,0.0000,44.9900,0.0000,0.0000,0.0000,35.5900,0.0000,39.9300,0.0000,34.1100,0.0000,0.0000,0.0000,36.3700,0.0000,0.0000,0.0000,34.1400,0.0000 +002368.SZ,0.0000,0.0000,0.0000,11.8200,0.0000,0.0000,0.0000,14.4600,0.0000,0.0000,0.0000,13.0500,0.0000,0.0000,0.0000,11.7800,0.0000,0.0000,0.0000,12.8300,0.0000 +301083.SZ,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,21.8900,0.0000,0.0000,0.0000,18.7200,0.0000,0.0000,0.0000,20.1100,0.0000,0.0000,0.0000,16.5400,0.0000 +601137.SH,0.0000,0.0000,0.0000,35.1000,0.0000,0.0000,0.0000,44.9200,0.0000,0.0000,0.0000,54.8200,0.0000,0.0000,0.0000,42.9000,0.0000,0.0000,0.0000,49.1500,0.0000 +300894.SZ,0.0000,0.0000,0.0000,38.6600,0.0000,0.0000,0.0000,36.4300,0.0000,0.0000,0.0000,34.4200,0.0000,0.0000,0.0000,32.3400,0.0000,0.0000,0.0000,33.9900,0.0000 +300316.SZ,0.0000,0.0000,0.0000,39.2900,0.0000,0.0000,0.0000,28.5700,0.0000,0.0000,0.0000,29.3900,0.0000,0.0000,0.0000,27.2300,0.0000,0.0000,0.0000,21.6200,0.0000 +603289.SH,0.0000,0.0000,0.0000,21.7000,0.0000,0.0000,0.0000,21.3500,0.0000,0.0000,0.0000,24.4000,0.0000,0.0000,0.0000,25.0900,0.0000,0.0000,0.0000,25.7400,0.0000 +002789.SZ,0.0000,0.0000,0.0000,32.3400,0.0000,0.0000,0.0000,29.4900,0.0000,0.0000,0.0000,12.1900,0.0000,0.0000,0.0000,16.3000,0.0000,0.0000,0.0000,17.2800,0.0000 +300945.SZ,0.0000,0.0000,0.0000,68.7100,0.0000,0.0000,0.0000,75.7900,0.0000,0.0000,0.0000,84.6900,0.0000,0.0000,0.0000,88.6500,0.0000,0.0000,0.0000,90.2600,0.0000 +600133.SH,0.0000,0.0000,0.0000,9.8300,0.0000,0.0000,0.0000,14.6900,0.0000,0.0000,0.0000,8.0000,0.0000,0.0000,0.0000,12.1700,0.0000,0.0000,0.0000,43.0000,0.0000 +002786.SZ,0.0000,0.0000,0.0000,16.4300,0.0000,0.0000,0.0000,17.4300,0.0000,0.0000,0.0000,19.8300,0.0000,0.0000,0.0000,17.9300,0.0000,0.0000,0.0000,16.3800,0.0000 +002171.SZ,0.0000,0.0000,0.0000,39.9800,0.0000,0.0000,0.0000,31.3100,0.0000,0.0000,0.0000,47.5500,0.0000,0.0000,0.0000,38.6200,0.0000,0.0000,0.0000,33.0400,0.0000 +002877.SZ,0.0000,0.0000,0.0000,12.3300,0.0000,0.0000,0.0000,13.5700,0.0000,0.0000,0.0000,13.9000,0.0000,0.0000,0.0000,13.7500,0.0000,0.0000,0.0000,12.2800,0.0000 +300906.SZ,0.0000,0.0000,0.0000,43.1400,0.0000,0.0000,0.0000,42.9200,0.0000,0.0000,0.0000,40.8200,0.0000,0.0000,0.0000,55.0300,0.0000,0.0000,0.0000,49.9800,0.0000 +002767.SZ,0.0000,0.0000,0.0000,40.5000,0.0000,0.0000,0.0000,29.4800,0.0000,0.0000,0.0000,25.1800,0.0000,0.0000,0.0000,26.2100,0.0000,0.0000,0.0000,29.9100,0.0000 +603298.SH,0.0000,0.0000,0.0000,24.3400,0.0000,0.0000,0.0000,20.3700,0.0000,0.0000,0.0000,21.5700,0.0000,0.0000,0.0000,18.3000,0.0000,0.0000,0.0000,18.5900,0.0000 +603507.SH,0.0000,0.0000,0.0000,28.4300,0.0000,0.0000,0.0000,30.1800,0.0000,0.0000,0.0000,28.7400,0.0000,0.0000,0.0000,24.3000,0.0000,0.0000,0.0000,25.8500,0.0000 +300201.SZ,0.0000,0.0000,0.0000,39.5000,0.0000,0.0000,0.0000,71.7400,0.0000,0.0000,0.0000,31.6600,0.0000,0.0000,0.0000,31.9000,0.0000,0.0000,0.0000,38.8600,0.0000 +300903.SZ,0.0000,0.0000,0.0000,38.6600,0.0000,0.0000,0.0000,38.5000,0.0000,0.0000,0.0000,32.2800,0.0000,0.0000,0.0000,35.6600,0.0000,0.0000,0.0000,38.1000,0.0000 +300857.SZ,0.0000,0.0000,0.0000,52.0800,0.0000,0.0000,0.0000,53.2200,0.0000,0.0000,0.0000,61.4400,0.0000,0.0000,0.0000,70.4100,0.0000,0.0000,0.0000,69.2000,0.0000 +002065.SZ,0.0000,0.0000,0.0000,27.3600,0.0000,0.0000,0.0000,25.1600,0.0000,0.0000,0.0000,22.9900,0.0000,0.0000,0.0000,19.3300,0.0000,0.0000,0.0000,14.5000,0.0000 +000025.SZ,0.0000,0.0000,0.0000,84.0300,0.0000,0.0000,0.0000,69.6400,0.0000,0.0000,0.0000,70.8400,0.0000,0.0000,0.0000,81.7000,0.0000,0.0000,0.0000,92.5600,0.0000 +300448.SZ,0.0000,0.0000,0.0000,32.5600,0.0000,0.0000,0.0000,25.2400,0.0000,0.0000,0.0000,37.8700,0.0000,0.0000,0.0000,21.4200,0.0000,0.0000,0.0000,34.4000,0.0000 +002616.SZ,0.0000,0.0000,0.0000,21.5900,0.0000,0.0000,0.0000,29.7900,0.0000,0.0000,0.0000,29.0900,0.0000,0.0000,0.0000,27.1000,0.0000,0.0000,0.0000,21.4400,0.0000 +300588.SZ,0.0000,0.0000,0.0000,28.0100,0.0000,0.0000,0.0000,42.1400,0.0000,0.0000,0.0000,36.0400,0.0000,0.0000,0.0000,33.7500,0.0000,0.0000,0.0000,28.2400,0.0000 +002537.SZ,0.0000,0.0000,0.0000,43.0400,0.0000,0.0000,0.0000,41.4000,0.0000,0.0000,0.0000,50.8800,0.0000,0.0000,0.0000,40.3600,0.0000,0.0000,0.0000,38.3700,0.0000 +300797.SZ,0.0000,0.0000,0.0000,14.6500,0.0000,0.0000,0.0000,16.3500,0.0000,0.0000,0.0000,12.7600,0.0000,0.0000,0.0000,14.3000,0.0000,0.0000,0.0000,14.2600,0.0000 +000818.SZ,0.0000,0.0000,0.0000,48.5400,0.0000,0.0000,0.0000,46.6300,0.0000,0.0000,0.0000,38.0700,0.0000,0.0000,0.0000,60.6500,0.0000,0.0000,0.0000,62.0200,0.0000 +601619.SH,0.0000,0.0000,0.0000,95.2000,0.0000,0.0000,0.0000,82.7800,0.0000,0.0000,0.0000,78.1200,0.0000,0.0000,0.0000,65.9200,0.0000,0.0000,0.0000,84.8900,0.0000 +000953.SZ,0.0000,0.0000,0.0000,69.6600,0.0000,0.0000,0.0000,65.4800,0.0000,0.0000,0.0000,94.8000,0.0000,0.0000,0.0000,86.7600,0.0000,0.0000,0.0000,79.4600,0.0000 +300958.SZ,0.0000,0.0000,0.0000,29.5300,0.0000,0.0000,0.0000,20.4300,0.0000,0.0000,0.0000,20.6200,0.0000,0.0000,0.0000,20.7900,0.0000,0.0000,0.0000,22.0100,0.0000 +688103.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,14.9800,0.0000,0.0000,0.0000,20.6600,0.0000,0.0000,0.0000,15.7600,0.0000,0.0000,0.0000,19.2800,0.0000 +920118.BJ,0.0000,0.0000,0.0000,33.5400,0.0000,0.0000,0.0000,34.2800,0.0000,0.0000,0.0000,31.6200,0.0000,39.3000,0.0000,45.7600,0.0000,0.0000,0.0000,60.2000,0.0000 +603258.SH,0.0000,0.0000,0.0000,20.2600,0.0000,0.0000,0.0000,25.0500,0.0000,0.0000,0.0000,27.1000,0.0000,0.0000,0.0000,32.6600,0.0000,0.0000,0.0000,22.3600,0.0000 +002105.SZ,0.0000,0.0000,0.0000,16.9600,0.0000,0.0000,0.0000,19.7600,0.0000,0.0000,0.0000,18.2200,0.0000,0.0000,0.0000,16.0300,0.0000,0.0000,0.0000,13.6000,0.0000 +300698.SZ,0.0000,0.0000,0.0000,25.7600,0.0000,0.0000,0.0000,41.5200,0.0000,0.0000,0.0000,62.0300,0.0000,0.0000,0.0000,50.2900,0.0000,0.0000,0.0000,41.9700,0.0000 +836942.BJ,0.0000,0.0000,0.0000,44.7800,0.0000,0.0000,0.0000,46.3300,0.0000,40.4000,0.0000,43.5300,0.0000,0.0000,0.0000,39.2200,0.0000,0.0000,0.0000,47.8400,0.0000 +300563.SZ,0.0000,0.0000,0.0000,45.5300,0.0000,0.0000,0.0000,44.1000,0.0000,0.0000,0.0000,54.0400,0.0000,0.0000,0.0000,62.6200,0.0000,0.0000,0.0000,0.0000,0.0000 +300446.SZ,0.0000,0.0000,0.0000,32.8400,0.0000,0.0000,0.0000,31.3800,0.0000,0.0000,0.0000,38.7300,0.0000,0.0000,0.0000,14.3100,0.0000,0.0000,0.0000,17.2100,0.0000 +605088.SH,0.0000,0.0000,0.0000,25.1600,0.0000,0.0000,0.0000,26.7200,0.0000,0.0000,0.0000,22.6000,0.0000,0.0000,0.0000,22.1500,0.0000,0.0000,0.0000,20.3400,0.0000 +600302.SH,0.0000,0.0000,0.0000,39.7700,0.0000,0.0000,0.0000,61.5500,0.0000,0.0000,0.0000,37.7800,0.0000,0.0000,0.0000,37.3700,0.0000,0.0000,0.0000,35.9300,0.0000 +836433.BJ,0.0000,0.0000,0.0000,66.0000,0.0000,0.0000,0.0000,67.9800,0.0000,0.0000,0.0000,41.7300,0.0000,0.0000,0.0000,52.7300,0.0000,0.0000,0.0000,48.2200,0.0000 +002057.SZ,0.0000,0.0000,0.0000,41.1200,0.0000,0.0000,0.0000,36.4400,0.0000,0.0000,0.0000,23.2700,0.0000,0.0000,0.0000,17.8800,0.0000,0.0000,0.0000,20.4900,0.0000 +603381.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,90.2400,0.0000,0.0000,0.0000,91.0000,0.0000,0.0000,0.0000,76.0000,0.0000,0.0000,0.0000,41.3100,0.0000 +301282.SZ,0.0000,0.0000,0.0000,50.0000,0.0000,0.0000,0.0000,54.2100,0.0000,0.0000,0.0000,53.4300,0.0000,0.0000,0.0000,46.7000,0.0000,0.0000,0.0000,45.7000,0.0000 +600078.SH,0.0000,0.0000,0.0000,35.4500,0.0000,0.0000,0.0000,25.3000,0.0000,0.0000,0.0000,32.5900,0.0000,0.0000,0.0000,37.5500,0.0000,0.0000,0.0000,42.9000,0.0000 +000559.SZ,0.0000,0.0000,0.0000,16.4700,0.0000,0.0000,0.0000,26.6500,0.0000,0.0000,0.0000,17.9500,0.0000,0.0000,0.0000,25.5200,0.0000,0.0000,0.0000,23.6900,0.0000 +002879.SZ,0.0000,0.0000,0.0000,24.8700,0.0000,0.0000,0.0000,19.4800,0.0000,0.0000,0.0000,19.3600,0.0000,0.0000,0.0000,52.9600,0.0000,0.0000,0.0000,39.8400,0.0000 +603712.SH,0.0000,0.0000,0.0000,16.8000,0.0000,0.0000,0.0000,16.8700,0.0000,0.0000,0.0000,17.3700,0.0000,0.0000,0.0000,26.9700,0.0000,0.0000,0.0000,18.9800,0.0000 +688258.SH,0.0000,0.0000,0.0000,54.3200,0.0000,0.0000,0.0000,69.2000,0.0000,0.0000,0.0000,23.4800,0.0000,0.0000,0.0000,24.3500,0.0000,0.0000,0.0000,41.7000,0.0000 +300449.SZ,0.0000,0.0000,0.0000,45.4400,0.0000,0.0000,0.0000,76.8400,0.0000,0.0000,0.0000,44.3600,0.0000,0.0000,0.0000,77.4500,0.0000,0.0000,0.0000,48.3200,0.0000 +688475.SH,0.0000,0.0000,0.0000,38.3700,0.0000,0.0000,0.0000,26.8800,0.0000,22.7700,0.0000,22.4600,0.0000,0.0000,0.0000,22.5600,0.0000,0.0000,0.0000,24.7000,0.0000 +603273.SH,0.0000,0.0000,0.0000,27.3000,0.0000,0.0000,0.0000,27.2300,0.0000,0.0000,0.0000,26.5000,0.0000,0.0000,0.0000,25.7000,0.0000,0.0000,0.0000,24.8100,0.0000 +301378.SZ,0.0000,0.0000,0.0000,44.2000,0.0000,0.0000,0.0000,24.4400,0.0000,36.7000,0.0000,32.5400,0.0000,0.0000,0.0000,26.9100,0.0000,0.0000,0.0000,32.9800,0.0000 +301190.SZ,0.0000,0.0000,0.0000,53.4400,0.0000,58.3800,0.0000,51.2500,0.0000,0.0000,0.0000,40.1300,0.0000,0.0000,0.0000,21.7800,0.0000,0.0000,0.0000,26.6200,0.0000 +002451.SZ,0.0000,0.0000,0.0000,56.5800,0.0000,0.0000,0.0000,80.8500,0.0000,0.0000,0.0000,76.3900,0.0000,0.0000,0.0000,83.6300,0.0000,0.0000,0.0000,79.8400,0.0000 +603716.SH,0.0000,0.0000,0.0000,21.1800,0.0000,0.0000,0.0000,18.2200,0.0000,0.0000,0.0000,18.1000,0.0000,0.0000,0.0000,17.6900,0.0000,0.0000,0.0000,15.6600,0.0000 +000151.SZ,0.0000,0.0000,0.0000,48.1400,0.0000,0.0000,0.0000,17.7100,0.0000,0.0000,0.0000,33.1400,0.0000,0.0000,0.0000,36.8200,0.0000,0.0000,0.0000,27.6000,0.0000 +002360.SZ,0.0000,0.0000,0.0000,45.3100,0.0000,0.0000,0.0000,49.4700,0.0000,0.0000,0.0000,73.2800,0.0000,0.0000,0.0000,45.9100,0.0000,0.0000,0.0000,44.0600,0.0000 +839725.BJ,0.0000,0.0000,0.0000,71.4200,0.0000,0.0000,0.0000,82.2600,0.0000,0.0000,0.0000,58.6900,0.0000,0.0000,0.0000,66.2100,0.0000,0.0000,0.0000,91.9200,0.0000 +300513.SZ,0.0000,0.0000,0.0000,22.6900,0.0000,0.0000,0.0000,16.8900,0.0000,0.0000,0.0000,16.3500,0.0000,0.0000,0.0000,13.0100,0.0000,0.0000,0.0000,11.8800,0.0000 +300258.SZ,0.0000,0.0000,0.0000,53.1700,0.0000,0.0000,0.0000,52.3800,0.0000,0.0000,0.0000,48.6600,0.0000,0.0000,0.0000,49.7100,0.0000,0.0000,0.0000,56.0200,0.0000 +002559.SZ,0.0000,0.0000,0.0000,34.9100,0.0000,0.0000,0.0000,28.8400,0.0000,0.0000,0.0000,22.7900,0.0000,0.0000,0.0000,25.3300,0.0000,0.0000,0.0000,19.7500,0.0000 +603177.SH,0.0000,0.0000,0.0000,22.4000,0.0000,0.0000,0.0000,22.0500,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,19.8500,0.0000,0.0000,0.0000,22.9800,0.0000 +301257.SZ,0.0000,0.0000,0.0000,54.9700,0.0000,0.0000,0.0000,62.3700,0.0000,0.0000,0.0000,39.9000,0.0000,0.0000,0.0000,34.6700,0.0000,0.0000,0.0000,38.4100,0.0000 +300554.SZ,0.0000,0.0000,0.0000,56.3300,0.0000,0.0000,0.0000,35.5200,0.0000,0.0000,0.0000,60.1200,0.0000,0.0000,0.0000,44.2200,0.0000,0.0000,0.0000,46.7600,0.0000 +002266.SZ,0.0000,0.0000,0.0000,13.5900,0.0000,0.0000,0.0000,14.4100,0.0000,0.0000,0.0000,17.5100,0.0000,0.0000,0.0000,23.2300,0.0000,0.0000,0.0000,20.7000,0.0000 +873001.BJ,0.0000,0.0000,0.0000,47.2300,0.0000,0.0000,0.0000,43.2100,49.3100,0.0000,0.0000,31.9900,0.0000,0.0000,0.0000,38.9400,0.0000,0.0000,0.0000,40.4000,0.0000 +300238.SZ,0.0000,0.0000,0.0000,92.2500,0.0000,0.0000,0.0000,91.0200,0.0000,0.0000,0.0000,63.1900,0.0000,0.0000,0.0000,84.9400,0.0000,0.0000,0.0000,84.4400,0.0000 +603505.SH,0.0000,0.0000,0.0000,26.3400,0.0000,0.0000,0.0000,28.9700,0.0000,0.0000,0.0000,38.5800,0.0000,0.0000,0.0000,61.6500,0.0000,0.0000,0.0000,50.5800,0.0000 +603330.SH,0.0000,0.0000,0.0000,35.6000,0.0000,0.0000,0.0000,37.0100,0.0000,0.0000,0.0000,47.0900,0.0000,0.0000,0.0000,39.7600,0.0000,0.0000,0.0000,33.3500,0.0000 +300933.SZ,0.0000,0.0000,0.0000,38.3500,0.0000,0.0000,0.0000,40.9600,0.0000,0.0000,0.0000,54.7800,0.0000,0.0000,0.0000,58.7300,0.0000,0.0000,0.0000,51.9800,0.0000 +002185.SZ,0.0000,0.0000,0.0000,14.4000,0.0000,0.0000,0.0000,19.4600,0.0000,0.0000,0.0000,17.2300,0.0000,0.0000,0.0000,11.5100,0.0000,0.0000,0.0000,14.5400,0.0000 +002923.SZ,0.0000,0.0000,0.0000,28.1100,0.0000,0.0000,0.0000,21.4200,0.0000,0.0000,0.0000,27.0900,0.0000,0.0000,0.0000,20.9200,0.0000,0.0000,0.0000,19.8600,0.0000 +688115.SH,0.0000,0.0000,0.0000,52.7800,0.0000,57.6900,0.0000,0.0000,0.0000,0.0000,0.0000,48.0100,0.0000,0.0000,0.0000,45.9000,0.0000,0.0000,0.0000,39.3200,0.0000 +603536.SH,0.0000,0.0000,0.0000,22.1300,0.0000,0.0000,0.0000,14.8500,0.0000,0.0000,0.0000,7.7400,0.0000,0.0000,0.0000,13.6500,0.0000,0.0000,0.0000,15.0700,0.0000 +002745.SZ,0.0000,0.0000,0.0000,20.6900,0.0000,0.0000,0.0000,22.4300,0.0000,0.0000,0.0000,13.0700,0.0000,0.0000,0.0000,13.7600,0.0000,0.0000,0.0000,15.6200,0.0000 +688556.SH,0.0000,0.0000,0.0000,25.7200,0.0000,0.0000,0.0000,27.2000,0.0000,0.0000,0.0000,30.3000,0.0000,0.0000,0.0000,22.2400,0.0000,0.0000,0.0000,34.4500,0.0000 +301260.SZ,0.0000,0.0000,0.0000,24.2200,0.0000,0.0000,0.0000,24.0600,0.0000,36.2600,0.0000,28.2600,0.0000,0.0000,0.0000,22.2400,0.0000,0.0000,0.0000,20.8300,0.0000 +301388.SZ,0.0000,0.0000,0.0000,16.2800,0.0000,0.0000,0.0000,19.9500,0.0000,13.1900,0.0000,17.3800,0.0000,0.0000,0.0000,17.1400,0.0000,0.0000,0.0000,19.8700,0.0000 +836221.BJ,0.0000,0.0000,0.0000,49.7000,0.0000,0.0000,0.0000,52.8200,0.0000,48.7400,0.0000,46.8500,0.0000,0.0000,0.0000,42.3600,0.0000,0.0000,0.0000,37.6400,0.0000 +002391.SZ,0.0000,0.0000,0.0000,12.1200,0.0000,0.0000,0.0000,13.4700,0.0000,0.0000,0.0000,12.7400,0.0000,0.0000,0.0000,18.0800,0.0000,0.0000,0.0000,16.7300,0.0000 +688778.SH,0.0000,0.0000,0.0000,55.9300,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,51.3900,0.0000,0.0000,0.0000,51.8900,0.0000,0.0000,0.0000,49.9400,0.0000 +838701.BJ,0.0000,0.0000,0.0000,25.8300,0.0000,0.0000,0.0000,26.9100,0.0000,31.4700,0.0000,30.9700,0.0000,0.0000,0.0000,34.6800,0.0000,0.0000,0.0000,39.0100,0.0000 +300700.SZ,0.0000,0.0000,0.0000,35.3400,0.0000,0.0000,0.0000,32.9400,0.0000,0.0000,0.0000,45.3200,0.0000,0.0000,0.0000,49.7100,0.0000,0.0000,0.0000,53.0500,0.0000 +300617.SZ,0.0000,0.0000,0.0000,34.4300,0.0000,0.0000,0.0000,14.3500,0.0000,0.0000,0.0000,22.7200,0.0000,0.0000,0.0000,27.9600,0.0000,0.0000,0.0000,15.0500,0.0000 +600119.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,33.3200,0.0000,0.0000,0.0000,37.4800,0.0000,0.0000,0.0000,28.2500,0.0000,0.0000,0.0000,28.9000,0.0000 +838402.BJ,0.0000,0.0000,0.0000,78.7100,0.0000,81.8600,0.0000,77.1000,0.0000,0.0000,0.0000,71.1800,0.0000,0.0000,0.0000,71.7400,0.0000,0.0000,0.0000,79.8700,0.0000 +605055.SH,0.0000,0.0000,0.0000,48.1600,0.0000,0.0000,0.0000,39.1000,0.0000,0.0000,0.0000,38.4000,0.0000,0.0000,0.0000,50.0000,0.0000,0.0000,0.0000,46.6600,0.0000 +688515.SH,0.0000,0.0000,0.0000,100.0000,0.0000,0.0000,0.0000,99.9200,0.0000,99.8000,0.0000,99.7500,0.0000,0.0000,0.0000,94.2400,0.0000,0.0000,0.0000,97.5300,0.0000 +600207.SH,0.0000,0.0000,0.0000,55.0000,0.0000,0.0000,0.0000,37.0000,0.0000,0.0000,0.0000,43.0000,0.0000,0.0000,0.0000,41.0000,0.0000,0.0000,0.0000,41.0000,0.0000 +300525.SZ,0.0000,0.0000,0.0000,15.0600,0.0000,0.0000,0.0000,14.1900,0.0000,0.0000,0.0000,13.3400,0.0000,0.0000,0.0000,14.3800,0.0000,0.0000,0.0000,11.6200,0.0000 +834770.BJ,0.0000,0.0000,0.0000,32.9300,0.0000,0.0000,0.0000,59.8300,0.0000,46.8000,0.0000,55.4500,0.0000,0.0000,0.0000,59.5800,0.0000,0.0000,0.0000,38.7400,0.0000 +300308.SZ,0.0000,0.0000,0.0000,36.7600,0.0000,0.0000,0.0000,38.6000,0.0000,0.0000,0.0000,41.3000,0.0000,0.0000,0.0000,49.4300,0.0000,0.0000,0.0000,50.9600,0.0000 +837748.BJ,0.0000,0.0000,0.0000,18.1600,0.0000,0.0000,0.0000,21.5200,0.0000,0.0000,23.1900,23.0400,0.0000,0.0000,0.0000,16.7100,0.0000,0.0000,0.0000,19.1400,0.0000 +688567.SH,0.0000,0.0000,0.0000,42.9200,0.0000,0.0000,0.0000,34.2200,0.0000,0.0000,0.0000,41.6900,0.0000,0.0000,0.0000,38.2000,0.0000,0.0000,0.0000,37.1000,0.0000 +688067.SH,0.0000,0.0000,0.0000,30.4100,0.0000,0.0000,0.0000,26.5200,0.0000,0.0000,0.0000,25.8300,0.0000,0.0000,0.0000,23.3200,0.0000,0.0000,0.0000,13.5600,0.0000 +600868.SH,0.0000,0.0000,0.0000,7.3100,0.0000,0.0000,0.0000,11.5600,0.0000,0.0000,0.0000,7.5400,0.0000,0.0000,0.0000,9.3900,0.0000,0.0000,0.0000,15.6800,0.0000 +002080.SZ,0.0000,0.0000,0.0000,10.4500,0.0000,0.0000,0.0000,13.3100,0.0000,0.0000,0.0000,10.5100,0.0000,0.0000,0.0000,13.6600,0.0000,0.0000,0.0000,12.2100,0.0000 +000862.SZ,0.0000,0.0000,0.0000,30.8400,0.0000,0.0000,0.0000,43.8300,0.0000,0.0000,0.0000,35.4500,0.0000,0.0000,0.0000,44.3300,0.0000,0.0000,0.0000,38.5300,0.0000 +603333.SH,0.0000,0.0000,0.0000,65.2000,0.0000,0.0000,0.0000,72.5000,0.0000,0.0000,0.0000,70.5400,0.0000,0.0000,0.0000,59.0800,0.0000,0.0000,0.0000,48.9600,0.0000 +002132.SZ,0.0000,0.0000,0.0000,62.4800,0.0000,0.0000,0.0000,43.9800,0.0000,0.0000,0.0000,43.6500,0.0000,0.0000,0.0000,36.6600,0.0000,0.0000,0.0000,48.2400,0.0000 +603920.SH,0.0000,0.0000,0.0000,35.2400,0.0000,0.0000,0.0000,37.3800,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,45.0000,0.0000,0.0000,0.0000,48.0200,0.0000 +833914.BJ,0.0000,0.0000,0.0000,92.4100,0.0000,0.0000,0.0000,92.1100,0.0000,90.9400,0.0000,82.9900,0.0000,0.0000,0.0000,80.1100,0.0000,0.0000,0.0000,75.5300,0.0000 +002885.SZ,0.0000,0.0000,0.0000,18.9300,0.0000,0.0000,0.0000,9.6100,0.0000,0.0000,0.0000,24.1400,0.0000,0.0000,0.0000,27.2800,0.0000,0.0000,0.0000,23.2100,0.0000 +430478.BJ,0.0000,0.0000,0.0000,34.1500,0.0000,0.0000,0.0000,38.2600,0.0000,34.1300,0.0000,33.8300,0.0000,0.0000,0.0000,29.0400,0.0000,0.0000,0.0000,30.9800,0.0000 +600626.SH,0.0000,0.0000,0.0000,7.4000,0.0000,0.0000,0.0000,7.3000,0.0000,0.0000,0.0000,9.3800,0.0000,0.0000,0.0000,9.1600,0.0000,0.0000,0.0000,8.2900,0.0000 +688565.SH,0.0000,0.0000,36.3900,0.0000,0.0000,0.0000,0.0000,22.6600,0.0000,0.0000,0.0000,18.3600,0.0000,0.0000,0.0000,16.8000,0.0000,0.0000,0.0000,18.9100,0.0000 +601616.SH,0.0000,0.0000,0.0000,13.4800,0.0000,0.0000,0.0000,16.6800,0.0000,0.0000,0.0000,16.8900,0.0000,0.0000,0.0000,25.3100,0.0000,0.0000,0.0000,24.3000,0.0000 +873167.BJ,0.0000,0.0000,0.0000,28.7700,0.0000,0.0000,0.0000,34.8700,0.0000,39.7600,0.0000,31.6600,0.0000,0.0000,0.0000,22.8600,0.0000,0.0000,0.0000,27.5400,0.0000 +001222.SZ,0.0000,0.0000,0.0000,41.2900,0.0000,0.0000,0.0000,34.8500,0.0000,0.0000,0.0000,36.6500,0.0000,0.0000,0.0000,35.2100,0.0000,0.0000,0.0000,33.6200,0.0000 +600081.SH,0.0000,0.0000,0.0000,29.5700,0.0000,0.0000,0.0000,27.5200,0.0000,0.0000,0.0000,24.4200,0.0000,0.0000,0.0000,30.9000,0.0000,0.0000,0.0000,19.5300,0.0000 +300471.SZ,0.0000,0.0000,0.0000,24.1500,0.0000,0.0000,0.0000,26.9600,0.0000,0.0000,0.0000,29.4500,0.0000,0.0000,0.0000,30.3100,0.0000,0.0000,0.0000,19.9100,0.0000 +300686.SZ,0.0000,0.0000,0.0000,14.7700,0.0000,0.0000,0.0000,17.7900,0.0000,0.0000,0.0000,17.1100,0.0000,0.0000,0.0000,19.9400,0.0000,0.0000,0.0000,15.1800,0.0000 +688262.SH,0.0000,0.0000,0.0000,62.3500,0.0000,58.5200,0.0000,53.3900,0.0000,0.0000,0.0000,64.1200,0.0000,0.0000,0.0000,71.2400,0.0000,0.0000,0.0000,84.7500,0.0000 +603321.SH,0.0000,0.0000,0.0000,18.7600,0.0000,0.0000,0.0000,19.8700,0.0000,0.0000,0.0000,16.1800,0.0000,0.0000,0.0000,22.4700,0.0000,0.0000,0.0000,36.1100,0.0000 +300543.SZ,0.0000,0.0000,0.0000,31.7400,0.0000,0.0000,0.0000,37.0100,0.0000,0.0000,0.0000,33.3300,0.0000,0.0000,0.0000,28.8900,0.0000,0.0000,0.0000,10.8800,0.0000 +688025.SH,0.0000,0.0000,0.0000,28.8300,0.0000,0.0000,0.0000,27.5300,0.0000,0.0000,0.0000,28.1300,0.0000,0.0000,0.0000,32.8200,0.0000,0.0000,0.0000,29.2300,0.0000 +301603.SZ,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,40.7900,0.0000,0.0000,0.0000,42.9400,0.0000,0.0000,0.0000,47.9700,0.0000,0.0000,0.0000,50.1000,0.0000 +603896.SH,0.0000,0.0000,0.0000,41.0400,0.0000,0.0000,0.0000,48.9700,0.0000,0.0000,0.0000,41.7800,0.0000,0.0000,0.0000,26.9800,0.0000,0.0000,0.0000,33.9500,0.0000 +300160.SZ,0.0000,0.0000,0.0000,45.5000,0.0000,0.0000,0.0000,48.9000,0.0000,0.0000,0.0000,43.4300,0.0000,0.0000,0.0000,44.1600,0.0000,0.0000,0.0000,41.1800,0.0000 +600051.SH,0.0000,0.0000,0.0000,18.7000,0.0000,0.0000,0.0000,28.5000,0.0000,0.0000,0.0000,68.1000,0.0000,0.0000,0.0000,31.8000,0.0000,0.0000,0.0000,72.0000,0.0000 +833394.BJ,0.0000,0.0000,0.0000,98.9600,0.0000,0.0000,0.0000,96.8500,98.7400,0.0000,98.4000,98.4100,0.0000,0.0000,0.0000,97.5500,0.0000,0.0000,0.0000,94.4700,0.0000 +301279.SZ,0.0000,0.0000,0.0000,27.2900,0.0000,28.1400,0.0000,25.9900,0.0000,0.0000,0.0000,22.7800,0.0000,0.0000,0.0000,23.8100,0.0000,0.0000,0.0000,23.6900,0.0000 +688158.SH,0.0000,0.0000,0.0000,33.3300,0.0000,0.0000,0.0000,31.9600,0.0000,0.0000,0.0000,39.2800,0.0000,0.0000,0.0000,41.0600,0.0000,0.0000,0.0000,40.8300,0.0000 +603421.SH,0.0000,0.0000,0.0000,10.2900,0.0000,0.0000,0.0000,18.6300,0.0000,0.0000,0.0000,28.5000,0.0000,0.0000,0.0000,27.3100,0.0000,0.0000,0.0000,13.3000,0.0000 +834950.BJ,0.0000,0.0000,0.0000,36.4100,0.0000,0.0000,0.0000,39.3800,0.0000,41.8500,0.0000,39.1400,0.0000,0.0000,0.0000,30.9800,0.0000,0.0000,0.0000,29.6000,0.0000 +300212.SZ,0.0000,0.0000,0.0000,54.2800,0.0000,0.0000,0.0000,36.4800,0.0000,0.0000,0.0000,34.9400,0.0000,0.0000,0.0000,34.9800,0.0000,0.0000,0.0000,14.8900,0.0000 +001356.SZ,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,41.3100,0.0000,0.0000,0.0000,38.9100,0.0000,0.0000,0.0000,41.7700,0.0000,48.0900,0.0000,46.1700,0.0000 +002523.SZ,0.0000,0.0000,0.0000,17.5100,0.0000,0.0000,0.0000,9.8700,0.0000,0.0000,0.0000,7.9900,0.0000,0.0000,0.0000,8.5800,0.0000,0.0000,0.0000,11.1400,0.0000 +300076.SZ,0.0000,0.0000,0.0000,36.6700,0.0000,0.0000,0.0000,45.2400,0.0000,0.0000,0.0000,45.9800,0.0000,0.0000,0.0000,22.5800,0.0000,0.0000,0.0000,42.1100,0.0000 +300276.SZ,0.0000,0.0000,0.0000,11.3200,0.0000,0.0000,0.0000,14.1200,0.0000,0.0000,0.0000,14.8900,0.0000,0.0000,0.0000,14.1600,0.0000,0.0000,0.0000,11.8200,0.0000 +002611.SZ,0.0000,0.0000,0.0000,12.1200,0.0000,0.0000,0.0000,10.9200,0.0000,0.0000,0.0000,12.2100,0.0000,0.0000,0.0000,17.2800,0.0000,0.0000,0.0000,19.2200,0.0000 +688496.SH,0.0000,0.0000,0.0000,42.1500,0.0000,0.0000,0.0000,45.9900,0.0000,57.3700,0.0000,56.3800,0.0000,0.0000,0.0000,57.8400,0.0000,0.0000,0.0000,46.1800,0.0000 +300467.SZ,0.0000,0.0000,0.0000,59.0900,0.0000,0.0000,0.0000,68.3800,0.0000,0.0000,0.0000,61.4700,0.0000,0.0000,0.0000,64.7600,0.0000,0.0000,0.0000,60.1500,0.0000 +839719.BJ,0.0000,0.0000,0.0000,40.9700,0.0000,0.0000,0.0000,33.4000,0.0000,36.5400,0.0000,38.5200,0.0000,0.0000,0.0000,38.3000,0.0000,0.0000,0.0000,44.6600,0.0000 +002283.SZ,0.0000,0.0000,0.0000,34.4700,0.0000,0.0000,0.0000,27.0400,0.0000,0.0000,0.0000,24.5200,0.0000,0.0000,0.0000,27.0200,0.0000,0.0000,0.0000,22.1100,0.0000 +688080.SH,0.0000,0.0000,0.0000,44.5000,0.0000,0.0000,0.0000,35.1400,0.0000,0.0000,0.0000,45.7400,0.0000,0.0000,0.0000,35.7000,0.0000,0.0000,0.0000,40.1800,0.0000 +835985.BJ,0.0000,0.0000,0.0000,60.6600,0.0000,0.0000,59.1000,61.3600,0.0000,0.0000,0.0000,58.7900,0.0000,0.0000,0.0000,55.9200,0.0000,0.0000,0.0000,33.5200,0.0000 +603956.SH,0.0000,0.0000,0.0000,33.3800,0.0000,0.0000,0.0000,30.9500,0.0000,0.0000,0.0000,30.9500,0.0000,0.0000,0.0000,18.0400,0.0000,0.0000,0.0000,21.9900,0.0000 +002337.SZ,0.0000,0.0000,0.0000,23.2300,0.0000,0.0000,0.0000,20.4200,0.0000,0.0000,0.0000,50.1200,0.0000,0.0000,0.0000,25.3400,0.0000,0.0000,0.0000,16.4700,0.0000 +688118.SH,0.0000,0.0000,0.0000,47.3300,0.0000,0.0000,0.0000,46.3300,0.0000,0.0000,0.0000,38.6100,0.0000,0.0000,0.0000,45.4400,0.0000,0.0000,0.0000,39.0300,0.0000 +688709.SH,0.0000,0.0000,0.0000,47.4300,0.0000,0.0000,0.0000,55.4400,0.0000,0.0000,0.0000,51.8100,0.0000,59.5900,0.0000,42.2700,0.0000,0.0000,0.0000,41.7300,0.0000 +600609.SH,0.0000,0.0000,0.0000,33.0400,0.0000,0.0000,0.0000,31.2100,0.0000,0.0000,0.0000,43.5400,0.0000,0.0000,0.0000,48.9500,0.0000,0.0000,0.0000,55.4100,0.0000 +002493.SZ,0.0000,0.0000,0.0000,28.7200,0.0000,0.0000,0.0000,41.6300,0.0000,0.0000,0.0000,42.8000,0.0000,0.0000,0.0000,47.0100,0.0000,0.0000,0.0000,58.2400,0.0000 +002654.SZ,0.0000,0.0000,0.0000,45.4200,0.0000,0.0000,0.0000,61.5500,0.0000,0.0000,0.0000,56.5400,0.0000,0.0000,0.0000,58.5100,0.0000,0.0000,0.0000,46.4800,0.0000 +301512.SZ,0.0000,0.0000,0.0000,31.2000,0.0000,0.0000,0.0000,21.8300,0.0000,0.0000,0.0000,20.6600,0.0000,0.0000,0.0000,19.1900,0.0000,0.0000,0.0000,13.6400,0.0000 +002489.SZ,0.0000,0.0000,0.0000,17.4000,0.0000,0.0000,0.0000,15.4200,0.0000,0.0000,0.0000,16.0000,0.0000,0.0000,0.0000,21.0000,0.0000,0.0000,0.0000,18.3600,0.0000 +834021.BJ,0.0000,0.0000,0.0000,32.0900,0.0000,0.0000,0.0000,41.9200,0.0000,0.0000,0.0000,52.3100,0.0000,0.0000,0.0000,58.2100,0.0000,0.0000,0.0000,56.1400,0.0000 +688027.SH,0.0000,0.0000,0.0000,31.2400,0.0000,0.0000,0.0000,29.9900,0.0000,0.0000,0.0000,31.5300,0.0000,0.0000,0.0000,31.9300,0.0000,0.0000,0.0000,20.4500,0.0000 +300579.SZ,0.0000,0.0000,0.0000,14.9600,0.0000,0.0000,0.0000,18.8400,0.0000,0.0000,0.0000,31.6900,0.0000,0.0000,0.0000,25.1300,0.0000,0.0000,0.0000,27.4900,0.0000 +300730.SZ,0.0000,0.0000,0.0000,32.3700,0.0000,0.0000,0.0000,23.9100,0.0000,0.0000,0.0000,38.3400,0.0000,0.0000,0.0000,66.1700,0.0000,0.0000,0.0000,30.9800,0.0000 +000901.SZ,0.0000,0.0000,0.0000,9.2700,0.0000,0.0000,0.0000,11.1600,0.0000,0.0000,0.0000,9.4500,0.0000,0.0000,0.0000,14.1500,0.0000,0.0000,0.0000,7.8700,0.0000 +600805.SH,0.0000,0.0000,0.0000,40.8400,0.0000,0.0000,0.0000,35.4600,0.0000,0.0000,0.0000,40.2300,0.0000,0.0000,0.0000,43.1600,0.0000,0.0000,0.0000,38.3000,0.0000 +000628.SZ,0.0000,0.0000,0.0000,11.2100,0.0000,0.0000,0.0000,15.3000,0.0000,0.0000,0.0000,19.7000,0.0000,0.0000,0.0000,16.9300,0.0000,0.0000,0.0000,17.2800,0.0000 +301132.SZ,0.0000,0.0000,0.0000,57.5500,0.0000,0.0000,0.0000,53.6200,0.0000,0.0000,0.0000,32.1200,0.0000,0.0000,0.0000,25.0500,0.0000,0.0000,0.0000,39.6700,0.0000 +688362.SH,0.0000,0.0000,0.0000,45.1000,0.0000,0.0000,0.0000,49.4800,0.0000,58.8100,0.0000,44.2000,0.0000,0.0000,0.0000,29.1700,0.0000,0.0000,0.0000,37.0500,0.0000 +688633.SH,0.0000,0.0000,0.0000,65.2900,0.0000,0.0000,0.0000,54.3800,0.0000,0.0000,0.0000,55.6900,0.0000,0.0000,0.0000,45.5100,0.0000,0.0000,0.0000,31.2800,0.0000 +920060.BJ,0.0000,0.0000,0.0000,72.2500,0.0000,0.0000,0.0000,60.7000,0.0000,0.0000,0.0000,57.3800,0.0000,60.1000,0.0000,59.7600,0.0000,54.6700,0.0000,57.2400,0.0000 +603980.SH,0.0000,0.0000,0.0000,18.4500,0.0000,0.0000,0.0000,19.4300,0.0000,0.0000,0.0000,20.7300,0.0000,0.0000,0.0000,28.1300,0.0000,0.0000,0.0000,26.1700,0.0000 +301566.SZ,0.0000,0.0000,0.0000,88.0600,0.0000,0.0000,0.0000,91.7800,0.0000,0.0000,0.0000,87.7000,0.0000,80.4400,0.0000,78.9100,0.0000,0.0000,0.0000,75.8500,0.0000 +301058.SZ,0.0000,0.0000,0.0000,26.1100,0.0000,0.0000,0.0000,19.5700,0.0000,0.0000,0.0000,18.9600,0.0000,0.0000,0.0000,5.6900,0.0000,0.0000,0.0000,11.6500,0.0000 +301626.SZ,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,49.1800,0.0000,0.0000,0.0000,44.2000,0.0000,0.0000,0.0000,45.7100,0.0000,0.0000,0.0000,23.7600,0.0000 +002716.SZ,0.0000,0.0000,0.0000,84.7000,0.0000,0.0000,0.0000,73.3000,0.0000,0.0000,0.0000,88.4500,0.0000,0.0000,0.0000,80.5600,0.0000,0.0000,0.0000,79.4700,0.0000 +300655.SZ,0.0000,0.0000,0.0000,67.4400,0.0000,0.0000,0.0000,65.6000,0.0000,0.0000,0.0000,70.3800,0.0000,0.0000,0.0000,52.4100,0.0000,0.0000,0.0000,45.5200,0.0000 +002856.SZ,0.0000,0.0000,0.0000,30.5100,0.0000,0.0000,0.0000,36.2900,0.0000,0.0000,0.0000,29.5500,0.0000,0.0000,0.0000,30.7700,0.0000,0.0000,0.0000,29.3200,0.0000 +300304.SZ,0.0000,0.0000,0.0000,24.2100,0.0000,0.0000,0.0000,26.0800,0.0000,0.0000,0.0000,24.4500,0.0000,0.0000,0.0000,25.5400,0.0000,0.0000,0.0000,20.2000,0.0000 +300371.SZ,0.0000,0.0000,0.0000,25.4800,0.0000,0.0000,0.0000,36.2300,0.0000,0.0000,0.0000,39.4200,0.0000,0.0000,0.0000,34.1000,0.0000,0.0000,0.0000,30.5900,0.0000 +002927.SZ,0.0000,0.0000,0.0000,17.8100,0.0000,0.0000,0.0000,17.2600,0.0000,0.0000,0.0000,18.4900,0.0000,0.0000,0.0000,18.8600,0.0000,0.0000,0.0000,21.3300,0.0000 +002237.SZ,0.0000,0.0000,0.0000,28.1100,0.0000,0.0000,0.0000,24.2200,0.0000,0.0000,0.0000,24.8300,0.0000,0.0000,0.0000,22.0200,0.0000,0.0000,0.0000,29.2000,0.0000 +300971.SZ,0.0000,23.3200,0.0000,21.6200,0.0000,0.0000,0.0000,24.3500,0.0000,0.0000,0.0000,14.0300,0.0000,0.0000,0.0000,25.6000,0.0000,0.0000,0.0000,20.8800,0.0000 +000962.SZ,0.0000,0.0000,0.0000,53.6600,0.0000,0.0000,0.0000,51.4900,0.0000,0.0000,0.0000,54.8900,0.0000,0.0000,0.0000,45.3500,0.0000,0.0000,0.0000,36.8600,0.0000 +301317.SZ,0.0000,0.0000,0.0000,24.9700,0.0000,0.0000,0.0000,23.8700,0.0000,18.6100,0.0000,15.3700,0.0000,0.0000,0.0000,38.2400,0.0000,0.0000,0.0000,26.6600,0.0000 +601156.SH,0.0000,0.0000,0.0000,68.2600,0.0000,0.0000,0.0000,67.4800,0.0000,0.0000,0.0000,75.8600,0.0000,0.0000,0.0000,70.8900,0.0000,0.0000,0.0000,67.6900,0.0000 +688238.SH,0.0000,0.0000,0.0000,31.1100,0.0000,36.9400,0.0000,0.0000,0.0000,0.0000,0.0000,24.0700,0.0000,0.0000,0.0000,18.2000,0.0000,0.0000,0.0000,40.4100,0.0000 +300088.SZ,0.0000,0.0000,0.0000,46.8700,0.0000,0.0000,0.0000,32.9200,0.0000,0.0000,0.0000,23.9600,0.0000,0.0000,0.0000,32.7300,0.0000,0.0000,0.0000,35.5000,0.0000 +603906.SH,0.0000,0.0000,0.0000,26.3200,0.0000,0.0000,0.0000,32.4900,0.0000,0.0000,0.0000,26.3800,0.0000,0.0000,0.0000,37.2800,0.0000,0.0000,0.0000,32.1600,0.0000 +601698.SH,0.0000,0.0000,0.0000,73.9000,0.0000,0.0000,0.0000,66.3200,0.0000,0.0000,0.0000,77.5300,0.0000,0.0000,0.0000,76.1500,0.0000,0.0000,0.0000,58.4100,0.0000 +002218.SZ,0.0000,0.0000,0.0000,28.9800,0.0000,0.0000,0.0000,27.8800,0.0000,0.0000,0.0000,23.3900,0.0000,0.0000,0.0000,41.0500,0.0000,0.0000,0.0000,29.5500,0.0000 +000803.SZ,0.0000,0.0000,0.0000,51.0000,0.0000,0.0000,0.0000,43.7900,0.0000,0.0000,0.0000,20.4700,0.0000,0.0000,0.0000,21.9400,0.0000,0.0000,0.0000,40.9500,0.0000 +600686.SH,0.0000,0.0000,0.0000,20.6600,0.0000,0.0000,0.0000,24.0200,0.0000,0.0000,0.0000,26.2800,0.0000,0.0000,0.0000,18.8400,0.0000,0.0000,0.0000,20.2200,0.0000 +600988.SH,0.0000,0.0000,0.0000,19.0200,0.0000,0.0000,0.0000,23.9200,0.0000,0.0000,0.0000,18.1400,0.0000,0.0000,0.0000,16.9000,0.0000,0.0000,0.0000,18.8900,0.0000 +920008.BJ,0.0000,0.0000,0.0000,51.7400,0.0000,0.0000,0.0000,43.0000,0.0000,0.0000,0.0000,55.0200,66.4300,0.0000,0.0000,56.0800,0.0000,0.0000,0.0000,60.2100,0.0000 +300243.SZ,0.0000,0.0000,0.0000,24.7100,0.0000,0.0000,0.0000,29.0600,0.0000,0.0000,0.0000,35.3000,0.0000,0.0000,0.0000,41.7300,0.0000,0.0000,0.0000,41.4500,0.0000 +300535.SZ,0.0000,0.0000,0.0000,19.7200,0.0000,0.0000,0.0000,25.9300,0.0000,0.0000,0.0000,11.1700,0.0000,0.0000,0.0000,19.7500,0.0000,0.0000,0.0000,14.9700,0.0000 +605555.SH,0.0000,0.0000,0.0000,22.4700,0.0000,0.0000,0.0000,17.9300,0.0000,0.0000,0.0000,22.9300,0.0000,0.0000,0.0000,16.2400,0.0000,0.0000,0.0000,15.2100,0.0000 +300611.SZ,0.0000,0.0000,0.0000,43.3000,0.0000,0.0000,0.0000,46.0400,0.0000,0.0000,0.0000,34.5400,0.0000,0.0000,0.0000,41.1400,0.0000,0.0000,0.0000,38.7600,0.0000 +301326.SZ,0.0000,0.0000,0.0000,35.6200,0.0000,0.0000,0.0000,38.7900,0.0000,0.0000,0.0000,30.6500,0.0000,0.0000,0.0000,27.7600,0.0000,0.0000,0.0000,24.7400,0.0000 +301218.SZ,0.0000,0.0000,0.0000,19.0600,0.0000,26.7900,0.0000,26.4500,0.0000,0.0000,0.0000,26.7100,0.0000,0.0000,0.0000,30.0400,0.0000,0.0000,0.0000,25.4400,0.0000 +603690.SH,0.0000,0.0000,0.0000,24.9900,0.0000,0.0000,0.0000,30.5300,0.0000,0.0000,0.0000,23.2000,0.0000,0.0000,0.0000,21.1600,0.0000,0.0000,0.0000,27.9600,0.0000 +600120.SH,0.0000,0.0000,0.0000,21.3700,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,16.2500,0.0000,0.0000,0.0000,28.8800,0.0000,0.0000,0.0000,19.1400,0.0000 +688210.SH,0.0000,0.0000,0.0000,37.5000,0.0000,37.3900,0.0000,29.2300,0.0000,0.0000,0.0000,51.5700,0.0000,0.0000,0.0000,37.6600,0.0000,0.0000,0.0000,23.0300,0.0000 +002949.SZ,0.0000,0.0000,0.0000,71.6900,0.0000,0.0000,0.0000,84.5000,0.0000,0.0000,0.0000,52.0400,0.0000,0.0000,0.0000,36.6600,0.0000,0.0000,0.0000,17.3000,0.0000 +300397.SZ,0.0000,0.0000,0.0000,28.1400,0.0000,0.0000,0.0000,24.1600,0.0000,0.0000,0.0000,19.6600,0.0000,0.0000,0.0000,43.4700,0.0000,0.0000,0.0000,28.5000,0.0000 +603825.SH,0.0000,0.0000,0.0000,43.5200,0.0000,0.0000,0.0000,49.8600,0.0000,0.0000,0.0000,46.3500,0.0000,0.0000,0.0000,61.3400,0.0000,0.0000,0.0000,58.7300,0.0000 +603328.SH,0.0000,0.0000,0.0000,33.9700,0.0000,0.0000,0.0000,35.4600,0.0000,0.0000,0.0000,40.7800,0.0000,0.0000,0.0000,39.7800,0.0000,0.0000,0.0000,43.4000,0.0000 +300891.SZ,0.0000,0.0000,0.0000,52.8600,0.0000,0.0000,0.0000,64.1300,0.0000,0.0000,0.0000,65.0100,0.0000,0.0000,0.0000,61.3800,0.0000,0.0000,0.0000,65.4800,0.0000 +836547.BJ,0.0000,0.0000,0.0000,37.9900,0.0000,0.0000,0.0000,37.2000,0.0000,0.0000,33.5400,32.7600,0.0000,33.1400,0.0000,36.7700,0.0000,0.0000,0.0000,35.4700,0.0000 +600654.SH,0.0000,0.0000,0.0000,7.8900,0.0000,0.0000,0.0000,9.9800,0.0000,0.0000,0.0000,13.3300,0.0000,0.0000,0.0000,9.9000,0.0000,0.0000,0.0000,8.3800,0.0000 +002495.SZ,0.0000,0.0000,0.0000,41.3600,0.0000,0.0000,0.0000,45.0900,0.0000,0.0000,0.0000,53.2900,0.0000,0.0000,0.0000,56.5700,0.0000,0.0000,0.0000,55.1100,0.0000 +603729.SH,0.0000,0.0000,0.0000,46.7900,0.0000,0.0000,0.0000,44.7200,0.0000,0.0000,0.0000,42.4900,0.0000,0.0000,0.0000,49.2500,0.0000,0.0000,0.0000,43.8500,0.0000 +300605.SZ,0.0000,0.0000,0.0000,15.0500,0.0000,0.0000,0.0000,21.9500,0.0000,0.0000,0.0000,40.9400,0.0000,0.0000,0.0000,28.4700,0.0000,0.0000,0.0000,23.8400,0.0000 +301323.SZ,0.0000,0.0000,0.0000,26.5700,0.0000,0.0000,0.0000,27.7200,0.0000,0.0000,0.0000,28.6900,0.0000,0.0000,0.0000,24.2800,0.0000,0.0000,0.0000,24.8900,0.0000 +688620.SH,0.0000,0.0000,0.0000,85.3800,0.0000,0.0000,0.0000,86.3000,0.0000,0.0000,0.0000,86.4900,0.0000,0.0000,0.0000,78.8500,0.0000,0.0000,0.0000,78.5400,0.0000 +600082.SH,0.0000,0.0000,0.0000,89.9800,0.0000,0.0000,0.0000,90.1300,0.0000,0.0000,0.0000,76.0200,0.0000,0.0000,0.0000,75.9700,0.0000,0.0000,0.0000,57.0200,0.0000 +688056.SH,0.0000,0.0000,0.0000,40.9800,0.0000,0.0000,0.0000,37.6400,0.0000,0.0000,0.0000,33.0100,0.0000,0.0000,0.0000,32.2700,0.0000,0.0000,0.0000,38.3600,0.0000 +688300.SH,0.0000,0.0000,0.0000,37.0800,0.0000,0.0000,0.0000,38.7800,0.0000,0.0000,0.0000,43.2000,0.0000,0.0000,0.0000,31.1400,0.0000,0.0000,0.0000,30.7500,0.0000 +000717.SZ,0.0000,0.0000,0.0000,38.1500,0.0000,0.0000,0.0000,57.3700,0.0000,0.0000,0.0000,53.7600,0.0000,0.0000,0.0000,31.4700,0.0000,0.0000,0.0000,33.9200,0.0000 +603178.SH,0.0000,0.0000,0.0000,31.6600,0.0000,0.0000,0.0000,28.2200,0.0000,0.0000,0.0000,27.7200,0.0000,0.0000,0.0000,25.6100,0.0000,0.0000,0.0000,21.9200,0.0000 +600746.SH,0.0000,0.0000,0.0000,55.5800,0.0000,0.0000,0.0000,51.3800,0.0000,0.0000,0.0000,57.9600,0.0000,0.0000,0.0000,56.0900,0.0000,0.0000,0.0000,68.0200,0.0000 +300457.SZ,0.0000,0.0000,0.0000,21.0400,0.0000,0.0000,0.0000,11.5900,0.0000,0.0000,0.0000,9.8400,0.0000,0.0000,0.0000,12.4900,0.0000,0.0000,0.0000,10.7500,0.0000 +002046.SZ,0.0000,0.0000,0.0000,33.0700,0.0000,0.0000,0.0000,30.5700,0.0000,0.0000,0.0000,31.8100,0.0000,0.0000,0.0000,15.2200,0.0000,0.0000,0.0000,21.3900,0.0000 +603665.SH,0.0000,0.0000,0.0000,26.6200,0.0000,0.0000,0.0000,19.3600,0.0000,0.0000,0.0000,21.0500,0.0000,0.0000,0.0000,27.2600,0.0000,0.0000,0.0000,16.9900,0.0000 +002361.SZ,0.0000,0.0000,0.0000,39.6800,0.0000,0.0000,0.0000,39.0700,0.0000,0.0000,0.0000,42.3600,0.0000,0.0000,0.0000,37.7200,0.0000,0.0000,0.0000,45.0600,0.0000 +600389.SH,0.0000,0.0000,0.0000,40.7000,0.0000,0.0000,0.0000,35.8600,0.0000,0.0000,0.0000,39.5600,0.0000,0.0000,0.0000,39.7200,0.0000,0.0000,0.0000,31.5300,0.0000 +603928.SH,0.0000,0.0000,0.0000,44.1600,0.0000,0.0000,0.0000,41.2000,0.0000,0.0000,0.0000,39.1700,0.0000,0.0000,0.0000,45.1300,0.0000,0.0000,0.0000,41.3200,0.0000 +000045.SZ,0.0000,0.0000,0.0000,43.1600,0.0000,0.0000,0.0000,44.5000,0.0000,0.0000,0.0000,40.3600,0.0000,0.0000,0.0000,40.9000,0.0000,0.0000,0.0000,44.7200,0.0000 +600271.SH,0.0000,0.0000,0.0000,32.9400,0.0000,0.0000,0.0000,25.7800,0.0000,0.0000,0.0000,24.2300,0.0000,0.0000,0.0000,7.5700,0.0000,0.0000,0.0000,4.5900,0.0000 +002922.SZ,0.0000,0.0000,0.0000,15.5600,0.0000,0.0000,0.0000,17.0600,0.0000,0.0000,0.0000,17.6600,0.0000,0.0000,0.0000,20.1300,0.0000,0.0000,0.0000,20.5200,0.0000 +000617.SZ,0.0000,0.0000,0.0000,34.7400,0.0000,0.0000,0.0000,31.2700,0.0000,0.0000,0.0000,30.5000,0.0000,0.0000,0.0000,42.7500,0.0000,0.0000,0.0000,43.8300,0.0000 +603516.SH,0.0000,0.0000,0.0000,50.7100,0.0000,0.0000,0.0000,47.8800,0.0000,0.0000,0.0000,41.1200,0.0000,0.0000,0.0000,42.8600,0.0000,0.0000,0.0000,16.0600,0.0000 +002250.SZ,0.0000,0.0000,0.0000,10.7700,0.0000,0.0000,0.0000,11.5200,0.0000,0.0000,0.0000,17.6900,0.0000,0.0000,0.0000,13.8300,0.0000,0.0000,0.0000,15.0800,0.0000 +603660.SH,0.0000,0.0000,0.0000,14.4100,0.0000,0.0000,0.0000,12.9500,0.0000,0.0000,0.0000,14.9600,0.0000,0.0000,0.0000,17.8300,0.0000,0.0000,0.0000,22.3800,0.0000 +000826.SZ,0.0000,0.0000,0.0000,15.0800,0.0000,0.0000,0.0000,16.0300,0.0000,0.0000,0.0000,28.1200,0.0000,0.0000,0.0000,9.7200,0.0000,0.0000,0.0000,7.7300,0.0000 +603089.SH,0.0000,0.0000,0.0000,17.7900,0.0000,0.0000,0.0000,17.7400,0.0000,0.0000,0.0000,19.4100,0.0000,0.0000,0.0000,18.7900,0.0000,0.0000,0.0000,23.3900,0.0000 +600481.SH,0.0000,0.0000,0.0000,30.7800,0.0000,0.0000,0.0000,22.9900,0.0000,0.0000,0.0000,36.8700,0.0000,0.0000,0.0000,35.0200,0.0000,0.0000,0.0000,31.5200,0.0000 +002470.SZ,0.0000,0.0000,0.0000,17.4500,0.0000,0.0000,0.0000,16.0400,0.0000,0.0000,0.0000,18.5500,0.0000,0.0000,0.0000,16.7600,0.0000,0.0000,0.0000,13.5400,0.0000 +603992.SH,0.0000,0.0000,0.0000,17.0300,0.0000,0.0000,0.0000,17.9700,0.0000,0.0000,0.0000,15.6900,0.0000,0.0000,0.0000,13.4800,0.0000,0.0000,0.0000,15.0100,0.0000 +300321.SZ,0.0000,0.0000,0.0000,63.2200,0.0000,0.0000,0.0000,61.9300,0.0000,0.0000,0.0000,65.5700,0.0000,0.0000,0.0000,59.6900,0.0000,0.0000,0.0000,50.8400,0.0000 +688663.SH,0.0000,35.5800,0.0000,32.1000,0.0000,0.0000,0.0000,26.7700,0.0000,0.0000,0.0000,27.2500,0.0000,0.0000,0.0000,23.2100,0.0000,0.0000,0.0000,25.9600,0.0000 +002388.SZ,0.0000,0.0000,0.0000,15.1300,0.0000,0.0000,0.0000,28.8600,0.0000,0.0000,0.0000,29.1700,0.0000,0.0000,0.0000,19.8300,0.0000,0.0000,0.0000,20.3500,0.0000 +603355.SH,0.0000,0.0000,0.0000,11.3900,0.0000,0.0000,0.0000,11.6200,0.0000,0.0000,0.0000,16.6700,0.0000,0.0000,0.0000,11.3900,0.0000,0.0000,0.0000,10.8300,0.0000 +000785.SZ,0.0000,0.0000,0.0000,20.1500,0.0000,0.0000,0.0000,23.1600,0.0000,0.0000,0.0000,21.9600,0.0000,20.5400,0.0000,26.6500,0.0000,0.0000,0.0000,45.5400,0.0000 +300075.SZ,0.0000,0.0000,0.0000,13.3400,0.0000,0.0000,0.0000,10.1700,0.0000,0.0000,0.0000,9.3400,0.0000,0.0000,0.0000,11.5200,0.0000,0.0000,0.0000,16.2900,0.0000 +000931.SZ,0.0000,0.0000,0.0000,7.4200,0.0000,0.0000,0.0000,16.0900,0.0000,0.0000,0.0000,17.9100,0.0000,0.0000,0.0000,6.2900,0.0000,0.0000,0.0000,25.6800,0.0000 +600732.SH,0.0000,0.0000,0.0000,59.0800,0.0000,0.0000,0.0000,45.2100,0.0000,0.0000,0.0000,42.9700,0.0000,0.0000,0.0000,35.9200,0.0000,0.0000,0.0000,26.1500,0.0000 +688371.SH,0.0000,0.0000,0.0000,48.4000,0.0000,0.0000,0.0000,38.2000,0.0000,0.0000,0.0000,39.0100,0.0000,0.0000,0.0000,37.2400,0.0000,0.0000,0.0000,34.1100,0.0000 +873690.BJ,0.0000,0.0000,0.0000,49.7200,0.0000,0.0000,0.0000,50.9900,0.0000,0.0000,0.0000,43.6000,0.0000,41.3700,0.0000,39.8800,0.0000,0.0000,0.0000,49.9200,0.0000 +600830.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +831855.BJ,0.0000,0.0000,0.0000,31.7900,0.0000,0.0000,0.0000,30.3400,0.0000,26.2300,0.0000,26.6200,0.0000,0.0000,0.0000,32.0200,0.0000,0.0000,0.0000,29.5800,0.0000 +300678.SZ,0.0000,0.0000,0.0000,10.3800,0.0000,0.0000,0.0000,11.2300,0.0000,0.0000,0.0000,13.5800,0.0000,0.0000,0.0000,12.3900,0.0000,0.0000,0.0000,13.4900,0.0000 +688022.SH,0.0000,0.0000,0.0000,31.9300,0.0000,0.0000,0.0000,43.5100,0.0000,0.0000,0.0000,18.0300,0.0000,0.0000,0.0000,36.8900,0.0000,0.0000,0.0000,48.8200,0.0000 +301319.SZ,0.0000,0.0000,0.0000,72.3500,0.0000,0.0000,0.0000,74.1500,0.0000,0.0000,0.0000,76.1300,0.0000,0.0000,0.0000,69.5300,0.0000,0.0000,0.0000,68.2400,0.0000 +300138.SZ,0.0000,0.0000,0.0000,6.1700,0.0000,0.0000,0.0000,13.1000,0.0000,0.0000,0.0000,12.9200,0.0000,0.0000,0.0000,18.5800,0.0000,0.0000,0.0000,13.4800,0.0000 +002027.SZ,0.0000,0.0000,0.0000,6.1200,0.0000,0.0000,0.0000,12.9300,0.0000,0.0000,0.0000,6.2900,0.0000,0.0000,0.0000,10.8900,0.0000,0.0000,0.0000,11.2200,0.0000 +300107.SZ,0.0000,0.0000,0.0000,36.9200,0.0000,0.0000,0.0000,34.1200,0.0000,0.0000,0.0000,36.2200,0.0000,0.0000,0.0000,39.5000,0.0000,0.0000,0.0000,41.2900,0.0000 +300620.SZ,0.0000,0.0000,0.0000,26.7800,0.0000,0.0000,0.0000,21.7200,0.0000,0.0000,0.0000,22.4000,0.0000,0.0000,0.0000,23.1300,0.0000,0.0000,0.0000,16.5300,0.0000 +002741.SZ,0.0000,0.0000,0.0000,38.2200,0.0000,0.0000,0.0000,40.6600,0.0000,0.0000,0.0000,30.0700,0.0000,0.0000,0.0000,39.9800,0.0000,0.0000,0.0000,51.5700,0.0000 +002213.SZ,0.0000,0.0000,0.0000,44.4600,0.0000,0.0000,0.0000,34.4800,0.0000,0.0000,0.0000,38.0000,0.0000,0.0000,0.0000,44.4800,0.0000,0.0000,0.0000,36.4900,0.0000 +301596.SZ,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,28.5000,0.0000,0.0000,0.0000,26.4200,0.0000,0.0000,0.0000,24.2100,0.0000,0.0000,0.0000,22.0700,0.0000 +301285.SZ,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,28.6100,0.0000,0.0000,0.0000,32.3900,0.0000,0.0000,0.0000,36.3000,0.0000 +603819.SH,0.0000,0.0000,0.0000,69.2500,0.0000,0.0000,0.0000,72.5700,0.0000,0.0000,0.0000,77.3500,0.0000,0.0000,0.0000,80.1000,0.0000,0.0000,0.0000,74.1400,0.0000 +002660.SZ,0.0000,0.0000,0.0000,19.6500,0.0000,0.0000,0.0000,19.5700,0.0000,0.0000,0.0000,19.0900,0.0000,0.0000,0.0000,17.9100,0.0000,0.0000,0.0000,15.6700,0.0000 +301617.SZ,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,44.8600,0.0000,0.0000,0.0000,42.8500,0.0000,0.0000,0.0000,49.0800,0.0000,44.6700,0.0000,43.0000,0.0000 +301227.SZ,0.0000,0.0000,0.0000,39.1400,0.0000,0.0000,0.0000,34.3500,0.0000,0.0000,0.0000,31.7800,0.0000,0.0000,0.0000,36.1300,0.0000,0.0000,0.0000,29.2600,0.0000 +001324.SZ,0.0000,0.0000,0.0000,25.9500,0.0000,0.0000,0.0000,37.9900,0.0000,0.0000,0.0000,46.8700,0.0000,0.0000,0.0000,44.0000,0.0000,0.0000,0.0000,35.8400,0.0000 +300670.SZ,0.0000,0.0000,0.0000,39.0700,0.0000,0.0000,0.0000,31.0100,0.0000,0.0000,0.0000,42.8400,0.0000,0.0000,0.0000,32.9700,0.0000,0.0000,0.0000,30.7100,0.0000 +300235.SZ,0.0000,0.0000,0.0000,73.1100,0.0000,0.0000,0.0000,60.0200,0.0000,0.0000,0.0000,69.2500,0.0000,0.0000,0.0000,61.8300,0.0000,0.0000,0.0000,61.0000,0.0000 +835237.BJ,0.0000,0.0000,0.0000,39.4500,0.0000,0.0000,0.0000,43.1700,0.0000,55.0900,0.0000,79.0700,0.0000,0.0000,0.0000,51.2600,0.0000,0.0000,0.0000,38.3200,0.0000 +600095.SH,0.0000,0.0000,0.0000,69.2200,0.0000,0.0000,0.0000,68.0400,0.0000,0.0000,0.0000,42.5000,0.0000,0.0000,0.0000,72.0800,0.0000,0.0000,0.0000,76.2400,0.0000 +603378.SH,0.0000,0.0000,0.0000,22.1100,0.0000,0.0000,0.0000,26.3700,0.0000,0.0000,0.0000,29.5900,0.0000,0.0000,0.0000,30.5400,0.0000,0.0000,0.0000,28.7500,0.0000 +301202.SZ,0.0000,0.0000,0.0000,46.1500,0.0000,0.0000,0.0000,46.6200,0.0000,0.0000,0.0000,46.4100,0.0000,0.0000,0.0000,34.2700,0.0000,0.0000,0.0000,39.7800,0.0000 +688072.SH,0.0000,0.0000,0.0000,39.7500,0.0000,0.0000,38.3800,0.0000,0.0000,0.0000,0.0000,36.5900,0.0000,0.0000,0.0000,36.2300,0.0000,0.0000,0.0000,33.4800,0.0000 +002700.SZ,0.0000,0.0000,0.0000,79.5300,0.0000,0.0000,0.0000,85.5000,0.0000,0.0000,0.0000,82.3300,0.0000,0.0000,0.0000,88.8000,0.0000,0.0000,0.0000,74.7100,0.0000 +300577.SZ,0.0000,0.0000,0.0000,16.8600,0.0000,0.0000,0.0000,14.8700,0.0000,0.0000,0.0000,24.7000,0.0000,0.0000,0.0000,33.4500,0.0000,0.0000,0.0000,23.5200,0.0000 +301263.SZ,0.0000,0.0000,0.0000,58.9500,0.0000,59.9900,0.0000,66.0900,0.0000,0.0000,0.0000,68.0000,0.0000,0.0000,0.0000,64.7200,0.0000,0.0000,0.0000,65.2000,0.0000 +002276.SZ,0.0000,0.0000,0.0000,41.1100,0.0000,0.0000,0.0000,47.4200,0.0000,0.0000,0.0000,37.6700,0.0000,0.0000,0.0000,43.3700,0.0000,0.0000,0.0000,35.5500,0.0000 +301036.SZ,0.0000,0.0000,0.0000,52.4500,0.0000,0.0000,0.0000,52.7800,0.0000,0.0000,0.0000,48.3000,0.0000,0.0000,0.0000,50.1800,0.0000,0.0000,0.0000,47.9000,0.0000 +002652.SZ,0.0000,0.0000,0.0000,58.3100,0.0000,0.0000,0.0000,92.2600,0.0000,0.0000,0.0000,89.3300,0.0000,0.0000,0.0000,82.8700,0.0000,0.0000,0.0000,89.5600,0.0000 +600106.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +601162.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +301585.SZ,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,29.6000,0.0000,0.0000,0.0000,35.7100,0.0000,0.0000,0.0000,33.3100,0.0000,36.4300,0.0000,37.7800,0.0000 +603285.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,43.7100,0.0000,0.0000,0.0000,43.5800,0.0000,0.0000,0.0000,41.5400,0.0000,0.0000,0.0000,34.4200,0.0000 +688750.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,67.3000,0.0000,0.0000,0.0000,70.5300,0.0000,0.0000,0.0000,73.6300,0.0000,73.5500,0.0000,84.1100,0.0000 +300892.SZ,0.0000,0.0000,0.0000,68.3700,0.0000,77.8800,0.0000,79.0100,0.0000,0.0000,0.0000,82.3100,0.0000,0.0000,0.0000,84.3100,0.0000,0.0000,0.0000,84.1200,0.0000 +301177.SZ,0.0000,0.0000,0.0000,49.1700,0.0000,47.7100,0.0000,46.7700,0.0000,0.0000,0.0000,42.3800,0.0000,57.3100,0.0000,51.3000,0.0000,0.0000,0.0000,50.2000,0.0000 +002692.SZ,0.0000,0.0000,0.0000,69.9600,0.0000,0.0000,0.0000,64.9600,0.0000,0.0000,0.0000,64.5200,0.0000,0.0000,0.0000,60.8500,0.0000,0.0000,0.0000,51.7600,0.0000 +300648.SZ,0.0000,0.0000,0.0000,22.1200,0.0000,0.0000,0.0000,15.5300,0.0000,0.0000,0.0000,15.1200,0.0000,0.0000,0.0000,21.0800,0.0000,0.0000,0.0000,21.2000,0.0000 +002354.SZ,0.0000,0.0000,0.0000,31.2800,0.0000,0.0000,0.0000,80.4100,0.0000,0.0000,0.0000,91.4300,0.0000,0.0000,0.0000,90.0100,0.0000,0.0000,0.0000,90.1900,0.0000 +001217.SZ,0.0000,0.0000,0.0000,53.1300,0.0000,0.0000,0.0000,43.9800,0.0000,0.0000,0.0000,37.9400,0.0000,0.0000,0.0000,30.3200,0.0000,0.0000,0.0000,35.5800,0.0000 +002775.SZ,0.0000,0.0000,0.0000,12.8800,0.0000,0.0000,0.0000,11.8700,0.0000,0.0000,0.0000,28.4600,0.0000,0.0000,0.0000,4.0900,0.0000,0.0000,0.0000,8.6700,0.0000 +300741.SZ,0.0000,0.0000,0.0000,28.2800,0.0000,0.0000,0.0000,26.8500,0.0000,0.0000,0.0000,21.0600,0.0000,0.0000,0.0000,20.1000,0.0000,0.0000,0.0000,14.5400,0.0000 +603787.SH,0.0000,0.0000,0.0000,30.9800,0.0000,0.0000,0.0000,35.4800,0.0000,0.0000,0.0000,39.3300,0.0000,0.0000,0.0000,29.8600,0.0000,0.0000,0.0000,0.0000,0.0000 +300096.SZ,0.0000,0.0000,0.0000,14.0900,0.0000,0.0000,0.0000,17.8800,0.0000,0.0000,0.0000,17.3400,0.0000,0.0000,0.0000,19.1800,0.0000,0.0000,0.0000,29.0300,0.0000 +300609.SZ,0.0000,0.0000,0.0000,37.2200,0.0000,0.0000,0.0000,33.5700,0.0000,0.0000,0.0000,19.9900,0.0000,0.0000,0.0000,24.2900,0.0000,0.0000,0.0000,31.4700,0.0000 +833266.BJ,0.0000,0.0000,0.0000,66.5900,0.0000,0.0000,0.0000,64.6000,0.0000,0.0000,0.0000,52.8800,0.0000,0.0000,0.0000,60.2500,0.0000,0.0000,0.0000,71.0600,0.0000 +002245.SZ,0.0000,0.0000,0.0000,21.2700,0.0000,0.0000,0.0000,29.7400,0.0000,0.0000,0.0000,24.3200,0.0000,0.0000,0.0000,15.9000,0.0000,0.0000,0.0000,37.8500,0.0000 +300384.SZ,0.0000,0.0000,0.0000,23.9600,0.0000,0.0000,0.0000,27.8500,0.0000,0.0000,0.0000,17.5400,0.0000,0.0000,0.0000,17.8200,0.0000,0.0000,0.0000,32.7800,0.0000 +603188.SH,0.0000,0.0000,0.0000,40.5200,0.0000,0.0000,0.0000,29.1100,0.0000,0.0000,0.0000,27.0400,0.0000,0.0000,0.0000,13.4200,0.0000,0.0000,0.0000,29.9600,0.0000 +300691.SZ,0.0000,0.0000,0.0000,42.9600,0.0000,0.0000,0.0000,46.6500,0.0000,0.0000,0.0000,34.7800,0.0000,0.0000,0.0000,38.6400,0.0000,0.0000,0.0000,37.2500,0.0000 +300497.SZ,0.0000,0.0000,0.0000,48.4100,0.0000,0.0000,0.0000,44.1300,0.0000,0.0000,0.0000,43.6800,0.0000,0.0000,0.0000,53.3700,0.0000,0.0000,0.0000,50.5500,0.0000 +600933.SH,0.0000,0.0000,0.0000,53.8600,0.0000,0.0000,0.0000,39.6000,0.0000,0.0000,0.0000,27.5300,0.0000,0.0000,0.0000,33.3800,0.0000,0.0000,0.0000,31.4100,0.0000 +603636.SH,0.0000,0.0000,0.0000,22.9400,0.0000,0.0000,0.0000,27.1200,0.0000,0.0000,0.0000,40.4500,0.0000,0.0000,0.0000,31.5300,0.0000,0.0000,0.0000,32.7800,0.0000 +000688.SZ,0.0000,0.0000,0.0000,33.6300,0.0000,0.0000,0.0000,38.7800,0.0000,0.0000,0.0000,27.8600,0.0000,0.0000,0.0000,34.5700,0.0000,0.0000,0.0000,37.3000,0.0000 +002529.SZ,0.0000,0.0000,0.0000,43.4700,0.0000,0.0000,0.0000,27.5100,0.0000,0.0000,0.0000,40.3900,0.0000,0.0000,0.0000,17.5400,0.0000,0.0000,0.0000,60.8700,0.0000 +873703.BJ,0.0000,0.0000,0.0000,44.1500,0.0000,0.0000,0.0000,43.1500,0.0000,0.0000,0.0000,37.8100,0.0000,38.2600,0.0000,32.3300,0.0000,0.0000,0.0000,41.2900,0.0000 +300510.SZ,0.0000,0.0000,0.0000,13.8100,0.0000,0.0000,0.0000,16.9200,0.0000,0.0000,0.0000,20.1400,0.0000,0.0000,0.0000,16.7500,0.0000,0.0000,0.0000,20.4500,0.0000 +002312.SZ,0.0000,0.0000,0.0000,19.7400,0.0000,0.0000,0.0000,19.1900,0.0000,0.0000,0.0000,13.9600,0.0000,0.0000,0.0000,12.7000,0.0000,0.0000,0.0000,10.7300,0.0000 +600581.SH,0.0000,0.0000,0.0000,59.0000,0.0000,0.0000,0.0000,60.0000,0.0000,0.0000,0.0000,38.2300,0.0000,0.0000,0.0000,37.2900,0.0000,0.0000,0.0000,38.9300,0.0000 +300985.SZ,0.0000,0.0000,0.0000,47.3700,0.0000,0.0000,0.0000,31.9900,0.0000,0.0000,0.0000,33.4100,0.0000,0.0000,0.0000,42.3700,0.0000,0.0000,0.0000,53.6700,0.0000 +000021.SZ,0.0000,0.0000,0.0000,27.8700,0.0000,0.0000,0.0000,24.2500,0.0000,0.0000,0.0000,26.3100,0.0000,0.0000,0.0000,22.0900,0.0000,0.0000,0.0000,14.8300,0.0000 +002526.SZ,0.0000,0.0000,0.0000,16.0100,0.0000,0.0000,0.0000,13.6900,0.0000,0.0000,0.0000,18.0100,0.0000,0.0000,0.0000,20.8000,0.0000,0.0000,0.0000,18.2200,0.0000 +301090.SZ,0.0000,0.0000,0.0000,48.1800,0.0000,0.0000,0.0000,51.5700,0.0000,0.0000,0.0000,48.7600,0.0000,0.0000,0.0000,50.7200,0.0000,0.0000,0.0000,52.0100,0.0000 +301297.SZ,0.0000,0.0000,0.0000,48.5600,0.0000,0.0000,0.0000,50.0300,0.0000,42.9500,0.0000,24.0000,0.0000,0.0000,0.0000,14.9600,0.0000,0.0000,0.0000,19.2900,0.0000 +600635.SH,0.0000,0.0000,0.0000,70.8500,0.0000,0.0000,0.0000,79.3000,0.0000,0.0000,0.0000,51.2300,0.0000,0.0000,0.0000,64.5500,0.0000,0.0000,0.0000,65.9700,0.0000 +603135.SH,0.0000,0.0000,0.0000,24.6800,0.0000,0.0000,0.0000,21.6400,0.0000,23.5900,0.0000,0.0000,0.0000,0.0000,0.0000,25.8100,0.0000,0.0000,0.0000,24.1100,0.0000 +002188.SZ,0.0000,0.0000,0.0000,92.7500,0.0000,0.0000,0.0000,55.3500,0.0000,0.0000,0.0000,52.9300,0.0000,0.0000,0.0000,51.8100,0.0000,0.0000,0.0000,45.3300,0.0000 +601002.SH,0.0000,0.0000,0.0000,45.2600,0.0000,0.0000,0.0000,54.4100,0.0000,0.0000,0.0000,38.2500,0.0000,0.0000,0.0000,41.1100,0.0000,0.0000,0.0000,45.8800,0.0000 +837344.BJ,0.0000,0.0000,0.0000,59.8400,0.0000,0.0000,0.0000,63.6500,0.0000,0.0000,0.0000,63.0400,0.0000,0.0000,0.0000,65.2200,0.0000,0.0000,0.0000,62.4500,0.0000 +832110.BJ,0.0000,0.0000,0.0000,25.9000,0.0000,0.0000,0.0000,23.6900,0.0000,31.8300,0.0000,31.4800,0.0000,0.0000,0.0000,29.7100,0.0000,0.0000,0.0000,31.2900,0.0000 +300654.SZ,0.0000,0.0000,0.0000,93.1400,0.0000,0.0000,0.0000,85.1000,0.0000,0.0000,0.0000,77.5000,0.0000,0.0000,0.0000,79.7600,0.0000,0.0000,0.0000,76.6300,0.0000 +000852.SZ,0.0000,0.0000,0.0000,29.7500,0.0000,0.0000,0.0000,36.9700,0.0000,0.0000,0.0000,35.7900,0.0000,0.0000,0.0000,30.9100,0.0000,0.0000,0.0000,25.3500,0.0000 +838837.BJ,0.0000,0.0000,0.0000,39.4800,0.0000,0.0000,0.0000,33.3000,32.8200,32.6100,0.0000,31.8900,0.0000,0.0000,0.0000,28.2300,0.0000,0.0000,0.0000,24.6900,0.0000 +002534.SZ,0.0000,0.0000,0.0000,7.4400,0.0000,0.0000,0.0000,6.7600,0.0000,0.0000,0.0000,6.2800,0.0000,0.0000,0.0000,6.4800,0.0000,0.0000,0.0000,6.9700,0.0000 +688032.SH,0.0000,0.0000,0.0000,19.4000,0.0000,24.8700,0.0000,23.7900,0.0000,0.0000,0.0000,26.6600,0.0000,0.0000,0.0000,30.3700,0.0000,0.0000,0.0000,25.5500,0.0000 +300643.SZ,0.0000,0.0000,0.0000,27.0600,0.0000,0.0000,0.0000,24.1700,0.0000,0.0000,0.0000,25.6200,0.0000,0.0000,0.0000,23.8300,0.0000,0.0000,0.0000,29.5800,0.0000 +300014.SZ,0.0000,0.0000,0.0000,28.1400,0.0000,0.0000,0.0000,32.1100,0.0000,0.0000,0.0000,43.5200,0.0000,0.0000,0.0000,39.9900,0.0000,0.0000,0.0000,32.8400,0.0000 +002862.SZ,0.0000,0.0000,0.0000,22.6000,0.0000,0.0000,0.0000,25.0600,0.0000,0.0000,0.0000,15.1400,0.0000,0.0000,0.0000,21.2400,0.0000,0.0000,0.0000,30.0400,0.0000 +300078.SZ,0.0000,0.0000,0.0000,22.0700,0.0000,0.0000,0.0000,19.7700,0.0000,0.0000,0.0000,22.3800,0.0000,0.0000,0.0000,19.9900,0.0000,0.0000,0.0000,21.2800,0.0000 +300976.SZ,0.0000,66.7700,0.0000,17.7600,0.0000,0.0000,0.0000,16.5200,0.0000,0.0000,0.0000,19.9000,0.0000,0.0000,0.0000,34.4400,0.0000,0.0000,0.0000,36.8200,0.0000 +688036.SH,0.0000,0.0000,0.0000,32.1400,0.0000,0.0000,0.0000,36.8500,0.0000,0.0000,0.0000,38.7100,0.0000,0.0000,0.0000,36.7800,0.0000,0.0000,0.0000,37.0800,0.0000 +300112.SZ,0.0000,0.0000,0.0000,19.4600,0.0000,0.0000,0.0000,15.6700,0.0000,0.0000,0.0000,17.0600,0.0000,0.0000,0.0000,15.8100,0.0000,0.0000,0.0000,15.2000,0.0000 +300122.SZ,0.0000,0.0000,0.0000,92.7800,0.0000,0.0000,0.0000,91.4300,0.0000,0.0000,0.0000,94.8400,0.0000,0.0000,0.0000,97.8100,0.0000,0.0000,0.0000,97.6100,0.0000 +600067.SH,0.0000,0.0000,0.0000,74.1600,0.0000,0.0000,0.0000,67.7000,0.0000,0.0000,0.0000,71.2300,0.0000,0.0000,0.0000,75.0000,0.0000,0.0000,0.0000,71.1000,0.0000 +300393.SZ,0.0000,0.0000,0.0000,36.6700,0.0000,0.0000,0.0000,25.8600,0.0000,0.0000,0.0000,33.3300,0.0000,0.0000,0.0000,24.0100,0.0000,0.0000,0.0000,24.1200,0.0000 +688605.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,43.9600,0.0000,0.0000,0.0000,42.8200,0.0000,0.0000,0.0000,38.2700,36.8500,0.0000,0.0000,40.9000,0.0000 +603607.SH,0.0000,0.0000,0.0000,55.1800,0.0000,0.0000,0.0000,49.6500,0.0000,0.0000,0.0000,49.4400,0.0000,0.0000,0.0000,39.8200,0.0000,0.0000,0.0000,0.0000,0.0000 +300709.SZ,0.0000,0.0000,0.0000,30.7800,0.0000,0.0000,0.0000,26.0100,0.0000,0.0000,0.0000,23.5300,0.0000,0.0000,0.0000,17.1700,0.0000,0.0000,0.0000,13.0700,0.0000 +836871.BJ,0.0000,0.0000,0.0000,41.0000,0.0000,39.5800,0.0000,41.5100,0.0000,0.0000,0.0000,50.7500,0.0000,0.0000,0.0000,47.1700,0.0000,0.0000,0.0000,49.0800,0.0000 +430476.BJ,0.0000,0.0000,0.0000,27.0200,0.0000,0.0000,0.0000,23.8400,0.0000,0.0000,0.0000,21.4200,0.0000,0.0000,0.0000,17.5900,0.0000,0.0000,0.0000,16.9200,0.0000 +301399.SZ,0.0000,0.0000,0.0000,40.2600,0.0000,0.0000,0.0000,51.0500,0.0000,0.0000,0.0000,51.3800,0.0000,0.0000,0.0000,51.0600,0.0000,0.0000,0.0000,45.1100,0.0000 +688199.SH,0.0000,0.0000,0.0000,19.1400,0.0000,0.0000,0.0000,20.8100,0.0000,0.0000,0.0000,33.3700,0.0000,0.0000,0.0000,37.5000,0.0000,0.0000,0.0000,39.8000,0.0000 +301628.SZ,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,58.7000,0.0000,0.0000,0.0000,56.0000,0.0000,0.0000,0.0000,53.7100,0.0000,53.9700,0.0000,53.1000,0.0000 +600602.SH,0.0000,0.0000,0.0000,19.6900,0.0000,0.0000,0.0000,22.5600,0.0000,0.0000,0.0000,28.1100,0.0000,0.0000,0.0000,36.5300,0.0000,0.0000,0.0000,34.9400,0.0000 +300773.SZ,0.0000,0.0000,0.0000,28.4600,0.0000,0.0000,0.0000,36.4600,0.0000,0.0000,0.0000,35.0000,0.0000,0.0000,0.0000,37.0900,0.0000,0.0000,0.0000,34.0200,0.0000 +300074.SZ,0.0000,0.0000,0.0000,42.2800,0.0000,0.0000,0.0000,60.5200,0.0000,0.0000,0.0000,37.1300,0.0000,0.0000,0.0000,54.2800,0.0000,0.0000,0.0000,67.6200,0.0000 +301613.SZ,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,75.6400,0.0000,0.0000,0.0000,56.4600,0.0000,0.0000,0.0000,63.6800,0.0000,0.0000,0.0000,50.5700,0.0000 +300323.SZ,0.0000,0.0000,0.0000,70.3300,0.0000,0.0000,0.0000,67.0600,0.0000,0.0000,0.0000,61.6100,0.0000,0.0000,0.0000,61.4800,0.0000,0.0000,0.0000,68.5300,0.0000 +301446.SZ,0.0000,0.0000,0.0000,32.5800,0.0000,0.0000,0.0000,30.6200,0.0000,0.0000,0.0000,27.1300,0.0000,0.0000,0.0000,25.3400,0.0000,0.0000,0.0000,29.3500,0.0000 +600876.SH,0.0000,0.0000,0.0000,34.3600,0.0000,0.0000,0.0000,35.3100,0.0000,0.0000,0.0000,40.2400,0.0000,0.0000,0.0000,48.1900,0.0000,0.0000,0.0000,47.0000,0.0000 +002090.SZ,0.0000,0.0000,0.0000,9.2000,0.0000,0.0000,0.0000,10.1700,0.0000,0.0000,0.0000,9.3000,0.0000,0.0000,0.0000,13.5200,0.0000,0.0000,0.0000,7.1500,0.0000 +688518.SH,0.0000,0.0000,0.0000,23.7400,0.0000,0.0000,0.0000,23.2300,0.0000,0.0000,0.0000,23.0700,0.0000,0.0000,0.0000,19.6300,0.0000,0.0000,0.0000,16.0300,0.0000 +002189.SZ,0.0000,0.0000,0.0000,25.7500,0.0000,0.0000,0.0000,30.5200,0.0000,0.0000,0.0000,27.6600,0.0000,0.0000,0.0000,34.7100,0.0000,0.0000,0.0000,27.6300,0.0000 +688306.SH,0.0000,0.0000,0.0000,12.0200,0.0000,15.4700,0.0000,0.0000,0.0000,0.0000,0.0000,16.3200,0.0000,0.0000,0.0000,13.7900,0.0000,0.0000,0.0000,11.2600,0.0000 +600650.SH,0.0000,0.0000,0.0000,65.4300,0.0000,0.0000,0.0000,46.9800,0.0000,0.0000,0.0000,39.2900,0.0000,0.0000,0.0000,10.0300,0.0000,0.0000,0.0000,53.2200,0.0000 +688693.SH,0.0000,0.0000,0.0000,91.4100,0.0000,0.0000,0.0000,76.5500,0.0000,0.0000,0.0000,80.0900,0.0000,0.0000,0.0000,69.1900,0.0000,0.0000,0.0000,62.1300,0.0000 +002975.SZ,0.0000,0.0000,0.0000,24.3600,0.0000,0.0000,0.0000,26.1100,0.0000,0.0000,0.0000,14.0500,0.0000,0.0000,0.0000,13.3600,0.0000,0.0000,0.0000,11.9100,0.0000 +600076.SH,0.0000,0.0000,0.0000,44.4100,0.0000,0.0000,0.0000,23.7500,0.0000,0.0000,0.0000,57.5400,0.0000,0.0000,0.0000,64.2200,0.0000,0.0000,0.0000,71.5200,0.0000 +688489.SH,0.0000,0.0000,0.0000,49.1100,0.0000,0.0000,0.0000,37.6600,0.0000,40.8700,0.0000,26.4300,0.0000,0.0000,0.0000,24.7700,0.0000,0.0000,0.0000,24.6600,0.0000 +003022.SZ,0.0000,0.0000,0.0000,59.7700,0.0000,0.0000,0.0000,41.6400,0.0000,0.0000,0.0000,42.2400,0.0000,0.0000,0.0000,44.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +300390.SZ,0.0000,0.0000,0.0000,13.5800,0.0000,0.0000,0.0000,63.0800,0.0000,0.0000,0.0000,69.9900,0.0000,0.0000,0.0000,57.5800,0.0000,0.0000,0.0000,37.3900,0.0000 +301328.SZ,0.0000,0.0000,0.0000,41.5400,0.0000,0.0000,0.0000,43.4600,0.0000,0.0000,0.0000,44.8600,0.0000,0.0000,0.0000,40.2500,0.0000,0.0000,0.0000,45.2100,0.0000 +688612.SH,0.0000,0.0000,0.0000,32.4700,0.0000,0.0000,0.0000,30.0000,0.0000,0.0000,0.0000,25.7900,0.0000,0.0000,0.0000,30.1100,0.0000,0.0000,0.0000,28.5000,0.0000 +603211.SH,0.0000,0.0000,0.0000,66.5600,0.0000,0.0000,0.0000,75.9700,0.0000,0.0000,0.0000,56.7000,0.0000,0.0000,0.0000,60.1700,0.0000,0.0000,0.0000,62.4100,0.0000 +300265.SZ,0.0000,0.0000,0.0000,43.4300,0.0000,0.0000,0.0000,34.9800,0.0000,0.0000,0.0000,43.6600,0.0000,0.0000,0.0000,42.0900,0.0000,0.0000,0.0000,38.8500,0.0000 +605589.SH,0.0000,0.0000,0.0000,17.8800,0.0000,0.0000,0.0000,28.0500,0.0000,0.0000,0.0000,30.5200,0.0000,0.0000,0.0000,25.9100,0.0000,0.0000,0.0000,25.1100,0.0000 +301158.SZ,0.0000,0.0000,0.0000,31.9400,0.0000,35.5600,0.0000,34.7300,0.0000,0.0000,0.0000,31.5200,0.0000,0.0000,0.0000,37.1300,0.0000,0.0000,0.0000,37.3200,0.0000 +301049.SZ,0.0000,0.0000,0.0000,69.2400,0.0000,0.0000,0.0000,62.9100,0.0000,0.0000,0.0000,78.1100,0.0000,0.0000,0.0000,69.4200,0.0000,0.0000,0.0000,65.3200,0.0000 +873806.BJ,0.0000,0.0000,0.0000,19.2500,0.0000,0.0000,0.0000,17.7300,0.0000,0.0000,0.0000,27.6200,30.8700,29.3800,0.0000,16.1200,0.0000,0.0000,0.0000,14.3800,0.0000 +688600.SH,0.0000,0.0000,0.0000,15.8800,0.0000,0.0000,0.0000,20.3800,0.0000,0.0000,0.0000,23.2100,0.0000,0.0000,0.0000,27.5600,0.0000,0.0000,0.0000,22.8600,0.0000 +920019.BJ,0.0000,0.0000,0.0000,42.0100,0.0000,0.0000,0.0000,40.8900,0.0000,0.0000,0.0000,30.4100,0.0000,22.7800,0.0000,21.4400,0.0000,0.0000,0.0000,24.9700,0.0000 +000821.SZ,0.0000,0.0000,0.0000,11.6500,0.0000,0.0000,0.0000,12.9800,0.0000,0.0000,0.0000,15.0500,0.0000,0.0000,0.0000,20.7600,0.0000,0.0000,0.0000,20.7200,0.0000 +002073.SZ,0.0000,0.0000,0.0000,25.2000,0.0000,0.0000,0.0000,28.3600,0.0000,0.0000,0.0000,28.3400,0.0000,0.0000,0.0000,18.2900,0.0000,0.0000,0.0000,18.9100,0.0000 +600100.SH,0.0000,0.0000,0.0000,18.5200,0.0000,0.0000,0.0000,17.3500,0.0000,0.0000,0.0000,24.2800,0.0000,0.0000,0.0000,34.1000,0.0000,0.0000,0.0000,4.4400,0.0000 +600293.SH,0.0000,0.0000,0.0000,38.3400,0.0000,0.0000,0.0000,50.8800,0.0000,0.0000,0.0000,49.4100,0.0000,0.0000,0.0000,57.5400,0.0000,0.0000,0.0000,44.6800,0.0000 +002068.SZ,0.0000,0.0000,0.0000,19.5700,0.0000,0.0000,0.0000,17.8700,0.0000,0.0000,0.0000,16.4300,0.0000,0.0000,0.0000,18.8000,0.0000,0.0000,0.0000,17.1000,0.0000 +600691.SH,0.0000,0.0000,0.0000,32.4500,0.0000,0.0000,0.0000,33.5200,0.0000,0.0000,0.0000,26.2200,0.0000,0.0000,0.0000,22.8700,0.0000,0.0000,0.0000,24.2600,0.0000 +605588.SH,0.0000,0.0000,0.0000,80.7900,0.0000,0.0000,0.0000,82.4800,0.0000,0.0000,0.0000,86.6900,0.0000,0.0000,0.0000,75.2700,0.0000,0.0000,0.0000,68.9000,0.0000 +002067.SZ,0.0000,0.0000,0.0000,40.6100,0.0000,0.0000,0.0000,46.1200,0.0000,0.0000,0.0000,43.6200,0.0000,0.0000,0.0000,43.5100,0.0000,0.0000,0.0000,44.3800,0.0000 +603212.SH,0.0000,0.0000,0.0000,68.9700,0.0000,0.0000,0.0000,52.0300,0.0000,0.0000,0.0000,34.6000,0.0000,0.0000,0.0000,42.5400,0.0000,0.0000,0.0000,31.8100,0.0000 +300369.SZ,0.0000,0.0000,0.0000,49.1500,0.0000,0.0000,0.0000,35.8800,0.0000,0.0000,0.0000,32.7200,0.0000,0.0000,0.0000,41.9700,0.0000,0.0000,0.0000,29.5600,0.0000 +301216.SZ,0.0000,0.0000,0.0000,46.5700,0.0000,52.8400,0.0000,47.9500,0.0000,0.0000,0.0000,66.5800,0.0000,0.0000,0.0000,56.0700,0.0000,0.0000,0.0000,42.4500,0.0000 +837006.BJ,0.0000,0.0000,0.0000,60.0300,0.0000,0.0000,0.0000,47.8700,0.0000,60.4500,0.0000,53.2300,0.0000,0.0000,0.0000,35.7900,0.0000,0.0000,0.0000,51.6300,0.0000 +300310.SZ,0.0000,0.0000,0.0000,21.8100,0.0000,0.0000,0.0000,16.6200,0.0000,0.0000,0.0000,17.1600,0.0000,0.0000,0.0000,18.3200,0.0000,0.0000,0.0000,16.5200,0.0000 +688502.SH,0.0000,0.0000,0.0000,18.5200,0.0000,0.0000,0.0000,21.3800,0.0000,17.5700,0.0000,0.0000,0.0000,0.0000,0.0000,20.5100,0.0000,0.0000,0.0000,21.6200,0.0000 +920088.BJ,0.0000,0.0000,0.0000,34.7200,0.0000,0.0000,0.0000,33.5500,0.0000,0.0000,0.0000,31.6700,38.9000,0.0000,0.0000,32.8100,0.0000,36.1300,0.0000,31.8900,0.0000 +002259.SZ,0.0000,0.0000,0.0000,96.2900,0.0000,0.0000,0.0000,97.7600,0.0000,0.0000,0.0000,91.6600,0.0000,0.0000,0.0000,89.3400,0.0000,0.0000,0.0000,91.4900,0.0000 +000586.SZ,0.0000,0.0000,0.0000,28.8100,0.0000,0.0000,0.0000,30.9900,0.0000,0.0000,0.0000,31.0700,0.0000,0.0000,0.0000,32.1100,0.0000,0.0000,0.0000,33.4300,0.0000 +603315.SH,0.0000,0.0000,0.0000,22.8900,0.0000,0.0000,0.0000,16.5500,0.0000,0.0000,0.0000,17.0000,0.0000,0.0000,0.0000,22.1000,0.0000,0.0000,0.0000,18.8900,0.0000 +002742.SZ,0.0000,0.0000,0.0000,11.8200,0.0000,0.0000,0.0000,12.2100,0.0000,0.0000,0.0000,16.1800,0.0000,0.0000,0.0000,13.5500,0.0000,0.0000,0.0000,9.9300,0.0000 +300351.SZ,0.0000,0.0000,0.0000,13.6200,0.0000,0.0000,0.0000,12.7100,0.0000,0.0000,0.0000,16.0600,0.0000,0.0000,0.0000,20.1500,0.0000,0.0000,0.0000,19.7000,0.0000 +688152.SH,0.0000,0.0000,0.0000,58.7000,0.0000,0.0000,0.0000,51.9200,0.0000,0.0000,0.0000,82.4800,0.0000,0.0000,0.0000,72.3600,0.0000,0.0000,0.0000,60.3700,0.0000 +002010.SZ,0.0000,0.0000,0.0000,33.1200,0.0000,0.0000,0.0000,24.2000,0.0000,0.0000,0.0000,21.1800,0.0000,0.0000,0.0000,16.2900,0.0000,0.0000,0.0000,12.4800,0.0000 +600676.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,22.1600,0.0000,0.0000,0.0000,26.1000,0.0000,0.0000,0.0000,48.6300,0.0000,0.0000,0.0000,36.8300,0.0000 +300414.SZ,0.0000,0.0000,0.0000,26.0100,0.0000,0.0000,0.0000,24.1400,0.0000,0.0000,0.0000,26.6400,0.0000,0.0000,0.0000,37.3500,0.0000,0.0000,0.0000,35.9300,0.0000 +600480.SH,0.0000,0.0000,0.0000,12.6500,0.0000,0.0000,0.0000,19.8200,0.0000,0.0000,0.0000,14.8500,0.0000,0.0000,0.0000,16.9300,0.0000,0.0000,0.0000,16.5100,0.0000 +300930.SZ,0.0000,0.0000,0.0000,71.7500,0.0000,0.0000,0.0000,75.3100,0.0000,0.0000,0.0000,76.2300,0.0000,0.0000,0.0000,61.8900,0.0000,0.0000,0.0000,70.5700,0.0000 +301538.SZ,0.0000,0.0000,0.0000,23.7100,0.0000,0.0000,0.0000,26.5700,0.0000,0.0000,0.0000,29.3400,0.0000,29.5800,0.0000,29.4200,0.0000,0.0000,0.0000,37.2900,0.0000 +301529.SZ,0.0000,0.0000,0.0000,28.6200,0.0000,0.0000,0.0000,26.0700,0.0000,0.0000,0.0000,27.0100,0.0000,0.0000,0.0000,23.7400,0.0000,0.0000,0.0000,22.5400,0.0000 +688669.SH,0.0000,0.0000,0.0000,28.1500,0.0000,0.0000,0.0000,22.3100,0.0000,0.0000,0.0000,22.1900,0.0000,0.0000,0.0000,21.4900,0.0000,0.0000,0.0000,28.8200,0.0000 +920066.BJ,0.0000,0.0000,0.0000,40.7200,0.0000,0.0000,0.0000,34.1700,0.0000,0.0000,0.0000,38.4800,0.0000,0.0000,42.2800,46.7000,0.0000,46.2000,0.0000,43.1400,0.0000 +600640.SH,0.0000,0.0000,0.0000,20.5400,0.0000,0.0000,0.0000,16.8700,0.0000,0.0000,0.0000,13.8300,0.0000,0.0000,0.0000,25.2700,0.0000,0.0000,0.0000,20.9600,0.0000 +600152.SH,0.0000,0.0000,0.0000,51.0200,0.0000,0.0000,0.0000,36.3500,0.0000,0.0000,0.0000,42.2300,0.0000,0.0000,0.0000,27.4200,0.0000,0.0000,0.0000,23.0100,0.0000 +688186.SH,0.0000,0.0000,0.0000,37.2000,0.0000,0.0000,0.0000,48.6100,0.0000,0.0000,0.0000,33.9400,0.0000,0.0000,0.0000,33.8900,0.0000,0.0000,0.0000,36.9400,0.0000 +600171.SH,0.0000,0.0000,0.0000,45.3800,0.0000,0.0000,0.0000,49.8400,0.0000,0.0000,0.0000,49.9700,0.0000,0.0000,0.0000,53.1200,0.0000,0.0000,0.0000,63.5000,0.0000 +300051.SZ,0.0000,0.0000,0.0000,56.9500,0.0000,0.0000,0.0000,56.5500,0.0000,0.0000,0.0000,58.4400,0.0000,0.0000,0.0000,73.0000,0.0000,0.0000,0.0000,34.9500,0.0000 +002635.SZ,0.0000,0.0000,0.0000,9.2000,0.0000,0.0000,0.0000,8.1300,0.0000,0.0000,0.0000,11.5600,0.0000,0.0000,0.0000,14.6000,0.0000,0.0000,0.0000,0.0000,0.0000 +002830.SZ,0.0000,0.0000,0.0000,32.3800,0.0000,0.0000,0.0000,34.1900,0.0000,0.0000,0.0000,31.6900,0.0000,0.0000,0.0000,37.9400,0.0000,0.0000,0.0000,30.0400,0.0000 +002579.SZ,0.0000,0.0000,0.0000,26.4700,0.0000,0.0000,0.0000,22.9700,0.0000,0.0000,0.0000,20.5800,0.0000,0.0000,0.0000,22.5600,0.0000,0.0000,0.0000,24.4300,0.0000 +300063.SZ,0.0000,0.0000,0.0000,84.6400,0.0000,0.0000,0.0000,77.9600,0.0000,0.0000,0.0000,78.9300,0.0000,0.0000,0.0000,77.1000,0.0000,0.0000,0.0000,66.3900,0.0000 +001318.SZ,0.0000,0.0000,0.0000,52.7400,0.0000,0.0000,0.0000,46.0700,0.0000,0.0000,0.0000,48.1500,0.0000,0.0000,0.0000,42.5200,0.0000,0.0000,0.0000,51.2100,0.0000 +000409.SZ,0.0000,0.0000,0.0000,69.4400,0.0000,0.0000,0.0000,43.5800,0.0000,0.0000,0.0000,25.7500,0.0000,0.0000,0.0000,15.5500,0.0000,0.0000,0.0000,22.8800,0.0000 +688315.SH,0.0000,0.0000,0.0000,65.7100,0.0000,0.0000,0.0000,64.9700,0.0000,0.0000,0.0000,62.0800,0.0000,0.0000,0.0000,61.7100,0.0000,0.0000,0.0000,62.0000,0.0000 +301568.SZ,0.0000,0.0000,0.0000,42.3500,0.0000,0.0000,0.0000,49.5400,0.0000,0.0000,0.0000,43.1000,0.0000,48.6000,0.0000,48.6200,0.0000,0.0000,0.0000,46.0000,0.0000 +001208.SZ,0.0000,0.0000,0.0000,60.4700,0.0000,0.0000,0.0000,46.5800,0.0000,0.0000,0.0000,42.0600,0.0000,0.0000,0.0000,49.9500,0.0000,0.0000,0.0000,42.5700,0.0000 +603002.SH,0.0000,0.0000,0.0000,41.0200,0.0000,0.0000,0.0000,48.4100,0.0000,0.0000,0.0000,59.6400,0.0000,0.0000,0.0000,60.7500,0.0000,0.0000,0.0000,68.5300,0.0000 +688318.SH,0.0000,0.0000,0.0000,81.2600,0.0000,0.0000,0.0000,60.6700,0.0000,0.0000,0.0000,76.8400,0.0000,0.0000,0.0000,73.1800,0.0000,0.0000,0.0000,61.9700,0.0000 +300839.SZ,0.0000,0.0000,0.0000,93.0400,0.0000,0.0000,0.0000,72.2800,0.0000,0.0000,0.0000,49.9000,0.0000,0.0000,0.0000,55.5900,0.0000,0.0000,0.0000,46.3900,0.0000 +002577.SZ,0.0000,0.0000,0.0000,61.9000,0.0000,0.0000,0.0000,54.1400,0.0000,0.0000,0.0000,64.6400,0.0000,0.0000,0.0000,60.7600,0.0000,0.0000,0.0000,54.1000,0.0000 +300048.SZ,0.0000,0.0000,0.0000,20.2400,0.0000,0.0000,0.0000,24.5600,0.0000,0.0000,0.0000,23.8600,0.0000,0.0000,0.0000,27.4800,0.0000,0.0000,0.0000,52.2800,0.0000 +301315.SZ,0.0000,0.0000,0.0000,35.4200,0.0000,0.0000,0.0000,46.5900,0.0000,0.0000,0.0000,42.7700,0.0000,0.0000,0.0000,46.1900,0.0000,0.0000,0.0000,0.0000,0.0000 +300515.SZ,0.0000,0.0000,0.0000,19.5900,0.0000,0.0000,0.0000,18.8900,0.0000,0.0000,0.0000,18.1000,0.0000,0.0000,0.0000,23.6700,0.0000,0.0000,0.0000,22.5300,0.0000 +603855.SH,0.0000,0.0000,0.0000,28.0300,0.0000,0.0000,0.0000,31.4300,0.0000,0.0000,0.0000,42.6200,0.0000,0.0000,0.0000,15.4800,0.0000,0.0000,0.0000,24.5500,0.0000 +600967.SH,0.0000,0.0000,0.0000,34.2700,0.0000,0.0000,0.0000,29.6500,0.0000,0.0000,0.0000,32.6000,0.0000,0.0000,0.0000,22.9400,0.0000,0.0000,0.0000,21.6100,0.0000 +688130.SH,0.0000,0.0000,0.0000,95.8000,0.0000,0.0000,0.0000,95.9700,0.0000,0.0000,0.0000,99.4500,0.0000,0.0000,0.0000,95.6400,0.0000,0.0000,0.0000,91.3200,0.0000 +688239.SH,0.0000,0.0000,0.0000,77.9700,0.0000,0.0000,0.0000,60.6000,0.0000,0.0000,0.0000,58.5800,0.0000,0.0000,0.0000,55.5700,0.0000,0.0000,0.0000,54.4700,0.0000 +301338.SZ,0.0000,0.0000,0.0000,22.1200,0.0000,0.0000,0.0000,17.5100,0.0000,0.0000,0.0000,18.0400,0.0000,0.0000,0.0000,16.7400,0.0000,0.0000,0.0000,13.3300,0.0000 +300763.SZ,0.0000,0.0000,0.0000,27.4000,0.0000,0.0000,0.0000,19.4500,0.0000,0.0000,0.0000,36.1000,0.0000,0.0000,0.0000,38.8000,0.0000,0.0000,0.0000,21.0900,0.0000 +300182.SZ,0.0000,0.0000,0.0000,43.6100,0.0000,0.0000,0.0000,44.3800,0.0000,0.0000,0.0000,53.4200,0.0000,0.0000,0.0000,41.1100,0.0000,0.0000,0.0000,54.0200,0.0000 +003032.SZ,0.0000,0.0000,0.0000,43.7300,0.0000,0.0000,0.0000,43.0600,0.0000,0.0000,0.0000,43.8700,0.0000,0.0000,0.0000,79.4000,0.0000,0.0000,0.0000,76.9300,0.0000 +001256.SZ,0.0000,0.0000,0.0000,29.6300,0.0000,0.0000,0.0000,32.6800,0.0000,31.4200,0.0000,29.4000,0.0000,0.0000,0.0000,33.1400,0.0000,0.0000,0.0000,31.2200,0.0000 +300029.SZ,0.0000,0.0000,0.0000,74.4200,0.0000,0.0000,0.0000,58.4600,0.0000,0.0000,0.0000,87.1300,0.0000,0.0000,0.0000,81.3500,0.0000,0.0000,0.0000,75.0900,0.0000 +002522.SZ,0.0000,0.0000,0.0000,57.8600,0.0000,0.0000,0.0000,52.0000,0.0000,0.0000,0.0000,60.2200,0.0000,0.0000,0.0000,60.3700,0.0000,0.0000,0.0000,61.7700,0.0000 +688110.SH,0.0000,0.0000,0.0000,84.8800,0.0000,84.5300,0.0000,86.3500,0.0000,0.0000,0.0000,97.1500,0.0000,0.0000,0.0000,93.5300,0.0000,0.0000,0.0000,88.3600,0.0000 +002573.SZ,0.0000,0.0000,0.0000,10.3400,0.0000,0.0000,0.0000,14.7400,0.0000,0.0000,0.0000,16.2900,0.0000,0.0000,0.0000,8.9100,0.0000,0.0000,0.0000,14.7000,0.0000 +836957.BJ,0.0000,0.0000,0.0000,80.0500,0.0000,0.0000,0.0000,71.2000,0.0000,69.5500,0.0000,70.7100,0.0000,0.0000,0.0000,76.1900,0.0000,0.0000,0.0000,81.3000,0.0000 +300263.SZ,0.0000,0.0000,0.0000,9.4900,0.0000,0.0000,0.0000,14.3500,0.0000,0.0000,0.0000,20.7200,0.0000,0.0000,0.0000,13.1100,0.0000,0.0000,0.0000,16.4700,0.0000 +300500.SZ,0.0000,0.0000,0.0000,47.4100,0.0000,0.0000,0.0000,46.8800,0.0000,0.0000,0.0000,32.7300,0.0000,0.0000,0.0000,35.0400,0.0000,0.0000,0.0000,8.7300,0.0000 +002900.SZ,0.0000,0.0000,0.0000,33.2300,0.0000,0.0000,0.0000,33.6300,0.0000,0.0000,0.0000,32.7400,0.0000,0.0000,0.0000,42.5100,0.0000,0.0000,0.0000,31.5500,0.0000 +603679.SH,0.0000,0.0000,0.0000,43.2800,0.0000,0.0000,0.0000,28.4100,0.0000,0.0000,0.0000,22.5200,0.0000,0.0000,0.0000,22.8600,0.0000,0.0000,0.0000,30.0200,0.0000 +000570.SZ,0.0000,0.0000,0.0000,11.0700,0.0000,0.0000,0.0000,16.8800,0.0000,0.0000,0.0000,18.3900,0.0000,0.0000,0.0000,17.3500,0.0000,0.0000,0.0000,22.7900,0.0000 +301383.SZ,0.0000,0.0000,0.0000,38.9500,0.0000,0.0000,0.0000,37.9600,0.0000,0.0000,0.0000,35.6300,0.0000,0.0000,0.0000,43.9500,0.0000,0.0000,0.0000,36.0800,0.0000 +688562.SH,0.0000,0.0000,0.0000,24.3100,0.0000,0.0000,0.0000,23.8800,0.0000,0.0000,0.0000,19.3600,0.0000,0.0000,0.0000,15.7000,0.0000,0.0000,0.0000,34.9900,0.0000 +300193.SZ,0.0000,0.0000,0.0000,17.4800,0.0000,0.0000,0.0000,17.2300,0.0000,0.0000,0.0000,14.3700,0.0000,0.0000,0.0000,18.9800,0.0000,0.0000,0.0000,21.6000,0.0000 +300195.SZ,0.0000,0.0000,0.0000,25.2800,0.0000,0.0000,0.0000,14.8500,0.0000,0.0000,0.0000,19.6700,0.0000,0.0000,0.0000,26.9700,0.0000,0.0000,0.0000,31.0300,0.0000 +002919.SZ,0.0000,0.0000,0.0000,34.8900,0.0000,0.0000,0.0000,44.2200,0.0000,0.0000,0.0000,35.4500,0.0000,0.0000,0.0000,32.1600,0.0000,0.0000,0.0000,57.0200,0.0000 +300679.SZ,0.0000,0.0000,0.0000,19.4500,0.0000,0.0000,0.0000,19.9400,0.0000,0.0000,0.0000,16.1400,0.0000,0.0000,0.0000,30.0700,0.0000,0.0000,0.0000,24.4700,0.0000 +300473.SZ,0.0000,0.0000,0.0000,23.1400,0.0000,0.0000,0.0000,24.2300,0.0000,0.0000,0.0000,23.7000,0.0000,0.0000,0.0000,22.4300,0.0000,0.0000,0.0000,22.4300,0.0000 +300846.SZ,0.0000,0.0000,0.0000,55.4700,0.0000,0.0000,0.0000,43.8500,0.0000,0.0000,0.0000,39.3400,0.0000,0.0000,0.0000,34.2500,0.0000,0.0000,0.0000,43.5500,0.0000 +603739.SH,0.0000,0.0000,0.0000,13.8700,0.0000,0.0000,0.0000,12.9000,0.0000,0.0000,0.0000,13.4500,0.0000,0.0000,0.0000,12.2300,0.0000,0.0000,0.0000,10.3400,0.0000 +000100.SZ,0.0000,0.0000,0.0000,23.1300,0.0000,0.0000,0.0000,22.5100,0.0000,0.0000,0.0000,25.6200,0.0000,0.0000,0.0000,20.7500,0.0000,0.0000,0.0000,18.5700,0.0000 +601890.SH,0.0000,0.0000,0.0000,71.2500,0.0000,0.0000,0.0000,77.0800,0.0000,0.0000,0.0000,70.4500,0.0000,0.0000,0.0000,72.9100,0.0000,0.0000,0.0000,41.4100,0.0000 +600536.SH,0.0000,0.0000,0.0000,12.4400,0.0000,0.0000,0.0000,8.3200,0.0000,0.0000,0.0000,9.7700,0.0000,0.0000,0.0000,10.4700,0.0000,0.0000,0.0000,30.3200,0.0000 +002815.SZ,0.0000,0.0000,0.0000,43.3700,0.0000,0.0000,0.0000,38.4000,0.0000,0.0000,0.0000,36.7700,0.0000,0.0000,0.0000,28.6900,0.0000,0.0000,0.0000,28.1400,0.0000 +002606.SZ,0.0000,0.0000,0.0000,57.8300,0.0000,0.0000,0.0000,47.0700,0.0000,0.0000,0.0000,35.8400,0.0000,0.0000,0.0000,26.1700,0.0000,0.0000,0.0000,23.9400,0.0000 +600470.SH,0.0000,0.0000,0.0000,28.4500,0.0000,0.0000,0.0000,25.7000,0.0000,0.0000,0.0000,26.7900,0.0000,0.0000,0.0000,20.8300,0.0000,0.0000,0.0000,33.9100,0.0000 +001696.SZ,0.0000,0.0000,0.0000,15.7900,0.0000,0.0000,0.0000,16.5100,0.0000,0.0000,0.0000,17.9900,0.0000,0.0000,0.0000,15.5600,0.0000,0.0000,0.0000,14.3900,0.0000 +430418.BJ,0.0000,0.0000,0.0000,27.8400,0.0000,0.0000,0.0000,29.0800,0.0000,0.0000,0.0000,31.8700,0.0000,0.0000,0.0000,34.1500,0.0000,0.0000,0.0000,35.0000,0.0000 +600539.SH,0.0000,0.0000,0.0000,76.8400,0.0000,0.0000,0.0000,85.4700,0.0000,0.0000,0.0000,72.9300,0.0000,0.0000,0.0000,72.4200,0.0000,0.0000,0.0000,75.5900,0.0000 +301581.SZ,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,81.0400,0.0000,0.0000,0.0000,82.4000,0.0000,0.0000,0.0000,88.3100,0.0000,89.4400,0.0000,86.0000,0.0000 +301658.SZ,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,32.5400,0.0000,0.0000,0.0000,39.4000,0.0000,0.0000,0.0000,26.1900,0.0000,29.8300,0.0000,31.0600,0.0000 +300091.SZ,0.0000,0.0000,0.0000,11.5000,0.0000,0.0000,0.0000,11.6700,0.0000,0.0000,0.0000,16.3400,0.0000,0.0000,0.0000,13.3700,0.0000,0.0000,0.0000,15.5300,0.0000 +300747.SZ,0.0000,0.0000,0.0000,23.0000,0.0000,0.0000,0.0000,24.8600,0.0000,0.0000,0.0000,20.3200,0.0000,0.0000,0.0000,25.8200,0.0000,0.0000,0.0000,29.3000,0.0000 +301458.SZ,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,37.1900,0.0000,0.0000,0.0000,36.0900,0.0000,0.0000,0.0000,30.0000,0.0000,32.9400,0.0000,32.9100,0.0000 +300095.SZ,0.0000,0.0000,0.0000,16.0800,0.0000,0.0000,0.0000,16.9600,0.0000,0.0000,0.0000,8.8700,0.0000,0.0000,0.0000,14.9600,0.0000,0.0000,0.0000,13.0700,0.0000 +002724.SZ,0.0000,0.0000,0.0000,14.1700,0.0000,0.0000,0.0000,13.8700,0.0000,0.0000,0.0000,25.8900,0.0000,0.0000,0.0000,10.5200,0.0000,0.0000,0.0000,11.9900,0.0000 +688597.SH,0.0000,0.0000,0.0000,46.1200,0.0000,0.0000,0.0000,43.6500,0.0000,0.0000,0.0000,41.3900,0.0000,0.0000,0.0000,66.7000,0.0000,0.0000,0.0000,32.6900,0.0000 +002358.SZ,0.0000,0.0000,0.0000,18.2800,0.0000,0.0000,0.0000,21.0000,0.0000,0.0000,0.0000,21.4200,0.0000,0.0000,0.0000,19.2100,0.0000,0.0000,0.0000,22.8000,0.0000 +605033.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,20.8300,0.0000,0.0000,0.0000,22.4400,0.0000,0.0000,0.0000,25.2200,0.0000,0.0000,0.0000,23.2400,0.0000 +688132.SH,0.0000,0.0000,0.0000,40.3500,0.0000,0.0000,0.0000,58.4300,0.0000,0.0000,0.0000,50.6500,0.0000,0.0000,0.0000,44.0000,0.0000,0.0000,0.0000,43.9800,0.0000 +002350.SZ,0.0000,0.0000,0.0000,14.0600,0.0000,0.0000,0.0000,15.4900,0.0000,0.0000,0.0000,14.4800,0.0000,0.0000,0.0000,12.6000,0.0000,0.0000,0.0000,17.0700,0.0000 +300292.SZ,0.0000,0.0000,0.0000,65.9300,0.0000,0.0000,0.0000,72.3000,0.0000,0.0000,0.0000,68.6600,0.0000,0.0000,0.0000,72.4400,0.0000,83.8000,0.0000,83.7000,0.0000 +600129.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,10.9100,0.0000,0.0000,0.0000,9.8500,0.0000,0.0000,0.0000,12.6000,0.0000,0.0000,0.0000,13.1100,0.0000 +300816.SZ,0.0000,0.0000,0.0000,44.3800,0.0000,0.0000,0.0000,52.5900,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,64.5700,0.0000,0.0000,0.0000,56.2100,0.0000 +836892.BJ,0.0000,0.0000,0.0000,17.7500,0.0000,0.0000,0.0000,29.3000,0.0000,0.0000,0.0000,18.1300,0.0000,0.0000,0.0000,18.5500,0.0000,0.0000,0.0000,17.7500,0.0000 +002063.SZ,0.0000,0.0000,0.0000,10.4100,0.0000,0.0000,0.0000,27.5600,0.0000,0.0000,0.0000,36.3700,0.0000,0.0000,0.0000,40.8300,0.0000,0.0000,0.0000,49.6100,0.0000 +301180.SZ,0.0000,0.0000,0.0000,49.3000,0.0000,50.0500,0.0000,50.3600,0.0000,0.0000,0.0000,41.4700,0.0000,0.0000,0.0000,36.8700,0.0000,0.0000,0.0000,35.7500,0.0000 +300295.SZ,0.0000,0.0000,0.0000,68.4400,0.0000,0.0000,0.0000,85.1400,0.0000,0.0000,0.0000,88.9200,0.0000,0.0000,0.0000,38.8100,0.0000,0.0000,0.0000,53.3800,0.0000 +600714.SH,0.0000,0.0000,0.0000,46.4400,0.0000,0.0000,0.0000,48.7800,0.0000,0.0000,0.0000,69.4700,0.0000,0.0000,0.0000,45.3900,0.0000,0.0000,0.0000,57.1500,0.0000 +003030.SZ,0.0000,0.0000,0.0000,47.4700,0.0000,0.0000,0.0000,41.1600,0.0000,0.0000,0.0000,45.7500,0.0000,0.0000,0.0000,36.7900,0.0000,0.0000,0.0000,48.7400,0.0000 +002137.SZ,0.0000,0.0000,0.0000,21.2100,0.0000,0.0000,0.0000,15.7300,0.0000,0.0000,0.0000,16.8100,0.0000,0.0000,0.0000,19.2800,0.0000,0.0000,0.0000,16.8400,0.0000 +000503.SZ,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,13.5400,0.0000,0.0000,0.0000,35.0100,0.0000 +002177.SZ,0.0000,0.0000,0.0000,55.9000,0.0000,0.0000,0.0000,76.1400,0.0000,0.0000,0.0000,70.6800,0.0000,0.0000,0.0000,70.1900,0.0000,0.0000,0.0000,61.9900,0.0000 +430718.BJ,0.0000,0.0000,0.0000,45.7400,0.0000,0.0000,0.0000,52.9600,0.0000,52.6500,0.0000,52.4200,0.0000,0.0000,0.0000,46.4500,0.0000,0.0000,0.0000,49.4900,0.0000 +603290.SH,0.0000,0.0000,0.0000,58.9700,0.0000,0.0000,0.0000,56.4400,0.0000,0.0000,0.0000,51.0000,0.0000,0.0000,0.0000,59.6900,0.0000,0.0000,0.0000,60.7700,0.0000 +301051.SZ,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,67.0100,0.0000,0.0000,0.0000,25.4500,0.0000,0.0000,0.0000,48.6300,0.0000,0.0000,0.0000,50.3100,0.0000 +601011.SH,0.0000,0.0000,0.0000,44.3800,0.0000,0.0000,0.0000,43.9400,0.0000,0.0000,0.0000,32.9500,0.0000,0.0000,0.0000,35.4300,0.0000,0.0000,0.0000,40.8700,0.0000 +688007.SH,0.0000,0.0000,0.0000,38.9700,0.0000,0.0000,0.0000,35.8800,0.0000,0.0000,0.0000,36.9800,0.0000,0.0000,0.0000,27.5000,0.0000,0.0000,0.0000,30.4800,0.0000 +002554.SZ,0.0000,0.0000,0.0000,41.1300,0.0000,0.0000,0.0000,41.4900,0.0000,0.0000,0.0000,40.8600,0.0000,0.0000,0.0000,57.3200,0.0000,0.0000,0.0000,31.5600,0.0000 +301318.SZ,0.0000,0.0000,0.0000,47.3300,0.0000,0.0000,0.0000,46.9800,0.0000,0.0000,0.0000,35.8500,0.0000,0.0000,0.0000,44.4000,0.0000,0.0000,0.0000,39.2100,0.0000 +300036.SZ,0.0000,0.0000,0.0000,3.1900,0.0000,0.0000,0.0000,4.0700,0.0000,0.0000,0.0000,4.8800,0.0000,0.0000,0.0000,7.0000,0.0000,0.0000,0.0000,7.1600,0.0000 +002375.SZ,0.0000,0.0000,0.0000,7.1900,0.0000,0.0000,0.0000,9.3100,0.0000,0.0000,0.0000,14.7400,0.0000,0.0000,0.0000,13.8500,0.0000,0.0000,0.0000,15.9200,0.0000 +002392.SZ,0.0000,0.0000,0.0000,32.6400,0.0000,0.0000,0.0000,23.7200,0.0000,0.0000,0.0000,23.1300,0.0000,0.0000,0.0000,16.7700,0.0000,0.0000,0.0000,17.3700,0.0000 +300433.SZ,0.0000,0.0000,0.0000,33.4700,0.0000,0.0000,0.0000,36.5000,0.0000,0.0000,0.0000,38.2300,0.0000,0.0000,0.0000,51.8600,0.0000,0.0000,0.0000,0.0000,0.0000 +300113.SZ,0.0000,0.0000,0.0000,23.7500,0.0000,0.0000,0.0000,31.1600,0.0000,0.0000,0.0000,65.1900,0.0000,0.0000,0.0000,70.3900,0.0000,0.0000,0.0000,78.9100,0.0000 +002069.SZ,0.0000,0.0000,0.0000,16.1100,0.0000,0.0000,0.0000,18.0400,0.0000,0.0000,0.0000,26.1400,0.0000,0.0000,0.0000,30.3400,0.0000,0.0000,0.0000,32.4400,0.0000 +600693.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,151.2200,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,147.5000,0.0000,0.0000,0.0000,167.0200,0.0000 +688571.SH,0.0000,0.0000,0.0000,26.6600,0.0000,0.0000,0.0000,21.6800,0.0000,0.0000,0.0000,19.1800,0.0000,0.0000,0.0000,19.6200,0.0000,0.0000,0.0000,20.1200,0.0000 +688292.SH,0.0000,0.0000,0.0000,46.9800,0.0000,0.0000,0.0000,50.9700,0.0000,0.0000,0.0000,50.6800,0.0000,0.0000,0.0000,40.4600,0.0000,0.0000,0.0000,32.8800,0.0000 +300618.SZ,0.0000,0.0000,0.0000,35.3000,0.0000,0.0000,0.0000,38.0000,0.0000,0.0000,0.0000,35.2000,0.0000,0.0000,0.0000,43.6300,0.0000,0.0000,0.0000,42.8400,0.0000 +300405.SZ,0.0000,0.0000,0.0000,50.2500,0.0000,0.0000,0.0000,49.2400,0.0000,0.0000,0.0000,65.5000,0.0000,0.0000,0.0000,65.1500,0.0000,0.0000,0.0000,67.0900,0.0000 +002976.SZ,0.0000,0.0000,0.0000,21.4600,0.0000,0.0000,0.0000,21.6600,0.0000,0.0000,0.0000,18.8800,0.0000,0.0000,0.0000,16.9400,0.0000,0.0000,0.0000,19.0300,0.0000 +300458.SZ,0.0000,0.0000,0.0000,84.3100,0.0000,0.0000,0.0000,81.7600,0.0000,0.0000,0.0000,88.9900,0.0000,0.0000,0.0000,87.6900,0.0000,0.0000,0.0000,0.0000,0.0000 +000597.SZ,0.0000,0.0000,0.0000,9.8900,0.0000,0.0000,0.0000,15.9000,0.0000,0.0000,0.0000,13.2300,0.0000,0.0000,0.0000,12.6300,0.0000,0.0000,0.0000,11.3200,0.0000 +301429.SZ,0.0000,0.0000,0.0000,26.0900,0.0000,0.0000,0.0000,26.8300,0.0000,30.3900,0.0000,29.1500,0.0000,0.0000,0.0000,21.8700,0.0000,0.0000,0.0000,18.3000,0.0000 +600831.SH,0.0000,0.0000,0.0000,16.1800,0.0000,0.0000,0.0000,8.4900,0.0000,0.0000,0.0000,9.3300,0.0000,0.0000,0.0000,4.0800,0.0000,0.0000,0.0000,7.7100,0.0000 +002148.SZ,0.0000,0.0000,0.0000,41.9900,0.0000,0.0000,0.0000,56.8800,0.0000,0.0000,0.0000,55.8800,0.0000,0.0000,0.0000,46.7900,0.0000,0.0000,0.0000,48.1100,0.0000 +002319.SZ,0.0000,0.0000,0.0000,29.2300,0.0000,0.0000,0.0000,27.8700,0.0000,0.0000,0.0000,30.3800,0.0000,0.0000,0.0000,34.5800,0.0000,0.0000,0.0000,46.1000,0.0000 +600816.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +300422.SZ,0.0000,0.0000,0.0000,9.6200,0.0000,0.0000,0.0000,11.5000,0.0000,0.0000,0.0000,10.8200,0.0000,0.0000,0.0000,12.0600,0.0000,0.0000,0.0000,16.8000,0.0000 +300757.SZ,0.0000,0.0000,0.0000,31.2500,0.0000,0.0000,0.0000,30.9900,0.0000,0.0000,0.0000,25.8900,0.0000,0.0000,0.0000,33.1900,0.0000,0.0000,0.0000,36.2900,0.0000 +300173.SZ,0.0000,0.0000,0.0000,17.0400,0.0000,0.0000,0.0000,24.2700,0.0000,0.0000,0.0000,16.3000,0.0000,0.0000,0.0000,16.2200,0.0000,0.0000,0.0000,18.3200,0.0000 +920082.BJ,0.0000,0.0000,0.0000,34.0100,0.0000,0.0000,0.0000,29.0800,0.0000,29.5000,0.0000,25.6200,0.0000,36.5700,0.0000,27.5600,0.0000,26.6800,0.0000,23.9700,0.0000 +000692.SZ,0.0000,0.0000,0.0000,48.6200,0.0000,0.0000,0.0000,68.5600,0.0000,0.0000,0.0000,35.7500,0.0000,0.0000,0.0000,46.6300,0.0000,0.0000,0.0000,40.7200,0.0000 +603527.SH,0.0000,0.0000,0.0000,45.0300,0.0000,0.0000,0.0000,61.8400,0.0000,0.0000,0.0000,64.5700,0.0000,0.0000,0.0000,67.0100,0.0000,0.0000,0.0000,58.3200,0.0000 +301278.SZ,0.0000,0.0000,0.0000,53.5600,0.0000,0.0000,0.0000,43.9200,0.0000,0.0000,0.0000,46.3200,0.0000,0.0000,0.0000,44.2800,0.0000,0.0000,0.0000,41.6000,0.0000 +002056.SZ,0.0000,0.0000,0.0000,21.0400,0.0000,0.0000,0.0000,19.0600,0.0000,0.0000,0.0000,30.9700,0.0000,0.0000,0.0000,24.2700,0.0000,0.0000,0.0000,22.1700,0.0000 +301003.SZ,0.0000,0.0000,0.0000,45.8900,0.0000,0.0000,0.0000,41.5300,0.0000,0.0000,0.0000,41.5900,0.0000,0.0000,0.0000,49.4700,0.0000,0.0000,0.0000,50.3600,0.0000 +002865.SZ,0.0000,0.0000,0.0000,25.5000,0.0000,0.0000,0.0000,29.9900,0.0000,0.0000,0.0000,44.0700,0.0000,0.0000,0.0000,38.1900,0.0000,0.0000,0.0000,56.2500,0.0000 +300519.SZ,0.0000,0.0000,0.0000,50.1100,0.0000,0.0000,0.0000,53.8300,0.0000,0.0000,0.0000,52.7000,0.0000,0.0000,0.0000,63.3700,0.0000,0.0000,0.0000,66.2900,0.0000 +000506.SZ,0.0000,0.0000,0.0000,68.5400,0.0000,0.0000,0.0000,64.3600,0.0000,0.0000,0.0000,78.1800,0.0000,0.0000,0.0000,82.0100,0.0000,0.0000,0.0000,85.5800,0.0000 +002530.SZ,0.0000,0.0000,0.0000,15.4200,0.0000,0.0000,0.0000,12.8400,0.0000,0.0000,0.0000,15.1900,0.0000,0.0000,0.0000,13.9300,0.0000,0.0000,0.0000,15.5000,0.0000 +301105.SZ,0.0000,0.0000,0.0000,30.0800,0.0000,0.0000,0.0000,31.1400,0.0000,39.7300,0.0000,31.3600,0.0000,0.0000,0.0000,30.1700,0.0000,0.0000,0.0000,33.3400,0.0000 +600571.SH,0.0000,0.0000,0.0000,10.2200,0.0000,0.0000,0.0000,11.1900,0.0000,0.0000,0.0000,28.1000,0.0000,0.0000,0.0000,22.3900,0.0000,0.0000,0.0000,28.3300,0.0000 +832885.BJ,0.0000,0.0000,0.0000,27.0900,0.0000,0.0000,0.0000,25.7200,0.0000,0.0000,0.0000,26.8100,0.0000,0.0000,0.0000,22.6400,0.0000,0.0000,0.0000,22.1600,0.0000 +301500.SZ,0.0000,0.0000,0.0000,42.3600,0.0000,0.0000,0.0000,35.3200,0.0000,0.0000,0.0000,42.1900,0.0000,0.0000,0.0000,9.7200,0.0000,0.0000,0.0000,13.6200,0.0000 +836247.BJ,0.0000,0.0000,0.0000,29.0900,0.0000,0.0000,0.0000,37.4900,0.0000,43.2700,0.0000,40.9200,0.0000,0.0000,0.0000,31.3300,0.0000,0.0000,0.0000,35.3400,0.0000 +301071.SZ,0.0000,0.0000,0.0000,65.8000,0.0000,0.0000,0.0000,62.1200,0.0000,0.0000,0.0000,54.0900,0.0000,0.0000,0.0000,53.6800,0.0000,0.0000,0.0000,42.3500,0.0000 +601198.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +003040.SZ,0.0000,0.0000,0.0000,57.2500,0.0000,0.0000,0.0000,72.4800,0.0000,0.0000,0.0000,72.9400,0.0000,0.0000,0.0000,58.7500,0.0000,0.0000,0.0000,62.7500,0.0000 +002985.SZ,0.0000,0.0000,0.0000,33.9000,0.0000,0.0000,0.0000,28.3800,0.0000,0.0000,0.0000,27.7900,0.0000,0.0000,0.0000,39.1000,0.0000,0.0000,0.0000,41.6300,0.0000 +300792.SZ,0.0000,0.0000,0.0000,68.7800,0.0000,0.0000,0.0000,59.2600,0.0000,0.0000,0.0000,58.9800,0.0000,0.0000,0.0000,44.9100,0.0000,0.0000,0.0000,45.1900,0.0000 +603189.SH,0.0000,0.0000,0.0000,61.8800,0.0000,0.0000,0.0000,43.0200,0.0000,0.0000,0.0000,51.9800,0.0000,0.0000,0.0000,52.2700,0.0000,0.0000,0.0000,70.8800,0.0000 +000833.SZ,0.0000,0.0000,0.0000,62.3000,0.0000,0.0000,0.0000,42.4800,0.0000,0.0000,0.0000,73.2100,0.0000,0.0000,0.0000,67.5600,0.0000,0.0000,0.0000,57.8100,0.0000 +300793.SZ,0.0000,0.0000,0.0000,35.7100,0.0000,0.0000,0.0000,32.4900,0.0000,0.0000,0.0000,27.6200,0.0000,0.0000,0.0000,29.3100,0.0000,0.0000,0.0000,39.5400,0.0000 +300085.SZ,0.0000,0.0000,0.0000,34.1100,0.0000,0.0000,0.0000,33.7400,0.0000,0.0000,0.0000,36.7500,0.0000,0.0000,0.0000,50.9600,0.0000,0.0000,0.0000,37.7400,0.0000 +301601.SZ,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,37.9400,0.0000,0.0000,0.0000,29.6200,0.0000,0.0000,0.0000,48.1100,0.0000,30.9300,0.0000,23.4800,0.0000 +300409.SZ,0.0000,0.0000,0.0000,24.4100,0.0000,0.0000,0.0000,29.6200,0.0000,0.0000,0.0000,32.0100,0.0000,0.0000,0.0000,22.0300,0.0000,0.0000,0.0000,29.2100,0.0000 +870508.BJ,0.0000,0.0000,0.0000,71.7400,0.0000,0.0000,0.0000,74.4300,0.0000,80.4000,0.0000,81.0300,0.0000,0.0000,0.0000,63.8500,0.0000,0.0000,0.0000,67.7000,0.0000 +600241.SH,0.0000,0.0000,0.0000,35.0200,0.0000,0.0000,0.0000,40.3500,0.0000,0.0000,0.0000,42.5600,0.0000,0.0000,0.0000,37.0100,0.0000,0.0000,0.0000,34.0800,0.0000 +600580.SH,0.0000,0.0000,0.0000,13.7800,0.0000,0.0000,0.0000,23.5900,0.0000,0.0000,0.0000,15.2800,0.0000,0.0000,0.0000,16.3200,0.0000,0.0000,0.0000,18.6400,0.0000 +603106.SH,0.0000,0.0000,0.0000,39.9100,0.0000,0.0000,0.0000,29.3600,0.0000,0.0000,0.0000,27.9500,0.0000,0.0000,0.0000,24.5400,0.0000,0.0000,0.0000,26.2200,0.0000 +300711.SZ,0.0000,0.0000,0.0000,30.2700,0.0000,0.0000,0.0000,35.9200,0.0000,0.0000,0.0000,26.7600,0.0000,0.0000,0.0000,33.6000,0.0000,0.0000,0.0000,27.4400,0.0000 +300412.SZ,0.0000,0.0000,0.0000,21.9700,0.0000,0.0000,0.0000,9.5400,0.0000,0.0000,0.0000,15.9200,0.0000,0.0000,0.0000,16.5800,0.0000,0.0000,0.0000,18.9500,0.0000 +688234.SH,0.0000,0.0000,0.0000,86.7300,0.0000,82.6000,0.0000,62.7700,0.0000,0.0000,0.0000,68.4200,0.0000,0.0000,0.0000,57.1600,0.0000,0.0000,0.0000,45.5900,0.0000 +600794.SH,0.0000,0.0000,0.0000,30.7700,0.0000,0.0000,0.0000,55.3100,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,28.5200,0.0000,0.0000,0.0000,19.5600,0.0000 +600312.SH,0.0000,0.0000,0.0000,21.7800,0.0000,0.0000,0.0000,1.4700,0.0000,0.0000,0.0000,14.0300,0.0000,0.0000,0.0000,24.4800,0.0000,0.0000,0.0000,18.1900,0.0000 +300071.SZ,0.0000,0.0000,0.0000,20.7100,0.0000,0.0000,0.0000,13.8100,0.0000,0.0000,0.0000,15.6100,0.0000,0.0000,0.0000,16.9800,0.0000,0.0000,0.0000,31.0200,0.0000 +301062.SZ,0.0000,0.0000,0.0000,51.4800,0.0000,0.0000,0.0000,51.2300,0.0000,0.0000,0.0000,54.6400,0.0000,0.0000,0.0000,53.4500,0.0000,0.0000,0.0000,47.8900,0.0000 +002564.SZ,0.0000,0.0000,0.0000,20.9900,0.0000,0.0000,0.0000,24.8400,0.0000,0.0000,0.0000,26.3800,0.0000,0.0000,0.0000,17.9800,0.0000,0.0000,0.0000,31.8800,0.0000 +603257.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,37.5800,0.0000,0.0000,0.0000,27.8100,0.0000,0.0000,0.0000,19.2500,0.0000,41.2900,0.0000,29.6400,0.0000 +601218.SH,0.0000,0.0000,0.0000,41.0700,0.0000,0.0000,0.0000,39.3000,0.0000,0.0000,0.0000,40.7800,0.0000,0.0000,0.0000,43.7500,0.0000,0.0000,0.0000,42.1300,0.0000 +688535.SH,0.0000,0.0000,0.0000,51.1800,0.0000,0.0000,0.0000,48.1000,0.0000,56.9500,0.0000,0.0000,0.0000,0.0000,0.0000,51.3500,0.0000,0.0000,0.0000,53.4700,0.0000 +688450.SH,0.0000,0.0000,0.0000,15.6400,0.0000,0.0000,0.0000,16.3300,0.0000,0.0000,0.0000,19.4200,0.0000,0.0000,0.0000,22.1200,0.0000,0.0000,0.0000,31.3500,0.0000 +301168.SZ,0.0000,0.0000,0.0000,44.6000,0.0000,50.9900,0.0000,43.0600,0.0000,0.0000,0.0000,43.1000,0.0000,0.0000,0.0000,41.8700,0.0000,0.0000,0.0000,33.4200,0.0000 +300424.SZ,0.0000,0.0000,0.0000,23.0700,0.0000,0.0000,0.0000,13.2900,0.0000,0.0000,0.0000,14.9300,0.0000,0.0000,0.0000,13.8800,0.0000,0.0000,0.0000,23.0500,0.0000 +301333.SZ,0.0000,0.0000,0.0000,28.6800,0.0000,0.0000,0.0000,18.5100,0.0000,0.0000,0.0000,44.0800,0.0000,0.0000,0.0000,20.9300,0.0000,0.0000,0.0000,21.3900,0.0000 +688303.SH,0.0000,0.0000,0.0000,90.8700,0.0000,0.0000,0.0000,94.6800,0.0000,0.0000,0.0000,88.6900,0.0000,0.0000,0.0000,67.8900,0.0000,0.0000,0.0000,79.0900,0.0000 +301365.SZ,0.0000,0.0000,0.0000,31.0200,0.0000,0.0000,0.0000,20.3000,0.0000,19.6200,0.0000,16.3700,0.0000,0.0000,0.0000,12.0700,0.0000,0.0000,0.0000,20.4900,0.0000 +300534.SZ,0.0000,0.0000,0.0000,82.9200,0.0000,0.0000,0.0000,55.1100,0.0000,0.0000,0.0000,54.2500,0.0000,0.0000,0.0000,22.0200,0.0000,0.0000,0.0000,11.0600,0.0000 +002813.SZ,0.0000,0.0000,0.0000,37.1500,0.0000,0.0000,0.0000,63.7700,0.0000,0.0000,0.0000,53.2100,0.0000,0.0000,0.0000,60.6400,0.0000,0.0000,0.0000,38.6900,0.0000 +300523.SZ,0.0000,0.0000,0.0000,20.0200,0.0000,0.0000,0.0000,13.6200,0.0000,0.0000,0.0000,11.7200,0.0000,0.0000,0.0000,13.0700,0.0000,0.0000,0.0000,13.8600,0.0000 +300943.SZ,0.0000,0.0000,0.0000,20.9300,0.0000,0.0000,0.0000,19.5000,0.0000,0.0000,0.0000,23.3500,0.0000,0.0000,0.0000,25.6100,0.0000,0.0000,0.0000,22.4700,0.0000 +300296.SZ,0.0000,0.0000,0.0000,23.5300,0.0000,0.0000,0.0000,26.1300,0.0000,0.0000,0.0000,27.5500,0.0000,0.0000,0.0000,22.6600,0.0000,0.0000,0.0000,20.8900,0.0000 +300268.SZ,0.0000,0.0000,0.0000,26.4200,0.0000,0.0000,0.0000,26.6500,0.0000,0.0000,0.0000,38.0300,0.0000,0.0000,0.0000,28.8000,0.0000,0.0000,0.0000,23.9300,0.0000 +688211.SH,0.0000,0.0000,0.0000,41.7400,0.0000,0.0000,0.0000,26.9500,0.0000,0.0000,0.0000,27.2200,0.0000,0.0000,0.0000,23.3900,0.0000,0.0000,0.0000,29.6000,0.0000 +300179.SZ,0.0000,0.0000,0.0000,33.7700,0.0000,0.0000,0.0000,46.1400,0.0000,0.0000,0.0000,27.6800,0.0000,0.0000,0.0000,28.1800,0.0000,0.0000,0.0000,35.1500,0.0000 +300882.SZ,0.0000,0.0000,0.0000,43.6900,0.0000,0.0000,0.0000,36.5700,0.0000,0.0000,0.0000,31.5200,0.0000,0.0000,0.0000,31.9800,0.0000,0.0000,0.0000,29.7500,0.0000 +603176.SH,0.0000,0.0000,0.0000,22.8000,0.0000,0.0000,23.1900,20.3600,0.0000,0.0000,0.0000,15.8000,0.0000,0.0000,0.0000,14.0100,0.0000,0.0000,0.0000,20.2100,0.0000 +002429.SZ,0.0000,0.0000,0.0000,26.3000,0.0000,0.0000,0.0000,25.6100,0.0000,0.0000,0.0000,27.8300,0.0000,0.0000,0.0000,27.3200,0.0000,0.0000,0.0000,37.8800,0.0000 +002598.SZ,0.0000,0.0000,0.0000,17.0300,0.0000,0.0000,0.0000,15.7700,0.0000,0.0000,0.0000,15.2400,0.0000,0.0000,0.0000,15.3200,0.0000,0.0000,0.0000,11.4100,0.0000 +300826.SZ,0.0000,0.0000,0.0000,20.7200,0.0000,0.0000,0.0000,18.4300,0.0000,0.0000,0.0000,11.3100,0.0000,0.0000,0.0000,12.0300,0.0000,0.0000,0.0000,13.1100,0.0000 +000758.SZ,0.0000,0.0000,0.0000,4.5100,0.0000,0.0000,0.0000,14.9600,0.0000,0.0000,0.0000,12.5700,0.0000,0.0000,0.0000,17.9600,0.0000,0.0000,0.0000,18.7400,0.0000 +600172.SH,0.0000,0.0000,0.0000,44.6100,0.0000,0.0000,0.0000,37.5700,0.0000,0.0000,0.0000,29.3000,0.0000,0.0000,0.0000,26.8800,0.0000,0.0000,0.0000,24.0600,0.0000 +002008.SZ,0.0000,0.0000,0.0000,16.9000,0.0000,0.0000,0.0000,15.3200,0.0000,0.0000,0.0000,10.4600,0.0000,0.0000,0.0000,17.8900,0.0000,0.0000,0.0000,13.3000,0.0000 +300867.SZ,0.0000,0.0000,0.0000,26.5600,0.0000,0.0000,0.0000,25.9600,0.0000,0.0000,0.0000,33.5200,0.0000,0.0000,0.0000,18.9900,0.0000,0.0000,0.0000,11.9100,0.0000 +603677.SH,0.0000,0.0000,0.0000,23.4600,0.0000,0.0000,0.0000,23.0000,0.0000,0.0000,0.0000,20.6900,0.0000,0.0000,0.0000,19.6600,0.0000,0.0000,0.0000,21.9500,0.0000 +300549.SZ,0.0000,0.0000,0.0000,41.9000,0.0000,0.0000,0.0000,50.8000,0.0000,0.0000,0.0000,41.9200,0.0000,0.0000,0.0000,45.0700,0.0000,0.0000,0.0000,46.9100,0.0000 +603126.SH,0.0000,0.0000,0.0000,12.0800,0.0000,0.0000,0.0000,15.6700,0.0000,0.0000,0.0000,21.5500,0.0000,0.0000,0.0000,13.0000,0.0000,0.0000,0.0000,11.9600,0.0000 +301313.SZ,0.0000,0.0000,0.0000,14.4100,0.0000,0.0000,0.0000,12.1400,0.0000,0.0000,0.0000,12.4000,0.0000,0.0000,0.0000,15.0700,0.0000,0.0000,0.0000,23.7300,0.0000 +603722.SH,0.0000,0.0000,0.0000,70.0400,0.0000,0.0000,0.0000,73.9400,0.0000,0.0000,0.0000,61.9900,0.0000,0.0000,0.0000,67.4700,0.0000,0.0000,0.0000,62.1100,0.0000 +301290.SZ,0.0000,0.0000,0.0000,35.4100,0.0000,0.0000,0.0000,26.9600,0.0000,24.0100,0.0000,26.5700,0.0000,0.0000,0.0000,25.0700,0.0000,0.0000,0.0000,23.0400,0.0000 +002075.SZ,0.0000,0.0000,0.0000,41.3800,0.0000,0.0000,0.0000,45.3100,0.0000,0.0000,0.0000,38.7800,0.0000,0.0000,0.0000,37.4400,0.0000,0.0000,0.0000,40.5700,0.0000 +600227.SH,0.0000,0.0000,0.0000,56.7300,0.0000,0.0000,0.0000,60.2100,0.0000,0.0000,0.0000,51.5000,0.0000,0.0000,0.0000,58.6700,0.0000,0.0000,0.0000,59.6000,0.0000 +872931.BJ,0.0000,0.0000,0.0000,34.0300,0.0000,0.0000,0.0000,33.9000,0.0000,0.0000,0.0000,32.2900,0.0000,33.1600,0.0000,41.9700,0.0000,0.0000,0.0000,47.6400,0.0000 +301038.SZ,0.0000,0.0000,0.0000,39.1500,0.0000,0.0000,0.0000,36.4600,0.0000,0.0000,0.0000,25.8300,0.0000,0.0000,0.0000,31.0200,0.0000,0.0000,0.0000,16.8200,0.0000 +688360.SH,0.0000,0.0000,0.0000,23.5500,0.0000,0.0000,0.0000,24.4800,0.0000,0.0000,0.0000,37.3200,0.0000,0.0000,0.0000,20.4600,0.0000,0.0000,0.0000,19.9800,0.0000 +600810.SH,0.0000,0.0000,0.0000,50.8400,0.0000,0.0000,0.0000,57.6600,0.0000,0.0000,0.0000,56.8400,0.0000,0.0000,0.0000,57.4000,0.0000,0.0000,0.0000,71.1400,0.0000 +300226.SZ,0.0000,0.0000,0.0000,15.3000,0.0000,0.0000,0.0000,17.6200,0.0000,0.0000,0.0000,18.8200,0.0000,0.0000,0.0000,22.2000,0.0000,0.0000,0.0000,17.8800,0.0000 +600489.SH,0.0000,0.0000,0.0000,46.0100,0.0000,0.0000,0.0000,44.4600,0.0000,0.0000,0.0000,48.5200,0.0000,0.0000,0.0000,49.5100,0.0000,0.0000,0.0000,46.7300,0.0000 +002952.SZ,0.0000,0.0000,0.0000,19.9000,0.0000,0.0000,0.0000,31.2200,0.0000,0.0000,0.0000,41.1600,0.0000,0.0000,0.0000,30.5700,0.0000,0.0000,0.0000,31.5500,0.0000 +002403.SZ,0.0000,0.0000,0.0000,34.8300,0.0000,0.0000,0.0000,21.2200,0.0000,0.0000,0.0000,17.3300,0.0000,0.0000,0.0000,14.5300,0.0000,0.0000,0.0000,18.0800,0.0000 +688316.SH,0.0000,0.0000,0.0000,45.5000,0.0000,0.0000,0.0000,44.4400,0.0000,0.0000,0.0000,42.5300,0.0000,0.0000,0.0000,68.0500,0.0000,0.0000,0.0000,69.4100,0.0000 +600981.SH,0.0000,0.0000,0.0000,8.5700,0.0000,0.0000,0.0000,8.0900,0.0000,0.0000,0.0000,10.4100,0.0000,0.0000,0.0000,14.4100,0.0000,0.0000,0.0000,11.2500,0.0000 +000913.SZ,0.0000,0.0000,0.0000,7.1100,0.0000,0.0000,0.0000,6.3900,0.0000,0.0000,0.0000,8.5700,0.0000,0.0000,0.0000,8.3700,0.0000,0.0000,0.0000,8.4000,0.0000 +002012.SZ,0.0000,0.0000,0.0000,25.5800,0.0000,0.0000,0.0000,20.5500,0.0000,0.0000,0.0000,36.1800,0.0000,0.0000,0.0000,33.1800,0.0000,0.0000,0.0000,43.6600,0.0000 +688469.SH,0.0000,0.0000,0.0000,34.0000,0.0000,0.0000,0.0000,25.2500,0.0000,0.0000,0.0000,37.0700,0.0000,0.0000,0.0000,36.6600,0.0000,0.0000,0.0000,26.7200,0.0000 +301196.SZ,0.0000,0.0000,0.0000,24.3800,0.0000,24.7900,0.0000,22.3900,0.0000,0.0000,0.0000,16.5600,0.0000,0.0000,0.0000,22.5200,0.0000,0.0000,0.0000,21.1400,0.0000 +603885.SH,0.0000,0.0000,0.0000,35.7200,0.0000,0.0000,0.0000,45.7100,0.0000,0.0000,0.0000,46.5300,0.0000,0.0000,0.0000,48.9200,0.0000,0.0000,0.0000,46.9400,0.0000 +300640.SZ,0.0000,0.0000,0.0000,16.7500,0.0000,0.0000,0.0000,17.1000,0.0000,0.0000,0.0000,17.0200,0.0000,0.0000,0.0000,15.9300,0.0000,0.0000,0.0000,11.9900,0.0000 +301121.SZ,0.0000,0.0000,0.0000,59.4000,0.0000,0.0000,0.0000,59.1500,0.0000,0.0000,0.0000,52.0800,0.0000,0.0000,0.0000,47.7500,0.0000,0.0000,0.0000,44.8900,0.0000 +871642.BJ,0.0000,0.0000,0.0000,53.0200,0.0000,0.0000,0.0000,63.1700,0.0000,0.0000,0.0000,68.4800,0.0000,0.0000,0.0000,47.7900,0.0000,0.0000,0.0000,73.5900,0.0000 +301380.SZ,0.0000,0.0000,0.0000,52.3300,0.0000,0.0000,0.0000,44.0700,0.0000,0.0000,0.0000,46.9100,0.0000,0.0000,0.0000,42.6700,0.0000,0.0000,0.0000,36.2500,0.0000 +001298.SZ,0.0000,0.0000,0.0000,60.1200,0.0000,0.0000,0.0000,57.3200,0.0000,0.0000,0.0000,57.0300,0.0000,0.0000,0.0000,64.0700,0.0000,0.0000,0.0000,54.9000,0.0000 +300852.SZ,0.0000,0.0000,0.0000,57.5300,0.0000,0.0000,0.0000,62.7500,0.0000,0.0000,0.0000,57.2100,0.0000,0.0000,0.0000,48.2200,0.0000,0.0000,0.0000,54.8700,0.0000 +300162.SZ,0.0000,0.0000,0.0000,21.2800,0.0000,0.0000,0.0000,22.1100,0.0000,0.0000,0.0000,23.7100,0.0000,0.0000,0.0000,18.0500,0.0000,0.0000,0.0000,19.2700,0.0000 +688419.SH,0.0000,0.0000,0.0000,27.4800,0.0000,0.0000,0.0000,28.5400,0.0000,30.7400,0.0000,28.8800,0.0000,0.0000,0.0000,25.4800,0.0000,0.0000,0.0000,24.8500,0.0000 +300724.SZ,0.0000,0.0000,0.0000,13.5900,0.0000,0.0000,0.0000,18.7200,0.0000,0.0000,0.0000,12.8600,0.0000,0.0000,0.0000,13.2200,0.0000,0.0000,0.0000,11.1600,0.0000 +300844.SZ,0.0000,0.0000,0.0000,5.9400,0.0000,0.0000,0.0000,26.6400,0.0000,0.0000,0.0000,32.8700,0.0000,0.0000,0.0000,52.7000,0.0000,0.0000,0.0000,24.3700,0.0000 +688123.SH,0.0000,0.0000,0.0000,99.1900,0.0000,0.0000,0.0000,95.6900,0.0000,0.0000,0.0000,91.5700,0.0000,0.0000,0.0000,90.0600,0.0000,0.0000,0.0000,91.3400,0.0000 +300521.SZ,0.0000,0.0000,0.0000,19.6600,0.0000,0.0000,0.0000,31.5400,0.0000,0.0000,0.0000,32.3800,0.0000,0.0000,0.0000,25.5700,0.0000,0.0000,0.0000,18.6800,0.0000 +300560.SZ,0.0000,0.0000,0.0000,44.7400,0.0000,0.0000,0.0000,45.6800,0.0000,0.0000,0.0000,44.1500,0.0000,0.0000,0.0000,76.6600,0.0000,0.0000,0.0000,83.0900,0.0000 +688128.SH,0.0000,0.0000,0.0000,13.4300,0.0000,0.0000,0.0000,17.3700,0.0000,0.0000,0.0000,15.6400,0.0000,0.0000,0.0000,11.8100,0.0000,0.0000,0.0000,15.6800,0.0000 +603600.SH,0.0000,0.0000,0.0000,11.1700,0.0000,0.0000,0.0000,10.4500,0.0000,0.0000,0.0000,10.7900,0.0000,0.0000,0.0000,9.9400,0.0000,0.0000,0.0000,14.5800,0.0000 +600361.SH,0.0000,0.0000,0.0000,13.3000,0.0000,0.0000,0.0000,10.6900,0.0000,0.0000,0.0000,85.9900,0.0000,0.0000,0.0000,81.9700,0.0000,0.0000,0.0000,81.4600,0.0000 +300504.SZ,0.0000,0.0000,0.0000,32.6000,0.0000,0.0000,0.0000,39.2200,0.0000,0.0000,0.0000,40.9000,0.0000,0.0000,0.0000,48.4500,0.0000,0.0000,0.0000,37.4200,0.0000 +600533.SH,0.0000,0.0000,0.0000,47.3200,0.0000,0.0000,0.0000,36.4200,0.0000,0.0000,0.0000,12.8200,0.0000,0.0000,0.0000,16.3100,0.0000,0.0000,0.0000,19.4400,0.0000 +301077.SZ,0.0000,0.0000,0.0000,43.7800,0.0000,0.0000,0.0000,34.5600,0.0000,0.0000,0.0000,38.2600,0.0000,0.0000,0.0000,38.9100,0.0000,0.0000,0.0000,39.2900,0.0000 +300641.SZ,0.0000,0.0000,0.0000,53.9100,0.0000,0.0000,0.0000,68.9900,0.0000,0.0000,0.0000,74.2400,0.0000,0.0000,0.0000,74.7500,0.0000,0.0000,0.0000,64.7600,0.0000 +001373.SZ,0.0000,0.0000,0.0000,71.4900,0.0000,0.0000,0.0000,73.0500,0.0000,0.0000,0.0000,66.2800,0.0000,0.0000,0.0000,63.4600,0.0000,0.0000,0.0000,52.3200,0.0000 +600855.SH,0.0000,0.0000,0.0000,11.4900,0.0000,0.0000,0.0000,17.3200,0.0000,0.0000,0.0000,19.6400,0.0000,0.0000,0.0000,18.6300,0.0000,0.0000,0.0000,19.6200,0.0000 +300881.SZ,0.0000,0.0000,0.0000,63.2700,0.0000,0.0000,0.0000,56.0800,0.0000,0.0000,0.0000,58.3900,0.0000,0.0000,0.0000,64.7200,0.0000,0.0000,0.0000,56.5600,0.0000 +002030.SZ,0.0000,0.0000,0.0000,21.0700,0.0000,0.0000,0.0000,38.2000,0.0000,0.0000,0.0000,31.2000,0.0000,0.0000,0.0000,19.3700,0.0000,0.0000,0.0000,22.0800,0.0000 +601886.SH,0.0000,0.0000,0.0000,9.4000,0.0000,0.0000,0.0000,10.5800,0.0000,0.0000,0.0000,10.5800,0.0000,0.0000,0.0000,11.2300,0.0000,0.0000,0.0000,9.2500,0.0000 +301550.SZ,0.0000,0.0000,0.0000,29.3800,0.0000,0.0000,0.0000,33.0800,0.0000,0.0000,0.0000,27.7200,0.0000,0.0000,0.0000,31.0800,0.0000,0.0000,0.0000,29.6400,0.0000 +603210.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,54.3200,0.0000,0.0000,0.0000,52.7500,0.0000,0.0000,0.0000,58.9100,0.0000,53.4600,0.0000,0.0000,0.0000 +300041.SZ,0.0000,0.0000,0.0000,28.7900,0.0000,0.0000,0.0000,29.8500,0.0000,0.0000,0.0000,32.2700,0.0000,0.0000,0.0000,31.4700,0.0000,0.0000,0.0000,39.5800,0.0000 +600531.SH,0.0000,0.0000,0.0000,24.8600,0.0000,0.0000,0.0000,31.1400,0.0000,0.0000,0.0000,22.1100,0.0000,0.0000,0.0000,29.2200,0.0000,0.0000,0.0000,28.4600,0.0000 +603200.SH,0.0000,0.0000,0.0000,15.0100,0.0000,0.0000,0.0000,14.0200,0.0000,0.0000,0.0000,11.9200,0.0000,0.0000,0.0000,15.6000,0.0000,0.0000,0.0000,16.2500,0.0000 +601456.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +300307.SZ,0.0000,0.0000,0.0000,32.0900,0.0000,0.0000,0.0000,31.6600,0.0000,0.0000,0.0000,31.2200,0.0000,0.0000,0.0000,32.2500,0.0000,0.0000,0.0000,29.1600,0.0000 +002436.SZ,0.0000,0.0000,0.0000,18.5900,0.0000,0.0000,0.0000,20.1400,0.0000,0.0000,0.0000,17.5900,0.0000,0.0000,0.0000,14.4100,0.0000,0.0000,0.0000,16.3300,0.0000 +301152.SZ,0.0000,0.0000,0.0000,74.5900,0.0000,0.0000,0.0000,65.2100,0.0000,0.0000,0.0000,51.1000,0.0000,0.0000,0.0000,36.1100,0.0000,0.0000,0.0000,44.4900,0.0000 +002782.SZ,0.0000,0.0000,0.0000,15.5100,0.0000,0.0000,0.0000,16.3900,0.0000,0.0000,0.0000,23.4800,0.0000,0.0000,0.0000,27.2200,0.0000,0.0000,0.0000,27.2600,0.0000 +600537.SH,0.0000,0.0000,0.0000,41.9300,0.0000,0.0000,0.0000,35.4800,0.0000,0.0000,0.0000,27.1800,0.0000,0.0000,0.0000,24.8200,0.0000,0.0000,0.0000,25.4200,0.0000 +002212.SZ,0.0000,0.0000,0.0000,31.9000,0.0000,0.0000,0.0000,36.7000,0.0000,0.0000,0.0000,28.8900,0.0000,0.0000,0.0000,27.6400,0.0000,0.0000,0.0000,30.1900,0.0000 +300170.SZ,0.0000,0.0000,0.0000,22.0500,0.0000,0.0000,0.0000,25.7900,0.0000,0.0000,0.0000,26.7500,0.0000,0.0000,0.0000,26.4200,0.0000,0.0000,0.0000,23.2900,0.0000 +601058.SH,0.0000,0.0000,0.0000,28.9800,0.0000,0.0000,0.0000,25.4800,0.0000,0.0000,0.0000,26.8200,0.0000,0.0000,0.0000,32.7400,0.0000,0.0000,0.0000,28.4000,0.0000 +603232.SH,0.0000,0.0000,0.0000,18.4400,0.0000,0.0000,0.0000,16.7100,0.0000,0.0000,0.0000,14.4600,0.0000,0.0000,0.0000,10.9200,0.0000,0.0000,0.0000,16.9000,0.0000 +300995.SZ,0.0000,0.0000,0.0000,27.1300,0.0000,0.0000,0.0000,28.9300,0.0000,0.0000,0.0000,28.2300,0.0000,0.0000,0.0000,27.2500,0.0000,0.0000,0.0000,35.7700,0.0000 +300346.SZ,0.0000,0.0000,0.0000,32.0200,0.0000,0.0000,0.0000,24.5900,0.0000,0.0000,0.0000,25.8800,0.0000,0.0000,0.0000,29.3700,0.0000,0.0000,0.0000,17.5800,0.0000 +300099.SZ,0.0000,0.0000,0.0000,43.7400,0.0000,0.0000,0.0000,22.1400,0.0000,0.0000,0.0000,19.6100,0.0000,0.0000,0.0000,22.1800,0.0000,0.0000,0.0000,20.2400,0.0000 +300349.SZ,0.0000,0.0000,0.0000,25.1700,0.0000,0.0000,0.0000,26.9300,0.0000,0.0000,0.0000,28.9200,0.0000,0.0000,0.0000,27.0800,0.0000,0.0000,0.0000,29.5300,0.0000 +002609.SZ,0.0000,0.0000,0.0000,24.2500,0.0000,0.0000,0.0000,23.6400,0.0000,0.0000,0.0000,22.2600,0.0000,0.0000,0.0000,19.7900,0.0000,0.0000,0.0000,17.2800,0.0000 +002953.SZ,0.0000,0.0000,0.0000,79.3700,0.0000,0.0000,0.0000,74.2100,0.0000,0.0000,0.0000,74.7000,0.0000,0.0000,0.0000,76.7500,0.0000,0.0000,0.0000,79.6900,0.0000 +920128.BJ,0.0000,0.0000,0.0000,35.9700,0.0000,0.0000,0.0000,36.2200,0.0000,0.0000,0.0000,38.9200,0.0000,44.9100,0.0000,48.4500,0.0000,49.9200,0.0000,50.5300,0.0000 +300780.SZ,0.0000,0.0000,0.0000,33.6600,0.0000,0.0000,0.0000,23.2400,0.0000,0.0000,0.0000,27.7800,0.0000,0.0000,0.0000,32.0800,0.0000,0.0000,0.0000,27.7400,0.0000 +000039.SZ,0.0000,0.0000,0.0000,15.1100,0.0000,0.0000,0.0000,17.1100,0.0000,0.0000,0.0000,11.1400,0.0000,0.0000,0.0000,8.6300,0.0000,0.0000,0.0000,20.9800,0.0000 +001317.SZ,0.0000,0.0000,0.0000,43.1800,0.0000,47.9600,0.0000,52.4300,0.0000,0.0000,0.0000,49.6600,0.0000,0.0000,0.0000,45.6500,0.0000,0.0000,0.0000,53.6700,0.0000 +301155.SZ,0.0000,0.0000,0.0000,74.2700,0.0000,72.2400,0.0000,53.3700,0.0000,0.0000,0.0000,67.6900,0.0000,0.0000,0.0000,51.5900,0.0000,0.0000,0.0000,54.0900,0.0000 +002284.SZ,0.0000,0.0000,0.0000,19.1800,0.0000,0.0000,0.0000,12.4200,0.0000,0.0000,0.0000,11.6500,0.0000,0.0000,0.0000,17.1700,0.0000,0.0000,0.0000,17.5500,0.0000 +300768.SZ,0.0000,0.0000,0.0000,33.3000,0.0000,0.0000,0.0000,23.0200,0.0000,0.0000,0.0000,24.2500,0.0000,0.0000,0.0000,24.4100,0.0000,0.0000,0.0000,19.1800,0.0000 +300024.SZ,0.0000,0.0000,0.0000,10.7000,0.0000,0.0000,0.0000,5.7500,0.0000,0.0000,0.0000,7.5400,0.0000,0.0000,0.0000,7.8900,0.0000,0.0000,0.0000,9.7400,0.0000 +301556.SZ,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,11.6200,0.0000,0.0000,0.0000,14.0700,0.0000,0.0000,0.0000,14.7900,0.0000,0.0000,0.0000,10.4100,0.0000 +603000.SH,0.0000,0.0000,0.0000,19.6700,0.0000,0.0000,0.0000,21.3200,0.0000,0.0000,0.0000,17.7600,0.0000,0.0000,0.0000,15.8800,0.0000,0.0000,0.0000,18.2800,0.0000 +603305.SH,0.0000,0.0000,0.0000,46.5600,0.0000,0.0000,0.0000,55.1800,0.0000,0.0000,0.0000,51.4900,0.0000,0.0000,0.0000,50.0800,0.0000,0.0000,0.0000,40.6100,0.0000 +832000.BJ,0.0000,0.0000,0.0000,29.1700,0.0000,0.0000,0.0000,30.2000,0.0000,0.0000,0.0000,21.3600,0.0000,0.0000,0.0000,25.3300,0.0000,0.0000,0.0000,23.3800,0.0000 +300131.SZ,0.0000,0.0000,0.0000,69.1600,0.0000,0.0000,0.0000,36.2400,0.0000,0.0000,0.0000,42.9000,0.0000,0.0000,0.0000,53.1600,0.0000,0.0000,0.0000,53.3200,0.0000 +002085.SZ,0.0000,0.0000,0.0000,23.6500,0.0000,0.0000,0.0000,30.0500,0.0000,0.0000,0.0000,30.6400,0.0000,0.0000,0.0000,35.2900,0.0000,0.0000,0.0000,40.1300,0.0000 +300073.SZ,0.0000,0.0000,0.0000,45.6700,0.0000,0.0000,0.0000,48.4300,0.0000,0.0000,0.0000,35.7000,0.0000,0.0000,0.0000,56.4400,0.0000,0.0000,0.0000,41.4100,0.0000 +300992.SZ,0.0000,0.0000,36.1500,0.0000,0.0000,0.0000,0.0000,42.1300,0.0000,0.0000,0.0000,30.0100,0.0000,0.0000,0.0000,29.1200,0.0000,0.0000,0.0000,31.0100,0.0000 +300188.SZ,0.0000,0.0000,0.0000,13.6400,0.0000,0.0000,0.0000,9.2800,0.0000,0.0000,0.0000,12.8500,0.0000,0.0000,0.0000,9.3800,0.0000,0.0000,0.0000,12.4800,0.0000 +600478.SH,0.0000,0.0000,0.0000,22.6300,0.0000,0.0000,0.0000,35.2100,0.0000,0.0000,0.0000,51.1900,0.0000,0.0000,0.0000,47.9800,0.0000,0.0000,0.0000,35.3400,0.0000 +002081.SZ,0.0000,0.0000,0.0000,2.1300,0.0000,0.0000,0.0000,1.6800,0.0000,0.0000,0.0000,1.8100,0.0000,0.0000,0.0000,2.8800,0.0000,0.0000,0.0000,3.0800,0.0000 +002763.SZ,0.0000,0.0000,0.0000,35.2700,0.0000,0.0000,0.0000,44.3500,0.0000,0.0000,0.0000,27.1700,0.0000,0.0000,0.0000,20.0700,0.0000,0.0000,0.0000,24.0000,0.0000 +002937.SZ,0.0000,0.0000,0.0000,20.2700,0.0000,0.0000,0.0000,17.5500,0.0000,0.0000,0.0000,25.9900,0.0000,0.0000,0.0000,37.5300,0.0000,0.0000,0.0000,36.7100,0.0000 +301577.SZ,0.0000,0.0000,0.0000,40.8200,0.0000,0.0000,0.0000,38.2200,0.0000,0.0000,0.0000,34.0300,0.0000,37.3100,0.0000,22.2300,0.0000,0.0000,0.0000,26.9000,0.0000 +300585.SZ,0.0000,0.0000,0.0000,15.2100,0.0000,0.0000,0.0000,19.2500,0.0000,0.0000,0.0000,26.2400,0.0000,0.0000,0.0000,26.8900,0.0000,0.0000,0.0000,30.3400,0.0000 +300145.SZ,0.0000,0.0000,0.0000,23.2000,0.0000,0.0000,0.0000,26.9700,0.0000,0.0000,0.0000,23.5200,0.0000,0.0000,0.0000,29.0000,0.0000,0.0000,0.0000,29.1300,0.0000 +002017.SZ,0.0000,0.0000,0.0000,52.8600,0.0000,0.0000,0.0000,63.8400,0.0000,0.0000,0.0000,77.0100,0.0000,0.0000,0.0000,55.4200,0.0000,0.0000,0.0000,55.6800,0.0000 +301182.SZ,0.0000,0.0000,0.0000,38.5500,0.0000,45.4000,0.0000,43.8100,0.0000,0.0000,0.0000,29.2100,0.0000,0.0000,0.0000,39.0300,0.0000,0.0000,0.0000,65.1600,0.0000 +300165.SZ,0.0000,0.0000,0.0000,22.5700,0.0000,0.0000,0.0000,30.9900,0.0000,0.0000,0.0000,30.5900,0.0000,0.0000,0.0000,27.1400,0.0000,0.0000,0.0000,14.9200,0.0000 +000993.SZ,0.0000,0.0000,0.0000,57.2300,0.0000,0.0000,0.0000,74.2800,0.0000,0.0000,0.0000,61.3800,0.0000,0.0000,0.0000,46.0700,0.0000,0.0000,0.0000,34.3500,0.0000 +838030.BJ,0.0000,0.0000,0.0000,81.0500,0.0000,0.0000,0.0000,74.2200,0.0000,0.0000,0.0000,72.2400,0.0000,0.0000,0.0000,45.4000,0.0000,0.0000,0.0000,75.8900,0.0000 +600761.SH,0.0000,0.0000,0.0000,23.0800,0.0000,0.0000,0.0000,20.2000,0.0000,0.0000,0.0000,24.3700,0.0000,0.0000,0.0000,21.4100,0.0000,0.0000,0.0000,16.9000,0.0000 +300490.SZ,0.0000,0.0000,0.0000,9.6500,0.0000,0.0000,0.0000,21.7800,0.0000,0.0000,0.0000,23.9400,0.0000,0.0000,0.0000,42.4900,0.0000,0.0000,0.0000,17.0100,0.0000 +002910.SZ,0.0000,0.0000,0.0000,15.5100,0.0000,0.0000,0.0000,35.2200,0.0000,0.0000,0.0000,27.1900,0.0000,0.0000,0.0000,34.7300,0.0000,0.0000,0.0000,22.3700,0.0000 +300451.SZ,0.0000,0.0000,0.0000,25.4300,0.0000,0.0000,0.0000,20.3100,0.0000,0.0000,0.0000,33.7900,0.0000,0.0000,0.0000,19.7300,0.0000,0.0000,0.0000,9.0500,0.0000 +300959.SZ,0.0000,0.0000,0.0000,58.9300,0.0000,0.0000,0.0000,55.2800,0.0000,0.0000,0.0000,62.5400,0.0000,0.0000,0.0000,64.2800,0.0000,0.0000,0.0000,62.1700,0.0000 +601226.SH,0.0000,0.0000,0.0000,18.0400,0.0000,0.0000,0.0000,17.4200,0.0000,0.0000,0.0000,13.2300,0.0000,16.1800,0.0000,19.2300,0.0000,21.7300,0.0000,17.4300,0.0000 +001332.SZ,0.0000,0.0000,0.0000,28.7300,0.0000,0.0000,0.0000,30.3000,0.0000,0.0000,0.0000,36.8500,0.0000,0.0000,0.0000,34.2500,0.0000,0.0000,0.0000,27.9900,0.0000 +002086.SZ,0.0000,0.0000,0.0000,41.3900,0.0000,0.0000,0.0000,13.2600,0.0000,0.0000,0.0000,17.6800,0.0000,0.0000,0.0000,17.6000,0.0000,0.0000,0.0000,21.8800,0.0000 +603120.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,51.6900,0.0000,0.0000,0.0000,47.8400,0.0000,0.0000,0.0000,59.5400,0.0000,59.4000,0.0000,0.0000,0.0000 +603165.SH,0.0000,0.0000,0.0000,35.8500,0.0000,0.0000,0.0000,43.4800,0.0000,0.0000,0.0000,50.2000,0.0000,0.0000,0.0000,52.2700,0.0000,0.0000,0.0000,58.8300,0.0000 +430017.BJ,0.0000,0.0000,0.0000,50.0200,0.0000,0.0000,0.0000,54.9800,0.0000,46.5000,0.0000,45.5300,0.0000,0.0000,0.0000,43.9100,0.0000,0.0000,0.0000,48.3700,0.0000 +300055.SZ,0.0000,0.0000,0.0000,28.7200,0.0000,0.0000,0.0000,82.7100,0.0000,0.0000,0.0000,85.5900,0.0000,0.0000,0.0000,82.3800,0.0000,0.0000,0.0000,67.4300,0.0000 +002587.SZ,0.0000,0.0000,0.0000,30.1500,0.0000,0.0000,0.0000,19.2900,0.0000,0.0000,0.0000,16.4600,0.0000,0.0000,0.0000,21.5400,0.0000,0.0000,0.0000,18.7900,0.0000 +838924.BJ,0.0000,0.0000,0.0000,57.4100,0.0000,0.0000,0.0000,32.4000,0.0000,0.0000,0.0000,32.5300,0.0000,0.0000,0.0000,33.3800,0.0000,0.0000,0.0000,39.3600,0.0000 +605086.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,57.3900,0.0000,0.0000,0.0000,56.3900,0.0000,0.0000,0.0000,61.0000,0.0000,0.0000,0.0000,65.3400,0.0000 +300948.SZ,0.0000,0.0000,0.0000,25.3100,0.0000,0.0000,0.0000,37.0200,0.0000,0.0000,0.0000,18.3200,0.0000,0.0000,0.0000,23.0300,0.0000,0.0000,0.0000,22.6800,0.0000 +600094.SH,0.0000,0.0000,0.0000,53.2300,0.0000,0.0000,0.0000,26.3400,0.0000,0.0000,0.0000,18.1200,0.0000,0.0000,0.0000,33.6200,0.0000,0.0000,0.0000,33.6500,0.0000 +300171.SZ,0.0000,0.0000,0.0000,9.8700,0.0000,0.0000,0.0000,10.9600,0.0000,0.0000,0.0000,10.8100,0.0000,0.0000,0.0000,11.0900,0.0000,0.0000,0.0000,11.2600,0.0000 +001239.SZ,0.0000,0.0000,0.0000,77.2300,0.0000,0.0000,0.0000,76.9200,0.0000,0.0000,0.0000,77.2200,0.0000,74.3300,0.0000,69.1200,0.0000,0.0000,0.0000,50.1600,0.0000 +688215.SH,0.0000,0.0000,0.0000,39.7500,0.0000,0.0000,0.0000,50.8000,0.0000,0.0000,0.0000,37.3800,0.0000,0.0000,0.0000,29.7600,0.0000,0.0000,0.0000,34.1000,0.0000 +603125.SH,0.0000,0.0000,0.0000,35.9800,0.0000,0.0000,0.0000,29.4000,0.0000,30.5300,0.0000,31.8000,0.0000,0.0000,0.0000,44.0100,0.0000,0.0000,0.0000,23.9700,0.0000 +688682.SH,0.0000,43.4300,0.0000,0.0000,0.0000,0.0000,0.0000,30.6900,0.0000,0.0000,0.0000,39.7300,0.0000,0.0000,0.0000,43.9100,0.0000,0.0000,0.0000,41.0200,0.0000 +002669.SZ,0.0000,0.0000,0.0000,33.9200,0.0000,0.0000,0.0000,38.7500,0.0000,0.0000,0.0000,42.7300,0.0000,0.0000,0.0000,24.9100,0.0000,0.0000,0.0000,35.3000,0.0000 +300688.SZ,0.0000,0.0000,0.0000,14.4600,0.0000,0.0000,0.0000,8.9900,0.0000,0.0000,0.0000,6.0000,0.0000,0.0000,0.0000,16.0300,0.0000,0.0000,0.0000,22.5600,0.0000 +301197.SZ,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,42.8500,0.0000,0.0000,0.0000,40.9800,0.0000,0.0000,0.0000,36.8400,0.0000 +300126.SZ,0.0000,0.0000,0.0000,20.2200,0.0000,0.0000,0.0000,25.5200,0.0000,0.0000,0.0000,26.0000,0.0000,0.0000,0.0000,24.8400,0.0000,0.0000,0.0000,20.7900,0.0000 +300706.SZ,0.0000,0.0000,0.0000,57.2000,0.0000,0.0000,0.0000,60.2400,0.0000,0.0000,0.0000,59.0200,0.0000,0.0000,0.0000,42.5000,0.0000,0.0000,0.0000,49.5500,0.0000 +000066.SZ,0.0000,0.0000,0.0000,16.5500,0.0000,0.0000,0.0000,19.1100,0.0000,0.0000,0.0000,15.1100,0.0000,0.0000,0.0000,9.9500,0.0000,0.0000,0.0000,16.6300,0.0000 +603332.SH,0.0000,0.0000,0.0000,72.9300,0.0000,0.0000,0.0000,65.0700,0.0000,0.0000,0.0000,51.4000,0.0000,0.0000,0.0000,66.2000,0.0000,0.0000,0.0000,63.4600,0.0000 +301489.SZ,0.0000,0.0000,0.0000,57.4500,0.0000,0.0000,0.0000,65.4400,0.0000,0.0000,0.0000,62.4900,0.0000,0.0000,0.0000,43.8900,0.0000,0.0000,0.0000,57.4900,0.0000 +002158.SZ,0.0000,0.0000,0.0000,17.2400,0.0000,0.0000,0.0000,19.4900,0.0000,0.0000,0.0000,19.3500,0.0000,0.0000,0.0000,21.1900,0.0000,0.0000,0.0000,13.9100,0.0000 +000629.SZ,0.0000,0.0000,0.0000,79.7900,0.0000,0.0000,0.0000,80.6200,0.0000,0.0000,0.0000,81.7700,0.0000,0.0000,0.0000,80.9300,0.0000,0.0000,0.0000,88.6300,0.0000 +300873.SZ,0.0000,0.0000,0.0000,19.9000,0.0000,0.0000,0.0000,17.5500,0.0000,0.0000,0.0000,16.1900,0.0000,0.0000,0.0000,20.0600,0.0000,0.0000,0.0000,25.9200,0.0000 +688670.SH,0.0000,0.0000,0.0000,64.5300,0.0000,0.0000,0.0000,27.4500,0.0000,0.0000,0.0000,49.9200,0.0000,0.0000,0.0000,52.2500,0.0000,0.0000,0.0000,49.2900,0.0000 +301357.SZ,0.0000,0.0000,0.0000,41.2100,0.0000,0.0000,0.0000,53.7800,0.0000,43.5200,0.0000,40.2900,0.0000,0.0000,0.0000,44.9800,0.0000,0.0000,0.0000,37.1400,0.0000 +688218.SH,0.0000,0.0000,0.0000,18.3600,0.0000,0.0000,0.0000,15.9000,0.0000,0.0000,0.0000,27.8700,0.0000,0.0000,0.0000,33.2800,0.0000,0.0000,0.0000,17.9500,0.0000 +002498.SZ,0.0000,0.0000,0.0000,51.6100,0.0000,0.0000,0.0000,55.3500,0.0000,0.0000,0.0000,57.3400,0.0000,0.0000,0.0000,54.6300,0.0000,0.0000,0.0000,57.8800,0.0000 +002235.SZ,0.0000,0.0000,0.0000,32.8500,0.0000,0.0000,0.0000,33.3300,0.0000,0.0000,0.0000,40.5800,0.0000,0.0000,0.0000,38.3100,0.0000,0.0000,0.0000,41.3700,0.0000 +301586.SZ,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,87.8300,0.0000,0.0000,0.0000,89.8600,0.0000,0.0000,0.0000,91.9900,0.0000,0.0000,0.0000,91.8200,0.0000 +833533.BJ,0.0000,0.0000,0.0000,34.8900,0.0000,0.0000,0.0000,23.7800,0.0000,0.0000,0.0000,23.5700,0.0000,0.0000,0.0000,21.6000,0.0000,0.0000,0.0000,32.9900,0.0000 +603324.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,25.5200,0.0000,0.0000,0.0000,21.8400,0.0000,0.0000,0.0000,25.1300,0.0000,0.0000,0.0000,24.9200,0.0000 +831304.BJ,0.0000,0.0000,0.0000,53.2200,0.0000,0.0000,0.0000,48.5600,0.0000,68.4100,0.0000,66.3200,0.0000,0.0000,0.0000,62.1600,0.0000,0.0000,0.0000,61.0400,0.0000 +300612.SZ,0.0000,0.0000,0.0000,71.5500,0.0000,0.0000,0.0000,77.0500,0.0000,0.0000,0.0000,79.1600,0.0000,0.0000,0.0000,81.5300,0.0000,0.0000,0.0000,82.4700,0.0000 +603358.SH,0.0000,0.0000,0.0000,41.4600,0.0000,0.0000,0.0000,44.5600,0.0000,0.0000,0.0000,40.7100,0.0000,0.0000,0.0000,28.2800,0.0000,0.0000,0.0000,25.0600,0.0000 +600935.SH,0.0000,0.0000,0.0000,56.7600,0.0000,47.3600,0.0000,29.7000,0.0000,0.0000,0.0000,40.0600,0.0000,0.0000,0.0000,37.6900,0.0000,0.0000,0.0000,26.3100,0.0000 +002718.SZ,0.0000,0.0000,0.0000,53.4300,0.0000,0.0000,0.0000,48.7300,0.0000,0.0000,0.0000,49.4800,0.0000,0.0000,0.0000,46.6000,0.0000,0.0000,0.0000,45.4900,0.0000 +600288.SH,0.0000,0.0000,0.0000,16.9800,0.0000,0.0000,0.0000,23.1400,0.0000,0.0000,0.0000,22.5200,0.0000,0.0000,0.0000,22.1700,0.0000,0.0000,0.0000,34.6000,0.0000 +001335.SZ,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,65.6500,0.0000,0.0000,0.0000,65.2700,0.0000,0.0000,0.0000,60.7400,0.0000,55.8200,0.0000,0.0000,0.0000 +600594.SH,0.0000,0.0000,0.0000,40.5300,0.0000,0.0000,0.0000,33.0000,0.0000,0.0000,0.0000,31.7600,0.0000,0.0000,0.0000,37.5500,0.0000,0.0000,0.0000,35.9300,0.0000 +834014.BJ,0.0000,0.0000,0.0000,21.8100,0.0000,0.0000,0.0000,17.2900,0.0000,23.2300,0.0000,19.5000,0.0000,0.0000,0.0000,19.9900,0.0000,0.0000,0.0000,17.9300,0.0000 +000958.SZ,0.0000,0.0000,0.0000,21.6300,0.0000,0.0000,0.0000,27.8900,0.0000,0.0000,0.0000,50.6400,0.0000,0.0000,0.0000,50.2600,0.0000,0.0000,0.0000,72.5000,0.0000 +002655.SZ,0.0000,0.0000,0.0000,32.8100,0.0000,0.0000,0.0000,35.1800,0.0000,0.0000,0.0000,39.8200,0.0000,0.0000,0.0000,60.0200,0.0000,0.0000,0.0000,57.2000,0.0000 +300634.SZ,0.0000,0.0000,0.0000,34.1200,0.0000,0.0000,0.0000,27.4800,0.0000,0.0000,0.0000,32.6200,0.0000,0.0000,0.0000,46.0600,0.0000,0.0000,0.0000,36.2900,0.0000 +688138.SH,0.0000,0.0000,0.0000,82.5800,0.0000,0.0000,0.0000,58.0300,0.0000,0.0000,0.0000,52.4300,0.0000,0.0000,0.0000,73.0500,0.0000,0.0000,0.0000,73.8400,0.0000 +002475.SZ,0.0000,0.0000,0.0000,39.5400,0.0000,0.0000,0.0000,57.9600,0.0000,0.0000,0.0000,62.9600,0.0000,0.0000,0.0000,65.1600,0.0000,0.0000,0.0000,62.2900,0.0000 +002897.SZ,0.0000,0.0000,0.0000,29.0800,0.0000,0.0000,0.0000,39.0400,0.0000,0.0000,0.0000,42.6600,0.0000,0.0000,0.0000,41.7400,0.0000,0.0000,0.0000,32.5500,0.0000 +300690.SZ,0.0000,0.0000,0.0000,37.2400,0.0000,0.0000,0.0000,33.0600,0.0000,0.0000,0.0000,36.7600,0.0000,0.0000,0.0000,20.0900,0.0000,0.0000,0.0000,26.3100,0.0000 +300872.SZ,0.0000,0.0000,0.0000,34.8000,0.0000,0.0000,0.0000,48.0700,0.0000,0.0000,0.0000,58.0000,0.0000,0.0000,0.0000,49.4500,0.0000,0.0000,0.0000,40.7600,0.0000 +002334.SZ,0.0000,0.0000,0.0000,21.6000,0.0000,0.0000,0.0000,17.8100,0.0000,0.0000,0.0000,15.9300,0.0000,0.0000,0.0000,15.0000,0.0000,0.0000,0.0000,15.4200,0.0000 +872541.BJ,0.0000,0.0000,0.0000,35.9600,0.0000,0.0000,0.0000,36.8400,0.0000,39.3800,0.0000,33.3400,0.0000,0.0000,0.0000,37.8500,0.0000,0.0000,0.0000,46.9500,0.0000 +300315.SZ,0.0000,0.0000,0.0000,41.2600,0.0000,0.0000,0.0000,42.2000,0.0000,0.0000,0.0000,51.1800,0.0000,0.0000,0.0000,59.8500,0.0000,0.0000,0.0000,61.7000,0.0000 +601208.SH,0.0000,0.0000,0.0000,46.0000,0.0000,0.0000,0.0000,38.2000,0.0000,0.0000,0.0000,39.7300,0.0000,0.0000,0.0000,36.0400,0.0000,0.0000,0.0000,35.6300,0.0000 +002134.SZ,0.0000,0.0000,0.0000,43.5200,0.0000,0.0000,0.0000,45.0000,0.0000,0.0000,0.0000,57.9300,0.0000,0.0000,0.0000,37.2700,0.0000,0.0000,0.0000,29.1100,0.0000 +688631.SH,0.0000,0.0000,0.0000,18.3600,0.0000,0.0000,0.0000,20.3400,0.0000,0.0000,0.0000,14.3700,0.0000,0.0000,0.0000,9.1600,0.0000,0.0000,0.0000,12.5600,0.0000 +688420.SH,0.0000,0.0000,0.0000,16.2700,0.0000,0.0000,0.0000,14.8500,0.0000,12.4200,0.0000,12.4000,0.0000,0.0000,0.0000,19.2100,0.0000,0.0000,0.0000,18.7300,0.0000 +688170.SH,0.0000,0.0000,0.0000,20.7500,0.0000,0.0000,0.0000,17.8500,0.0000,0.0000,0.0000,17.6800,0.0000,0.0000,0.0000,18.3100,0.0000,0.0000,0.0000,20.7400,0.0000 +300019.SZ,0.0000,0.0000,0.0000,34.4800,0.0000,0.0000,0.0000,46.6800,0.0000,0.0000,0.0000,42.5500,0.0000,0.0000,0.0000,43.1400,0.0000,0.0000,0.0000,37.2300,0.0000 +300110.SZ,0.0000,0.0000,0.0000,29.7800,0.0000,0.0000,0.0000,12.6900,0.0000,0.0000,0.0000,17.7200,0.0000,0.0000,0.0000,22.9800,0.0000,0.0000,0.0000,11.6800,0.0000 +301219.SZ,0.0000,0.0000,0.0000,35.9100,0.0000,45.6000,0.0000,54.6700,0.0000,0.0000,0.0000,42.9200,0.0000,0.0000,0.0000,35.9200,0.0000,0.0000,0.0000,32.2200,0.0000 +002805.SZ,0.0000,0.0000,0.0000,43.1700,0.0000,0.0000,0.0000,61.9200,0.0000,0.0000,0.0000,54.9200,0.0000,0.0000,0.0000,79.4200,0.0000,0.0000,0.0000,51.3600,0.0000 +688339.SH,0.0000,0.0000,0.0000,50.4300,0.0000,0.0000,0.0000,55.1900,0.0000,0.0000,0.0000,45.7700,0.0000,0.0000,0.0000,45.3100,0.0000,0.0000,0.0000,66.3500,0.0000 +603373.SH,0.0000,0.0000,0.0000,28.5300,0.0000,0.0000,0.0000,27.5400,0.0000,0.0000,0.0000,26.8900,0.0000,23.2900,0.0000,22.2100,0.0000,0.0000,0.0000,20.5900,0.0000 +605162.SH,0.0000,0.0000,0.0000,65.8400,0.0000,0.0000,0.0000,53.5000,0.0000,0.0000,0.0000,77.7500,0.0000,0.0000,0.0000,61.5400,0.0000,0.0000,0.0000,68.5700,0.0000 +000690.SZ,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,17.8300,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +603137.SH,0.0000,0.0000,0.0000,29.9200,0.0000,0.0000,0.0000,32.9000,0.0000,42.0500,0.0000,0.0000,0.0000,0.0000,0.0000,35.2700,0.0000,0.0000,0.0000,37.2000,0.0000 +002558.SZ,0.0000,0.0000,0.0000,48.0800,0.0000,0.0000,0.0000,45.2500,0.0000,0.0000,0.0000,63.3900,0.0000,0.0000,0.0000,69.2900,0.0000,0.0000,0.0000,53.8500,0.0000 +688323.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,53.1500,0.0000,0.0000,0.0000,68.0200,0.0000,0.0000,0.0000,56.9400,0.0000,0.0000,0.0000,59.6600,0.0000 +688207.SH,0.0000,0.0000,0.0000,62.1900,0.0000,65.5100,0.0000,0.0000,0.0000,0.0000,0.0000,59.6800,0.0000,0.0000,0.0000,68.2100,0.0000,0.0000,0.0000,55.8700,0.0000 +600731.SH,0.0000,0.0000,0.0000,30.7000,0.0000,0.0000,0.0000,42.7300,0.0000,0.0000,0.0000,36.8200,0.0000,0.0000,0.0000,50.9300,0.0000,0.0000,0.0000,49.5900,0.0000 +601778.SH,0.0000,0.0000,0.0000,34.3800,0.0000,0.0000,0.0000,29.4800,0.0000,0.0000,0.0000,44.5100,0.0000,0.0000,0.0000,30.8300,0.0000,0.0000,0.0000,37.8300,0.0000 +688401.SH,0.0000,0.0000,0.0000,83.4700,0.0000,0.0000,0.0000,90.2600,0.0000,0.0000,0.0000,86.8800,0.0000,90.0600,0.0000,86.7500,0.0000,0.0000,0.0000,83.4100,0.0000 +002978.SZ,0.0000,0.0000,0.0000,53.3700,0.0000,0.0000,0.0000,58.2100,0.0000,0.0000,0.0000,53.6600,0.0000,0.0000,0.0000,53.8400,0.0000,0.0000,0.0000,52.7500,0.0000 +603138.SH,0.0000,0.0000,0.0000,72.0300,0.0000,0.0000,0.0000,73.7100,0.0000,0.0000,0.0000,69.6700,0.0000,0.0000,0.0000,59.3700,0.0000,0.0000,0.0000,63.1900,0.0000 +301565.SZ,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,80.6900,0.0000,0.0000,0.0000,81.1100,0.0000,0.0000,0.0000,89.8200,0.0000,0.0000,0.0000,87.7000,0.0000 +688533.SH,0.0000,27.8000,0.0000,0.0000,0.0000,0.0000,0.0000,25.0500,0.0000,0.0000,0.0000,30.1300,0.0000,0.0000,0.0000,27.5000,0.0000,0.0000,0.0000,27.1100,0.0000 +300254.SZ,0.0000,0.0000,0.0000,48.5600,0.0000,0.0000,0.0000,52.4600,0.0000,0.0000,0.0000,46.7800,0.0000,0.0000,0.0000,46.7300,0.0000,0.0000,0.0000,43.4300,0.0000 +300062.SZ,0.0000,0.0000,0.0000,15.0800,0.0000,0.0000,0.0000,16.4600,0.0000,0.0000,0.0000,15.9300,0.0000,0.0000,0.0000,22.7000,0.0000,0.0000,0.0000,22.3100,0.0000 +002455.SZ,0.0000,0.0000,0.0000,34.8200,0.0000,0.0000,0.0000,24.6700,0.0000,0.0000,0.0000,16.4300,0.0000,0.0000,0.0000,18.0400,0.0000,0.0000,0.0000,30.1600,0.0000 +301022.SZ,0.0000,0.0000,0.0000,22.8900,0.0000,0.0000,0.0000,23.6500,0.0000,0.0000,0.0000,19.9600,0.0000,0.0000,0.0000,19.9300,0.0000,0.0000,0.0000,23.1200,0.0000 +002152.SZ,0.0000,0.0000,0.0000,18.9900,0.0000,0.0000,0.0000,15.4300,0.0000,0.0000,0.0000,18.8300,0.0000,0.0000,0.0000,19.2300,0.0000,0.0000,0.0000,23.0300,0.0000 +002617.SZ,0.0000,0.0000,0.0000,77.3200,0.0000,0.0000,0.0000,79.7000,0.0000,0.0000,0.0000,77.7000,0.0000,0.0000,0.0000,75.4500,0.0000,0.0000,0.0000,66.5700,0.0000 +002533.SZ,0.0000,0.0000,0.0000,57.2700,0.0000,0.0000,0.0000,54.8200,0.0000,0.0000,0.0000,55.6400,0.0000,0.0000,0.0000,61.6300,0.0000,0.0000,0.0000,60.0800,0.0000 +002892.SZ,0.0000,0.0000,0.0000,34.6500,0.0000,0.0000,0.0000,33.5100,0.0000,0.0000,0.0000,27.4500,0.0000,0.0000,0.0000,25.0400,0.0000,0.0000,0.0000,21.3400,0.0000 +301345.SZ,0.0000,0.0000,0.0000,13.1700,0.0000,0.0000,0.0000,11.5800,0.0000,13.5100,0.0000,11.1000,0.0000,0.0000,0.0000,13.1000,0.0000,0.0000,0.0000,27.0700,0.0000 +605158.SH,0.0000,0.0000,0.0000,89.6200,0.0000,0.0000,0.0000,95.1100,0.0000,0.0000,0.0000,88.0800,0.0000,0.0000,0.0000,85.6600,0.0000,0.0000,0.0000,87.4600,0.0000 +300220.SZ,0.0000,0.0000,0.0000,24.6300,0.0000,0.0000,0.0000,22.7200,0.0000,0.0000,0.0000,21.4900,0.0000,0.0000,0.0000,30.6300,0.0000,0.0000,0.0000,25.2300,0.0000 +300303.SZ,0.0000,0.0000,0.0000,46.8900,0.0000,0.0000,0.0000,40.8000,0.0000,0.0000,0.0000,31.3300,0.0000,0.0000,0.0000,25.9500,0.0000,0.0000,0.0000,27.5600,0.0000 +300592.SZ,0.0000,0.0000,0.0000,35.6200,0.0000,0.0000,0.0000,20.5700,0.0000,0.0000,0.0000,10.6400,0.0000,0.0000,0.0000,11.7700,0.0000,0.0000,0.0000,10.1400,0.0000 +301010.SZ,0.0000,0.0000,0.0000,50.2300,0.0000,0.0000,0.0000,51.4300,0.0000,0.0000,0.0000,46.1700,0.0000,0.0000,0.0000,42.0200,0.0000,0.0000,0.0000,36.9600,0.0000 +688069.SH,0.0000,0.0000,0.0000,31.1000,0.0000,0.0000,0.0000,28.2900,0.0000,0.0000,0.0000,33.4900,0.0000,0.0000,0.0000,24.4200,0.0000,0.0000,0.0000,37.1700,0.0000 +002605.SZ,0.0000,0.0000,0.0000,81.7600,0.0000,0.0000,0.0000,81.3200,0.0000,0.0000,0.0000,79.2100,0.0000,0.0000,0.0000,83.1600,0.0000,0.0000,0.0000,75.6300,0.0000 +600397.SH,0.0000,0.0000,0.0000,55.0200,0.0000,0.0000,0.0000,67.8500,0.0000,0.0000,0.0000,50.9300,0.0000,0.0000,0.0000,66.0000,0.0000,0.0000,0.0000,64.6100,0.0000 +688626.SH,0.0000,0.0000,0.0000,12.5700,0.0000,0.0000,0.0000,22.5200,0.0000,0.0000,0.0000,26.2900,0.0000,0.0000,0.0000,17.0800,0.0000,0.0000,0.0000,13.9200,0.0000 +002963.SZ,0.0000,0.0000,0.0000,32.6100,0.0000,0.0000,0.0000,40.7000,0.0000,0.0000,0.0000,21.6100,0.0000,0.0000,0.0000,27.1200,0.0000,0.0000,0.0000,21.9600,0.0000 +002484.SZ,0.0000,0.0000,0.0000,30.4900,0.0000,0.0000,0.0000,31.5200,0.0000,0.0000,0.0000,28.7300,0.0000,0.0000,0.0000,30.5700,0.0000,0.0000,0.0000,30.3000,0.0000 +300597.SZ,0.0000,0.0000,0.0000,40.1300,0.0000,0.0000,0.0000,51.7400,0.0000,0.0000,0.0000,50.8700,0.0000,0.0000,0.0000,25.0900,0.0000,0.0000,0.0000,43.4600,0.0000 +000553.SZ,0.0000,0.0000,0.0000,17.6600,0.0000,0.0000,0.0000,15.5300,0.0000,0.0000,0.0000,18.5800,0.0000,0.0000,0.0000,17.7300,0.0000,0.0000,0.0000,16.6800,0.0000 +301302.SZ,0.0000,0.0000,0.0000,39.7100,0.0000,0.0000,0.0000,26.6700,0.0000,0.0000,0.0000,69.2200,0.0000,0.0000,0.0000,32.4400,0.0000,0.0000,0.0000,20.8700,0.0000 +300997.SZ,0.0000,0.0000,0.0000,29.4700,0.0000,0.0000,0.0000,30.1400,0.0000,0.0000,0.0000,27.9700,0.0000,0.0000,0.0000,31.4400,0.0000,0.0000,0.0000,34.6800,0.0000 +301518.SZ,0.0000,0.0000,0.0000,68.6800,0.0000,0.0000,0.0000,67.5500,0.0000,0.0000,0.0000,62.3000,0.0000,0.0000,0.0000,47.3000,0.0000,0.0000,0.0000,54.1200,0.0000 +603967.SH,0.0000,0.0000,0.0000,48.5400,0.0000,0.0000,0.0000,58.5100,0.0000,0.0000,0.0000,51.2200,0.0000,0.0000,0.0000,37.4800,0.0000,0.0000,0.0000,42.9400,0.0000 +300865.SZ,0.0000,0.0000,0.0000,26.4800,0.0000,0.0000,0.0000,23.3700,0.0000,0.0000,0.0000,18.6100,0.0000,0.0000,0.0000,20.4400,0.0000,0.0000,0.0000,20.9500,0.0000 +600428.SH,0.0000,0.0000,0.0000,59.7900,0.0000,0.0000,0.0000,70.0800,0.0000,0.0000,0.0000,62.2800,0.0000,0.0000,0.0000,53.9200,0.0000,0.0000,0.0000,59.3900,0.0000 +300672.SZ,0.0000,0.0000,0.0000,58.8700,0.0000,0.0000,0.0000,67.5300,0.0000,0.0000,0.0000,88.8400,0.0000,0.0000,0.0000,87.6700,0.0000,0.0000,0.0000,80.1800,0.0000 +300341.SZ,0.0000,0.0000,0.0000,27.3900,0.0000,0.0000,0.0000,21.0700,0.0000,0.0000,0.0000,20.4200,0.0000,0.0000,0.0000,12.6600,0.0000,0.0000,0.0000,23.8500,0.0000 +002997.SZ,0.0000,0.0000,0.0000,26.1600,0.0000,0.0000,0.0000,26.0500,0.0000,0.0000,0.0000,30.1500,0.0000,0.0000,0.0000,35.0700,0.0000,0.0000,0.0000,28.6800,0.0000 +000802.SZ,0.0000,0.0000,0.0000,37.1300,0.0000,0.0000,0.0000,38.8500,0.0000,0.0000,0.0000,58.8000,0.0000,0.0000,0.0000,61.6500,0.0000,0.0000,0.0000,81.5600,0.0000 +603338.SH,0.0000,0.0000,0.0000,20.1200,0.0000,0.0000,0.0000,20.8100,0.0000,0.0000,0.0000,18.6900,0.0000,0.0000,0.0000,18.4800,0.0000,0.0000,0.0000,20.1000,0.0000 +600268.SH,0.0000,0.0000,0.0000,10.5000,0.0000,0.0000,0.0000,6.8500,0.0000,0.0000,0.0000,16.9500,0.0000,0.0000,0.0000,11.7700,0.0000,0.0000,0.0000,11.2700,0.0000 +000032.SZ,0.0000,0.0000,0.0000,32.0000,0.0000,0.0000,0.0000,6.2500,0.0000,0.0000,0.0000,5.2600,0.0000,0.0000,0.0000,6.1500,0.0000,0.0000,0.0000,5.5200,0.0000 +601996.SH,0.0000,0.0000,0.0000,17.8300,0.0000,0.0000,0.0000,15.3400,0.0000,0.0000,0.0000,19.6200,0.0000,0.0000,0.0000,14.9000,0.0000,0.0000,0.0000,14.2000,0.0000 +832419.BJ,0.0000,0.0000,0.0000,23.7000,0.0000,19.0700,0.0000,18.3800,0.0000,0.0000,0.0000,21.8000,0.0000,0.0000,0.0000,22.0600,0.0000,0.0000,0.0000,18.6000,0.0000 +002869.SZ,0.0000,0.0000,0.0000,32.4000,0.0000,0.0000,0.0000,40.7400,0.0000,0.0000,0.0000,39.6600,0.0000,0.0000,0.0000,33.1600,0.0000,0.0000,0.0000,25.3000,0.0000 +002206.SZ,0.0000,0.0000,0.0000,60.5600,0.0000,0.0000,0.0000,63.1600,0.0000,0.0000,0.0000,49.1500,0.0000,0.0000,0.0000,41.8500,0.0000,0.0000,0.0000,39.3700,0.0000 +300215.SZ,0.0000,0.0000,0.0000,41.1500,0.0000,0.0000,0.0000,58.8500,0.0000,0.0000,0.0000,47.3900,0.0000,0.0000,0.0000,39.9000,0.0000,0.0000,0.0000,43.5600,0.0000 +000801.SZ,0.0000,0.0000,0.0000,12.9200,0.0000,0.0000,0.0000,14.6600,0.0000,0.0000,0.0000,15.1200,0.0000,0.0000,0.0000,14.0500,0.0000,0.0000,0.0000,16.6900,0.0000 +600191.SH,0.0000,0.0000,0.0000,100.0000,0.0000,0.0000,0.0000,99.2500,0.0000,0.0000,0.0000,66.8600,0.0000,0.0000,0.0000,52.6000,0.0000,0.0000,0.0000,59.1000,0.0000 +300795.SZ,0.0000,0.0000,0.0000,50.8700,0.0000,0.0000,0.0000,25.9400,0.0000,0.0000,0.0000,22.6800,0.0000,0.0000,0.0000,36.3100,0.0000,0.0000,0.0000,37.9600,0.0000 +000530.SZ,0.0000,0.0000,0.0000,8.1700,0.0000,0.0000,0.0000,17.3600,0.0000,0.0000,0.0000,12.9400,0.0000,0.0000,0.0000,11.0900,0.0000,0.0000,0.0000,15.6800,0.0000 +603988.SH,0.0000,0.0000,0.0000,36.1600,0.0000,0.0000,0.0000,35.4600,0.0000,0.0000,0.0000,30.4800,0.0000,0.0000,0.0000,25.4500,0.0000,0.0000,0.0000,30.1500,0.0000 +000899.SZ,0.0000,0.0000,0.0000,57.4900,0.0000,0.0000,0.0000,73.0500,0.0000,0.0000,0.0000,68.5200,0.0000,0.0000,0.0000,55.1300,0.0000,0.0000,0.0000,56.1100,0.0000 +002696.SZ,0.0000,0.0000,0.0000,15.7500,0.0000,0.0000,0.0000,14.7400,0.0000,0.0000,0.0000,11.9200,0.0000,0.0000,0.0000,10.0600,0.0000,0.0000,0.0000,12.4800,0.0000 +300313.SZ,0.0000,0.0000,0.0000,56.5000,0.0000,0.0000,0.0000,59.3700,0.0000,0.0000,0.0000,47.7600,0.0000,0.0000,0.0000,43.1200,0.0000,0.0000,0.0000,38.8300,0.0000 +002449.SZ,0.0000,0.0000,0.0000,42.6500,0.0000,0.0000,0.0000,31.8100,0.0000,0.0000,0.0000,25.6100,0.0000,0.0000,0.0000,28.7700,0.0000,0.0000,0.0000,25.9200,0.0000 +301019.SZ,0.0000,0.0000,0.0000,41.5500,0.0000,0.0000,0.0000,32.2200,0.0000,0.0000,0.0000,36.6700,0.0000,0.0000,0.0000,32.1100,0.0000,0.0000,0.0000,38.6200,0.0000 +688429.SH,0.0000,0.0000,0.0000,28.7300,0.0000,0.0000,0.0000,44.9200,0.0000,0.0000,0.0000,73.3300,0.0000,0.0000,0.0000,65.5200,0.0000,0.0000,0.0000,53.3400,0.0000 +002258.SZ,0.0000,0.0000,0.0000,17.9500,0.0000,0.0000,0.0000,20.7700,0.0000,0.0000,0.0000,21.5600,0.0000,0.0000,0.0000,14.7500,0.0000,0.0000,0.0000,22.9200,0.0000 +000898.SZ,0.0000,0.0000,0.0000,53.5500,0.0000,0.0000,0.0000,53.1400,0.0000,0.0000,0.0000,41.3600,0.0000,0.0000,0.0000,47.4000,0.0000,0.0000,0.0000,43.7700,0.0000 +301390.SZ,0.0000,0.0000,0.0000,34.3400,0.0000,0.0000,0.0000,22.1000,0.0000,0.0000,0.0000,25.5400,0.0000,0.0000,0.0000,23.6200,0.0000,0.0000,0.0000,39.3100,0.0000 +600421.SH,0.0000,0.0000,0.0000,46.3700,0.0000,0.0000,0.0000,50.1000,0.0000,0.0000,0.0000,34.3800,0.0000,0.0000,0.0000,42.7000,0.0000,0.0000,0.0000,48.7800,0.0000 +603271.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,84.4000,0.0000,0.0000,0.0000,71.2800,0.0000,0.0000,0.0000,71.4500,0.0000,65.2100,0.0000,72.0400,0.0000 +300400.SZ,0.0000,0.0000,0.0000,14.1300,0.0000,0.0000,0.0000,16.0400,0.0000,0.0000,0.0000,12.4100,0.0000,0.0000,0.0000,15.9900,0.0000,0.0000,0.0000,16.2000,0.0000 +000420.SZ,0.0000,0.0000,0.0000,61.7200,0.0000,0.0000,0.0000,55.8000,0.0000,0.0000,0.0000,47.0900,0.0000,0.0000,0.0000,60.9000,0.0000,0.0000,0.0000,52.6400,0.0000 +300148.SZ,0.0000,0.0000,0.0000,43.2200,0.0000,0.0000,0.0000,55.8800,0.0000,0.0000,0.0000,60.7800,0.0000,0.0000,0.0000,67.4800,0.0000,0.0000,0.0000,58.3500,0.0000 +002438.SZ,0.0000,0.0000,0.0000,13.7900,0.0000,0.0000,0.0000,25.4700,0.0000,0.0000,0.0000,26.3300,0.0000,0.0000,0.0000,15.4200,0.0000,0.0000,0.0000,18.8700,0.0000 +688681.SH,0.0000,0.0000,0.0000,14.6000,0.0000,0.0000,0.0000,17.4600,0.0000,0.0000,0.0000,15.7500,0.0000,0.0000,0.0000,16.8700,0.0000,0.0000,0.0000,18.1000,0.0000 +600506.SH,0.0000,0.0000,0.0000,93.9900,0.0000,0.0000,0.0000,40.6400,0.0000,0.0000,0.0000,40.1000,0.0000,0.0000,0.0000,57.7400,0.0000,0.0000,0.0000,60.7500,0.0000 +600345.SH,0.0000,0.0000,0.0000,25.6400,0.0000,0.0000,0.0000,43.4100,0.0000,0.0000,0.0000,24.5500,0.0000,0.0000,0.0000,22.1800,0.0000,0.0000,0.0000,21.0800,0.0000 +603693.SH,0.0000,0.0000,0.0000,64.3200,0.0000,0.0000,0.0000,84.2100,0.0000,0.0000,0.0000,28.6400,0.0000,0.0000,0.0000,46.6900,0.0000,0.0000,0.0000,34.1200,0.0000 +603269.SH,0.0000,0.0000,0.0000,12.9700,0.0000,0.0000,0.0000,12.0400,0.0000,0.0000,0.0000,9.4700,0.0000,0.0000,0.0000,9.9400,0.0000,0.0000,0.0000,16.6600,0.0000 +000791.SZ,0.0000,0.0000,0.0000,35.0800,0.0000,0.0000,0.0000,30.3500,0.0000,0.0000,0.0000,29.1800,0.0000,0.0000,0.0000,45.8300,0.0000,0.0000,0.0000,65.3000,0.0000 +688777.SH,0.0000,0.0000,0.0000,15.0900,0.0000,0.0000,0.0000,12.0500,0.0000,0.0000,0.0000,13.0000,0.0000,0.0000,0.0000,9.4800,0.0000,0.0000,0.0000,11.1300,0.0000 +688216.SH,0.0000,0.0000,0.0000,40.0300,0.0000,0.0000,0.0000,48.5300,0.0000,0.0000,0.0000,39.9800,0.0000,0.0000,0.0000,40.0900,0.0000,0.0000,0.0000,33.0100,0.0000 +605388.SH,0.0000,0.0000,0.0000,35.7100,0.0000,0.0000,0.0000,32.7200,0.0000,0.0000,0.0000,31.1500,0.0000,0.0000,0.0000,45.1700,0.0000,0.0000,0.0000,33.4300,0.0000 +301037.SZ,0.0000,0.0000,0.0000,40.2900,0.0000,0.0000,0.0000,44.6500,0.0000,0.0000,0.0000,46.0400,0.0000,0.0000,0.0000,51.5600,0.0000,0.0000,0.0000,60.0100,0.0000 +835892.BJ,0.0000,0.0000,0.0000,24.9300,0.0000,0.0000,0.0000,31.4300,0.0000,0.0000,0.0000,26.9700,0.0000,0.0000,0.0000,30.6500,0.0000,0.0000,0.0000,30.8300,0.0000 +002792.SZ,0.0000,0.0000,0.0000,21.6000,0.0000,0.0000,0.0000,27.5300,0.0000,0.0000,0.0000,21.1300,0.0000,0.0000,0.0000,31.5600,0.0000,0.0000,0.0000,23.6300,0.0000 +601595.SH,0.0000,0.0000,0.0000,36.8500,0.0000,0.0000,0.0000,44.6500,0.0000,0.0000,0.0000,49.1300,0.0000,0.0000,0.0000,52.7900,0.0000,0.0000,0.0000,43.5800,0.0000 +600319.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,78.2900,0.0000,0.0000,0.0000,74.8800,0.0000,0.0000,0.0000,75.8400,0.0000,0.0000,0.0000,80.7100,0.0000 +688028.SH,0.0000,0.0000,0.0000,51.4800,0.0000,0.0000,0.0000,44.6300,0.0000,0.0000,0.0000,32.1000,0.0000,0.0000,0.0000,26.0100,0.0000,0.0000,0.0000,25.7100,0.0000 +601717.SH,0.0000,0.0000,0.0000,21.0600,0.0000,0.0000,0.0000,24.7200,0.0000,0.0000,0.0000,20.9900,0.0000,0.0000,0.0000,19.2600,0.0000,0.0000,0.0000,14.3000,0.0000 +301299.SZ,0.0000,0.0000,0.0000,66.5900,0.0000,0.0000,0.0000,50.9000,0.0000,0.0000,0.0000,57.3100,0.0000,0.0000,0.0000,34.8800,0.0000,0.0000,0.0000,38.1100,0.0000 +601059.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +000010.SZ,0.0000,0.0000,0.0000,22.1500,0.0000,0.0000,0.0000,24.1300,0.0000,0.0000,0.0000,40.8100,0.0000,0.0000,0.0000,44.5800,0.0000,0.0000,0.0000,68.1000,0.0000 +002136.SZ,0.0000,0.0000,0.0000,48.7000,0.0000,0.0000,0.0000,38.4900,0.0000,0.0000,0.0000,50.1000,0.0000,0.0000,0.0000,51.8700,0.0000,0.0000,0.0000,48.7000,0.0000 +300094.SZ,0.0000,0.0000,0.0000,11.0500,0.0000,0.0000,0.0000,29.0400,0.0000,0.0000,0.0000,29.1400,0.0000,0.0000,0.0000,25.5000,0.0000,0.0000,0.0000,26.6400,0.0000 +688348.SH,0.0000,0.0000,0.0000,53.1200,0.0000,0.0000,0.0000,49.9700,0.0000,0.0000,0.0000,34.9900,0.0000,0.0000,0.0000,46.9200,0.0000,0.0000,0.0000,58.7800,0.0000 +301183.SZ,0.0000,0.0000,0.0000,42.8200,0.0000,0.0000,0.0000,44.5000,0.0000,0.0000,0.0000,43.2100,0.0000,0.0000,0.0000,43.5500,0.0000,0.0000,0.0000,40.0800,0.0000 +003011.SZ,0.0000,0.0000,0.0000,39.7300,0.0000,0.0000,0.0000,43.1900,0.0000,0.0000,0.0000,35.1800,0.0000,0.0000,0.0000,40.5300,0.0000,0.0000,0.0000,40.7600,0.0000 +002496.SZ,0.0000,0.0000,0.0000,27.7100,0.0000,0.0000,0.0000,59.1500,0.0000,0.0000,0.0000,29.5000,0.0000,0.0000,0.0000,33.0100,0.0000,0.0000,0.0000,27.2100,0.0000 +300962.SZ,0.0000,88.5500,0.0000,94.3800,0.0000,0.0000,0.0000,95.8500,0.0000,0.0000,0.0000,88.4900,0.0000,0.0000,0.0000,89.7600,0.0000,0.0000,0.0000,93.1900,0.0000 +300950.SZ,0.0000,0.0000,0.0000,36.4200,0.0000,0.0000,0.0000,28.0900,0.0000,0.0000,0.0000,32.8100,0.0000,0.0000,0.0000,42.6100,0.0000,0.0000,0.0000,38.6700,0.0000 +300264.SZ,0.0000,0.0000,0.0000,68.6800,0.0000,0.0000,0.0000,57.5100,0.0000,0.0000,0.0000,73.5700,0.0000,0.0000,0.0000,47.8800,0.0000,0.0000,0.0000,44.7100,0.0000 +688517.SH,0.0000,0.0000,0.0000,15.6800,0.0000,0.0000,0.0000,14.8900,0.0000,0.0000,0.0000,24.0600,0.0000,0.0000,0.0000,18.8500,0.0000,0.0000,0.0000,25.6700,0.0000 +002119.SZ,0.0000,0.0000,0.0000,69.6000,0.0000,0.0000,0.0000,74.9900,0.0000,0.0000,0.0000,75.3000,0.0000,0.0000,0.0000,74.3500,0.0000,0.0000,0.0000,71.2200,0.0000 +600050.SH,0.0000,0.0000,0.0000,41.5200,0.0000,0.0000,0.0000,45.0000,0.0000,0.0000,0.0000,42.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,36.0000,0.0000 +300086.SZ,0.0000,0.0000,0.0000,45.0600,0.0000,0.0000,0.0000,47.9300,0.0000,0.0000,0.0000,43.4400,0.0000,0.0000,0.0000,55.8200,0.0000,0.0000,0.0000,64.4000,0.0000 +003025.SZ,0.0000,0.0000,0.0000,30.3900,0.0000,0.0000,0.0000,31.6600,0.0000,0.0000,0.0000,27.0100,0.0000,0.0000,0.0000,29.1100,0.0000,0.0000,0.0000,25.8600,0.0000 +002398.SZ,0.0000,0.0000,0.0000,38.2100,0.0000,0.0000,0.0000,39.2500,0.0000,0.0000,0.0000,45.0400,0.0000,0.0000,0.0000,50.4000,0.0000,0.0000,0.0000,48.4200,0.0000 +300486.SZ,0.0000,0.0000,0.0000,17.3300,0.0000,0.0000,0.0000,12.9500,0.0000,0.0000,0.0000,17.6500,0.0000,0.0000,0.0000,26.9200,0.0000,0.0000,0.0000,21.3700,0.0000 +300645.SZ,0.0000,0.0000,0.0000,14.9200,0.0000,0.0000,0.0000,11.8500,0.0000,0.0000,0.0000,8.0000,0.0000,0.0000,0.0000,15.3400,0.0000,0.0000,0.0000,11.1500,0.0000 +002139.SZ,0.0000,0.0000,0.0000,31.9900,0.0000,0.0000,0.0000,29.0400,0.0000,0.0000,0.0000,22.0000,0.0000,0.0000,0.0000,32.3900,0.0000,0.0000,0.0000,28.2200,0.0000 +688055.SH,0.0000,0.0000,0.0000,52.6000,0.0000,0.0000,0.0000,47.0600,0.0000,0.0000,0.0000,44.9000,0.0000,0.0000,0.0000,44.7300,0.0000,0.0000,0.0000,37.3500,0.0000 +300347.SZ,0.0000,0.0000,0.0000,3.9500,0.0000,0.0000,0.0000,6.8000,0.0000,0.0000,0.0000,5.7300,0.0000,0.0000,0.0000,4.4800,0.0000,0.0000,0.0000,5.1400,0.0000 +873122.BJ,0.0000,0.0000,0.0000,21.4600,0.0000,0.0000,28.4500,26.8000,0.0000,0.0000,0.0000,25.8700,0.0000,0.0000,0.0000,17.0000,0.0000,0.0000,0.0000,23.1300,0.0000 +688525.SH,0.0000,0.0000,0.0000,62.9700,0.0000,0.0000,0.0000,68.9000,0.0000,76.6800,0.0000,67.8200,0.0000,0.0000,0.0000,57.4300,0.0000,0.0000,0.0000,62.4100,0.0000 +002324.SZ,0.0000,0.0000,0.0000,30.1500,0.0000,0.0000,0.0000,31.0600,0.0000,0.0000,0.0000,26.6900,0.0000,0.0000,0.0000,32.7900,0.0000,0.0000,0.0000,33.8100,0.0000 +301116.SZ,0.0000,0.0000,0.0000,8.0300,0.0000,3.3900,0.0000,5.5300,0.0000,0.0000,0.0000,4.5400,0.0000,5.0700,0.0000,4.9700,0.0000,0.0000,0.0000,6.2800,0.0000 +300046.SZ,0.0000,0.0000,0.0000,50.5600,0.0000,0.0000,0.0000,56.2500,0.0000,0.0000,0.0000,56.5100,0.0000,0.0000,0.0000,52.0300,0.0000,0.0000,0.0000,52.3700,0.0000 +600493.SH,0.0000,0.0000,0.0000,23.1100,0.0000,0.0000,0.0000,27.6700,0.0000,0.0000,0.0000,26.2800,0.0000,0.0000,0.0000,26.1500,0.0000,0.0000,0.0000,19.1000,0.0000 +002347.SZ,0.0000,0.0000,0.0000,23.8400,0.0000,0.0000,0.0000,25.2100,0.0000,0.0000,0.0000,23.5700,0.0000,0.0000,0.0000,15.1800,0.0000,0.0000,0.0000,19.0700,0.0000 +002607.SZ,0.0000,0.0000,0.0000,5.8900,0.0000,0.0000,0.0000,9.6300,0.0000,0.0000,0.0000,8.7300,0.0000,0.0000,0.0000,10.8100,0.0000,0.0000,0.0000,16.8900,0.0000 +003020.SZ,0.0000,0.0000,0.0000,37.1500,0.0000,0.0000,0.0000,35.8700,0.0000,0.0000,0.0000,32.1500,0.0000,0.0000,0.0000,26.7000,0.0000,0.0000,0.0000,35.2900,0.0000 +300905.SZ,0.0000,0.0000,0.0000,37.2900,0.0000,0.0000,0.0000,41.3500,0.0000,0.0000,0.0000,50.0600,0.0000,0.0000,0.0000,42.8800,0.0000,0.0000,0.0000,37.9100,0.0000 +301078.SZ,0.0000,0.0000,0.0000,27.1400,0.0000,0.0000,0.0000,26.6200,0.0000,0.0000,0.0000,27.7400,0.0000,0.0000,0.0000,26.8300,0.0000,0.0000,0.0000,26.3200,0.0000 +600338.SH,0.0000,0.0000,0.0000,62.8900,0.0000,0.0000,0.0000,68.3000,0.0000,0.0000,0.0000,33.6700,0.0000,0.0000,0.0000,59.2800,0.0000,0.0000,0.0000,44.6300,0.0000 +003007.SZ,0.0000,0.0000,0.0000,24.3800,0.0000,0.0000,0.0000,25.4900,0.0000,0.0000,0.0000,32.1700,0.0000,0.0000,0.0000,29.0900,0.0000,0.0000,0.0000,40.9900,0.0000 +300631.SZ,0.0000,0.0000,0.0000,20.4200,0.0000,0.0000,0.0000,14.7600,0.0000,0.0000,0.0000,20.3800,0.0000,0.0000,0.0000,15.8200,0.0000,0.0000,0.0000,15.7600,0.0000 +600630.SH,0.0000,0.0000,0.0000,10.0500,0.0000,0.0000,0.0000,15.3500,0.0000,0.0000,0.0000,22.3400,0.0000,0.0000,0.0000,21.4900,0.0000,0.0000,0.0000,17.5500,0.0000 +600221.SH,0.0000,0.0000,0.0000,29.7500,0.0000,0.0000,0.0000,21.0100,0.0000,0.0000,0.0000,32.4000,0.0000,0.0000,0.0000,48.1500,0.0000,0.0000,0.0000,43.2100,0.0000 +600155.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +301567.SZ,0.0000,0.0000,0.0000,40.5100,0.0000,0.0000,0.0000,40.9300,0.0000,0.0000,0.0000,30.8000,0.0000,33.9000,0.0000,31.6000,0.0000,0.0000,0.0000,33.0800,0.0000 +001379.SZ,0.0000,0.0000,0.0000,82.7100,0.0000,0.0000,0.0000,80.4800,0.0000,0.0000,0.0000,84.4100,0.0000,85.3700,0.0000,86.7700,0.0000,0.0000,0.0000,86.3100,0.0000 +300755.SZ,0.0000,0.0000,0.0000,49.9800,0.0000,0.0000,0.0000,53.1400,0.0000,0.0000,0.0000,35.1700,0.0000,0.0000,0.0000,37.8100,0.0000,0.0000,0.0000,30.5800,0.0000 +688058.SH,0.0000,0.0000,0.0000,37.9100,0.0000,0.0000,0.0000,74.9100,0.0000,0.0000,0.0000,47.5900,0.0000,0.0000,0.0000,22.1300,0.0000,0.0000,0.0000,26.2100,0.0000 +832566.BJ,0.0000,0.0000,0.0000,67.1900,0.0000,0.0000,0.0000,69.2500,0.0000,0.0000,0.0000,69.9100,0.0000,0.0000,0.0000,66.3700,0.0000,0.0000,0.0000,55.7200,0.0000 +300522.SZ,0.0000,0.0000,0.0000,32.0400,0.0000,0.0000,0.0000,21.4500,0.0000,0.0000,0.0000,16.4300,0.0000,0.0000,0.0000,17.1000,0.0000,0.0000,0.0000,16.6300,0.0000 +600169.SH,0.0000,0.0000,0.0000,16.1200,0.0000,0.0000,0.0000,23.6100,0.0000,0.0000,0.0000,26.8900,0.0000,0.0000,0.0000,34.8300,0.0000,0.0000,0.0000,27.4200,0.0000 +000988.SZ,0.0000,0.0000,0.0000,16.3200,0.0000,0.0000,0.0000,35.0000,0.0000,0.0000,0.0000,35.2200,0.0000,0.0000,0.0000,14.3100,0.0000,0.0000,0.0000,13.4500,0.0000 +688195.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,31.6500,0.0000,0.0000,0.0000,34.4700,0.0000,0.0000,0.0000,33.0100,0.0000,0.0000,0.0000,29.6600,0.0000 +300496.SZ,0.0000,0.0000,0.0000,35.1100,0.0000,0.0000,0.0000,61.8000,0.0000,0.0000,0.0000,55.4900,0.0000,0.0000,0.0000,48.2800,0.0000,0.0000,0.0000,33.2400,0.0000 +300556.SZ,0.0000,0.0000,0.0000,18.5500,0.0000,0.0000,0.0000,15.5900,0.0000,0.0000,0.0000,16.0400,0.0000,0.0000,0.0000,17.1400,0.0000,0.0000,0.0000,16.6700,0.0000 +600301.SH,0.0000,0.0000,0.0000,100.0000,0.0000,0.0000,0.0000,100.0000,0.0000,0.0000,0.0000,100.0000,0.0000,0.0000,0.0000,52.3600,0.0000,0.0000,0.0000,31.4600,0.0000 +688126.SH,0.0000,0.0000,0.0000,21.7100,0.0000,0.0000,0.0000,28.9900,0.0000,0.0000,0.0000,30.4900,0.0000,0.0000,0.0000,42.2000,0.0000,0.0000,0.0000,31.1800,0.0000 +600128.SH,0.0000,0.0000,0.0000,10.3100,0.0000,0.0000,0.0000,13.2200,0.0000,0.0000,0.0000,28.0800,0.0000,0.0000,0.0000,19.4700,0.0000,0.0000,0.0000,21.7100,0.0000 +600202.SH,0.0000,0.0000,0.0000,28.2200,0.0000,0.0000,0.0000,23.6400,0.0000,0.0000,0.0000,31.6000,0.0000,0.0000,0.0000,25.0400,0.0000,0.0000,0.0000,39.8500,0.0000 +603276.SH,0.0000,0.0000,0.0000,78.0200,0.0000,0.0000,0.0000,78.9100,0.0000,0.0000,0.0000,67.5800,0.0000,0.0000,0.0000,67.9000,0.0000,0.0000,0.0000,56.5900,0.0000 +002055.SZ,0.0000,0.0000,0.0000,23.0600,0.0000,0.0000,0.0000,20.5300,0.0000,0.0000,0.0000,18.9600,0.0000,0.0000,0.0000,23.5900,0.0000,0.0000,0.0000,0.0000,0.0000 +300573.SZ,0.0000,0.0000,0.0000,33.3600,0.0000,0.0000,0.0000,33.8600,0.0000,0.0000,0.0000,0.3200,0.0000,0.0000,0.0000,27.7500,0.0000,0.0000,0.0000,29.0900,0.0000 +301520.SZ,0.0000,0.0000,0.0000,64.2200,0.0000,0.0000,0.0000,57.7700,0.0000,0.0000,0.0000,60.0900,0.0000,0.0000,0.0000,44.5500,0.0000,0.0000,0.0000,29.6000,0.0000 +300623.SZ,0.0000,0.0000,0.0000,46.8900,0.0000,0.0000,0.0000,50.5900,0.0000,0.0000,0.0000,57.8400,0.0000,0.0000,0.0000,22.3200,0.0000,0.0000,0.0000,25.1000,0.0000 +688172.SH,0.0000,0.0000,0.0000,56.8900,0.0000,0.0000,0.0000,54.5000,0.0000,58.9100,0.0000,44.3700,0.0000,0.0000,0.0000,38.0800,0.0000,0.0000,0.0000,37.6400,0.0000 +688350.SH,0.0000,0.0000,0.0000,42.2700,0.0000,36.5500,0.0000,44.1500,0.0000,0.0000,0.0000,37.9200,0.0000,0.0000,0.0000,46.7200,0.0000,0.0000,0.0000,56.1900,0.0000 +300385.SZ,0.0000,0.0000,0.0000,15.2800,0.0000,0.0000,0.0000,16.3800,0.0000,0.0000,0.0000,17.4800,0.0000,0.0000,0.0000,12.8500,0.0000,0.0000,0.0000,20.6200,0.0000 +002593.SZ,0.0000,0.0000,0.0000,55.1400,0.0000,0.0000,0.0000,62.6700,0.0000,0.0000,0.0000,55.9600,0.0000,0.0000,0.0000,43.2400,0.0000,0.0000,0.0000,56.5900,0.0000 +688516.SH,0.0000,0.0000,0.0000,22.8100,0.0000,0.0000,0.0000,22.5000,0.0000,0.0000,0.0000,21.3200,0.0000,0.0000,0.0000,20.7300,0.0000,0.0000,0.0000,19.2200,0.0000 +688551.SH,0.0000,0.0000,0.0000,27.2200,0.0000,0.0000,0.0000,41.1700,0.0000,0.0000,0.0000,19.4400,0.0000,0.0000,0.0000,16.0500,0.0000,0.0000,0.0000,20.5200,0.0000 +600435.SH,0.0000,0.0000,0.0000,27.7000,0.0000,0.0000,0.0000,48.4000,0.0000,0.0000,0.0000,55.9000,0.0000,0.0000,0.0000,49.0200,0.0000,0.0000,0.0000,61.3600,0.0000 +300034.SZ,0.0000,0.0000,0.0000,31.4400,0.0000,0.0000,0.0000,37.0200,0.0000,0.0000,0.0000,38.4900,0.0000,0.0000,0.0000,36.4300,0.0000,0.0000,0.0000,31.5500,0.0000 +600475.SH,0.0000,0.0000,0.0000,17.8700,0.0000,0.0000,0.0000,22.5900,0.0000,0.0000,0.0000,31.6000,0.0000,0.0000,0.0000,31.9700,0.0000,0.0000,0.0000,24.6100,0.0000 +000656.SZ,0.0000,0.0000,0.0000,7.1200,0.0000,0.0000,0.0000,5.6000,0.0000,0.0000,0.0000,3.5700,0.0000,0.0000,0.0000,1.4200,0.0000,0.0000,0.0000,8.5100,0.0000 +001330.SZ,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,32.3700,0.0000,0.0000,0.0000,25.4800,0.0000,0.0000,0.0000,40.5300,0.0000 +001389.SZ,0.0000,0.0000,0.0000,53.5700,0.0000,0.0000,0.0000,52.6000,0.0000,0.0000,0.0000,53.6500,0.0000,59.2300,0.0000,58.2500,0.0000,0.0000,0.0000,63.0700,0.0000 +002962.SZ,0.0000,0.0000,0.0000,47.6100,0.0000,0.0000,0.0000,75.4200,0.0000,0.0000,0.0000,90.8500,0.0000,0.0000,0.0000,90.4100,0.0000,0.0000,0.0000,85.5400,0.0000 +600645.SH,0.0000,0.0000,0.0000,18.9200,0.0000,0.0000,0.0000,19.2200,0.0000,0.0000,0.0000,20.2200,0.0000,0.0000,0.0000,22.5500,0.0000,0.0000,0.0000,19.7500,0.0000 +603115.SH,0.0000,0.0000,0.0000,50.6200,0.0000,0.0000,0.0000,55.0100,0.0000,0.0000,0.0000,58.3900,0.0000,0.0000,0.0000,52.6400,0.0000,0.0000,0.0000,53.7600,0.0000 +300284.SZ,0.0000,0.0000,0.0000,10.9800,0.0000,0.0000,0.0000,17.4200,0.0000,0.0000,0.0000,18.6800,0.0000,0.0000,0.0000,3.2600,0.0000,0.0000,0.0000,21.7800,0.0000 +002215.SZ,0.0000,0.0000,0.0000,9.9400,0.0000,0.0000,0.0000,14.4000,0.0000,0.0000,0.0000,17.8300,0.0000,0.0000,0.0000,9.3800,0.0000,0.0000,0.0000,7.2700,0.0000 +603127.SH,0.0000,0.0000,0.0000,49.2300,0.0000,0.0000,0.0000,55.6600,0.0000,0.0000,0.0000,62.4300,0.0000,0.0000,0.0000,41.5700,0.0000,0.0000,0.0000,30.3900,0.0000 +603489.SH,0.0000,0.0000,0.0000,31.7000,0.0000,0.0000,0.0000,23.3300,0.0000,0.0000,0.0000,21.8300,0.0000,0.0000,0.0000,19.5200,0.0000,0.0000,0.0000,18.4600,0.0000 +300823.SZ,0.0000,0.0000,0.0000,15.4700,0.0000,0.0000,0.0000,18.2900,0.0000,0.0000,0.0000,15.5000,0.0000,0.0000,0.0000,26.0600,0.0000,0.0000,0.0000,18.7500,0.0000 +300751.SZ,0.0000,0.0000,0.0000,36.9800,0.0000,0.0000,0.0000,26.6300,0.0000,0.0000,0.0000,22.4500,0.0000,0.0000,0.0000,22.9300,0.0000,0.0000,0.0000,31.9200,0.0000 +002442.SZ,0.0000,0.0000,0.0000,30.6400,0.0000,0.0000,0.0000,29.1200,0.0000,0.0000,0.0000,33.7900,0.0000,0.0000,0.0000,32.9400,0.0000,0.0000,0.0000,30.8100,0.0000 +600449.SH,0.0000,0.0000,0.0000,17.8400,0.0000,0.0000,0.0000,12.9100,0.0000,0.0000,0.0000,14.7600,0.0000,0.0000,0.0000,6.7600,0.0000,0.0000,0.0000,5.5400,0.0000 +000425.SZ,0.0000,0.0000,0.0000,16.7600,0.0000,0.0000,0.0000,19.8500,0.0000,0.0000,0.0000,4.3200,0.0000,0.0000,0.0000,10.7600,0.0000,0.0000,0.0000,9.9200,0.0000 +600423.SH,0.0000,0.0000,0.0000,79.1100,0.0000,0.0000,0.0000,70.3700,0.0000,0.0000,0.0000,69.0200,0.0000,0.0000,0.0000,47.5700,0.0000,0.0000,0.0000,59.5800,0.0000 +600661.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,15.9900,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +688175.SH,0.0000,0.0000,0.0000,44.3600,0.0000,46.8700,0.0000,33.6600,0.0000,0.0000,0.0000,62.7300,0.0000,0.0000,0.0000,37.1200,0.0000,0.0000,0.0000,24.4500,0.0000 +300298.SZ,0.0000,0.0000,0.0000,12.3200,0.0000,0.0000,0.0000,17.1300,0.0000,0.0000,0.0000,20.7600,0.0000,0.0000,0.0000,13.2600,0.0000,0.0000,0.0000,12.2500,0.0000 +301633.SZ,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,20.4700,0.0000,0.0000,0.0000,25.0100,0.0000,0.0000,0.0000,18.9800,0.0000,18.1800,0.0000,20.3900,0.0000 +301373.SZ,0.0000,0.0000,0.0000,69.3900,0.0000,0.0000,0.0000,67.9900,0.0000,56.6300,0.0000,45.6800,0.0000,0.0000,0.0000,39.2100,0.0000,0.0000,0.0000,44.0700,0.0000 +600135.SH,0.0000,0.0000,0.0000,64.9400,0.0000,0.0000,0.0000,41.0700,0.0000,0.0000,0.0000,34.0800,0.0000,0.0000,0.0000,30.4500,0.0000,0.0000,0.0000,34.6500,0.0000 +688733.SH,0.0000,0.0000,0.0000,84.8500,0.0000,0.0000,0.0000,78.4600,0.0000,0.0000,0.0000,86.0800,0.0000,0.0000,0.0000,72.4800,0.0000,0.0000,0.0000,72.3000,0.0000 +600232.SH,0.0000,0.0000,0.0000,26.1600,0.0000,0.0000,0.0000,28.2500,0.0000,0.0000,0.0000,29.9800,0.0000,0.0000,0.0000,39.3700,0.0000,0.0000,0.0000,49.8100,0.0000 +301020.SZ,0.0000,0.0000,0.0000,41.2300,0.0000,0.0000,0.0000,34.6500,0.0000,0.0000,0.0000,32.9000,0.0000,0.0000,0.0000,36.7900,0.0000,0.0000,0.0000,34.9600,0.0000 +603936.SH,0.0000,0.0000,0.0000,24.2900,0.0000,0.0000,0.0000,23.4700,0.0000,0.0000,0.0000,21.4000,0.0000,0.0000,0.0000,32.1400,0.0000,0.0000,0.0000,31.3400,0.0000 +301503.SZ,0.0000,0.0000,0.0000,31.7100,0.0000,0.0000,0.0000,25.8600,0.0000,0.0000,0.0000,21.9800,0.0000,0.0000,0.0000,23.0300,0.0000,0.0000,0.0000,20.6500,0.0000 +603201.SH,0.0000,0.0000,0.0000,15.6900,0.0000,0.0000,0.0000,14.0300,0.0000,0.0000,0.0000,13.4700,0.0000,0.0000,0.0000,12.9000,0.0000,0.0000,0.0000,10.5100,0.0000 +300332.SZ,0.0000,0.0000,0.0000,79.2500,0.0000,0.0000,0.0000,81.5200,0.0000,0.0000,0.0000,91.5600,0.0000,0.0000,0.0000,90.1700,0.0000,0.0000,0.0000,94.2500,0.0000 +002267.SZ,0.0000,0.0000,0.0000,92.7100,0.0000,0.0000,0.0000,85.4800,0.0000,0.0000,0.0000,84.6300,0.0000,0.0000,0.0000,77.0600,0.0000,0.0000,0.0000,78.7200,0.0000 +601388.SH,0.0000,0.0000,0.0000,23.9600,0.0000,0.0000,0.0000,17.7200,0.0000,0.0000,0.0000,20.7800,0.0000,0.0000,0.0000,18.3100,0.0000,0.0000,0.0000,25.0100,0.0000 +002756.SZ,0.0000,0.0000,0.0000,27.5200,0.0000,0.0000,0.0000,23.6800,0.0000,0.0000,0.0000,21.6200,0.0000,0.0000,0.0000,24.9200,0.0000,0.0000,0.0000,28.5700,0.0000 +603768.SH,0.0000,0.0000,0.0000,59.5300,0.0000,0.0000,0.0000,66.5900,0.0000,0.0000,0.0000,58.0500,0.0000,0.0000,0.0000,51.9500,0.0000,0.0000,0.0000,50.0500,0.0000 +002083.SZ,0.0000,0.0000,0.0000,22.5600,0.0000,0.0000,0.0000,20.2900,0.0000,0.0000,0.0000,28.3000,0.0000,0.0000,0.0000,29.0900,0.0000,0.0000,0.0000,25.5000,0.0000 +002811.SZ,0.0000,0.0000,0.0000,44.5100,0.0000,0.0000,0.0000,36.6000,0.0000,0.0000,0.0000,35.7100,0.0000,0.0000,0.0000,25.1600,0.0000,0.0000,0.0000,23.0700,0.0000 +600780.SH,0.0000,0.0000,0.0000,86.8100,0.0000,0.0000,0.0000,72.6400,0.0000,0.0000,0.0000,80.6200,0.0000,0.0000,0.0000,81.6300,0.0000,0.0000,0.0000,82.3400,0.0000 +300218.SZ,0.0000,0.0000,0.0000,27.0600,0.0000,0.0000,0.0000,27.2000,0.0000,0.0000,0.0000,25.5600,0.0000,0.0000,0.0000,23.5300,0.0000,0.0000,0.0000,26.5300,0.0000 +920098.BJ,0.0000,0.0000,0.0000,28.6400,0.0000,0.0000,0.0000,30.7100,0.0000,0.0000,0.0000,23.9700,0.0000,31.7400,0.0000,27.2600,0.0000,30.2500,0.0000,25.4300,0.0000 +601865.SH,0.0000,0.0000,0.0000,36.3100,0.0000,0.0000,0.0000,29.3000,0.0000,0.0000,0.0000,32.4700,0.0000,0.0000,0.0000,34.3800,0.0000,0.0000,0.0000,41.9200,0.0000 +300746.SZ,0.0000,0.0000,0.0000,51.4500,0.0000,0.0000,0.0000,45.6400,0.0000,0.0000,0.0000,53.4800,0.0000,0.0000,0.0000,56.8000,0.0000,0.0000,0.0000,37.3200,0.0000 +603797.SH,0.0000,0.0000,0.0000,37.7600,0.0000,0.0000,0.0000,44.5600,0.0000,0.0000,0.0000,64.2100,0.0000,0.0000,0.0000,24.7300,0.0000,0.0000,0.0000,61.2600,0.0000 +688189.SH,0.0000,0.0000,0.0000,60.9900,0.0000,0.0000,0.0000,53.4400,0.0000,0.0000,0.0000,52.5400,0.0000,0.0000,0.0000,59.8900,0.0000,0.0000,0.0000,53.3600,0.0000 +301175.SZ,0.0000,0.0000,0.0000,37.0700,0.0000,0.0000,0.0000,46.3100,0.0000,0.0000,0.0000,46.7500,0.0000,0.0000,0.0000,33.9400,0.0000,0.0000,0.0000,31.3300,0.0000 +000528.SZ,0.0000,0.0000,0.0000,11.5500,0.0000,0.0000,0.0000,18.8000,0.0000,0.0000,0.0000,14.1700,0.0000,0.0000,0.0000,12.2300,0.0000,0.0000,0.0000,12.3000,0.0000 +836419.BJ,0.0000,0.0000,0.0000,59.9500,0.0000,0.0000,0.0000,55.7800,0.0000,56.4900,0.0000,54.1000,0.0000,0.0000,0.0000,61.2200,0.0000,0.0000,0.0000,47.9100,0.0000 +600764.SH,0.0000,0.0000,0.0000,15.4400,0.0000,0.0000,0.0000,24.1100,0.0000,0.0000,0.0000,14.9800,0.0000,0.0000,0.0000,21.9300,0.0000,0.0000,0.0000,18.0600,0.0000 +002343.SZ,0.0000,0.0000,0.0000,28.6500,0.0000,0.0000,0.0000,52.7700,0.0000,0.0000,0.0000,67.5500,0.0000,0.0000,0.0000,56.6700,0.0000,0.0000,0.0000,58.2600,0.0000 +002917.SZ,0.0000,0.0000,0.0000,26.8400,0.0000,0.0000,0.0000,31.7000,0.0000,0.0000,0.0000,27.3900,0.0000,0.0000,0.0000,26.2400,0.0000,0.0000,0.0000,24.7100,0.0000 +300288.SZ,0.0000,0.0000,0.0000,75.8600,0.0000,0.0000,0.0000,58.2800,0.0000,0.0000,0.0000,57.1900,0.0000,0.0000,0.0000,61.3100,0.0000,0.0000,0.0000,44.4000,0.0000 +002472.SZ,0.0000,0.0000,0.0000,22.2900,0.0000,0.0000,0.0000,29.5300,0.0000,0.0000,0.0000,35.0200,0.0000,0.0000,0.0000,29.0200,0.0000,0.0000,0.0000,29.6000,0.0000 +000639.SZ,0.0000,0.0000,0.0000,36.1400,0.0000,0.0000,0.0000,45.7200,0.0000,0.0000,0.0000,42.9200,0.0000,0.0000,0.0000,24.2200,0.0000,0.0000,0.0000,21.7800,0.0000 +002970.SZ,0.0000,0.0000,0.0000,23.5400,0.0000,0.0000,0.0000,20.1000,0.0000,0.0000,0.0000,20.9100,0.0000,0.0000,0.0000,18.0500,0.0000,0.0000,0.0000,17.0400,0.0000 +603062.SH,0.0000,0.0000,0.0000,46.3100,0.0000,0.0000,0.0000,36.8900,0.0000,0.0000,0.0000,33.7500,0.0000,37.9600,0.0000,34.0100,0.0000,0.0000,0.0000,40.4200,0.0000 +600819.SH,0.0000,0.0000,0.0000,13.2600,0.0000,0.0000,0.0000,15.4700,0.0000,0.0000,0.0000,16.5400,0.0000,0.0000,0.0000,15.8900,0.0000,0.0000,0.0000,12.3900,0.0000 +300083.SZ,0.0000,0.0000,0.0000,36.4100,0.0000,0.0000,0.0000,41.1700,0.0000,0.0000,0.0000,33.2400,0.0000,0.0000,0.0000,35.1600,0.0000,0.0000,0.0000,46.7500,0.0000 +601991.SH,0.0000,0.0000,0.0000,35.9300,0.0000,0.0000,0.0000,27.5500,0.0000,0.0000,0.0000,17.3600,0.0000,0.0000,0.0000,22.1200,0.0000,0.0000,0.0000,24.0900,0.0000 +600315.SH,0.0000,0.0000,0.0000,15.5800,0.0000,0.0000,0.0000,13.4000,0.0000,0.0000,0.0000,13.6300,0.0000,0.0000,0.0000,10.3700,0.0000,0.0000,0.0000,12.1900,0.0000 +002878.SZ,0.0000,0.0000,0.0000,13.4000,0.0000,0.0000,0.0000,17.5300,0.0000,0.0000,0.0000,25.6400,0.0000,0.0000,0.0000,35.3300,0.0000,0.0000,0.0000,34.3500,0.0000 +003005.SZ,0.0000,0.0000,0.0000,57.0400,0.0000,0.0000,0.0000,37.5400,0.0000,0.0000,0.0000,42.7300,0.0000,0.0000,0.0000,50.0800,0.0000,0.0000,0.0000,47.5000,0.0000 +688237.SH,0.0000,0.0000,0.0000,75.6800,0.0000,0.0000,0.0000,69.1200,0.0000,0.0000,0.0000,54.4600,0.0000,0.0000,0.0000,49.6600,0.0000,0.0000,0.0000,39.4000,0.0000 +688252.SH,0.0000,0.0000,0.0000,81.8800,0.0000,0.0000,0.0000,79.6000,0.0000,0.0000,0.0000,92.8400,0.0000,0.0000,0.0000,84.7300,0.0000,0.0000,0.0000,85.5800,0.0000 +603683.SH,0.0000,0.0000,0.0000,22.1300,0.0000,0.0000,0.0000,23.9800,0.0000,0.0000,0.0000,23.3300,0.0000,0.0000,0.0000,21.5900,0.0000,0.0000,0.0000,24.8100,0.0000 +300205.SZ,0.0000,0.0000,0.0000,54.1700,0.0000,0.0000,0.0000,35.1100,0.0000,0.0000,0.0000,43.6700,0.0000,0.0000,0.0000,48.6300,0.0000,0.0000,0.0000,43.4000,0.0000 +603351.SH,0.0000,0.0000,0.0000,57.9700,0.0000,0.0000,0.0000,55.4700,0.0000,0.0000,0.0000,30.2400,0.0000,0.0000,0.0000,25.1200,0.0000,0.0000,0.0000,46.3300,0.0000 +603236.SH,0.0000,0.0000,0.0000,49.3300,0.0000,0.0000,0.0000,62.0900,0.0000,0.0000,0.0000,56.7100,0.0000,0.0000,0.0000,65.8400,0.0000,0.0000,0.0000,59.5000,0.0000 +600692.SH,0.0000,0.0000,0.0000,54.5800,0.0000,0.0000,0.0000,46.8800,0.0000,0.0000,0.0000,38.3500,0.0000,0.0000,0.0000,96.0900,0.0000,0.0000,0.0000,82.3700,0.0000 +300790.SZ,0.0000,0.0000,0.0000,41.2300,0.0000,0.0000,0.0000,38.9100,0.0000,0.0000,0.0000,38.2000,0.0000,0.0000,0.0000,34.6600,0.0000,0.0000,0.0000,47.2500,0.0000 +300455.SZ,0.0000,0.0000,0.0000,35.1500,0.0000,0.0000,0.0000,51.3300,0.0000,0.0000,0.0000,36.8300,0.0000,0.0000,0.0000,23.2300,0.0000,0.0000,0.0000,24.3000,0.0000 +301206.SZ,0.0000,0.0000,0.0000,76.5300,0.0000,78.0100,0.0000,66.6900,0.0000,0.0000,0.0000,59.9600,0.0000,0.0000,0.0000,68.8600,0.0000,0.0000,0.0000,65.3500,0.0000 +000561.SZ,0.0000,0.0000,0.0000,27.1600,0.0000,0.0000,0.0000,29.9800,0.0000,0.0000,0.0000,36.1400,0.0000,0.0000,0.0000,38.3100,0.0000,0.0000,0.0000,31.0700,0.0000 +300907.SZ,0.0000,0.0000,0.0000,27.9600,0.0000,0.0000,0.0000,25.8300,0.0000,0.0000,0.0000,23.6600,0.0000,0.0000,0.0000,25.3800,0.0000,0.0000,0.0000,22.9500,0.0000 +688717.SH,0.0000,0.0000,0.0000,37.0700,0.0000,0.0000,0.0000,38.4500,0.0000,0.0000,0.0000,46.4600,0.0000,58.6400,0.0000,48.2600,0.0000,0.0000,0.0000,31.0400,0.0000 +301248.SZ,0.0000,0.0000,0.0000,33.9000,0.0000,0.0000,0.0000,11.5800,0.0000,0.0000,0.0000,14.0200,0.0000,0.0000,0.0000,15.4900,0.0000,0.0000,0.0000,17.7300,0.0000 +301369.SZ,0.0000,0.0000,0.0000,44.9300,0.0000,0.0000,0.0000,31.7200,0.0000,0.0000,0.0000,37.6100,0.0000,0.0000,0.0000,37.9300,0.0000,0.0000,0.0000,29.8100,0.0000 +002077.SZ,0.0000,0.0000,0.0000,21.8400,0.0000,0.0000,0.0000,29.6500,0.0000,0.0000,0.0000,18.4000,0.0000,0.0000,0.0000,43.5300,0.0000,0.0000,0.0000,16.7200,0.0000 +688085.SH,0.0000,0.0000,0.0000,35.2300,0.0000,0.0000,0.0000,46.8700,0.0000,0.0000,0.0000,23.9300,0.0000,0.0000,0.0000,25.5100,0.0000,0.0000,0.0000,19.7700,0.0000 +920445.BJ,0.0000,0.0000,0.0000,39.7300,0.0000,0.0000,0.0000,41.6800,0.0000,0.0000,0.0000,42.0800,0.0000,0.0000,0.0000,35.0500,0.0000,0.0000,0.0000,39.0400,0.0000 +300270.SZ,0.0000,0.0000,0.0000,38.3400,0.0000,0.0000,0.0000,49.8700,0.0000,0.0000,0.0000,45.2300,0.0000,0.0000,0.0000,39.7000,0.0000,0.0000,0.0000,33.2100,0.0000 +301314.SZ,0.0000,0.0000,0.0000,19.2500,0.0000,0.0000,0.0000,21.9800,0.0000,20.2800,0.0000,13.3800,0.0000,0.0000,0.0000,16.1800,0.0000,0.0000,0.0000,31.2200,0.0000 +603669.SH,0.0000,0.0000,0.0000,57.4700,0.0000,0.0000,0.0000,60.2600,0.0000,0.0000,0.0000,63.1600,0.0000,0.0000,0.0000,45.5900,0.0000,0.0000,0.0000,72.8400,0.0000 +601727.SH,0.0000,0.0000,0.0000,5.8400,0.0000,0.0000,0.0000,6.2600,0.0000,0.0000,0.0000,5.1300,0.0000,0.0000,0.0000,5.5000,0.0000,0.0000,0.0000,4.9100,0.0000 +002295.SZ,0.0000,0.0000,0.0000,71.6200,0.0000,0.0000,0.0000,65.4400,0.0000,0.0000,0.0000,70.0900,0.0000,0.0000,0.0000,98.3300,0.0000,0.0000,0.0000,94.6800,0.0000 +600854.SH,0.0000,0.0000,0.0000,93.3700,0.0000,0.0000,0.0000,99.9000,0.0000,0.0000,0.0000,87.0800,0.0000,0.0000,0.0000,99.6700,0.0000,0.0000,0.0000,99.7300,0.0000 +430425.BJ,0.0000,0.0000,0.0000,36.1300,0.0000,0.0000,0.0000,31.4400,0.0000,30.5700,0.0000,31.7800,0.0000,0.0000,0.0000,44.3800,0.0000,0.0000,0.0000,42.9000,0.0000 +688191.SH,0.0000,29.4200,0.0000,0.0000,0.0000,0.0000,0.0000,16.7000,0.0000,0.0000,0.0000,11.4200,0.0000,0.0000,0.0000,10.3900,0.0000,0.0000,0.0000,14.3800,0.0000 +000400.SZ,0.0000,0.0000,0.0000,21.8700,0.0000,0.0000,0.0000,25.5200,0.0000,0.0000,0.0000,33.7000,0.0000,0.0000,0.0000,30.9200,0.0000,0.0000,0.0000,26.0300,0.0000 +836263.BJ,0.0000,0.0000,0.0000,33.4500,0.0000,0.0000,0.0000,41.8600,0.0000,0.0000,0.0000,36.8600,0.0000,0.0000,0.0000,47.5200,0.0000,0.0000,0.0000,18.6200,0.0000 +300283.SZ,0.0000,0.0000,0.0000,76.0000,0.0000,0.0000,0.0000,67.4600,0.0000,0.0000,0.0000,60.5700,0.0000,0.0000,0.0000,67.9300,0.0000,0.0000,0.0000,58.8500,0.0000 +301488.SZ,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,36.8300,0.0000,0.0000,0.0000,38.3700,0.0000 +600491.SH,0.0000,0.0000,0.0000,11.7600,0.0000,0.0000,0.0000,12.5700,0.0000,0.0000,0.0000,10.3100,0.0000,0.0000,0.0000,15.4800,0.0000,0.0000,0.0000,16.8100,0.0000 +300589.SZ,0.0000,0.0000,0.0000,30.2200,0.0000,0.0000,0.0000,31.4800,0.0000,0.0000,0.0000,31.9200,0.0000,0.0000,0.0000,27.9000,0.0000,0.0000,0.0000,45.5900,0.0000 +600783.SH,0.0000,0.0000,0.0000,37.1800,0.0000,0.0000,0.0000,44.5300,0.0000,0.0000,0.0000,45.1900,0.0000,0.0000,0.0000,94.5300,0.0000,0.0000,0.0000,53.8500,0.0000 +300969.SZ,0.0000,46.1300,0.0000,31.1900,0.0000,0.0000,0.0000,28.9000,0.0000,0.0000,0.0000,30.3200,0.0000,0.0000,0.0000,31.9800,0.0000,0.0000,0.0000,32.8300,0.0000 +601929.SH,0.0000,0.0000,0.0000,13.2400,0.0000,0.0000,0.0000,14.1100,0.0000,0.0000,0.0000,24.5200,0.0000,0.0000,0.0000,13.9300,0.0000,0.0000,0.0000,44.3900,0.0000 +300966.SZ,0.0000,52.3800,0.0000,44.1800,0.0000,0.0000,0.0000,50.6500,0.0000,0.0000,0.0000,51.1900,0.0000,0.0000,0.0000,54.3800,0.0000,0.0000,0.0000,46.8300,0.0000 +300581.SZ,0.0000,0.0000,0.0000,38.0500,0.0000,0.0000,0.0000,28.4300,0.0000,0.0000,0.0000,31.8900,0.0000,0.0000,0.0000,29.5200,0.0000,0.0000,0.0000,42.5100,0.0000 +301511.SZ,0.0000,0.0000,0.0000,93.6200,0.0000,0.0000,0.0000,90.9400,0.0000,0.0000,0.0000,88.5200,0.0000,0.0000,0.0000,78.9400,0.0000,0.0000,0.0000,74.2300,0.0000 +688701.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,17.6100,0.0000,0.0000,0.0000,19.7300,0.0000,0.0000,0.0000,39.4000,0.0000,0.0000,0.0000,38.8400,0.0000 +836077.BJ,0.0000,0.0000,0.0000,90.7000,0.0000,0.0000,0.0000,69.8000,0.0000,0.0000,0.0000,71.4400,0.0000,0.0000,0.0000,64.2600,0.0000,0.0000,0.0000,78.1100,0.0000 +000955.SZ,0.0000,0.0000,0.0000,37.4900,0.0000,0.0000,0.0000,37.6200,0.0000,0.0000,0.0000,24.2000,0.0000,0.0000,0.0000,29.8700,0.0000,0.0000,0.0000,39.7600,0.0000 +603663.SH,0.0000,0.0000,0.0000,61.5600,0.0000,0.0000,0.0000,48.7500,0.0000,0.0000,0.0000,50.3900,0.0000,0.0000,0.0000,54.6900,0.0000,0.0000,0.0000,53.8400,0.0000 +603150.SH,0.0000,0.0000,0.0000,20.2300,0.0000,20.8900,0.0000,24.6700,0.0000,0.0000,0.0000,19.0300,0.0000,0.0000,0.0000,13.4300,0.0000,0.0000,0.0000,11.9300,0.0000 +834033.BJ,0.0000,0.0000,0.0000,52.0400,0.0000,0.0000,0.0000,44.7900,0.0000,54.8200,0.0000,62.4600,0.0000,0.0000,0.0000,41.6600,0.0000,0.0000,0.0000,36.3900,0.0000 +301330.SZ,0.0000,0.0000,0.0000,32.9000,0.0000,0.0000,0.0000,31.0900,0.0000,0.0000,0.0000,20.4000,0.0000,0.0000,0.0000,18.8700,0.0000,0.0000,0.0000,15.7500,0.0000 +003015.SZ,0.0000,0.0000,0.0000,70.3500,0.0000,0.0000,0.0000,67.8400,0.0000,0.0000,0.0000,64.9600,0.0000,0.0000,0.0000,63.7500,0.0000,0.0000,0.0000,63.1700,0.0000 +600543.SH,0.0000,0.0000,0.0000,22.7700,0.0000,0.0000,0.0000,62.9000,0.0000,0.0000,0.0000,45.9300,0.0000,0.0000,0.0000,28.9800,0.0000,0.0000,0.0000,44.3500,0.0000 +300719.SZ,0.0000,0.0000,0.0000,15.1200,0.0000,0.0000,0.0000,20.2200,0.0000,0.0000,0.0000,18.2300,0.0000,0.0000,0.0000,27.6100,0.0000,0.0000,0.0000,16.3300,0.0000 +002238.SZ,0.0000,0.0000,0.0000,29.6300,0.0000,0.0000,0.0000,24.2200,0.0000,0.0000,0.0000,24.8500,0.0000,0.0000,0.0000,17.9700,0.0000,0.0000,0.0000,23.0600,0.0000 +002765.SZ,0.0000,0.0000,0.0000,33.6000,0.0000,0.0000,0.0000,25.1700,0.0000,0.0000,0.0000,17.9200,0.0000,0.0000,0.0000,17.4900,0.0000,0.0000,0.0000,20.1300,0.0000 +688277.SH,0.0000,0.0000,0.0000,64.8500,0.0000,0.0000,0.0000,50.5600,0.0000,0.0000,0.0000,51.0500,0.0000,0.0000,0.0000,41.9100,0.0000,0.0000,0.0000,54.3400,0.0000 +300054.SZ,0.0000,0.0000,0.0000,14.9400,0.0000,0.0000,0.0000,16.7800,0.0000,0.0000,0.0000,11.7700,0.0000,0.0000,0.0000,15.8100,0.0000,0.0000,0.0000,16.0100,0.0000 +600300.SH,0.0000,0.0000,0.0000,14.3100,0.0000,0.0000,0.0000,15.1200,0.0000,0.0000,0.0000,8.8700,0.0000,0.0000,0.0000,10.6200,0.0000,0.0000,0.0000,8.6700,0.0000 +301335.SZ,0.0000,0.0000,0.0000,27.1400,0.0000,0.0000,0.0000,18.1700,0.0000,20.4400,0.0000,35.7200,0.0000,0.0000,0.0000,50.1700,0.0000,0.0000,0.0000,38.5900,0.0000 +605259.SH,0.0000,0.0000,0.0000,12.7700,0.0000,0.0000,0.0000,15.2500,0.0000,0.0000,0.0000,16.2300,0.0000,0.0000,0.0000,13.9800,0.0000,0.0000,0.0000,12.2500,0.0000 +300503.SZ,0.0000,0.0000,0.0000,27.4700,0.0000,0.0000,0.0000,19.6500,0.0000,0.0000,0.0000,16.1400,0.0000,0.0000,0.0000,14.1200,0.0000,0.0000,0.0000,15.2300,0.0000 +300327.SZ,0.0000,0.0000,0.0000,78.5000,0.0000,0.0000,0.0000,76.8400,0.0000,0.0000,0.0000,77.5600,0.0000,0.0000,0.0000,83.0000,0.0000,0.0000,0.0000,78.0700,0.0000 +600689.SH,0.0000,0.0000,0.0000,16.2800,0.0000,0.0000,0.0000,19.7500,0.0000,0.0000,0.0000,22.9400,0.0000,0.0000,0.0000,17.3500,0.0000,0.0000,0.0000,21.5800,0.0000 +603010.SH,0.0000,0.0000,0.0000,35.7200,0.0000,0.0000,0.0000,38.6500,0.0000,0.0000,0.0000,24.5600,0.0000,0.0000,0.0000,23.8100,0.0000,0.0000,0.0000,17.7300,0.0000 +688305.SH,0.0000,0.0000,0.0000,28.9100,0.0000,0.0000,0.0000,30.4700,0.0000,0.0000,0.0000,33.0300,0.0000,0.0000,0.0000,33.3500,0.0000,0.0000,0.0000,42.2900,0.0000 +002268.SZ,0.0000,0.0000,0.0000,13.6200,0.0000,0.0000,0.0000,13.6700,0.0000,0.0000,0.0000,22.9000,0.0000,0.0000,0.0000,26.9300,0.0000,0.0000,0.0000,31.0400,0.0000 +300030.SZ,0.0000,0.0000,0.0000,34.5000,0.0000,0.0000,0.0000,27.8400,0.0000,0.0000,0.0000,24.2900,0.0000,0.0000,0.0000,25.9000,0.0000,0.0000,0.0000,29.8100,0.0000 +600667.SH,0.0000,0.0000,0.0000,8.7200,0.0000,0.0000,0.0000,11.7800,0.0000,0.0000,0.0000,15.0500,0.0000,0.0000,0.0000,4.7800,0.0000,0.0000,0.0000,18.4700,0.0000 +688285.SH,0.0000,0.0000,0.0000,26.4800,0.0000,0.0000,0.0000,28.8800,0.0000,0.0000,0.0000,24.0300,0.0000,0.0000,0.0000,18.7200,0.0000,0.0000,0.0000,21.3500,0.0000 +300919.SZ,0.0000,0.0000,0.0000,37.3800,0.0000,0.0000,0.0000,42.4000,0.0000,0.0000,0.0000,45.5100,0.0000,0.0000,0.0000,42.7500,0.0000,0.0000,0.0000,33.1800,0.0000 +000619.SZ,0.0000,0.0000,0.0000,28.6300,0.0000,0.0000,0.0000,54.9900,0.0000,0.0000,0.0000,32.9000,0.0000,0.0000,0.0000,38.8500,0.0000,0.0000,0.0000,38.6800,0.0000 +603863.SH,0.0000,0.0000,0.0000,14.7600,0.0000,0.0000,0.0000,19.1400,0.0000,0.0000,0.0000,23.4600,0.0000,0.0000,0.0000,47.7700,0.0000,0.0000,0.0000,35.1200,0.0000 +301109.SZ,0.0000,0.0000,0.0000,42.3500,0.0000,46.0700,0.0000,39.1600,0.0000,0.0000,0.0000,22.8400,0.0000,0.0000,0.0000,28.5800,0.0000,0.0000,0.0000,36.0600,0.0000 +002049.SZ,0.0000,0.0000,0.0000,47.0700,0.0000,0.0000,0.0000,39.7400,0.0000,0.0000,0.0000,53.2600,0.0000,0.0000,0.0000,56.6200,0.0000,0.0000,0.0000,50.2300,0.0000 +300434.SZ,0.0000,0.0000,0.0000,15.4900,0.0000,0.0000,0.0000,16.4400,0.0000,0.0000,0.0000,16.7000,0.0000,0.0000,0.0000,16.4400,0.0000,0.0000,0.0000,22.0400,0.0000 +002064.SZ,0.0000,0.0000,0.0000,45.6600,0.0000,0.0000,0.0000,47.6200,0.0000,0.0000,0.0000,43.7300,0.0000,0.0000,0.0000,40.4600,0.0000,0.0000,0.0000,43.6500,0.0000 +002079.SZ,0.0000,0.0000,0.0000,46.9600,0.0000,0.0000,0.0000,68.3000,0.0000,0.0000,0.0000,44.8900,0.0000,0.0000,0.0000,62.1300,0.0000,0.0000,0.0000,71.4400,0.0000 +688432.SH,0.0000,0.0000,0.0000,51.8400,0.0000,0.0000,0.0000,45.3300,0.0000,49.4900,0.0000,52.0800,0.0000,0.0000,0.0000,31.4000,0.0000,0.0000,0.0000,34.3500,0.0000 +300590.SZ,0.0000,0.0000,0.0000,27.3300,0.0000,0.0000,0.0000,29.3300,0.0000,0.0000,0.0000,37.9100,0.0000,0.0000,0.0000,37.0600,0.0000,0.0000,0.0000,38.3200,0.0000 +002903.SZ,0.0000,0.0000,0.0000,48.8500,0.0000,0.0000,0.0000,30.6300,0.0000,0.0000,0.0000,18.5800,0.0000,0.0000,0.0000,24.1200,0.0000,0.0000,0.0000,20.5200,0.0000 +300033.SZ,0.0000,0.0000,0.0000,43.7800,0.0000,0.0000,0.0000,43.7000,0.0000,0.0000,0.0000,37.6500,0.0000,0.0000,0.0000,34.3600,0.0000,0.0000,0.0000,35.4600,0.0000 +600694.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,21.2000,0.0000,0.0000,0.0000,29.0400,0.0000,0.0000,0.0000,14.7200,0.0000,0.0000,0.0000,30.8500,0.0000 +300863.SZ,0.0000,0.0000,0.0000,89.1800,0.0000,0.0000,0.0000,75.2900,0.0000,0.0000,0.0000,79.3700,0.0000,0.0000,0.0000,79.1200,0.0000,0.0000,0.0000,72.1300,0.0000 +002748.SZ,0.0000,0.0000,0.0000,48.3000,0.0000,0.0000,0.0000,54.2200,0.0000,0.0000,0.0000,55.2900,0.0000,0.0000,0.0000,67.6700,0.0000,0.0000,0.0000,67.8900,0.0000 +600416.SH,0.0000,0.0000,0.0000,21.3500,0.0000,0.0000,0.0000,22.7300,0.0000,0.0000,0.0000,18.2200,0.0000,0.0000,0.0000,16.0000,0.0000,0.0000,0.0000,15.3400,0.0000 +600400.SH,0.0000,0.0000,0.0000,14.4300,0.0000,0.0000,0.0000,11.9900,0.0000,0.0000,0.0000,14.6900,0.0000,0.0000,0.0000,27.1100,0.0000,0.0000,0.0000,18.8100,0.0000 +688767.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,61.0300,0.0000,0.0000,0.0000,44.0700,0.0000,0.0000,0.0000,39.6600,0.0000,0.0000,0.0000,40.6000,0.0000 +000949.SZ,0.0000,0.0000,0.0000,40.0500,0.0000,0.0000,0.0000,43.7700,0.0000,0.0000,0.0000,34.1200,0.0000,0.0000,0.0000,34.0300,0.0000,0.0000,0.0000,32.2500,0.0000 +300017.SZ,0.0000,0.0000,0.0000,28.7100,0.0000,0.0000,0.0000,45.8100,0.0000,0.0000,0.0000,48.4100,0.0000,0.0000,0.0000,50.9500,0.0000,0.0000,0.0000,63.2600,0.0000 +601319.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +839946.BJ,0.0000,0.0000,0.0000,36.4700,0.0000,0.0000,0.0000,29.8700,0.0000,0.0000,0.0000,57.5500,0.0000,0.0000,0.0000,89.3800,0.0000,0.0000,0.0000,85.0000,0.0000 +000936.SZ,0.0000,0.0000,0.0000,54.5900,0.0000,0.0000,0.0000,56.5600,0.0000,0.0000,0.0000,62.5800,0.0000,0.0000,0.0000,75.0900,0.0000,0.0000,0.0000,79.4400,0.0000 +688585.SH,0.0000,0.0000,0.0000,58.2200,0.0000,0.0000,0.0000,69.0700,0.0000,0.0000,0.0000,57.9000,0.0000,0.0000,0.0000,41.0600,0.0000,0.0000,0.0000,44.1400,0.0000 +300967.SZ,0.0000,31.9000,0.0000,33.4300,0.0000,0.0000,0.0000,25.3400,0.0000,0.0000,0.0000,26.6300,0.0000,0.0000,0.0000,28.3600,0.0000,0.0000,0.0000,34.1500,0.0000 +688697.SH,0.0000,0.0000,0.0000,25.5200,0.0000,0.0000,0.0000,26.4100,0.0000,0.0000,0.0000,28.6500,0.0000,0.0000,0.0000,21.7500,0.0000,0.0000,0.0000,22.6900,0.0000 +300387.SZ,0.0000,0.0000,0.0000,27.8200,0.0000,0.0000,0.0000,26.1300,0.0000,0.0000,0.0000,28.6800,0.0000,0.0000,0.0000,21.4700,0.0000,0.0000,0.0000,20.0200,0.0000 +301587.SZ,0.0000,0.0000,0.0000,57.5500,0.0000,0.0000,0.0000,64.4000,0.0000,0.0000,0.0000,60.8900,0.0000,56.7100,0.0000,0.0000,0.0000,0.0000,0.0000,46.4400,0.0000 +301033.SZ,0.0000,0.0000,0.0000,80.7600,0.0000,0.0000,0.0000,81.5600,0.0000,0.0000,0.0000,75.7600,0.0000,0.0000,0.0000,68.4400,0.0000,0.0000,0.0000,75.2700,0.0000 +002670.SZ,0.0000,0.0000,0.0000,15.6500,0.0000,0.0000,0.0000,27.4900,0.0000,0.0000,0.0000,27.1600,0.0000,0.0000,0.0000,22.2900,0.0000,0.0000,0.0000,25.3200,0.0000 +835185.BJ,0.0000,0.0000,0.0000,21.5900,0.0000,0.0000,0.0000,37.5700,0.0000,0.0000,0.0000,33.5300,0.0000,0.0000,0.0000,54.7700,0.0000,0.0000,0.0000,27.1600,0.0000 +001209.SZ,0.0000,0.0000,0.0000,27.0400,0.0000,0.0000,0.0000,24.6800,0.0000,0.0000,0.0000,21.0400,0.0000,0.0000,0.0000,33.4900,0.0000,0.0000,0.0000,33.1300,0.0000 +872190.BJ,0.0000,0.0000,0.0000,69.5600,0.0000,0.0000,0.0000,62.6900,0.0000,60.9100,0.0000,57.4200,0.0000,0.0000,0.0000,61.0200,0.0000,0.0000,0.0000,59.5400,0.0000 +600844.SH,0.0000,0.0000,0.0000,55.1400,0.0000,0.0000,0.0000,63.2700,0.0000,0.0000,0.0000,68.0400,0.0000,0.0000,0.0000,74.7500,0.0000,0.0000,0.0000,70.5600,0.0000 +600249.SH,0.0000,0.0000,0.0000,15.0000,0.0000,0.0000,0.0000,15.5900,0.0000,0.0000,0.0000,18.3600,0.0000,0.0000,0.0000,16.7100,0.0000,0.0000,0.0000,17.0800,0.0000 +688387.SH,0.0000,0.0000,0.0000,20.9200,0.0000,0.0000,0.0000,14.9900,0.0000,0.0000,0.0000,17.7700,0.0000,0.0000,0.0000,11.7800,0.0000,0.0000,0.0000,12.2200,0.0000 +600570.SH,0.0000,0.0000,0.0000,32.2800,0.0000,0.0000,0.0000,21.8300,0.0000,0.0000,0.0000,22.8000,0.0000,0.0000,0.0000,21.5000,0.0000,0.0000,0.0000,23.0100,0.0000 +600180.SH,0.0000,0.0000,0.0000,26.4400,0.0000,0.0000,0.0000,19.2900,0.0000,0.0000,0.0000,20.2200,0.0000,0.0000,0.0000,19.1200,0.0000,0.0000,0.0000,23.6300,0.0000 +300069.SZ,0.0000,0.0000,0.0000,32.1200,0.0000,0.0000,0.0000,25.2200,0.0000,0.0000,0.0000,39.3600,0.0000,0.0000,0.0000,35.8900,0.0000,0.0000,0.0000,39.3900,0.0000 +688708.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,39.8100,0.0000,0.0000,0.0000,45.0200,0.0000,0.0000,0.0000,48.2400,0.0000,47.6200,0.0000,49.0300,0.0000 +603019.SH,0.0000,0.0000,0.0000,49.1100,0.0000,0.0000,0.0000,47.4600,0.0000,0.0000,0.0000,49.3100,0.0000,0.0000,0.0000,53.3800,0.0000,0.0000,0.0000,43.1900,0.0000 +000070.SZ,0.0000,0.0000,0.0000,52.3600,0.0000,0.0000,0.0000,18.9200,0.0000,0.0000,0.0000,22.2800,0.0000,0.0000,0.0000,18.1600,0.0000,0.0000,0.0000,23.3200,0.0000 +300159.SZ,0.0000,0.0000,0.0000,24.9400,0.0000,0.0000,0.0000,20.4500,0.0000,0.0000,0.0000,23.5100,0.0000,0.0000,0.0000,33.0400,0.0000,0.0000,0.0000,20.0100,0.0000 +002239.SZ,0.0000,0.0000,0.0000,20.4200,0.0000,0.0000,0.0000,14.3500,0.0000,0.0000,0.0000,12.6300,0.0000,0.0000,0.0000,13.8200,0.0000,0.0000,0.0000,14.3000,0.0000 +688288.SH,0.0000,0.0000,0.0000,38.7900,0.0000,0.0000,0.0000,34.0200,0.0000,0.0000,0.0000,31.0700,0.0000,0.0000,0.0000,36.2900,0.0000,0.0000,0.0000,36.5000,0.0000 +001202.SZ,0.0000,0.0000,0.0000,84.4400,0.0000,0.0000,0.0000,93.0600,0.0000,0.0000,0.0000,45.6000,0.0000,0.0000,0.0000,32.2900,0.0000,0.0000,0.0000,27.7400,0.0000 +000977.SZ,0.0000,0.0000,0.0000,65.5400,0.0000,0.0000,0.0000,54.8200,0.0000,0.0000,0.0000,47.8300,0.0000,0.0000,0.0000,71.5300,0.0000,0.0000,0.0000,83.2200,0.0000 +002729.SZ,0.0000,0.0000,0.0000,33.7900,0.0000,0.0000,0.0000,38.2200,0.0000,0.0000,0.0000,35.1100,0.0000,0.0000,0.0000,44.7000,0.0000,0.0000,0.0000,48.5100,0.0000 +300732.SZ,0.0000,0.0000,0.0000,31.4700,0.0000,0.0000,0.0000,19.7300,0.0000,0.0000,0.0000,21.4200,0.0000,0.0000,0.0000,21.4800,0.0000,0.0000,0.0000,21.1300,0.0000 +300057.SZ,0.0000,0.0000,0.0000,45.6900,0.0000,0.0000,0.0000,62.5100,0.0000,0.0000,0.0000,46.8200,0.0000,0.0000,0.0000,45.5800,0.0000,0.0000,0.0000,39.8800,0.0000 +603012.SH,0.0000,0.0000,0.0000,27.1600,0.0000,0.0000,0.0000,22.6800,0.0000,0.0000,0.0000,21.7600,0.0000,0.0000,0.0000,22.1100,0.0000,0.0000,0.0000,18.3500,0.0000 +000017.SZ,0.0000,0.0000,0.0000,31.7600,0.0000,0.0000,0.0000,71.3800,0.0000,0.0000,0.0000,94.9800,0.0000,0.0000,0.0000,97.6200,0.0000,0.0000,0.0000,99.2600,0.0000 +603385.SH,0.0000,0.0000,0.0000,22.2000,0.0000,0.0000,0.0000,17.7200,0.0000,0.0000,0.0000,17.5700,0.0000,0.0000,0.0000,17.5700,0.0000,0.0000,0.0000,17.1500,0.0000 +301173.SZ,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,30.8800,0.0000,0.0000,0.0000,30.0600,0.0000,0.0000,0.0000,31.9200,0.0000,31.1900,0.0000,27.8800,0.0000 +300285.SZ,0.0000,0.0000,0.0000,13.1200,0.0000,0.0000,0.0000,20.2100,0.0000,0.0000,0.0000,22.9000,0.0000,0.0000,0.0000,17.1400,0.0000,0.0000,0.0000,14.1200,0.0000 +000755.SZ,0.0000,0.0000,0.0000,69.8300,0.0000,0.0000,0.0000,71.5900,0.0000,0.0000,0.0000,59.4600,0.0000,0.0000,0.0000,52.3300,0.0000,0.0000,0.0000,44.9400,0.0000 +300176.SZ,0.0000,0.0000,0.0000,53.8600,0.0000,0.0000,0.0000,59.8700,0.0000,0.0000,0.0000,54.2100,0.0000,0.0000,0.0000,58.4800,0.0000,0.0000,0.0000,65.7200,0.0000 +301308.SZ,0.0000,0.0000,0.0000,71.9600,0.0000,0.0000,0.0000,71.5900,0.0000,0.0000,0.0000,65.3100,0.0000,0.0000,0.0000,48.5600,0.0000,0.0000,0.0000,49.9900,0.0000 +301237.SZ,0.0000,0.0000,0.0000,79.6100,0.0000,76.5800,0.0000,77.4500,0.0000,0.0000,0.0000,76.5000,0.0000,0.0000,0.0000,73.3400,0.0000,0.0000,0.0000,74.8700,0.0000 +688381.SH,0.0000,0.0000,0.0000,89.7100,0.0000,0.0000,0.0000,86.6000,0.0000,0.0000,0.0000,88.3900,0.0000,0.0000,0.0000,79.5400,0.0000,0.0000,0.0000,81.1800,0.0000 +000099.SZ,0.0000,0.0000,0.0000,46.5800,0.0000,0.0000,0.0000,53.1200,0.0000,0.0000,0.0000,76.2600,0.0000,0.0000,0.0000,50.6600,0.0000,0.0000,0.0000,47.0200,0.0000 +301376.SZ,0.0000,0.0000,0.0000,24.3000,0.0000,0.0000,0.0000,20.8800,0.0000,0.0000,0.0000,22.7000,0.0000,0.0000,0.0000,18.1600,0.0000,0.0000,0.0000,18.8100,0.0000 +600011.SH,0.0000,0.0000,0.0000,47.6600,0.0000,0.0000,0.0000,47.0000,0.0000,0.0000,0.0000,42.0000,0.0000,0.0000,0.0000,39.0000,0.0000,0.0000,0.0000,33.7300,0.0000 +300418.SZ,0.0000,0.0000,0.0000,79.4300,0.0000,0.0000,0.0000,33.9800,0.0000,0.0000,0.0000,44.6600,0.0000,0.0000,0.0000,35.6200,0.0000,0.0000,0.0000,34.1700,0.0000 +301192.SZ,0.0000,0.0000,0.0000,72.4100,0.0000,0.0000,0.0000,71.7700,0.0000,0.0000,0.0000,69.9600,0.0000,0.0000,0.0000,70.9600,0.0000,0.0000,0.0000,64.9200,0.0000 +002232.SZ,0.0000,0.0000,0.0000,36.4100,0.0000,0.0000,0.0000,30.3600,0.0000,0.0000,0.0000,23.8700,0.0000,0.0000,0.0000,22.0000,0.0000,0.0000,0.0000,26.5900,0.0000 +002410.SZ,0.0000,0.0000,0.0000,26.1400,0.0000,0.0000,0.0000,13.5700,0.0000,0.0000,0.0000,12.4700,0.0000,0.0000,0.0000,10.0700,0.0000,0.0000,0.0000,11.3900,0.0000 +601789.SH,0.0000,0.0000,0.0000,25.8900,0.0000,0.0000,0.0000,26.2100,0.0000,0.0000,0.0000,24.9800,0.0000,0.0000,0.0000,21.8900,0.0000,0.0000,0.0000,23.2100,0.0000 +300812.SZ,0.0000,0.0000,0.0000,27.4700,0.0000,0.0000,0.0000,23.6200,0.0000,0.0000,0.0000,23.2200,0.0000,0.0000,0.0000,15.8400,0.0000,0.0000,0.0000,20.2500,0.0000 +688273.SH,0.0000,0.0000,0.0000,29.4900,0.0000,0.0000,0.0000,25.1100,0.0000,0.0000,0.0000,33.2900,0.0000,0.0000,0.0000,24.9000,0.0000,0.0000,0.0000,24.3400,0.0000 +688456.SH,0.0000,0.0000,0.0000,64.8200,0.0000,0.0000,0.0000,58.1000,0.0000,0.0000,0.0000,50.9800,0.0000,0.0000,0.0000,55.3200,0.0000,0.0000,0.0000,50.4400,0.0000 +603390.SH,0.0000,0.0000,0.0000,27.9100,0.0000,0.0000,0.0000,31.4900,0.0000,0.0000,0.0000,31.0100,0.0000,0.0000,0.0000,35.3600,0.0000,0.0000,0.0000,28.5800,0.0000 +688325.SH,0.0000,0.0000,0.0000,99.8400,0.0000,99.9400,0.0000,0.0000,0.0000,0.0000,0.0000,99.9500,0.0000,0.0000,0.0000,99.8800,0.0000,0.0000,0.0000,99.8500,0.0000 +601126.SH,0.0000,0.0000,0.0000,16.7800,0.0000,0.0000,0.0000,15.4700,0.0000,0.0000,0.0000,15.9100,0.0000,0.0000,0.0000,12.0300,0.0000,0.0000,0.0000,10.8800,0.0000 +300594.SZ,0.0000,0.0000,0.0000,31.8200,0.0000,0.0000,0.0000,27.7700,0.0000,0.0000,0.0000,24.8300,0.0000,0.0000,0.0000,17.1000,0.0000,0.0000,0.0000,20.1400,0.0000 +600722.SH,0.0000,0.0000,0.0000,75.1700,0.0000,0.0000,0.0000,75.2200,0.0000,0.0000,0.0000,66.5100,0.0000,0.0000,0.0000,55.7400,0.0000,0.0000,0.0000,73.5000,0.0000 +002973.SZ,0.0000,0.0000,0.0000,21.3800,0.0000,0.0000,0.0000,36.6900,0.0000,0.0000,0.0000,21.8300,0.0000,0.0000,0.0000,13.2500,0.0000,0.0000,0.0000,17.0900,0.0000 +000799.SZ,0.0000,0.0000,0.0000,46.8600,0.0000,0.0000,0.0000,42.0800,0.0000,0.0000,0.0000,40.3100,0.0000,0.0000,0.0000,34.8400,0.0000,0.0000,0.0000,26.6100,0.0000 +300580.SZ,0.0000,0.0000,0.0000,21.1400,0.0000,0.0000,0.0000,20.4100,0.0000,0.0000,0.0000,23.6000,0.0000,0.0000,0.0000,24.2400,0.0000,0.0000,0.0000,22.0100,0.0000 +603307.SH,0.0000,0.0000,0.0000,27.5300,0.0000,0.0000,0.0000,22.6700,0.0000,22.1100,0.0000,25.6900,0.0000,0.0000,0.0000,22.3000,0.0000,0.0000,0.0000,18.0500,0.0000 +300774.SZ,0.0000,0.0000,0.0000,19.4000,0.0000,0.0000,0.0000,18.3500,0.0000,0.0000,0.0000,23.1100,0.0000,0.0000,0.0000,11.9100,0.0000,0.0000,0.0000,24.4200,0.0000 +605016.SH,0.0000,0.0000,0.0000,70.2700,0.0000,0.0000,0.0000,58.5200,0.0000,0.0000,0.0000,47.9300,0.0000,0.0000,0.0000,45.0500,0.0000,0.0000,0.0000,45.7400,0.0000 +301306.SZ,0.0000,0.0000,0.0000,29.3100,0.0000,0.0000,0.0000,37.7900,0.0000,0.0000,0.0000,33.7400,0.0000,0.0000,0.0000,23.1600,0.0000,0.0000,0.0000,35.2000,0.0000 +603486.SH,0.0000,0.0000,0.0000,10.9100,0.0000,0.0000,0.0000,16.2700,0.0000,0.0000,0.0000,12.4400,0.0000,0.0000,0.0000,13.9300,0.0000,0.0000,0.0000,14.5700,0.0000 +301027.SZ,0.0000,0.0000,0.0000,3.7300,0.0000,0.0000,0.0000,10.9600,0.0000,0.0000,0.0000,25.7300,0.0000,0.0000,0.0000,25.2100,0.0000,0.0000,0.0000,40.3200,0.0000 +605369.SH,0.0000,0.0000,0.0000,35.7100,0.0000,0.0000,0.0000,35.5000,0.0000,0.0000,0.0000,27.4400,0.0000,0.0000,0.0000,24.9400,0.0000,0.0000,0.0000,30.6900,0.0000 +001391.SZ,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,72.1500,0.0000,0.0000,0.0000,74.1100,0.0000,0.0000,0.0000,58.0900,0.0000,60.8400,0.0000,62.8100,0.0000 +002600.SZ,0.0000,0.0000,0.0000,12.5300,0.0000,0.0000,0.0000,11.7800,0.0000,0.0000,0.0000,13.2100,0.0000,0.0000,0.0000,16.4600,0.0000,0.0000,0.0000,31.0200,0.0000 +300996.SZ,0.0000,0.0000,0.0000,53.2100,0.0000,0.0000,0.0000,63.6700,0.0000,0.0000,0.0000,50.5100,0.0000,0.0000,0.0000,38.0000,0.0000,0.0000,0.0000,41.9800,0.0000 +601021.SH,0.0000,0.0000,0.0000,46.9000,0.0000,0.0000,0.0000,56.5000,0.0000,0.0000,0.0000,63.2400,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,53.4200,0.0000 +600178.SH,0.0000,0.0000,0.0000,22.9900,0.0000,0.0000,0.0000,17.1600,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,15.0100,0.0000,0.0000,0.0000,17.3600,0.0000 +688208.SH,0.0000,0.0000,0.0000,18.0100,0.0000,0.0000,0.0000,15.8100,0.0000,0.0000,0.0000,14.4200,0.0000,0.0000,0.0000,19.0000,0.0000,0.0000,0.0000,17.7300,0.0000 +002676.SZ,0.0000,0.0000,0.0000,21.2800,0.0000,0.0000,0.0000,24.2400,0.0000,0.0000,0.0000,24.9900,0.0000,0.0000,0.0000,28.6000,0.0000,0.0000,0.0000,29.2000,0.0000 +601015.SH,0.0000,0.0000,0.0000,81.6500,0.0000,0.0000,0.0000,64.8500,0.0000,0.0000,0.0000,63.0400,0.0000,0.0000,0.0000,48.0000,0.0000,0.0000,0.0000,50.0800,0.0000 +300261.SZ,0.0000,0.0000,0.0000,29.2200,0.0000,0.0000,0.0000,30.0100,0.0000,0.0000,0.0000,26.7100,0.0000,0.0000,0.0000,35.7800,0.0000,0.0000,0.0000,34.9600,0.0000 +002774.SZ,0.0000,0.0000,0.0000,43.8500,0.0000,0.0000,0.0000,42.6500,0.0000,0.0000,0.0000,40.5700,0.0000,0.0000,0.0000,37.2300,0.0000,0.0000,0.0000,27.8000,0.0000 +688380.SH,0.0000,0.0000,0.0000,84.6600,0.0000,0.0000,0.0000,78.7700,0.0000,0.0000,0.0000,87.7200,0.0000,0.0000,0.0000,88.9700,0.0000,0.0000,0.0000,84.4900,0.0000 +838171.BJ,0.0000,0.0000,0.0000,66.2300,0.0000,70.9400,0.0000,70.5000,0.0000,0.0000,0.0000,67.8600,0.0000,0.0000,0.0000,68.0100,0.0000,0.0000,0.0000,68.0500,0.0000 +002301.SZ,0.0000,0.0000,0.0000,7.8800,0.0000,0.0000,0.0000,8.7400,0.0000,0.0000,0.0000,7.0500,0.0000,0.0000,0.0000,7.3900,0.0000,0.0000,0.0000,6.2200,0.0000 +300893.SZ,0.0000,0.0000,0.0000,34.3800,0.0000,0.0000,0.0000,47.0700,0.0000,0.0000,0.0000,36.4900,0.0000,0.0000,0.0000,29.8300,0.0000,0.0000,0.0000,30.2000,0.0000 +000068.SZ,0.0000,0.0000,0.0000,46.8500,0.0000,0.0000,0.0000,54.8500,0.0000,0.0000,0.0000,41.0600,0.0000,0.0000,0.0000,29.1200,0.0000,0.0000,0.0000,41.5800,0.0000 +300219.SZ,0.0000,0.0000,0.0000,38.8500,0.0000,0.0000,0.0000,41.4900,0.0000,0.0000,0.0000,29.2300,0.0000,0.0000,0.0000,36.2500,0.0000,0.0000,0.0000,36.4200,0.0000 +603501.SH,0.0000,0.0000,0.0000,59.5900,0.0000,0.0000,0.0000,64.7300,0.0000,0.0000,0.0000,58.0100,0.0000,0.0000,0.0000,60.9800,0.0000,0.0000,0.0000,61.8200,0.0000 +603808.SH,0.0000,0.0000,0.0000,12.6100,0.0000,0.0000,0.0000,16.2600,0.0000,0.0000,0.0000,18.1800,0.0000,0.0000,0.0000,18.5200,0.0000,0.0000,0.0000,14.9600,0.0000 +600965.SH,0.0000,0.0000,0.0000,31.1300,0.0000,0.0000,0.0000,24.6700,0.0000,0.0000,0.0000,25.5200,0.0000,0.0000,0.0000,25.9100,0.0000,0.0000,0.0000,18.4600,0.0000 +002920.SZ,0.0000,0.0000,0.0000,26.6200,0.0000,0.0000,0.0000,27.6100,0.0000,0.0000,0.0000,28.5000,0.0000,0.0000,0.0000,28.2200,0.0000,0.0000,0.0000,39.0800,0.0000 +832491.BJ,0.0000,0.0000,0.0000,39.8300,0.0000,36.8800,0.0000,37.3600,0.0000,0.0000,0.0000,38.4000,0.0000,0.0000,0.0000,34.9900,0.0000,0.0000,0.0000,42.1400,0.0000 +002565.SZ,0.0000,0.0000,0.0000,44.2800,0.0000,0.0000,0.0000,37.6900,0.0000,0.0000,0.0000,43.3200,0.0000,0.0000,0.0000,34.7800,0.0000,0.0000,0.0000,27.9300,0.0000 +832089.BJ,0.0000,0.0000,0.0000,31.4200,0.0000,0.0000,0.0000,34.4100,0.0000,0.0000,0.0000,33.7300,0.0000,0.0000,0.0000,38.9500,0.0000,0.0000,0.0000,37.3300,0.0000 +601068.SH,0.0000,0.0000,0.0000,4.9000,0.0000,0.0000,0.0000,8.9300,0.0000,0.0000,0.0000,7.4700,0.0000,0.0000,0.0000,5.2600,0.0000,0.0000,0.0000,5.9300,0.0000 +603191.SH,0.0000,0.0000,0.0000,48.7800,0.0000,0.0000,0.0000,56.2700,0.0000,0.0000,0.0000,60.7100,0.0000,0.0000,0.0000,52.3600,0.0000,0.0000,0.0000,42.6800,0.0000 +300769.SZ,0.0000,0.0000,0.0000,44.2300,0.0000,0.0000,0.0000,29.9400,0.0000,0.0000,0.0000,48.8200,0.0000,0.0000,0.0000,48.8200,0.0000,0.0000,0.0000,49.3100,0.0000 +300566.SZ,0.0000,0.0000,0.0000,39.3600,0.0000,0.0000,0.0000,52.7800,0.0000,0.0000,0.0000,46.4700,0.0000,0.0000,0.0000,33.7100,0.0000,0.0000,0.0000,32.5500,0.0000 +605218.SH,0.0000,0.0000,0.0000,43.1500,0.0000,0.0000,0.0000,38.8800,0.0000,0.0000,0.0000,34.2700,0.0000,0.0000,0.0000,30.6700,0.0000,0.0000,0.0000,32.9100,0.0000 +603409.SH,0.0000,0.0000,0.0000,18.1700,0.0000,0.0000,0.0000,24.8600,0.0000,0.0000,0.0000,28.6700,0.0000,0.0000,0.0000,22.4100,0.0000,29.4000,0.0000,32.0400,0.0000 +832651.BJ,0.0000,0.0000,0.0000,40.8000,0.0000,0.0000,0.0000,40.7200,0.0000,44.4200,0.0000,43.0800,0.0000,0.0000,0.0000,28.5600,0.0000,0.0000,0.0000,20.5000,0.0000 +600229.SH,0.0000,0.0000,0.0000,31.8800,0.0000,0.0000,0.0000,30.1700,0.0000,0.0000,0.0000,30.4300,0.0000,0.0000,0.0000,29.7100,0.0000,0.0000,0.0000,35.2900,0.0000 +000882.SZ,0.0000,0.0000,0.0000,37.9000,0.0000,0.0000,0.0000,35.9300,0.0000,0.0000,0.0000,54.7900,0.0000,0.0000,0.0000,59.8100,0.0000,0.0000,0.0000,51.0000,0.0000 +002578.SZ,0.0000,0.0000,0.0000,82.5300,0.0000,0.0000,0.0000,71.0000,0.0000,0.0000,0.0000,82.9100,0.0000,0.0000,0.0000,80.5600,0.0000,0.0000,0.0000,82.3900,0.0000 +301135.SZ,0.0000,0.0000,0.0000,25.8300,0.0000,24.1400,0.0000,0.0000,0.0000,0.0000,0.0000,16.8600,0.0000,0.0000,0.0000,15.4600,0.0000,0.0000,0.0000,12.3200,0.0000 +002791.SZ,0.0000,0.0000,0.0000,14.5500,0.0000,0.0000,0.0000,10.9600,0.0000,0.0000,0.0000,10.1900,0.0000,0.0000,0.0000,11.1400,0.0000,0.0000,0.0000,10.8800,0.0000 +001333.SZ,0.0000,0.0000,0.0000,69.0600,0.0000,0.0000,0.0000,76.5000,0.0000,77.5000,0.0000,73.5900,0.0000,0.0000,0.0000,75.2400,0.0000,0.0000,0.0000,74.7900,0.0000 +688008.SH,0.0000,0.0000,0.0000,89.8300,0.0000,0.0000,0.0000,91.6500,0.0000,0.0000,0.0000,91.9000,0.0000,0.0000,0.0000,79.0800,0.0000,0.0000,0.0000,90.9800,0.0000 +301552.SZ,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,42.3000,0.0000,0.0000,0.0000,42.3100,0.0000,0.0000,0.0000,39.3300,0.0000,0.0000,0.0000,50.7800,0.0000 +300489.SZ,0.0000,0.0000,0.0000,48.8900,0.0000,0.0000,0.0000,65.7400,0.0000,0.0000,0.0000,28.4800,0.0000,0.0000,0.0000,41.5400,0.0000,0.0000,0.0000,33.4200,0.0000 +603172.SH,0.0000,0.0000,0.0000,35.1500,0.0000,0.0000,0.0000,26.9900,0.0000,0.0000,0.0000,26.9100,0.0000,0.0000,0.0000,25.2400,0.0000,0.0000,0.0000,28.7200,0.0000 +301103.SZ,0.0000,0.0000,0.0000,44.7000,0.0000,47.8000,0.0000,48.2200,0.0000,0.0000,0.0000,49.4600,0.0000,0.0000,0.0000,43.8900,0.0000,0.0000,0.0000,45.4800,0.0000 +002454.SZ,0.0000,0.0000,0.0000,13.0400,0.0000,0.0000,0.0000,16.1700,0.0000,0.0000,0.0000,15.6800,0.0000,0.0000,0.0000,20.9300,0.0000,0.0000,0.0000,28.4100,0.0000 +003021.SZ,0.0000,0.0000,0.0000,17.5000,0.0000,0.0000,0.0000,20.1100,0.0000,0.0000,0.0000,17.0300,0.0000,0.0000,0.0000,19.8000,0.0000,0.0000,0.0000,17.9900,0.0000 +000626.SZ,0.0000,0.0000,0.0000,10.7900,0.0000,0.0000,0.0000,8.8600,0.0000,0.0000,0.0000,8.2600,0.0000,0.0000,0.0000,6.0800,0.0000,0.0000,0.0000,12.2900,0.0000 +002883.SZ,0.0000,0.0000,0.0000,51.1900,0.0000,0.0000,0.0000,33.6500,0.0000,0.0000,0.0000,25.1500,0.0000,0.0000,0.0000,12.3000,0.0000,0.0000,0.0000,21.5900,0.0000 +603082.SH,0.0000,0.0000,0.0000,37.5000,0.0000,0.0000,0.0000,43.6600,0.0000,0.0000,0.0000,38.3700,0.0000,45.6600,0.0000,39.4700,0.0000,0.0000,0.0000,39.0500,0.0000 +002823.SZ,0.0000,0.0000,0.0000,36.7000,0.0000,0.0000,0.0000,37.3000,0.0000,0.0000,0.0000,37.5200,0.0000,0.0000,0.0000,50.1800,0.0000,0.0000,0.0000,49.4400,0.0000 +000881.SZ,0.0000,0.0000,0.0000,9.2100,0.0000,0.0000,0.0000,8.2100,0.0000,0.0000,0.0000,13.7200,0.0000,0.0000,0.0000,18.3900,0.0000,0.0000,0.0000,13.8200,0.0000 +603773.SH,0.0000,0.0000,0.0000,30.7800,0.0000,0.0000,0.0000,22.2700,0.0000,0.0000,0.0000,16.7100,0.0000,0.0000,0.0000,42.7900,0.0000,0.0000,0.0000,48.7300,0.0000 +600727.SH,0.0000,0.0000,0.0000,39.6800,0.0000,0.0000,0.0000,41.3400,0.0000,0.0000,0.0000,38.3500,0.0000,0.0000,0.0000,27.1700,0.0000,0.0000,0.0000,36.2400,0.0000 +300681.SZ,0.0000,0.0000,0.0000,26.4100,0.0000,0.0000,0.0000,25.9100,0.0000,0.0000,0.0000,25.7900,0.0000,0.0000,0.0000,26.9800,0.0000,0.0000,0.0000,23.9600,0.0000 +603682.SH,0.0000,0.0000,0.0000,32.0500,0.0000,0.0000,0.0000,7.8100,0.0000,0.0000,0.0000,30.4000,0.0000,0.0000,0.0000,31.3000,0.0000,0.0000,0.0000,30.1900,0.0000 +002331.SZ,0.0000,0.0000,0.0000,16.0600,0.0000,0.0000,0.0000,10.5500,0.0000,0.0000,0.0000,9.2800,0.0000,0.0000,0.0000,10.0900,0.0000,0.0000,0.0000,10.2000,0.0000 +000014.SZ,0.0000,0.0000,0.0000,79.4500,0.0000,0.0000,0.0000,71.2300,0.0000,0.0000,0.0000,72.4700,0.0000,0.0000,0.0000,41.5700,0.0000,0.0000,0.0000,76.9100,0.0000 +300825.SZ,0.0000,0.0000,0.0000,44.9600,0.0000,0.0000,0.0000,26.0900,0.0000,0.0000,0.0000,20.3900,0.0000,0.0000,0.0000,26.9200,0.0000,0.0000,0.0000,29.9900,0.0000 +600884.SH,0.0000,0.0000,0.0000,22.4200,0.0000,0.0000,0.0000,13.1200,0.0000,0.0000,0.0000,16.2000,0.0000,0.0000,0.0000,21.1100,0.0000,0.0000,0.0000,25.9900,0.0000 +830946.BJ,0.0000,0.0000,0.0000,23.1400,0.0000,0.0000,0.0000,28.9500,0.0000,0.0000,0.0000,27.6600,0.0000,0.0000,0.0000,25.2000,0.0000,0.0000,0.0000,33.6500,0.0000 +000009.SZ,0.0000,0.0000,0.0000,16.3500,0.0000,0.0000,0.0000,24.2800,0.0000,0.0000,0.0000,27.8400,0.0000,0.0000,0.0000,43.9400,0.0000,0.0000,0.0000,18.2100,0.0000 +002023.SZ,0.0000,0.0000,0.0000,26.8600,0.0000,0.0000,0.0000,20.2200,0.0000,0.0000,0.0000,15.9800,0.0000,0.0000,0.0000,14.8400,0.0000,0.0000,0.0000,21.6400,0.0000 +001258.SZ,0.0000,0.0000,0.0000,86.5100,0.0000,0.0000,0.0000,83.8700,0.0000,0.0000,0.0000,94.5500,0.0000,0.0000,0.0000,77.4900,0.0000,0.0000,0.0000,84.6800,0.0000 +301040.SZ,0.0000,0.0000,0.0000,81.0500,0.0000,0.0000,0.0000,78.4500,0.0000,0.0000,0.0000,66.3500,0.0000,0.0000,0.0000,62.5300,0.0000,0.0000,0.0000,64.9700,0.0000 +600327.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,53.9800,0.0000,0.0000,0.0000,28.4000,0.0000,0.0000,0.0000,71.2500,0.0000,0.0000,0.0000,39.0900,0.0000 +603567.SH,0.0000,0.0000,0.0000,18.4500,0.0000,0.0000,0.0000,13.8800,0.0000,0.0000,0.0000,8.3700,0.0000,0.0000,0.0000,16.8900,0.0000,0.0000,0.0000,19.3600,0.0000 +832522.BJ,0.0000,0.0000,0.0000,27.0600,0.0000,0.0000,0.0000,23.9900,0.0000,0.0000,0.0000,25.0700,0.0000,27.5000,0.0000,26.4400,0.0000,0.0000,0.0000,19.0700,0.0000 +002636.SZ,0.0000,0.0000,0.0000,30.7800,0.0000,0.0000,0.0000,29.7900,0.0000,0.0000,0.0000,30.2200,0.0000,0.0000,0.0000,34.6900,0.0000,0.0000,0.0000,31.8300,0.0000 +601106.SH,0.0000,0.0000,0.0000,11.3000,0.0000,0.0000,0.0000,16.1000,0.0000,0.0000,0.0000,28.4000,0.0000,0.0000,0.0000,16.8800,0.0000,0.0000,0.0000,16.7600,0.0000 +002957.SZ,0.0000,0.0000,0.0000,14.4300,0.0000,0.0000,0.0000,11.8700,0.0000,0.0000,0.0000,11.0300,0.0000,0.0000,0.0000,9.0000,0.0000,0.0000,0.0000,10.7800,0.0000 +870976.BJ,0.0000,0.0000,0.0000,37.1700,0.0000,0.0000,0.0000,34.7200,0.0000,34.6800,0.0000,30.8300,0.0000,0.0000,0.0000,29.1300,0.0000,0.0000,0.0000,23.6100,0.0000 +300137.SZ,0.0000,0.0000,0.0000,13.9100,0.0000,0.0000,0.0000,13.7800,0.0000,0.0000,0.0000,10.9300,0.0000,0.0000,0.0000,12.8300,0.0000,0.0000,0.0000,3.2600,0.0000 +002972.SZ,0.0000,0.0000,0.0000,71.5200,0.0000,0.0000,0.0000,50.8300,0.0000,0.0000,0.0000,60.8500,0.0000,0.0000,0.0000,45.9700,0.0000,0.0000,0.0000,27.7100,0.0000 +300142.SZ,0.0000,0.0000,0.0000,35.1700,0.0000,0.0000,0.0000,25.9100,0.0000,0.0000,0.0000,20.6800,0.0000,0.0000,0.0000,26.4300,0.0000,0.0000,0.0000,29.7200,0.0000 +300123.SZ,0.0000,0.0000,0.0000,90.7100,0.0000,0.0000,0.0000,12.2100,0.0000,0.0000,0.0000,12.5800,0.0000,0.0000,0.0000,24.4200,0.0000,0.0000,0.0000,20.1900,0.0000 +600865.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,36.1800,0.0000,0.0000,0.0000,37.0000,0.0000,0.0000,0.0000,33.1900,0.0000,0.0000,0.0000,30.9400,0.0000 +600985.SH,0.0000,0.0000,0.0000,7.1500,0.0000,0.0000,0.0000,8.0500,0.0000,0.0000,0.0000,11.9800,0.0000,0.0000,0.0000,7.3700,0.0000,0.0000,0.0000,5.0300,0.0000 +300975.SZ,0.0000,16.5000,0.0000,63.7000,0.0000,0.0000,0.0000,63.7900,0.0000,0.0000,0.0000,57.9500,0.0000,0.0000,0.0000,49.8900,0.0000,0.0000,0.0000,53.0300,0.0000 +300440.SZ,0.0000,0.0000,0.0000,11.5900,0.0000,0.0000,0.0000,9.9500,0.0000,0.0000,0.0000,6.4200,0.0000,0.0000,0.0000,11.9900,0.0000,0.0000,0.0000,14.6800,0.0000 +300228.SZ,0.0000,0.0000,0.0000,26.5800,0.0000,0.0000,0.0000,30.7000,0.0000,0.0000,0.0000,29.7900,0.0000,0.0000,0.0000,25.7600,0.0000,0.0000,0.0000,28.7700,0.0000 +300241.SZ,0.0000,0.0000,0.0000,34.9100,0.0000,0.0000,0.0000,32.9700,0.0000,0.0000,0.0000,31.7900,0.0000,0.0000,0.0000,25.4700,0.0000,0.0000,0.0000,24.9500,0.0000 +601096.SH,0.0000,0.0000,0.0000,62.8200,0.0000,0.0000,0.0000,43.4300,0.0000,0.0000,0.0000,48.6700,0.0000,51.7500,0.0000,41.0600,0.0000,0.0000,0.0000,46.6100,0.0000 +688193.SH,0.0000,0.0000,0.0000,67.9500,0.0000,50.5300,0.0000,0.0000,0.0000,0.0000,0.0000,42.1700,0.0000,0.0000,0.0000,56.4200,0.0000,0.0000,0.0000,47.3500,0.0000 +603598.SH,0.0000,0.0000,0.0000,47.5800,0.0000,0.0000,0.0000,50.8600,0.0000,0.0000,0.0000,63.5600,0.0000,0.0000,0.0000,81.2500,0.0000,0.0000,0.0000,83.4400,0.0000 +301363.SZ,0.0000,0.0000,0.0000,43.1400,0.0000,0.0000,0.0000,43.4100,0.0000,0.0000,0.0000,47.6000,0.0000,0.0000,0.0000,31.6700,0.0000,0.0000,0.0000,39.6500,0.0000 +301602.SZ,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,28.6000,0.0000,0.0000,0.0000,36.5100,0.0000,0.0000,0.0000,29.8100,0.0000,31.8700,0.0000,28.1400,0.0000 +600707.SH,0.0000,0.0000,0.0000,35.4900,0.0000,0.0000,0.0000,29.9100,0.0000,0.0000,0.0000,28.4300,0.0000,0.0000,0.0000,27.3900,0.0000,0.0000,0.0000,26.8700,0.0000 +600520.SH,0.0000,0.0000,0.0000,38.9400,0.0000,0.0000,0.0000,27.4000,0.0000,0.0000,0.0000,28.5600,0.0000,0.0000,0.0000,29.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +603703.SH,0.0000,0.0000,0.0000,26.6900,0.0000,0.0000,0.0000,18.2900,0.0000,0.0000,0.0000,22.7500,0.0000,0.0000,0.0000,17.3700,0.0000,0.0000,0.0000,30.0000,0.0000 +300236.SZ,0.0000,0.0000,0.0000,39.7900,0.0000,0.0000,0.0000,33.4200,0.0000,0.0000,0.0000,41.1400,0.0000,0.0000,0.0000,43.6800,0.0000,0.0000,0.0000,40.0600,0.0000 +000815.SZ,0.0000,0.0000,0.0000,44.3200,0.0000,0.0000,0.0000,42.1900,0.0000,0.0000,0.0000,56.8400,0.0000,0.0000,0.0000,56.1500,0.0000,0.0000,0.0000,50.8200,0.0000 +301041.SZ,0.0000,0.0000,0.0000,38.1200,0.0000,0.0000,0.0000,33.2600,0.0000,0.0000,0.0000,27.1100,0.0000,0.0000,0.0000,27.2100,0.0000,0.0000,0.0000,25.2300,0.0000 +430685.BJ,0.0000,0.0000,0.0000,22.5800,0.0000,0.0000,0.0000,20.9700,0.0000,0.0000,0.0000,34.4600,0.0000,0.0000,0.0000,21.6900,0.0000,0.0000,0.0000,19.0800,0.0000 +301419.SZ,0.0000,0.0000,0.0000,48.2900,0.0000,0.0000,0.0000,47.7900,0.0000,42.7300,0.0000,45.0600,0.0000,0.0000,0.0000,46.4900,0.0000,0.0000,0.0000,37.0600,0.0000 +300813.SZ,0.0000,0.0000,0.0000,17.7300,0.0000,0.0000,0.0000,23.6100,0.0000,0.0000,0.0000,17.7100,0.0000,0.0000,0.0000,17.8700,0.0000,0.0000,0.0000,21.2100,0.0000 +300306.SZ,0.0000,0.0000,0.0000,42.3100,0.0000,0.0000,0.0000,33.9600,0.0000,0.0000,0.0000,23.4500,0.0000,0.0000,0.0000,24.9500,0.0000,0.0000,0.0000,31.5200,0.0000 +001288.SZ,0.0000,0.0000,0.0000,23.4000,0.0000,31.6500,0.0000,26.8300,0.0000,0.0000,0.0000,22.7400,0.0000,0.0000,0.0000,19.8800,0.0000,0.0000,0.0000,12.4200,0.0000 +002396.SZ,0.0000,0.0000,0.0000,44.0600,0.0000,0.0000,0.0000,40.9600,0.0000,0.0000,0.0000,48.0300,0.0000,0.0000,0.0000,48.2400,0.0000,0.0000,0.0000,42.2900,0.0000 +301166.SZ,0.0000,0.0000,0.0000,52.8700,0.0000,51.4400,0.0000,49.4400,0.0000,0.0000,0.0000,48.7700,0.0000,0.0000,0.0000,41.2200,0.0000,0.0000,0.0000,41.3400,0.0000 +003037.SZ,0.0000,0.0000,0.0000,20.1300,0.0000,0.0000,0.0000,20.9100,0.0000,0.0000,0.0000,20.7200,0.0000,0.0000,0.0000,22.9900,0.0000,0.0000,0.0000,24.0400,0.0000 +603083.SH,0.0000,0.0000,0.0000,25.0200,0.0000,0.0000,0.0000,26.9900,0.0000,0.0000,0.0000,31.9100,0.0000,0.0000,0.0000,35.5400,0.0000,0.0000,0.0000,32.9200,0.0000 +300058.SZ,0.0000,0.0000,0.0000,76.4400,0.0000,0.0000,0.0000,80.1600,0.0000,0.0000,0.0000,83.6100,0.0000,0.0000,0.0000,88.7100,0.0000,0.0000,0.0000,88.5000,0.0000 +300213.SZ,0.0000,0.0000,0.0000,23.5600,0.0000,0.0000,0.0000,18.3300,0.0000,0.0000,0.0000,24.8300,0.0000,0.0000,0.0000,24.2100,0.0000,0.0000,0.0000,33.6400,0.0000 +600560.SH,0.0000,0.0000,0.0000,27.5200,0.0000,0.0000,0.0000,26.6100,0.0000,0.0000,0.0000,30.5000,0.0000,0.0000,0.0000,31.5600,0.0000,0.0000,0.0000,34.3400,0.0000 +002445.SZ,0.0000,0.0000,0.0000,37.8300,0.0000,0.0000,0.0000,49.4100,0.0000,0.0000,0.0000,37.3400,0.0000,0.0000,0.0000,32.4700,0.0000,0.0000,0.0000,26.8300,0.0000 +000612.SZ,0.0000,0.0000,0.0000,87.8800,0.0000,0.0000,0.0000,74.7800,0.0000,0.0000,0.0000,66.8500,0.0000,0.0000,0.0000,73.0300,0.0000,0.0000,0.0000,69.2100,0.0000 +001308.SZ,0.0000,0.0000,0.0000,48.1700,0.0000,0.0000,0.0000,50.3700,0.0000,0.0000,0.0000,47.2600,0.0000,0.0000,0.0000,45.4200,0.0000,0.0000,0.0000,49.3000,0.0000 +301136.SZ,0.0000,0.0000,0.0000,24.4800,0.0000,26.7700,0.0000,25.4900,0.0000,0.0000,0.0000,21.8600,0.0000,0.0000,0.0000,20.0300,0.0000,0.0000,0.0000,24.7300,0.0000 +000837.SZ,0.0000,0.0000,0.0000,12.0500,0.0000,0.0000,0.0000,11.6500,0.0000,0.0000,0.0000,15.2100,0.0000,0.0000,0.0000,15.6000,0.0000,0.0000,0.0000,15.6800,0.0000 +003042.SZ,0.0000,13.7400,0.0000,13.8600,0.0000,0.0000,0.0000,16.3100,0.0000,0.0000,0.0000,18.5100,0.0000,0.0000,0.0000,16.9000,0.0000,0.0000,0.0000,17.8600,0.0000 +301222.SZ,0.0000,0.0000,0.0000,48.0100,0.0000,60.7900,0.0000,60.8600,0.0000,0.0000,0.0000,62.7800,0.0000,0.0000,0.0000,67.0500,0.0000,0.0000,0.0000,60.0000,0.0000 +300129.SZ,0.0000,0.0000,0.0000,28.1900,0.0000,0.0000,0.0000,37.9500,0.0000,0.0000,0.0000,43.6100,0.0000,0.0000,0.0000,31.6700,0.0000,0.0000,0.0000,26.6400,0.0000 +603006.SH,0.0000,0.0000,0.0000,63.3100,0.0000,0.0000,0.0000,56.8500,0.0000,0.0000,0.0000,47.2200,0.0000,0.0000,0.0000,34.5400,0.0000,0.0000,0.0000,33.7100,0.0000 +601118.SH,0.0000,0.0000,0.0000,18.6900,0.0000,0.0000,0.0000,17.2400,0.0000,0.0000,0.0000,19.0800,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,7.1300,0.0000 +688638.SH,0.0000,0.0000,0.0000,19.4100,0.0000,0.0000,0.0000,17.9900,0.0000,0.0000,0.0000,17.4800,0.0000,0.0000,0.0000,15.5000,0.0000,0.0000,0.0000,34.6500,0.0000 +002264.SZ,0.0000,0.0000,0.0000,35.0900,0.0000,31.6900,0.0000,35.8200,0.0000,0.0000,0.0000,65.7900,0.0000,0.0000,0.0000,75.8600,0.0000,0.0000,0.0000,79.6600,0.0000 +688151.SH,0.0000,0.0000,0.0000,59.3100,0.0000,41.7300,0.0000,50.7100,0.0000,0.0000,0.0000,35.4200,0.0000,0.0000,0.0000,49.3100,0.0000,0.0000,0.0000,51.6500,0.0000 +603700.SH,0.0000,0.0000,0.0000,30.7700,0.0000,0.0000,0.0000,28.6600,0.0000,0.0000,0.0000,28.3300,0.0000,0.0000,0.0000,30.9000,0.0000,0.0000,0.0000,33.2200,0.0000 +600298.SH,0.0000,0.0000,0.0000,9.6200,0.0000,0.0000,0.0000,17.3000,0.0000,0.0000,0.0000,8.8600,0.0000,0.0000,0.0000,13.0000,0.0000,0.0000,0.0000,8.4500,0.0000 +688400.SH,0.0000,0.0000,0.0000,32.9300,0.0000,0.0000,0.0000,34.8500,0.0000,0.0000,0.0000,32.7600,0.0000,0.0000,0.0000,27.2800,0.0000,0.0000,0.0000,22.2000,0.0000 +002150.SZ,0.0000,0.0000,0.0000,25.4500,0.0000,0.0000,0.0000,40.7900,0.0000,0.0000,0.0000,24.4700,0.0000,0.0000,0.0000,25.3400,0.0000,0.0000,0.0000,31.1300,0.0000 +600584.SH,0.0000,0.0000,0.0000,43.7600,0.0000,0.0000,0.0000,36.0100,0.0000,0.0000,0.0000,46.9000,0.0000,0.0000,0.0000,52.1300,0.0000,0.0000,0.0000,49.9800,0.0000 +301106.SZ,0.0000,0.0000,0.0000,25.4700,0.0000,33.0400,0.0000,31.4000,0.0000,0.0000,0.0000,26.5300,0.0000,0.0000,0.0000,28.4900,0.0000,0.0000,0.0000,30.6200,0.0000 +000908.SZ,0.0000,0.0000,0.0000,35.3000,0.0000,0.0000,0.0000,22.2500,0.0000,0.0000,0.0000,41.3700,0.0000,0.0000,0.0000,56.7900,0.0000,0.0000,0.0000,49.9000,0.0000 +000532.SZ,0.0000,0.0000,0.0000,20.1900,0.0000,0.0000,0.0000,17.5300,0.0000,0.0000,0.0000,19.2400,0.0000,0.0000,0.0000,34.2200,0.0000,0.0000,0.0000,34.4900,0.0000 +300833.SZ,0.0000,0.0000,0.0000,28.2200,0.0000,0.0000,0.0000,27.7100,0.0000,0.0000,0.0000,26.9900,0.0000,0.0000,0.0000,26.9500,0.0000,0.0000,0.0000,19.9800,0.0000 +301536.SZ,0.0000,0.0000,0.0000,79.4300,0.0000,0.0000,0.0000,77.9200,0.0000,0.0000,0.0000,80.1100,0.0000,75.2000,0.0000,77.7800,0.0000,0.0000,0.0000,82.3400,0.0000 +000422.SZ,0.0000,0.0000,0.0000,19.6600,0.0000,0.0000,0.0000,13.1700,0.0000,0.0000,0.0000,20.4900,0.0000,0.0000,0.0000,23.6200,0.0000,0.0000,0.0000,20.4300,0.0000 +002446.SZ,0.0000,0.0000,0.0000,12.9300,0.0000,0.0000,0.0000,11.0300,0.0000,0.0000,0.0000,16.0600,0.0000,0.0000,0.0000,19.0400,0.0000,0.0000,0.0000,15.5000,0.0000 +300558.SZ,0.0000,0.0000,0.0000,25.5300,0.0000,0.0000,0.0000,46.5000,0.0000,0.0000,0.0000,47.1800,0.0000,0.0000,0.0000,42.2300,0.0000,0.0000,0.0000,42.3900,0.0000 +301295.SZ,0.0000,0.0000,0.0000,53.6900,0.0000,0.0000,0.0000,55.1500,0.0000,0.0000,0.0000,42.6100,0.0000,0.0000,0.0000,54.1900,0.0000,0.0000,0.0000,44.3200,0.0000 +002101.SZ,0.0000,0.0000,0.0000,37.9000,0.0000,0.0000,0.0000,45.1400,0.0000,0.0000,0.0000,47.5300,0.0000,0.0000,0.0000,44.6000,0.0000,0.0000,0.0000,46.3700,0.0000 +603348.SH,0.0000,0.0000,0.0000,44.4000,0.0000,0.0000,0.0000,42.1200,0.0000,0.0000,0.0000,46.8300,0.0000,0.0000,0.0000,46.2600,0.0000,0.0000,0.0000,44.4100,0.0000 +603375.SH,0.0000,0.0000,0.0000,80.1000,0.0000,0.0000,0.0000,80.2300,0.0000,0.0000,0.0000,72.6500,0.0000,73.3300,0.0000,64.5700,0.0000,0.0000,0.0000,52.0000,0.0000 +300406.SZ,0.0000,0.0000,0.0000,22.0900,0.0000,0.0000,0.0000,27.7800,0.0000,0.0000,0.0000,21.7300,0.0000,0.0000,0.0000,28.7000,0.0000,0.0000,0.0000,27.4500,0.0000 +603101.SH,0.0000,0.0000,0.0000,17.0900,0.0000,0.0000,0.0000,16.2100,0.0000,0.0000,0.0000,15.0800,0.0000,0.0000,0.0000,13.0900,0.0000,0.0000,0.0000,19.2800,0.0000 +603999.SH,0.0000,0.0000,0.0000,41.7300,0.0000,0.0000,0.0000,36.6300,0.0000,0.0000,0.0000,43.3500,0.0000,0.0000,0.0000,37.6900,0.0000,0.0000,0.0000,26.8100,0.0000 +603871.SH,0.0000,0.0000,0.0000,80.0700,0.0000,0.0000,0.0000,51.0700,0.0000,0.0000,0.0000,39.1300,0.0000,0.0000,0.0000,54.9100,0.0000,0.0000,0.0000,63.5800,0.0000 +000928.SZ,0.0000,0.0000,0.0000,18.3100,0.0000,0.0000,0.0000,17.2100,0.0000,0.0000,0.0000,19.3200,0.0000,0.0000,0.0000,17.8000,0.0000,0.0000,0.0000,15.2700,0.0000 +300035.SZ,0.0000,0.0000,0.0000,40.9600,0.0000,0.0000,0.0000,29.5700,0.0000,0.0000,0.0000,32.1300,0.0000,0.0000,0.0000,29.7100,0.0000,0.0000,0.0000,36.3600,0.0000 +301095.SZ,0.0000,0.0000,0.0000,65.5600,0.0000,0.0000,0.0000,75.6900,0.0000,0.0000,0.0000,75.0100,0.0000,0.0000,0.0000,95.2000,0.0000,0.0000,0.0000,57.3600,0.0000 +688662.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,25.7500,0.0000,0.0000,0.0000,26.9600,0.0000,0.0000,0.0000,25.6600,0.0000,0.0000,0.0000,24.7900,0.0000 +833523.BJ,0.0000,0.0000,0.0000,51.0900,0.0000,0.0000,0.0000,54.1300,0.0000,0.0000,0.0000,66.1700,0.0000,0.0000,0.0000,63.8000,0.0000,0.0000,0.0000,58.3300,0.0000 +605398.SH,0.0000,0.0000,0.0000,73.0000,0.0000,0.0000,0.0000,77.0200,0.0000,0.0000,0.0000,56.5600,0.0000,0.0000,0.0000,59.2600,0.0000,0.0000,0.0000,65.1000,0.0000 +002036.SZ,0.0000,0.0000,0.0000,52.0800,0.0000,0.0000,0.0000,51.1400,0.0000,0.0000,0.0000,57.2600,0.0000,0.0000,0.0000,54.4600,0.0000,0.0000,0.0000,39.7700,0.0000 +301089.SZ,0.0000,0.0000,0.0000,56.2900,0.0000,0.0000,0.0000,36.2500,0.0000,0.0000,0.0000,28.4300,0.0000,0.0000,0.0000,27.8500,0.0000,0.0000,0.0000,42.7900,0.0000 +688033.SH,0.0000,0.0000,0.0000,76.8300,0.0000,0.0000,0.0000,50.9400,0.0000,0.0000,0.0000,28.4000,0.0000,0.0000,0.0000,44.7000,0.0000,0.0000,0.0000,34.4300,0.0000 +001260.SZ,0.0000,0.0000,0.0000,44.8700,0.0000,0.0000,0.0000,47.9500,0.0000,53.1500,0.0000,43.8900,0.0000,0.0000,0.0000,46.2900,0.0000,0.0000,0.0000,41.7500,0.0000 +600883.SH,0.0000,0.0000,0.0000,91.2200,0.0000,0.0000,0.0000,21.0500,0.0000,0.0000,0.0000,79.3900,0.0000,0.0000,0.0000,67.0500,0.0000,0.0000,0.0000,46.3500,0.0000 +688589.SH,0.0000,0.0000,0.0000,28.8500,0.0000,0.0000,0.0000,35.8000,0.0000,0.0000,0.0000,45.9800,0.0000,0.0000,0.0000,46.6500,0.0000,0.0000,0.0000,47.7500,0.0000 +688591.SH,0.0000,0.0000,0.0000,83.8000,0.0000,0.0000,0.0000,79.1800,0.0000,0.0000,0.0000,86.6500,0.0000,0.0000,0.0000,84.6300,0.0000,0.0000,0.0000,85.6700,0.0000 +002219.SZ,0.0000,0.0000,0.0000,8.0500,0.0000,0.0000,0.0000,22.0200,0.0000,0.0000,0.0000,19.9300,0.0000,0.0000,0.0000,16.9300,0.0000,0.0000,0.0000,11.3900,0.0000 +688066.SH,0.0000,0.0000,0.0000,20.9700,0.0000,0.0000,0.0000,8.1900,0.0000,0.0000,0.0000,14.4100,0.0000,0.0000,0.0000,16.6000,0.0000,0.0000,0.0000,10.6700,0.0000 +300516.SZ,0.0000,0.0000,0.0000,44.3800,0.0000,0.0000,0.0000,37.2500,0.0000,0.0000,0.0000,33.3600,0.0000,0.0000,0.0000,52.2600,0.0000,0.0000,0.0000,37.0900,0.0000 +688676.SH,0.0000,0.0000,0.0000,30.6700,0.0000,0.0000,0.0000,34.0200,0.0000,0.0000,0.0000,32.3800,0.0000,0.0000,0.0000,23.9700,0.0000,0.0000,0.0000,20.2700,0.0000 +001306.SZ,0.0000,0.0000,0.0000,28.1000,0.0000,0.0000,0.0000,27.6300,0.0000,0.0000,0.0000,31.6400,0.0000,31.4000,0.0000,31.6600,0.0000,0.0000,0.0000,29.6400,0.0000 +688078.SH,0.0000,0.0000,0.0000,46.6900,0.0000,0.0000,0.0000,34.3200,0.0000,0.0000,0.0000,31.3300,0.0000,0.0000,0.0000,16.1800,0.0000,0.0000,0.0000,18.3200,0.0000 +000816.SZ,0.0000,0.0000,0.0000,12.5700,0.0000,0.0000,0.0000,15.9400,0.0000,0.0000,0.0000,21.4200,0.0000,0.0000,0.0000,31.2500,0.0000,0.0000,0.0000,21.5400,0.0000 +603055.SH,0.0000,0.0000,0.0000,35.9600,0.0000,0.0000,0.0000,45.9700,0.0000,0.0000,0.0000,49.2200,0.0000,0.0000,0.0000,53.0500,0.0000,0.0000,0.0000,61.6300,0.0000 +603190.SH,0.0000,0.0000,0.0000,42.2900,0.0000,0.0000,0.0000,33.5600,0.0000,36.6100,0.0000,32.0600,0.0000,0.0000,0.0000,33.0200,0.0000,0.0000,0.0000,33.9300,0.0000 +300878.SZ,0.0000,0.0000,0.0000,57.1800,0.0000,0.0000,0.0000,42.6400,0.0000,0.0000,0.0000,27.9200,0.0000,0.0000,0.0000,25.8500,0.0000,0.0000,0.0000,29.2100,0.0000 +600235.SH,0.0000,0.0000,0.0000,45.2300,0.0000,0.0000,0.0000,59.2400,0.0000,0.0000,0.0000,38.1500,0.0000,0.0000,0.0000,45.3700,0.0000,0.0000,0.0000,47.7000,0.0000 +300274.SZ,0.0000,0.0000,0.0000,18.7200,0.0000,0.0000,0.0000,21.4000,0.0000,0.0000,0.0000,27.2100,0.0000,0.0000,0.0000,16.8000,0.0000,0.0000,0.0000,21.9600,0.0000 +002829.SZ,0.0000,0.0000,0.0000,29.0100,0.0000,0.0000,0.0000,25.4800,0.0000,0.0000,0.0000,27.7200,0.0000,0.0000,0.0000,35.4800,0.0000,0.0000,0.0000,33.5200,0.0000 +836239.BJ,0.0000,0.0000,0.0000,31.1200,0.0000,0.0000,0.0000,27.8300,0.0000,0.0000,0.0000,24.4000,0.0000,0.0000,0.0000,18.6800,0.0000,0.0000,0.0000,28.5400,0.0000 +002979.SZ,0.0000,0.0000,0.0000,22.0300,0.0000,0.0000,0.0000,23.0100,0.0000,0.0000,0.0000,24.5500,0.0000,0.0000,0.0000,22.5000,0.0000,0.0000,0.0000,21.7400,0.0000 +603681.SH,0.0000,0.0000,0.0000,28.7300,0.0000,0.0000,0.0000,32.9300,0.0000,0.0000,0.0000,31.9000,0.0000,0.0000,0.0000,34.9900,0.0000,0.0000,0.0000,30.9900,0.0000 +601799.SH,0.0000,0.0000,0.0000,19.0000,0.0000,0.0000,0.0000,20.7900,0.0000,0.0000,0.0000,22.0300,0.0000,0.0000,0.0000,26.6500,0.0000,0.0000,0.0000,29.2500,0.0000 +300550.SZ,0.0000,0.0000,0.0000,19.2100,0.0000,0.0000,0.0000,18.8500,0.0000,0.0000,0.0000,21.7200,0.0000,0.0000,0.0000,24.5200,0.0000,0.0000,0.0000,26.9800,0.0000 +301122.SZ,0.0000,0.0000,0.0000,40.4800,0.0000,34.8200,0.0000,34.1400,0.0000,0.0000,0.0000,30.3500,0.0000,0.0000,0.0000,31.7100,0.0000,0.0000,0.0000,29.8300,0.0000 +301009.SZ,0.0000,0.0000,0.0000,25.6700,0.0000,0.0000,0.0000,25.6100,0.0000,0.0000,0.0000,33.6300,0.0000,0.0000,0.0000,24.5600,0.0000,0.0000,0.0000,29.9200,0.0000 +002459.SZ,0.0000,0.0000,0.0000,29.8400,0.0000,0.0000,0.0000,35.1900,0.0000,0.0000,0.0000,36.0000,0.0000,0.0000,0.0000,27.7400,0.0000,0.0000,0.0000,21.6600,0.0000 +688367.SH,0.0000,0.0000,0.0000,43.5100,0.0000,0.0000,0.0000,16.5300,0.0000,0.0000,0.0000,26.0400,0.0000,0.0000,0.0000,23.3900,0.0000,0.0000,0.0000,18.0700,0.0000 +002686.SZ,0.0000,0.0000,0.0000,23.4600,0.0000,0.0000,0.0000,24.8300,0.0000,0.0000,0.0000,23.8600,0.0000,0.0000,0.0000,31.5000,0.0000,0.0000,0.0000,27.4300,0.0000 +000035.SZ,0.0000,0.0000,0.0000,9.6900,0.0000,0.0000,0.0000,9.3500,0.0000,0.0000,0.0000,21.0600,0.0000,0.0000,0.0000,13.0700,0.0000,0.0000,0.0000,18.3900,0.0000 +002121.SZ,0.0000,0.0000,0.0000,12.6100,0.0000,0.0000,0.0000,10.6900,0.0000,0.0000,0.0000,29.0800,0.0000,0.0000,0.0000,31.5200,0.0000,0.0000,0.0000,20.9600,0.0000 +300141.SZ,0.0000,0.0000,0.0000,29.1800,0.0000,0.0000,0.0000,35.7000,0.0000,0.0000,0.0000,37.9900,0.0000,0.0000,0.0000,42.9000,0.0000,0.0000,0.0000,47.6200,0.0000 +300911.SZ,0.0000,0.0000,0.0000,27.3700,0.0000,0.0000,0.0000,24.2700,0.0000,0.0000,0.0000,26.8500,0.0000,0.0000,0.0000,27.0300,0.0000,0.0000,0.0000,22.9400,0.0000 +605286.SH,0.0000,0.0000,0.0000,48.0800,0.0000,0.0000,0.0000,42.6900,0.0000,0.0000,0.0000,38.5300,0.0000,0.0000,0.0000,36.3700,0.0000,0.0000,0.0000,33.9000,0.0000 +300164.SZ,0.0000,0.0000,0.0000,30.1800,0.0000,0.0000,0.0000,31.5900,0.0000,0.0000,0.0000,33.9200,0.0000,0.0000,0.0000,42.6000,0.0000,0.0000,0.0000,39.6600,0.0000 +688653.SH,0.0000,0.0000,0.0000,83.3300,0.0000,0.0000,0.0000,86.6200,0.0000,0.0000,0.0000,74.7800,0.0000,73.5200,0.0000,78.2100,0.0000,0.0000,0.0000,76.2600,0.0000 +603128.SH,0.0000,0.0000,0.0000,10.2500,0.0000,0.0000,0.0000,13.9600,0.0000,0.0000,0.0000,13.2100,0.0000,0.0000,0.0000,14.4900,0.0000,0.0000,0.0000,0.0000,0.0000 +002950.SZ,0.0000,0.0000,0.0000,19.1900,0.0000,0.0000,0.0000,20.6600,0.0000,0.0000,0.0000,16.7500,0.0000,0.0000,0.0000,26.8500,0.0000,0.0000,0.0000,28.1100,0.0000 +300508.SZ,0.0000,0.0000,0.0000,41.9600,0.0000,0.0000,0.0000,29.9200,0.0000,0.0000,0.0000,33.8300,0.0000,0.0000,0.0000,29.7700,0.0000,0.0000,0.0000,32.8100,0.0000 +300342.SZ,0.0000,0.0000,0.0000,20.4700,0.0000,0.0000,0.0000,21.3900,0.0000,0.0000,0.0000,22.8900,0.0000,0.0000,0.0000,22.0900,0.0000,0.0000,0.0000,17.8400,0.0000 +002248.SZ,0.0000,0.0000,0.0000,32.5800,0.0000,0.0000,0.0000,28.2900,0.0000,0.0000,0.0000,30.0800,0.0000,0.0000,0.0000,31.1500,0.0000,0.0000,0.0000,30.9300,0.0000 +002651.SZ,0.0000,0.0000,0.0000,27.9400,0.0000,0.0000,0.0000,25.8200,0.0000,0.0000,0.0000,25.1900,0.0000,0.0000,0.0000,47.4700,0.0000,0.0000,0.0000,29.8800,0.0000 +870357.BJ,0.0000,0.0000,0.0000,36.0400,0.0000,0.0000,0.0000,33.3400,0.0000,30.7400,0.0000,35.4700,0.0000,0.0000,0.0000,55.8300,0.0000,0.0000,0.0000,47.7300,0.0000 +002346.SZ,0.0000,0.0000,0.0000,37.7600,0.0000,0.0000,0.0000,42.2900,0.0000,0.0000,0.0000,40.5100,0.0000,0.0000,0.0000,61.7300,0.0000,0.0000,0.0000,55.3300,0.0000 +603320.SH,0.0000,0.0000,0.0000,70.4000,0.0000,0.0000,0.0000,69.1700,0.0000,0.0000,0.0000,75.8400,0.0000,0.0000,0.0000,70.4300,0.0000,0.0000,0.0000,72.8200,0.0000 +301280.SZ,0.0000,0.0000,0.0000,46.6500,0.0000,0.0000,0.0000,45.9000,0.0000,44.4500,0.0000,38.7900,0.0000,0.0000,0.0000,43.2400,0.0000,0.0000,0.0000,41.7100,0.0000 +300454.SZ,0.0000,0.0000,0.0000,44.5300,0.0000,0.0000,0.0000,39.3800,0.0000,0.0000,0.0000,45.7700,0.0000,0.0000,0.0000,47.1300,0.0000,0.0000,0.0000,47.5700,0.0000 +301086.SZ,0.0000,0.0000,0.0000,20.0300,0.0000,0.0000,0.0000,9.0300,0.0000,0.0000,0.0000,19.6200,0.0000,0.0000,0.0000,20.7300,0.0000,0.0000,0.0000,19.7800,0.0000 +300821.SZ,0.0000,0.0000,0.0000,36.9200,0.0000,0.0000,0.0000,25.7700,0.0000,0.0000,0.0000,60.0200,0.0000,0.0000,0.0000,56.2900,0.0000,0.0000,0.0000,58.9000,0.0000 +600725.SH,0.0000,0.0000,0.0000,67.2300,0.0000,0.0000,0.0000,83.6500,0.0000,0.0000,0.0000,56.9000,0.0000,0.0000,0.0000,39.3600,0.0000,0.0000,0.0000,50.1500,0.0000 +000966.SZ,0.0000,0.0000,0.0000,79.3000,0.0000,0.0000,0.0000,74.2500,0.0000,0.0000,0.0000,79.1500,0.0000,0.0000,0.0000,64.5400,0.0000,0.0000,0.0000,68.8300,0.0000 +002779.SZ,0.0000,0.0000,0.0000,16.7700,0.0000,0.0000,0.0000,18.9800,0.0000,0.0000,0.0000,17.9200,0.0000,0.0000,0.0000,26.0600,0.0000,0.0000,0.0000,21.1200,0.0000 +605098.SH,0.0000,0.0000,0.0000,70.5200,0.0000,0.0000,0.0000,30.8500,0.0000,0.0000,0.0000,32.5600,0.0000,0.0000,0.0000,30.8400,0.0000,0.0000,0.0000,44.3700,0.0000 +301069.SZ,0.0000,0.0000,0.0000,41.6500,0.0000,0.0000,0.0000,30.1400,0.0000,0.0000,0.0000,31.7600,0.0000,0.0000,0.0000,40.7700,0.0000,0.0000,0.0000,40.1900,0.0000 +603266.SH,0.0000,0.0000,0.0000,22.3000,0.0000,0.0000,0.0000,24.2400,0.0000,0.0000,0.0000,25.5600,0.0000,0.0000,0.0000,19.9200,0.0000,0.0000,0.0000,24.5300,0.0000 +603395.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,53.2400,0.0000,0.0000,0.0000,57.0300,0.0000,0.0000,0.0000,50.7300,0.0000,49.6900,0.0000,51.6100,0.0000 +600730.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,55.4700,0.0000,0.0000,0.0000,46.0000,0.0000,0.0000,0.0000,24.4200,0.0000,0.0000,0.0000,27.9500,0.0000 +836270.BJ,0.0000,0.0000,0.0000,30.8400,0.0000,0.0000,0.0000,26.9600,0.0000,0.0000,0.0000,28.7100,0.0000,0.0000,0.0000,30.7200,0.0000,0.0000,0.0000,33.6000,0.0000 +000637.SZ,0.0000,0.0000,0.0000,63.7000,0.0000,0.0000,0.0000,70.6000,0.0000,0.0000,0.0000,70.8900,0.0000,0.0000,0.0000,82.6800,0.0000,0.0000,0.0000,83.2000,0.0000 +000838.SZ,0.0000,0.0000,0.0000,26.6100,0.0000,0.0000,0.0000,25.4400,0.0000,0.0000,0.0000,26.1900,0.0000,0.0000,0.0000,29.3100,0.0000,0.0000,0.0000,36.0400,0.0000 +300300.SZ,0.0000,0.0000,0.0000,15.3500,0.0000,0.0000,0.0000,24.2400,0.0000,0.0000,0.0000,18.9600,0.0000,0.0000,0.0000,26.4300,0.0000,0.0000,0.0000,40.0100,0.0000 +301393.SZ,0.0000,0.0000,0.0000,35.4000,0.0000,0.0000,0.0000,40.2000,0.0000,0.0000,0.0000,47.5500,0.0000,0.0000,0.0000,28.6100,0.0000,0.0000,0.0000,32.3100,0.0000 +300689.SZ,0.0000,0.0000,0.0000,63.6900,0.0000,0.0000,0.0000,66.1900,0.0000,0.0000,0.0000,58.7600,0.0000,0.0000,0.0000,59.2100,0.0000,0.0000,0.0000,62.0200,0.0000 +601882.SH,0.0000,0.0000,0.0000,35.2700,0.0000,0.0000,0.0000,35.8500,0.0000,0.0000,0.0000,29.9200,0.0000,0.0000,0.0000,32.7600,0.0000,0.0000,0.0000,29.2700,0.0000 +300435.SZ,0.0000,0.0000,0.0000,71.8800,0.0000,0.0000,0.0000,65.4400,0.0000,0.0000,0.0000,65.1000,0.0000,0.0000,0.0000,57.2700,0.0000,0.0000,0.0000,51.5300,0.0000 +603339.SH,0.0000,0.0000,0.0000,33.3800,0.0000,0.0000,0.0000,54.3600,0.0000,0.0000,0.0000,49.5600,0.0000,0.0000,0.0000,45.8100,0.0000,0.0000,0.0000,52.5300,0.0000 +002097.SZ,0.0000,0.0000,0.0000,20.9600,0.0000,0.0000,0.0000,20.3500,0.0000,0.0000,0.0000,11.9500,0.0000,0.0000,0.0000,14.2000,0.0000,0.0000,0.0000,12.8300,0.0000 +836720.BJ,0.0000,0.0000,0.0000,27.8900,0.0000,0.0000,0.0000,34.3200,0.0000,0.0000,0.0000,26.3200,0.0000,0.0000,0.0000,36.2600,0.0000,0.0000,0.0000,33.2300,0.0000 +002460.SZ,0.0000,0.0000,0.0000,37.0100,0.0000,0.0000,0.0000,39.6200,0.0000,0.0000,0.0000,52.2000,0.0000,0.0000,0.0000,31.1600,0.0000,0.0000,0.0000,25.1200,0.0000 +301238.SZ,0.0000,0.0000,0.0000,51.3400,0.0000,0.0000,0.0000,59.5700,0.0000,0.0000,0.0000,64.8400,0.0000,0.0000,0.0000,62.3400,0.0000,0.0000,0.0000,58.5700,0.0000 +603222.SH,0.0000,0.0000,0.0000,28.6200,0.0000,0.0000,0.0000,30.1800,0.0000,0.0000,0.0000,20.9200,0.0000,0.0000,0.0000,20.8700,0.0000,0.0000,0.0000,22.4400,0.0000 +603341.SH,0.0000,0.0000,0.0000,32.8400,0.0000,0.0000,0.0000,31.6000,0.0000,0.0000,0.0000,24.4800,0.0000,19.3700,0.0000,16.5700,0.0000,0.0000,0.0000,43.6100,0.0000 +688485.SH,0.0000,0.0000,0.0000,43.7000,0.0000,0.0000,0.0000,43.0600,0.0000,56.2900,0.0000,52.7100,0.0000,0.0000,0.0000,43.5500,0.0000,0.0000,0.0000,44.9200,0.0000 +688607.SH,0.0000,0.0000,0.0000,44.7000,0.0000,0.0000,0.0000,43.5200,0.0000,0.0000,0.0000,36.5000,0.0000,0.0000,0.0000,57.1100,0.0000,0.0000,0.0000,46.1000,0.0000 +000063.SZ,0.0000,0.0000,0.0000,17.4300,0.0000,0.0000,0.0000,21.0000,0.0000,0.0000,0.0000,22.9800,0.0000,0.0000,0.0000,23.2200,0.0000,0.0000,0.0000,16.9700,0.0000 +300601.SZ,0.0000,0.0000,0.0000,42.9300,0.0000,0.0000,0.0000,48.3800,0.0000,0.0000,0.0000,42.2000,0.0000,0.0000,0.0000,47.6400,0.0000,0.0000,0.0000,34.3100,0.0000 +002092.SZ,0.0000,0.0000,0.0000,22.2100,0.0000,0.0000,0.0000,10.6600,0.0000,0.0000,0.0000,20.7800,0.0000,0.0000,0.0000,20.8900,0.0000,0.0000,0.0000,20.7900,0.0000 +002383.SZ,0.0000,0.0000,0.0000,70.0400,0.0000,0.0000,0.0000,28.6900,0.0000,0.0000,0.0000,25.7100,0.0000,0.0000,0.0000,0.0035,0.0000,0.0000,0.0000,35.2100,0.0000 +000551.SZ,0.0000,0.0000,0.0000,9.3400,0.0000,0.0000,0.0000,8.1800,0.0000,0.0000,0.0000,6.5700,0.0000,0.0000,0.0000,6.2600,0.0000,0.0000,0.0000,7.1000,0.0000 +688358.SH,0.0000,0.0000,0.0000,41.6100,0.0000,0.0000,0.0000,36.4600,0.0000,0.0000,0.0000,36.1400,0.0000,0.0000,0.0000,34.5400,0.0000,0.0000,0.0000,30.3300,0.0000 +600641.SH,0.0000,0.0000,0.0000,52.8500,0.0000,0.0000,0.0000,35.0800,0.0000,0.0000,0.0000,33.8500,0.0000,0.0000,0.0000,45.1400,0.0000,0.0000,0.0000,47.4200,0.0000 +600515.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,50.1400,0.0000 +688711.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,43.3200,0.0000,0.0000,0.0000,54.2500,0.0000,0.0000,0.0000,63.7400,0.0000,0.0000,0.0000,41.8100,0.0000 +002476.SZ,0.0000,0.0000,0.0000,63.9500,0.0000,0.0000,0.0000,53.8900,0.0000,0.0000,0.0000,45.7600,0.0000,0.0000,0.0000,73.8100,0.0000,0.0000,0.0000,78.7400,0.0000 +300843.SZ,0.0000,0.0000,0.0000,20.0000,0.0000,0.0000,0.0000,17.0000,0.0000,0.0000,0.0000,15.4100,0.0000,0.0000,0.0000,14.2700,0.0000,0.0000,0.0000,11.4800,0.0000 +600176.SH,0.0000,0.0000,0.0000,25.1800,0.0000,0.0000,0.0000,28.0500,0.0000,0.0000,0.0000,36.0500,0.0000,0.0000,0.0000,23.5800,0.0000,0.0000,0.0000,24.3500,0.0000 +002328.SZ,0.0000,0.0000,0.0000,54.2100,0.0000,0.0000,0.0000,59.8500,0.0000,0.0000,0.0000,61.7200,0.0000,0.0000,0.0000,65.5300,0.0000,0.0000,0.0000,62.3700,0.0000 +603183.SH,0.0000,0.0000,0.0000,25.7900,0.0000,0.0000,0.0000,20.7400,0.0000,0.0000,0.0000,34.7200,0.0000,0.0000,0.0000,27.1400,0.0000,0.0000,0.0000,31.4500,0.0000 +300505.SZ,0.0000,0.0000,0.0000,18.4100,0.0000,0.0000,0.0000,26.4400,0.0000,0.0000,0.0000,21.9100,0.0000,0.0000,0.0000,26.0500,0.0000,0.0000,0.0000,31.3300,0.0000 +300115.SZ,0.0000,0.0000,0.0000,10.1700,0.0000,0.0000,0.0000,12.1900,0.0000,0.0000,0.0000,10.4700,0.0000,0.0000,0.0000,10.1400,0.0000,0.0000,0.0000,12.4100,0.0000 +301161.SZ,0.0000,0.0000,0.0000,57.5300,0.0000,0.0000,0.0000,54.5400,0.0000,0.0000,0.0000,49.7200,0.0000,0.0000,0.0000,54.0000,0.0000,0.0000,0.0000,39.1100,0.0000 +605299.SH,0.0000,0.0000,0.0000,15.5800,0.0000,0.0000,0.0000,15.3000,0.0000,0.0000,0.0000,13.6800,0.0000,0.0000,0.0000,15.6500,0.0000,0.0000,0.0000,13.1700,0.0000 +603535.SH,0.0000,0.0000,0.0000,50.4700,0.0000,0.0000,0.0000,45.4000,0.0000,0.0000,0.0000,53.5300,0.0000,0.0000,0.0000,54.7100,0.0000,0.0000,0.0000,49.8700,0.0000 +301662.SZ,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,19.2200,0.0000,0.0000,0.0000,11.4500,0.0000,0.0000,0.0000,14.1300,0.0000,0.0000,17.0800,15.2400,0.0000 +300540.SZ,0.0000,0.0000,0.0000,29.7500,0.0000,0.0000,0.0000,17.3100,0.0000,0.0000,0.0000,26.3700,0.0000,0.0000,0.0000,18.9400,0.0000,0.0000,0.0000,23.4800,0.0000 +000514.SZ,0.0000,0.0000,0.0000,88.3100,0.0000,0.0000,0.0000,78.9300,0.0000,0.0000,0.0000,67.1300,0.0000,0.0000,0.0000,46.3000,0.0000,0.0000,0.0000,49.7700,0.0000 +600167.SH,0.0000,0.0000,0.0000,49.1800,0.0000,0.0000,0.0000,46.6600,0.0000,0.0000,0.0000,51.7600,0.0000,0.0000,0.0000,39.6900,0.0000,0.0000,0.0000,42.5700,0.0000 +000809.SZ,0.0000,0.0000,0.0000,80.9700,0.0000,0.0000,0.0000,81.9800,0.0000,0.0000,0.0000,90.7300,0.0000,0.0000,0.0000,91.0700,0.0000,0.0000,0.0000,62.6300,0.0000 +000920.SZ,0.0000,0.0000,0.0000,30.0400,0.0000,0.0000,0.0000,30.5900,0.0000,0.0000,0.0000,36.5000,0.0000,0.0000,0.0000,35.5900,0.0000,0.0000,0.0000,33.3800,0.0000 +300708.SZ,0.0000,0.0000,0.0000,70.9900,0.0000,0.0000,0.0000,69.8000,0.0000,0.0000,0.0000,77.5300,0.0000,0.0000,0.0000,84.4600,0.0000,0.0000,0.0000,89.5100,0.0000 +300783.SZ,0.0000,0.0000,0.0000,13.0200,0.0000,0.0000,0.0000,16.9400,0.0000,0.0000,0.0000,16.0800,0.0000,0.0000,0.0000,13.9800,0.0000,0.0000,0.0000,13.4600,0.0000 +600455.SH,0.0000,0.0000,0.0000,87.3100,0.0000,0.0000,0.0000,97.2800,0.0000,0.0000,0.0000,94.5000,0.0000,0.0000,0.0000,80.8600,0.0000,0.0000,0.0000,79.3800,0.0000 +002908.SZ,0.0000,0.0000,0.0000,43.3200,0.0000,0.0000,0.0000,35.3700,0.0000,0.0000,0.0000,38.5200,0.0000,0.0000,0.0000,37.3200,0.0000,0.0000,0.0000,37.9900,0.0000 +834261.BJ,0.0000,0.0000,0.0000,35.1100,0.0000,0.0000,0.0000,33.8100,0.0000,36.7900,0.0000,39.0400,0.0000,0.0000,0.0000,35.1900,0.0000,0.0000,0.0000,39.6800,0.0000 +600618.SH,0.0000,0.0000,0.0000,81.2800,0.0000,0.0000,0.0000,96.2200,0.0000,0.0000,0.0000,45.5900,0.0000,0.0000,0.0000,52.9600,0.0000,0.0000,0.0000,47.7900,0.0000 +688089.SH,0.0000,0.0000,0.0000,53.1200,0.0000,0.0000,0.0000,43.7800,0.0000,0.0000,0.0000,49.7200,0.0000,0.0000,0.0000,53.3100,0.0000,0.0000,0.0000,55.7700,0.0000 +605378.SH,0.0000,37.5000,0.0000,35.0900,0.0000,0.0000,0.0000,35.2500,0.0000,0.0000,0.0000,39.0100,0.0000,0.0000,0.0000,43.0300,0.0000,0.0000,0.0000,41.8500,0.0000 +002759.SZ,0.0000,0.0000,0.0000,28.4300,0.0000,0.0000,0.0000,51.4000,0.0000,0.0000,0.0000,68.5800,0.0000,0.0000,0.0000,56.0200,0.0000,0.0000,0.0000,50.5200,0.0000 +300759.SZ,0.0000,0.0000,0.0000,9.2800,0.0000,0.0000,0.0000,8.0400,0.0000,0.0000,0.0000,8.8600,0.0000,0.0000,0.0000,8.3900,0.0000,0.0000,0.0000,10.0300,0.0000 +605179.SH,0.0000,0.0000,0.0000,10.3800,0.0000,0.0000,0.0000,13.3300,0.0000,0.0000,0.0000,17.6200,0.0000,0.0000,0.0000,14.1900,0.0000,0.0000,0.0000,16.4800,0.0000 +688758.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,70.3200,0.0000,0.0000,0.0000,61.9600,0.0000,0.0000,0.0000,62.7700,0.0000,55.6200,0.0000,65.7200,0.0000 +605500.SH,0.0000,0.0000,0.0000,11.8600,0.0000,0.0000,0.0000,12.6400,0.0000,0.0000,0.0000,12.2200,0.0000,0.0000,0.0000,11.5300,0.0000,0.0000,0.0000,10.0800,0.0000 +002614.SZ,0.0000,0.0000,0.0000,10.5700,0.0000,0.0000,0.0000,11.7500,0.0000,0.0000,0.0000,12.5000,0.0000,0.0000,0.0000,11.6200,0.0000,0.0000,0.0000,10.9800,0.0000 +600405.SH,0.0000,0.0000,0.0000,24.1700,0.0000,0.0000,0.0000,18.6100,0.0000,0.0000,0.0000,23.4300,0.0000,0.0000,0.0000,20.4000,0.0000,0.0000,0.0000,0.0000,0.0000 +605166.SH,0.0000,0.0000,0.0000,61.7900,0.0000,0.0000,0.0000,60.3000,0.0000,0.0000,0.0000,68.6100,0.0000,0.0000,0.0000,72.6500,0.0000,0.0000,0.0000,65.4000,0.0000 +603706.SH,0.0000,0.0000,0.0000,83.5000,0.0000,0.0000,0.0000,48.9900,0.0000,0.0000,0.0000,49.1400,0.0000,0.0000,0.0000,59.2000,0.0000,0.0000,0.0000,53.5600,0.0000 +002515.SZ,0.0000,0.0000,0.0000,66.2800,0.0000,0.0000,0.0000,50.2000,0.0000,0.0000,0.0000,51.9900,0.0000,0.0000,0.0000,36.0800,0.0000,0.0000,0.0000,43.3100,0.0000 +300120.SZ,0.0000,0.0000,0.0000,46.5700,0.0000,0.0000,0.0000,43.9400,0.0000,0.0000,0.0000,52.8800,0.0000,0.0000,0.0000,53.4200,0.0000,0.0000,0.0000,45.8300,0.0000 +301592.SZ,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,50.7700,0.0000,0.0000,0.0000,33.2600,0.0000,0.0000,0.0000,50.1000,0.0000,42.0100,0.0000,42.9800,0.0000 +002872.SZ,0.0000,0.0000,0.0000,12.4600,0.0000,0.0000,0.0000,17.2000,0.0000,0.0000,0.0000,28.4400,0.0000,0.0000,0.0000,32.9000,0.0000,0.0000,0.0000,21.1600,0.0000 +688334.SH,0.0000,0.0000,0.0000,43.0600,0.0000,0.0000,0.0000,37.2400,0.0000,0.0000,0.0000,34.8700,0.0000,0.0000,0.0000,30.0800,0.0000,0.0000,0.0000,41.4600,0.0000 +301016.SZ,0.0000,0.0000,0.0000,42.2200,0.0000,0.0000,0.0000,52.9900,0.0000,0.0000,0.0000,52.6800,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,47.5000,0.0000 +300951.SZ,0.0000,0.0000,0.0000,26.4400,0.0000,0.0000,0.0000,32.9200,0.0000,0.0000,0.0000,29.9700,0.0000,0.0000,0.0000,40.7800,0.0000,0.0000,0.0000,35.6800,0.0000 +000987.SZ,0.0000,0.0000,0.0000,12.6300,0.0000,0.0000,0.0000,35.3000,0.0000,0.0000,0.0000,38.1900,0.0000,0.0000,0.0000,41.4000,0.0000,0.0000,0.0000,14.0000,0.0000 +300883.SZ,0.0000,0.0000,0.0000,86.5500,0.0000,0.0000,0.0000,80.2200,0.0000,0.0000,0.0000,84.2600,0.0000,0.0000,0.0000,86.1100,0.0000,0.0000,0.0000,72.3400,0.0000 +301000.SZ,0.0000,0.0000,0.0000,38.0500,0.0000,0.0000,0.0000,30.7300,0.0000,0.0000,0.0000,28.3200,0.0000,0.0000,0.0000,25.2900,0.0000,0.0000,0.0000,24.3900,0.0000 +605189.SH,0.0000,0.0000,0.0000,45.3700,0.0000,0.0000,0.0000,27.8800,0.0000,0.0000,0.0000,34.2500,0.0000,0.0000,0.0000,30.6200,0.0000,0.0000,0.0000,22.9300,0.0000 +002757.SZ,0.0000,0.0000,0.0000,23.0100,0.0000,0.0000,0.0000,21.1300,0.0000,0.0000,0.0000,22.5500,0.0000,0.0000,0.0000,24.5900,0.0000,0.0000,0.0000,27.5900,0.0000 +301281.SZ,0.0000,0.0000,0.0000,57.3900,0.0000,0.0000,0.0000,50.3900,0.0000,42.3500,0.0000,25.8200,0.0000,0.0000,0.0000,37.4800,0.0000,0.0000,0.0000,43.4700,0.0000 +001299.SZ,0.0000,0.0000,0.0000,80.8400,0.0000,0.0000,0.0000,77.5600,0.0000,0.0000,0.0000,79.4200,0.0000,0.0000,0.0000,78.8600,0.0000,0.0000,0.0000,79.8200,0.0000 +600039.SH,0.0000,0.0000,0.0000,28.4000,0.0000,0.0000,0.0000,17.6100,0.0000,0.0000,0.0000,14.0800,0.0000,0.0000,0.0000,18.8500,0.0000,0.0000,0.0000,20.7600,0.0000 +000990.SZ,0.0000,0.0000,0.0000,37.0700,0.0000,0.0000,0.0000,42.5800,0.0000,0.0000,0.0000,57.2900,0.0000,0.0000,0.0000,66.2100,0.0000,0.0000,0.0000,53.7300,0.0000 +300480.SZ,0.0000,0.0000,0.0000,18.8900,0.0000,0.0000,0.0000,12.3200,0.0000,0.0000,0.0000,11.6700,0.0000,0.0000,0.0000,11.2700,0.0000,0.0000,0.0000,10.4200,0.0000 +301048.SZ,0.0000,0.0000,0.0000,37.3300,0.0000,0.0000,0.0000,30.1800,0.0000,0.0000,0.0000,32.1100,0.0000,0.0000,0.0000,30.6700,0.0000,0.0000,0.0000,33.4200,0.0000 +688314.SH,0.0000,0.0000,0.0000,79.3100,0.0000,0.0000,0.0000,77.2300,0.0000,0.0000,0.0000,76.6400,0.0000,0.0000,0.0000,76.0600,0.0000,0.0000,0.0000,78.1800,0.0000 +002016.SZ,0.0000,0.0000,0.0000,72.7800,0.0000,0.0000,0.0000,38.1500,0.0000,0.0000,0.0000,39.2800,0.0000,0.0000,0.0000,51.5800,0.0000,0.0000,0.0000,53.1900,0.0000 +603927.SH,0.0000,0.0000,0.0000,14.2000,0.0000,0.0000,0.0000,10.3300,0.0000,0.0000,0.0000,7.4200,0.0000,0.0000,0.0000,14.2800,0.0000,0.0000,0.0000,16.0800,0.0000 +688616.SH,0.0000,0.0000,0.0000,43.8700,0.0000,0.0000,0.0000,36.4100,0.0000,0.0000,0.0000,28.6200,0.0000,0.0000,0.0000,40.0800,0.0000,0.0000,0.0000,29.5800,0.0000 +688629.SH,0.0000,0.0000,0.0000,33.6200,0.0000,0.0000,0.0000,28.0400,0.0000,0.0000,0.0000,28.5300,0.0000,0.0000,0.0000,24.9100,0.0000,0.0000,0.0000,33.8800,0.0000 +002641.SZ,0.0000,0.0000,0.0000,33.0800,0.0000,0.0000,0.0000,27.9500,0.0000,0.0000,0.0000,21.6300,0.0000,0.0000,0.0000,30.9400,0.0000,0.0000,0.0000,26.0100,0.0000 +300506.SZ,0.0000,0.0000,0.0000,44.7500,0.0000,0.0000,0.0000,31.7100,0.0000,0.0000,0.0000,37.0200,0.0000,0.0000,0.0000,43.9600,0.0000,0.0000,0.0000,40.8100,0.0000 +002992.SZ,0.0000,0.0000,0.0000,44.5900,0.0000,0.0000,0.0000,31.2800,0.0000,0.0000,0.0000,33.0300,0.0000,0.0000,0.0000,31.4000,0.0000,0.0000,0.0000,31.3500,0.0000 +002386.SZ,0.0000,0.0000,0.0000,27.5300,0.0000,0.0000,0.0000,30.6300,0.0000,0.0000,0.0000,28.0500,0.0000,0.0000,0.0000,19.7200,0.0000,0.0000,0.0000,24.1600,0.0000 +600121.SH,0.0000,0.0000,0.0000,26.6900,0.0000,0.0000,0.0000,28.4400,0.0000,0.0000,0.0000,29.4500,0.0000,0.0000,0.0000,23.3300,0.0000,0.0000,0.0000,36.6600,0.0000 +300517.SZ,0.0000,0.0000,0.0000,58.4100,0.0000,0.0000,0.0000,47.5000,0.0000,0.0000,0.0000,64.8100,0.0000,0.0000,0.0000,64.5600,0.0000,0.0000,0.0000,58.2800,0.0000 +002931.SZ,0.0000,0.0000,0.0000,28.4800,0.0000,0.0000,0.0000,28.0000,0.0000,0.0000,0.0000,32.6300,0.0000,0.0000,0.0000,28.5000,0.0000,0.0000,0.0000,28.9600,0.0000 +600556.SH,0.0000,0.0000,0.0000,37.0400,0.0000,0.0000,0.0000,59.4200,0.0000,0.0000,0.0000,77.6700,0.0000,0.0000,0.0000,76.6800,0.0000,0.0000,0.0000,80.6300,0.0000 +002338.SZ,0.0000,0.0000,0.0000,33.8300,0.0000,0.0000,0.0000,38.7500,0.0000,0.0000,0.0000,34.9100,0.0000,0.0000,0.0000,21.9300,0.0000,0.0000,0.0000,13.9500,0.0000 +301179.SZ,0.0000,0.0000,0.0000,75.6000,0.0000,78.7500,0.0000,75.1500,0.0000,0.0000,0.0000,59.5500,0.0000,0.0000,0.0000,64.7600,0.0000,0.0000,0.0000,55.9500,0.0000 +600218.SH,0.0000,0.0000,0.0000,29.8800,0.0000,0.0000,0.0000,31.5500,0.0000,0.0000,0.0000,38.9700,0.0000,0.0000,0.0000,37.9500,0.0000,0.0000,0.0000,33.1500,0.0000 +002989.SZ,0.0000,0.0000,0.0000,45.4100,0.0000,0.0000,0.0000,56.0100,0.0000,0.0000,0.0000,55.7800,0.0000,0.0000,0.0000,60.3000,0.0000,0.0000,0.0000,57.9200,0.0000 +300701.SZ,0.0000,0.0000,0.0000,31.3500,0.0000,0.0000,0.0000,41.1800,0.0000,0.0000,0.0000,37.8700,0.0000,0.0000,0.0000,35.2700,0.0000,0.0000,0.0000,29.8500,0.0000 +603730.SH,0.0000,0.0000,0.0000,13.1800,0.0000,0.0000,0.0000,22.1700,0.0000,0.0000,0.0000,21.8200,0.0000,0.0000,0.0000,23.0200,0.0000,0.0000,0.0000,20.3000,0.0000 +002722.SZ,0.0000,0.0000,0.0000,50.3000,0.0000,0.0000,0.0000,49.0600,0.0000,0.0000,0.0000,53.8500,0.0000,0.0000,0.0000,59.6100,0.0000,0.0000,0.0000,43.7600,0.0000 +300140.SZ,0.0000,0.0000,0.0000,13.5200,0.0000,0.0000,0.0000,21.8000,0.0000,0.0000,0.0000,15.7300,0.0000,0.0000,0.0000,18.7100,0.0000,0.0000,0.0000,13.4700,0.0000 +002389.SZ,0.0000,0.0000,0.0000,44.9900,0.0000,0.0000,0.0000,45.6200,0.0000,0.0000,0.0000,55.4300,0.0000,0.0000,0.0000,51.1600,0.0000,0.0000,0.0000,49.2500,0.0000 +001278.SZ,0.0000,0.0000,0.0000,22.7600,0.0000,0.0000,0.0000,19.6400,0.0000,22.1100,0.0000,19.3400,0.0000,0.0000,0.0000,24.3400,0.0000,0.0000,0.0000,19.8700,0.0000 +002882.SZ,0.0000,0.0000,0.0000,86.9000,0.0000,0.0000,0.0000,89.0200,0.0000,0.0000,0.0000,89.0500,0.0000,0.0000,0.0000,86.8900,0.0000,0.0000,0.0000,92.0000,0.0000 +000917.SZ,0.0000,0.0000,0.0000,48.3200,0.0000,0.0000,0.0000,57.8200,0.0000,0.0000,0.0000,54.3600,0.0000,0.0000,0.0000,39.8700,0.0000,0.0000,0.0000,49.0700,0.0000 +000550.SZ,0.0000,0.0000,0.0000,19.3800,0.0000,0.0000,0.0000,18.4000,0.0000,0.0000,0.0000,18.2600,0.0000,0.0000,0.0000,18.7200,0.0000,0.0000,0.0000,18.6000,0.0000 +605116.SH,0.0000,0.0000,0.0000,33.5100,0.0000,0.0000,0.0000,30.2600,0.0000,0.0000,0.0000,34.0500,0.0000,0.0000,0.0000,29.2700,0.0000,0.0000,0.0000,26.5700,0.0000 +605138.SH,0.0000,0.0000,0.0000,12.2000,0.0000,0.0000,0.0000,12.0600,0.0000,0.0000,0.0000,15.2100,0.0000,0.0000,0.0000,23.6600,0.0000,0.0000,0.0000,12.8800,0.0000 +301418.SZ,0.0000,0.0000,0.0000,57.2400,0.0000,0.0000,0.0000,46.5100,0.0000,0.0000,0.0000,57.8600,0.0000,0.0000,0.0000,47.4900,0.0000,0.0000,0.0000,47.1900,0.0000 +000055.SZ,0.0000,0.0000,0.0000,21.1800,0.0000,0.0000,0.0000,17.5000,0.0000,0.0000,0.0000,22.0300,0.0000,0.0000,0.0000,18.2600,0.0000,0.0000,0.0000,18.4400,0.0000 +301557.SZ,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,41.6600,0.0000,0.0000,0.0000,35.9900,0.0000,0.0000,0.0000,35.1800,0.0000,41.9400,0.0000,35.7800,0.0000 +300082.SZ,0.0000,0.0000,0.0000,73.6600,0.0000,0.0000,0.0000,73.2400,0.0000,0.0000,0.0000,67.1500,0.0000,0.0000,0.0000,76.0800,0.0000,0.0000,0.0000,82.0500,0.0000 +600867.SH,0.0000,0.0000,0.0000,6.4200,0.0000,0.0000,0.0000,48.5800,0.0000,0.0000,0.0000,45.1600,0.0000,0.0000,0.0000,53.0600,0.0000,0.0000,0.0000,45.5900,0.0000 +688648.SH,0.0000,0.0000,0.0000,13.1000,0.0000,0.0000,0.0000,13.8000,0.0000,0.0000,0.0000,19.8100,0.0000,19.0100,0.0000,16.7500,0.0000,0.0000,0.0000,17.1000,0.0000 +603538.SH,0.0000,0.0000,0.0000,17.3300,0.0000,0.0000,0.0000,11.3900,0.0000,0.0000,0.0000,16.9600,0.0000,0.0000,0.0000,16.6300,0.0000,0.0000,0.0000,9.6400,0.0000 +688063.SH,0.0000,0.0000,0.0000,27.8700,0.0000,0.0000,0.0000,24.4400,0.0000,0.0000,0.0000,35.4600,0.0000,0.0000,0.0000,35.1500,0.0000,0.0000,0.0000,25.3300,0.0000 +603860.SH,0.0000,0.0000,0.0000,37.1800,0.0000,0.0000,0.0000,42.0000,0.0000,0.0000,0.0000,35.8300,0.0000,0.0000,0.0000,32.0100,0.0000,0.0000,0.0000,21.3000,0.0000 +603861.SH,0.0000,0.0000,0.0000,17.6100,0.0000,0.0000,0.0000,9.0900,0.0000,0.0000,0.0000,16.5400,0.0000,0.0000,0.0000,14.0800,0.0000,0.0000,0.0000,20.8400,0.0000 +688133.SH,0.0000,0.0000,0.0000,25.6000,0.0000,0.0000,0.0000,26.1500,0.0000,0.0000,0.0000,23.3700,0.0000,0.0000,0.0000,20.9900,0.0000,0.0000,0.0000,25.8200,0.0000 +300404.SZ,0.0000,0.0000,0.0000,24.7900,0.0000,0.0000,0.0000,15.9200,0.0000,0.0000,0.0000,13.4400,0.0000,0.0000,0.0000,11.7800,0.0000,0.0000,0.0000,11.9700,0.0000 +301101.SZ,0.0000,0.0000,0.0000,54.6000,0.0000,55.3900,0.0000,33.6900,0.0000,0.0000,0.0000,35.8200,0.0000,0.0000,0.0000,35.8000,0.0000,0.0000,0.0000,40.2200,0.0000 +603991.SH,0.0000,0.0000,0.0000,40.0200,0.0000,0.0000,0.0000,38.6300,0.0000,0.0000,0.0000,50.6000,0.0000,0.0000,0.0000,44.8200,0.0000,0.0000,0.0000,44.6000,0.0000 +300604.SZ,0.0000,0.0000,0.0000,17.5300,0.0000,0.0000,0.0000,17.4900,0.0000,0.0000,0.0000,16.4200,0.0000,0.0000,0.0000,18.1000,0.0000,0.0000,0.0000,16.4800,0.0000 +600992.SH,0.0000,0.0000,0.0000,70.0400,0.0000,0.0000,0.0000,75.9100,0.0000,0.0000,0.0000,66.6700,0.0000,0.0000,0.0000,60.4300,0.0000,0.0000,0.0000,61.1200,0.0000 +002582.SZ,0.0000,0.0000,0.0000,9.3600,0.0000,0.0000,0.0000,21.6900,0.0000,0.0000,0.0000,23.0500,0.0000,46.4700,0.0000,21.3300,0.0000,48.7700,0.0000,18.6900,0.0000 +000655.SZ,0.0000,0.0000,0.0000,80.8000,0.0000,0.0000,0.0000,76.3600,0.0000,0.0000,0.0000,79.7200,0.0000,0.0000,0.0000,79.1000,0.0000,0.0000,0.0000,80.1300,0.0000 +603859.SH,0.0000,0.0000,0.0000,36.5200,0.0000,0.0000,0.0000,34.4400,0.0000,0.0000,0.0000,29.7600,0.0000,0.0000,0.0000,29.0300,0.0000,0.0000,0.0000,38.1300,0.0000 +603016.SH,0.0000,0.0000,0.0000,20.9300,0.0000,0.0000,0.0000,21.9500,0.0000,0.0000,0.0000,19.4000,0.0000,0.0000,0.0000,19.8500,0.0000,0.0000,0.0000,22.8300,0.0000 +603399.SH,0.0000,0.0000,0.0000,32.2300,0.0000,0.0000,0.0000,32.9800,0.0000,0.0000,0.0000,28.9400,0.0000,0.0000,0.0000,27.2700,0.0000,0.0000,0.0000,32.9200,0.0000 +001268.SZ,0.0000,0.0000,0.0000,47.9000,0.0000,0.0000,0.0000,47.9300,0.0000,0.0000,0.0000,36.3900,0.0000,0.0000,0.0000,41.0800,0.0000,0.0000,0.0000,38.1600,0.0000 +600292.SH,0.0000,0.0000,0.0000,11.9000,0.0000,0.0000,0.0000,10.2300,0.0000,0.0000,0.0000,14.2500,0.0000,0.0000,0.0000,18.8300,0.0000,0.0000,0.0000,19.0900,0.0000 +600159.SH,0.0000,0.0000,0.0000,42.8000,0.0000,0.0000,0.0000,28.9700,0.0000,0.0000,0.0000,54.2700,0.0000,0.0000,0.0000,40.1700,0.0000,0.0000,0.0000,20.6100,0.0000 +002296.SZ,0.0000,0.0000,0.0000,14.3900,0.0000,0.0000,0.0000,21.5200,0.0000,0.0000,0.0000,29.4100,0.0000,0.0000,0.0000,24.5600,0.0000,0.0000,0.0000,39.7500,0.0000 +301618.SZ,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,44.3400,0.0000,0.0000,0.0000,41.1100,0.0000,0.0000,0.0000,38.0700,0.0000,0.0000,0.0000,30.8300,0.0000 +688449.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,85.2900,0.0000,0.0000,0.0000,92.1000,0.0000,0.0000,0.0000,93.3000,0.0000,94.1700,0.0000,92.0600,0.0000 +603488.SH,0.0000,0.0000,0.0000,35.9200,0.0000,0.0000,0.0000,38.5500,0.0000,0.0000,0.0000,37.2800,0.0000,0.0000,0.0000,35.3100,0.0000,0.0000,0.0000,25.5500,0.0000 +603628.SH,0.0000,0.0000,0.0000,38.4300,0.0000,0.0000,0.0000,36.6200,0.0000,0.0000,0.0000,39.8700,0.0000,0.0000,0.0000,32.9700,0.0000,0.0000,0.0000,28.7700,0.0000 +300484.SZ,0.0000,0.0000,0.0000,28.2300,0.0000,0.0000,0.0000,26.9200,0.0000,0.0000,0.0000,37.1700,0.0000,0.0000,0.0000,48.0300,0.0000,0.0000,0.0000,39.3300,0.0000 +301381.SZ,0.0000,0.0000,0.0000,18.8900,0.0000,0.0000,0.0000,17.2600,0.0000,0.0000,0.0000,17.0600,0.0000,0.0000,0.0000,11.3200,0.0000,0.0000,0.0000,9.9100,0.0000 +000938.SZ,0.0000,0.0000,0.0000,57.8800,0.0000,0.0000,0.0000,57.0300,0.0000,0.0000,0.0000,31.6400,0.0000,0.0000,0.0000,38.6200,0.0000,0.0000,0.0000,35.9800,0.0000 +688046.SH,0.0000,0.0000,0.0000,46.5100,0.0000,34.8600,0.0000,0.0000,0.0000,0.0000,0.0000,26.7300,0.0000,0.0000,0.0000,31.1600,0.0000,0.0000,0.0000,27.3800,0.0000 +001287.SZ,0.0000,0.0000,0.0000,37.6800,0.0000,0.0000,0.0000,41.7000,0.0000,45.7300,0.0000,46.9700,0.0000,0.0000,0.0000,48.7900,0.0000,0.0000,0.0000,52.4900,0.0000 +000868.SZ,0.0000,0.0000,0.0000,44.1600,0.0000,0.0000,0.0000,37.2300,0.0000,0.0000,0.0000,44.2200,0.0000,0.0000,0.0000,29.0200,0.0000,0.0000,0.0000,31.5000,0.0000 +600578.SH,0.0000,0.0000,0.0000,24.6700,0.0000,0.0000,0.0000,27.1400,0.0000,0.0000,0.0000,19.6800,0.0000,0.0000,0.0000,26.0400,0.0000,0.0000,0.0000,38.8300,0.0000 +002666.SZ,0.0000,0.0000,0.0000,71.0200,0.0000,0.0000,0.0000,64.6000,0.0000,0.0000,0.0000,59.4900,0.0000,0.0000,0.0000,52.2400,0.0000,0.0000,0.0000,41.2200,0.0000 +603155.SH,0.0000,0.0000,0.0000,56.3300,0.0000,0.0000,0.0000,59.4300,0.0000,0.0000,0.0000,49.7400,0.0000,0.0000,0.0000,43.5400,0.0000,0.0000,0.0000,50.0400,0.0000 +688512.SH,0.0000,0.0000,0.0000,84.5400,0.0000,0.0000,0.0000,88.8100,0.0000,0.0000,0.0000,93.6700,0.0000,0.0000,0.0000,87.3700,0.0000,0.0000,0.0000,77.9200,0.0000 +600469.SH,0.0000,0.0000,0.0000,35.4000,0.0000,0.0000,0.0000,39.7200,0.0000,0.0000,0.0000,39.5600,0.0000,0.0000,0.0000,32.4400,0.0000,0.0000,0.0000,31.0200,0.0000 +300771.SZ,0.0000,0.0000,0.0000,34.6900,0.0000,0.0000,0.0000,30.4600,0.0000,0.0000,0.0000,42.5900,0.0000,0.0000,0.0000,33.1100,0.0000,0.0000,0.0000,28.0400,0.0000 +301360.SZ,0.0000,0.0000,0.0000,39.4100,0.0000,0.0000,0.0000,28.2600,0.0000,24.5300,0.0000,0.0000,0.0000,0.0000,0.0000,20.9100,0.0000,0.0000,0.0000,22.5900,0.0000 +838227.BJ,0.0000,0.0000,0.0000,99.8400,0.0000,0.0000,0.0000,99.6200,0.0000,99.4300,0.0000,98.5900,0.0000,0.0000,0.0000,89.1400,0.0000,0.0000,0.0000,68.0900,0.0000 +600798.SH,0.0000,0.0000,0.0000,46.9800,0.0000,0.0000,0.0000,49.8600,0.0000,0.0000,0.0000,68.7400,0.0000,0.0000,0.0000,52.6700,0.0000,0.0000,0.0000,52.2100,0.0000 +603986.SH,0.0000,0.0000,0.0000,73.6800,0.0000,0.0000,0.0000,79.3000,0.0000,0.0000,0.0000,73.3200,0.0000,0.0000,0.0000,70.8200,0.0000,0.0000,0.0000,70.1500,0.0000 +601678.SH,0.0000,0.0000,0.0000,17.2100,0.0000,0.0000,0.0000,24.2600,0.0000,0.0000,0.0000,15.5300,0.0000,0.0000,0.0000,21.9300,0.0000,0.0000,0.0000,42.9800,0.0000 +688710.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,54.3700,0.0000,0.0000,0.0000,58.0000,0.0000,0.0000,0.0000,57.9100,0.0000,0.0000,0.0000,61.9300,0.0000 +300595.SZ,0.0000,0.0000,0.0000,51.4000,0.0000,0.0000,0.0000,47.7900,0.0000,0.0000,0.0000,42.8500,0.0000,0.0000,0.0000,31.5700,0.0000,0.0000,0.0000,20.9000,0.0000 +002145.SZ,0.0000,0.0000,0.0000,25.9900,0.0000,0.0000,0.0000,28.1300,0.0000,0.0000,0.0000,26.6900,0.0000,0.0000,0.0000,27.1600,0.0000,0.0000,0.0000,20.9400,0.0000 +600826.SH,0.0000,0.0000,0.0000,16.3000,0.0000,0.0000,0.0000,16.1300,0.0000,0.0000,0.0000,13.2600,0.0000,0.0000,0.0000,25.3200,0.0000,0.0000,0.0000,21.9800,0.0000 +688523.SH,0.0000,0.0000,0.0000,43.3700,0.0000,0.0000,0.0000,44.7400,0.0000,0.0000,0.0000,51.9700,0.0000,0.0000,0.0000,19.3300,0.0000,0.0000,0.0000,37.3900,0.0000 +600698.SH,0.0000,0.0000,0.0000,36.7800,0.0000,0.0000,0.0000,35.0500,0.0000,0.0000,0.0000,30.9200,0.0000,0.0000,0.0000,35.1100,0.0000,0.0000,0.0000,42.4200,0.0000 +301126.SZ,0.0000,0.0000,0.0000,31.9800,0.0000,34.1400,0.0000,18.9000,0.0000,0.0000,0.0000,26.3100,0.0000,0.0000,0.0000,19.2100,0.0000,0.0000,0.0000,19.9200,0.0000 +002254.SZ,0.0000,0.0000,0.0000,31.1600,0.0000,0.0000,0.0000,44.7600,0.0000,0.0000,0.0000,32.8400,0.0000,0.0000,0.0000,27.0500,0.0000,0.0000,0.0000,27.3100,0.0000 +301289.SZ,0.0000,0.0000,0.0000,63.5100,0.0000,0.0000,0.0000,60.4900,0.0000,0.0000,0.0000,46.2500,0.0000,0.0000,0.0000,52.8000,0.0000,0.0000,0.0000,46.6200,0.0000 +000620.SZ,0.0000,0.0000,0.0000,28.2700,0.0000,0.0000,0.0000,11.3600,0.0000,0.0000,0.0000,11.3400,0.0000,0.0000,0.0000,33.3400,0.0000,0.0000,0.0000,79.8200,0.0000 +301353.SZ,0.0000,0.0000,0.0000,20.7500,0.0000,0.0000,0.0000,17.6300,0.0000,0.0000,0.0000,15.7700,0.0000,0.0000,0.0000,16.7700,0.0000,0.0000,0.0000,18.7100,0.0000 +600117.SH,0.0000,0.0000,0.0000,39.3000,0.0000,0.0000,0.0000,34.9600,0.0000,0.0000,0.0000,29.7100,0.0000,0.0000,0.0000,18.4400,0.0000,0.0000,0.0000,24.7100,0.0000 +600137.SH,0.0000,0.0000,0.0000,20.9000,0.0000,0.0000,0.0000,19.9000,0.0000,0.0000,0.0000,19.9100,0.0000,0.0000,0.0000,17.4000,0.0000,0.0000,0.0000,15.6600,0.0000 +300470.SZ,0.0000,0.0000,0.0000,20.0300,0.0000,0.0000,0.0000,19.8100,0.0000,0.0000,0.0000,16.2400,0.0000,0.0000,0.0000,15.1000,0.0000,0.0000,0.0000,14.7900,0.0000 +300253.SZ,0.0000,0.0000,0.0000,10.0300,0.0000,0.0000,0.0000,10.1700,0.0000,0.0000,0.0000,13.2300,0.0000,0.0000,0.0000,9.1600,0.0000,0.0000,0.0000,15.1800,0.0000 +688352.SH,0.0000,0.0000,0.0000,48.9900,0.0000,0.0000,0.0000,60.7100,0.0000,55.1000,0.0000,0.0000,0.0000,0.0000,0.0000,48.2500,0.0000,0.0000,0.0000,52.2900,0.0000 +300939.SZ,0.0000,0.0000,0.0000,18.7700,0.0000,0.0000,0.0000,18.3000,0.0000,0.0000,0.0000,20.4000,0.0000,0.0000,0.0000,22.4800,0.0000,0.0000,0.0000,20.1100,0.0000 +300479.SZ,0.0000,0.0000,0.0000,46.0000,0.0000,0.0000,0.0000,44.6000,0.0000,0.0000,0.0000,52.2500,0.0000,0.0000,0.0000,36.2200,0.0000,0.0000,0.0000,34.2400,0.0000 +002437.SZ,0.0000,0.0000,0.0000,61.6300,0.0000,0.0000,0.0000,63.9300,0.0000,0.0000,0.0000,45.5800,0.0000,0.0000,0.0000,49.1100,0.0000,0.0000,0.0000,43.7600,0.0000 +000822.SZ,0.0000,0.0000,0.0000,70.6400,0.0000,0.0000,0.0000,76.7600,0.0000,0.0000,0.0000,69.7200,0.0000,0.0000,0.0000,76.3200,0.0000,0.0000,0.0000,63.5600,0.0000 +301329.SZ,0.0000,0.0000,0.0000,26.9700,0.0000,0.0000,0.0000,29.4600,0.0000,0.0000,0.0000,32.8900,0.0000,0.0000,0.0000,37.6800,0.0000,0.0000,0.0000,38.1900,0.0000 +301398.SZ,0.0000,0.0000,0.0000,58.2500,0.0000,0.0000,0.0000,59.0500,0.0000,75.6100,0.0000,68.8400,0.0000,0.0000,0.0000,55.3800,0.0000,0.0000,0.0000,59.5700,0.0000 +688528.SH,0.0000,0.0000,0.0000,29.7600,0.0000,0.0000,0.0000,36.8000,0.0000,0.0000,0.0000,40.6900,0.0000,0.0000,0.0000,31.9200,0.0000,0.0000,0.0000,23.7600,0.0000 +000593.SZ,0.0000,0.0000,0.0000,46.3600,0.0000,0.0000,0.0000,49.8300,0.0000,0.0000,0.0000,50.7300,0.0000,0.0000,0.0000,46.5600,0.0000,0.0000,0.0000,50.2100,0.0000 +002584.SZ,0.0000,0.0000,0.0000,25.7100,0.0000,0.0000,0.0000,26.8400,0.0000,0.0000,0.0000,31.1400,0.0000,0.0000,0.0000,28.7800,0.0000,0.0000,0.0000,47.6000,0.0000 +300168.SZ,0.0000,0.0000,0.0000,7.3600,0.0000,0.0000,0.0000,6.3500,0.0000,0.0000,0.0000,6.4000,0.0000,0.0000,0.0000,4.8500,0.0000,0.0000,0.0000,5.8600,0.0000 +603933.SH,0.0000,0.0000,0.0000,77.7900,0.0000,0.0000,0.0000,68.5400,0.0000,0.0000,0.0000,75.8000,0.0000,0.0000,0.0000,63.6600,0.0000,0.0000,0.0000,56.4700,0.0000 +603617.SH,0.0000,0.0000,0.0000,20.7500,0.0000,0.0000,0.0000,32.1600,0.0000,0.0000,0.0000,27.4300,0.0000,0.0000,0.0000,13.9000,0.0000,0.0000,0.0000,31.2300,0.0000 +002995.SZ,0.0000,0.0000,0.0000,94.1700,0.0000,0.0000,0.0000,94.1500,0.0000,0.0000,0.0000,92.6400,0.0000,0.0000,0.0000,82.3800,0.0000,0.0000,0.0000,81.4900,0.0000 +688351.SH,0.0000,0.0000,0.0000,45.7000,0.0000,0.0000,0.0000,41.8500,0.0000,0.0000,0.0000,38.9200,0.0000,0.0000,0.0000,38.4400,0.0000,0.0000,0.0000,38.4400,0.0000 +002942.SZ,0.0000,0.0000,0.0000,60.0700,0.0000,0.0000,0.0000,46.4800,0.0000,0.0000,0.0000,36.1700,0.0000,0.0000,0.0000,28.5300,0.0000,0.0000,0.0000,34.5500,0.0000 +920099.BJ,0.0000,0.0000,0.0000,65.7500,0.0000,0.0000,0.0000,41.7800,0.0000,0.0000,43.1800,50.3700,0.0000,66.0800,0.0000,59.8900,0.0000,0.0000,0.0000,32.3400,0.0000 +000058.SZ,0.0000,0.0000,0.0000,9.0000,0.0000,0.0000,0.0000,9.4600,0.0000,0.0000,0.0000,10.6200,0.0000,0.0000,0.0000,12.6600,0.0000,0.0000,0.0000,23.6900,0.0000 +300275.SZ,0.0000,0.0000,0.0000,22.7100,0.0000,0.0000,0.0000,18.1800,0.0000,0.0000,0.0000,22.3300,0.0000,0.0000,0.0000,25.5400,0.0000,0.0000,0.0000,17.9100,0.0000 +002037.SZ,0.0000,0.0000,0.0000,18.8200,0.0000,0.0000,0.0000,14.9600,0.0000,0.0000,0.0000,11.7800,0.0000,0.0000,0.0000,14.4400,0.0000,0.0000,0.0000,15.2800,0.0000 +002799.SZ,0.0000,0.0000,0.0000,67.0300,0.0000,0.0000,0.0000,74.3300,0.0000,0.0000,0.0000,79.3400,0.0000,0.0000,0.0000,68.0500,0.0000,0.0000,0.0000,75.4200,0.0000 +300532.SZ,0.0000,0.0000,0.0000,35.8000,0.0000,0.0000,0.0000,34.7100,0.0000,0.0000,0.0000,30.9400,0.0000,0.0000,0.0000,36.5000,0.0000,0.0000,0.0000,29.9500,0.0000 +300374.SZ,0.0000,0.0000,0.0000,16.6400,0.0000,0.0000,0.0000,18.8600,0.0000,0.0000,0.0000,34.6100,0.0000,0.0000,0.0000,23.8200,0.0000,0.0000,0.0000,16.6200,0.0000 +002414.SZ,0.0000,0.0000,0.0000,16.1300,0.0000,0.0000,0.0000,20.5800,0.0000,0.0000,0.0000,16.6800,0.0000,0.0000,0.0000,12.8700,0.0000,0.0000,0.0000,14.3000,0.0000 +603396.SH,0.0000,0.0000,0.0000,18.1200,0.0000,0.0000,0.0000,26.6500,0.0000,0.0000,0.0000,14.6500,0.0000,0.0000,0.0000,18.2000,0.0000,0.0000,0.0000,15.5200,0.0000 +002161.SZ,0.0000,0.0000,0.0000,16.2100,0.0000,0.0000,0.0000,14.0200,0.0000,0.0000,0.0000,16.0500,0.0000,0.0000,0.0000,10.3000,0.0000,0.0000,0.0000,25.3900,0.0000 +002590.SZ,0.0000,0.0000,0.0000,17.4900,0.0000,0.0000,0.0000,10.3600,0.0000,0.0000,0.0000,15.4900,0.0000,0.0000,0.0000,14.5000,0.0000,0.0000,0.0000,11.7100,0.0000 +300599.SZ,0.0000,0.0000,0.0000,37.1100,0.0000,0.0000,0.0000,37.7600,0.0000,0.0000,0.0000,36.4000,0.0000,0.0000,0.0000,38.8200,0.0000,0.0000,0.0000,49.7700,0.0000 +300970.SZ,0.0000,39.9900,0.0000,39.8300,0.0000,0.0000,0.0000,33.9300,0.0000,0.0000,0.0000,32.7200,0.0000,0.0000,0.0000,31.1200,0.0000,0.0000,0.0000,26.8900,0.0000 +833429.BJ,0.0000,0.0000,0.0000,26.8100,0.0000,0.0000,0.0000,25.1000,0.0000,43.0100,0.0000,35.8600,0.0000,0.0000,0.0000,25.6200,0.0000,0.0000,0.0000,44.9300,0.0000 +002999.SZ,0.0000,0.0000,0.0000,30.6500,0.0000,0.0000,0.0000,30.6200,0.0000,0.0000,0.0000,23.2800,0.0000,25.5300,0.0000,23.8000,0.0000,0.0000,0.0000,26.2400,0.0000 +600789.SH,0.0000,0.0000,0.0000,12.0400,0.0000,0.0000,0.0000,11.5500,0.0000,0.0000,0.0000,16.6500,0.0000,0.0000,0.0000,37.6900,0.0000,0.0000,0.0000,33.7300,0.0000 +688689.SH,0.0000,0.0000,0.0000,27.7700,0.0000,0.0000,0.0000,26.2700,0.0000,0.0000,0.0000,25.4100,0.0000,0.0000,0.0000,25.1300,0.0000,0.0000,0.0000,25.2200,0.0000 +688329.SH,0.0000,0.0000,0.0000,16.3200,0.0000,0.0000,0.0000,32.1700,0.0000,0.0000,0.0000,31.0200,0.0000,0.0000,0.0000,48.5500,0.0000,0.0000,0.0000,51.2700,0.0000 +002315.SZ,0.0000,0.0000,0.0000,27.6700,0.0000,0.0000,0.0000,29.7200,0.0000,0.0000,0.0000,46.9800,0.0000,0.0000,0.0000,46.0600,0.0000,0.0000,0.0000,55.5800,0.0000 +002326.SZ,0.0000,0.0000,0.0000,15.9200,0.0000,0.0000,0.0000,22.0000,0.0000,0.0000,0.0000,19.3200,0.0000,0.0000,0.0000,18.9200,0.0000,0.0000,0.0000,14.7700,0.0000 +000761.SZ,0.0000,0.0000,0.0000,43.6600,0.0000,0.0000,0.0000,47.0600,0.0000,0.0000,0.0000,42.1300,0.0000,0.0000,0.0000,41.4400,0.0000,0.0000,0.0000,45.4000,0.0000 +300787.SZ,0.0000,0.0000,0.0000,11.2900,0.0000,0.0000,0.0000,14.4100,0.0000,0.0000,0.0000,19.8200,0.0000,0.0000,0.0000,16.2700,0.0000,0.0000,0.0000,16.3800,0.0000 +002465.SZ,0.0000,0.0000,0.0000,22.3000,0.0000,0.0000,0.0000,17.8800,0.0000,0.0000,0.0000,18.3400,0.0000,0.0000,0.0000,11.1800,0.0000,0.0000,0.0000,10.7300,0.0000 +300447.SZ,0.0000,0.0000,0.0000,45.4100,0.0000,0.0000,0.0000,52.0500,0.0000,0.0000,0.0000,36.9800,0.0000,0.0000,0.0000,39.2200,0.0000,0.0000,0.0000,47.4300,0.0000 +600482.SH,0.0000,0.0000,0.0000,29.3600,0.0000,0.0000,0.0000,34.2200,0.0000,0.0000,0.0000,29.2400,0.0000,0.0000,0.0000,29.9900,0.0000,0.0000,0.0000,32.0700,0.0000 +603052.SH,0.0000,0.0000,0.0000,43.3900,0.0000,0.0000,0.0000,48.0500,0.0000,0.0000,0.0000,44.3200,0.0000,0.0000,0.0000,35.8300,0.0000,0.0000,0.0000,41.0000,0.0000 +300675.SZ,0.0000,0.0000,0.0000,42.9800,0.0000,0.0000,0.0000,12.3500,0.0000,0.0000,0.0000,22.1000,0.0000,0.0000,0.0000,13.0700,0.0000,0.0000,0.0000,13.7900,0.0000 +301006.SZ,0.0000,0.0000,0.0000,49.1700,0.0000,0.0000,0.0000,44.7600,0.0000,0.0000,0.0000,52.9800,0.0000,0.0000,0.0000,41.7200,0.0000,0.0000,0.0000,49.8400,0.0000 +002373.SZ,0.0000,0.0000,0.0000,17.5600,0.0000,0.0000,0.0000,20.1200,0.0000,0.0000,0.0000,15.8300,0.0000,0.0000,0.0000,14.9100,0.0000,0.0000,0.0000,20.9600,0.0000 +688377.SH,0.0000,0.0000,0.0000,70.0300,0.0000,0.0000,0.0000,64.5400,0.0000,0.0000,0.0000,57.7300,0.0000,0.0000,0.0000,53.5500,0.0000,0.0000,0.0000,59.6100,0.0000 +600362.SH,0.0000,0.0000,0.0000,8.6100,0.0000,0.0000,0.0000,9.1800,0.0000,0.0000,0.0000,12.2400,0.0000,0.0000,0.0000,11.7000,0.0000,0.0000,0.0000,13.3100,0.0000 +603221.SH,0.0000,0.0000,0.0000,40.2700,0.0000,0.0000,0.0000,47.8200,0.0000,0.0000,0.0000,47.1400,0.0000,0.0000,0.0000,50.1400,0.0000,0.0000,0.0000,48.7100,0.0000 +603466.SH,0.0000,0.0000,0.0000,15.1100,0.0000,0.0000,0.0000,15.4700,0.0000,0.0000,0.0000,11.8600,0.0000,0.0000,0.0000,14.5100,0.0000,0.0000,0.0000,8.6500,0.0000 +002632.SZ,0.0000,0.0000,0.0000,23.3600,0.0000,0.0000,0.0000,17.3800,0.0000,0.0000,0.0000,16.3200,0.0000,0.0000,0.0000,21.7000,0.0000,0.0000,0.0000,22.4500,0.0000 +002377.SZ,0.0000,0.0000,0.0000,20.0600,0.0000,0.0000,0.0000,17.6400,0.0000,0.0000,0.0000,31.8200,0.0000,0.0000,0.0000,50.4200,0.0000,0.0000,0.0000,35.6600,0.0000 +301061.SZ,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,16.0400,0.0000,0.0000,0.0000,15.9900,0.0000,0.0000,0.0000,18.3400,0.0000,0.0000,0.0000,16.9400,0.0000 +920016.BJ,0.0000,0.0000,0.0000,56.2700,0.0000,0.0000,0.0000,50.3100,0.0000,51.1700,0.0000,49.2100,0.0000,68.6400,0.0000,60.7700,0.0000,0.0000,0.0000,46.8200,0.0000 +603908.SH,0.0000,0.0000,0.0000,40.9900,0.0000,0.0000,0.0000,34.0200,0.0000,0.0000,0.0000,27.8600,0.0000,0.0000,0.0000,27.1900,0.0000,0.0000,0.0000,30.7600,0.0000 +300481.SZ,0.0000,0.0000,0.0000,47.4700,0.0000,0.0000,0.0000,39.2500,0.0000,0.0000,0.0000,39.4800,0.0000,0.0000,0.0000,44.5700,0.0000,0.0000,0.0000,42.9800,0.0000 +002998.SZ,0.0000,0.0000,0.0000,46.8100,0.0000,0.0000,0.0000,50.0100,0.0000,0.0000,0.0000,49.5000,0.0000,0.0000,0.0000,51.6000,0.0000,0.0000,0.0000,46.7000,0.0000 +000563.SZ,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +301008.SZ,0.0000,0.0000,0.0000,39.7100,0.0000,0.0000,0.0000,37.9600,0.0000,0.0000,0.0000,29.5200,0.0000,0.0000,0.0000,28.8600,0.0000,0.0000,0.0000,33.2100,0.0000 +603158.SH,0.0000,0.0000,0.0000,13.0800,0.0000,0.0000,0.0000,14.9200,0.0000,0.0000,0.0000,19.0500,0.0000,0.0000,0.0000,20.8900,0.0000,0.0000,0.0000,19.3300,0.0000 +300676.SZ,0.0000,0.0000,0.0000,70.8500,0.0000,0.0000,0.0000,54.8300,0.0000,0.0000,0.0000,52.7500,0.0000,0.0000,0.0000,49.9600,0.0000,0.0000,0.0000,40.1900,0.0000 +603029.SH,0.0000,0.0000,0.0000,15.3000,0.0000,0.0000,0.0000,6.7900,0.0000,0.0000,0.0000,29.3000,0.0000,0.0000,0.0000,24.7800,0.0000,0.0000,0.0000,9.6900,0.0000 +600530.SH,0.0000,0.0000,0.0000,31.1100,0.0000,0.0000,0.0000,23.8500,0.0000,0.0000,0.0000,16.5800,0.0000,0.0000,0.0000,20.9300,0.0000,0.0000,0.0000,19.2500,0.0000 +600697.SH,0.0000,0.0000,0.0000,12.1600,0.0000,0.0000,0.0000,11.3100,0.0000,0.0000,0.0000,8.9700,0.0000,0.0000,0.0000,12.9500,0.0000,0.0000,0.0000,12.5000,0.0000 +603001.SH,0.0000,0.0000,0.0000,31.3900,0.0000,0.0000,0.0000,32.3300,0.0000,0.0000,0.0000,28.3100,0.0000,0.0000,0.0000,29.4000,0.0000,0.0000,0.0000,29.8200,0.0000 +600718.SH,0.0000,0.0000,0.0000,32.4800,0.0000,0.0000,0.0000,39.0000,0.0000,0.0000,0.0000,37.5900,0.0000,0.0000,0.0000,30.2800,0.0000,0.0000,0.0000,30.4900,0.0000 +688356.SH,0.0000,0.0000,0.0000,68.3700,0.0000,0.0000,0.0000,59.3500,0.0000,0.0000,0.0000,67.5100,0.0000,0.0000,0.0000,48.0900,0.0000,0.0000,0.0000,53.5700,0.0000 +301589.SZ,0.0000,0.0000,0.0000,41.1700,0.0000,0.0000,0.0000,39.1200,0.0000,0.0000,0.0000,45.1100,0.0000,43.6500,0.0000,46.4300,0.0000,0.0000,0.0000,36.4500,0.0000 +603757.SH,0.0000,0.0000,0.0000,22.5300,0.0000,0.0000,0.0000,22.1400,0.0000,0.0000,0.0000,24.3000,0.0000,0.0000,0.0000,22.5000,0.0000,0.0000,0.0000,24.3700,0.0000 +301631.SZ,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,27.0400,0.0000,0.0000,0.0000,30.7400,0.0000,0.0000,0.0000,34.0200,0.0000,32.5100,0.0000,32.8500,0.0000 +002439.SZ,0.0000,0.0000,0.0000,50.9100,0.0000,0.0000,0.0000,50.9700,0.0000,0.0000,0.0000,30.6800,0.0000,0.0000,0.0000,31.3500,0.0000,0.0000,0.0000,33.8100,0.0000 +600796.SH,0.0000,0.0000,0.0000,30.1000,0.0000,0.0000,0.0000,24.0900,0.0000,0.0000,0.0000,46.8900,0.0000,0.0000,0.0000,34.3500,0.0000,0.0000,0.0000,24.0700,0.0000 +603638.SH,0.0000,0.0000,0.0000,25.8300,0.0000,0.0000,0.0000,19.4000,0.0000,0.0000,0.0000,19.9100,0.0000,0.0000,0.0000,15.2300,0.0000,0.0000,0.0000,17.3100,0.0000 +300006.SZ,0.0000,0.0000,0.0000,61.7900,0.0000,0.0000,0.0000,38.6200,0.0000,0.0000,0.0000,50.4900,0.0000,0.0000,0.0000,40.2100,0.0000,0.0000,0.0000,42.7600,0.0000 +000723.SZ,0.0000,0.0000,0.0000,42.0800,0.0000,0.0000,0.0000,59.4200,0.0000,0.0000,0.0000,42.5400,0.0000,0.0000,0.0000,30.5800,0.0000,0.0000,0.0000,31.1600,0.0000 +600567.SH,0.0000,0.0000,0.0000,9.4600,0.0000,0.0000,0.0000,6.2100,0.0000,0.0000,0.0000,5.3600,0.0000,0.0000,0.0000,11.3800,0.0000,0.0000,0.0000,11.1100,0.0000 +002947.SZ,0.0000,0.0000,0.0000,22.7600,0.0000,0.0000,0.0000,31.6800,0.0000,0.0000,0.0000,37.1800,0.0000,0.0000,0.0000,41.7800,0.0000,0.0000,0.0000,45.6700,0.0000 +600516.SH,0.0000,0.0000,0.0000,12.2200,0.0000,0.0000,0.0000,21.3000,0.0000,0.0000,0.0000,28.0000,0.0000,0.0000,0.0000,20.8600,0.0000,0.0000,0.0000,30.1300,0.0000 +600477.SH,0.0000,0.0000,0.0000,15.5300,0.0000,0.0000,0.0000,9.8200,0.0000,0.0000,0.0000,12.4200,0.0000,0.0000,0.0000,10.6800,0.0000,0.0000,0.0000,13.8000,0.0000 +000980.SZ,0.0000,0.0000,0.0000,32.4100,0.0000,0.0000,0.0000,39.6000,0.0000,0.0000,0.0000,23.4200,0.0000,0.0000,0.0000,28.1300,0.0000,0.0000,0.0000,26.0500,0.0000 +300736.SZ,0.0000,0.0000,0.0000,74.1800,0.0000,0.0000,0.0000,93.6700,0.0000,0.0000,0.0000,99.7400,0.0000,0.0000,0.0000,99.9600,0.0000,0.0000,0.0000,99.3800,0.0000 +600825.SH,0.0000,0.0000,0.0000,11.6700,0.0000,0.0000,0.0000,15.1800,0.0000,0.0000,0.0000,39.5300,0.0000,0.0000,0.0000,33.2600,0.0000,0.0000,0.0000,53.3100,0.0000 +688286.SH,0.0000,0.0000,0.0000,62.4400,0.0000,0.0000,0.0000,69.2500,0.0000,0.0000,0.0000,72.9900,0.0000,0.0000,0.0000,60.2500,0.0000,0.0000,0.0000,50.7500,0.0000 +601311.SH,0.0000,0.0000,0.0000,18.8600,0.0000,0.0000,0.0000,14.2000,0.0000,0.0000,0.0000,13.3700,0.0000,0.0000,0.0000,27.0700,0.0000,0.0000,0.0000,15.8700,0.0000 +605168.SH,0.0000,0.0000,0.0000,63.0600,0.0000,0.0000,0.0000,58.0100,0.0000,0.0000,0.0000,46.3100,0.0000,0.0000,0.0000,54.6700,0.0000,0.0000,0.0000,43.8000,0.0000 +600787.SH,0.0000,0.0000,0.0000,34.9600,0.0000,0.0000,0.0000,22.3800,0.0000,0.0000,0.0000,20.7700,0.0000,0.0000,0.0000,18.6700,0.0000,0.0000,0.0000,25.7500,0.0000 +688570.SH,0.0000,0.0000,0.0000,32.1200,0.0000,0.0000,0.0000,21.3200,0.0000,0.0000,0.0000,18.7300,0.0000,0.0000,0.0000,14.9600,0.0000,0.0000,0.0000,16.9400,0.0000 +301591.SZ,0.0000,0.0000,0.0000,56.2700,0.0000,0.0000,0.0000,50.5100,0.0000,0.0000,0.0000,52.6700,0.0000,53.8900,0.0000,51.7000,0.0000,0.0000,0.0000,47.6500,0.0000 +002181.SZ,0.0000,0.0000,0.0000,17.7700,0.0000,0.0000,0.0000,27.2600,0.0000,0.0000,0.0000,35.7300,0.0000,0.0000,0.0000,28.2000,0.0000,0.0000,0.0000,6.6900,0.0000 +605577.SH,0.0000,0.0000,0.0000,38.6300,0.0000,0.0000,0.0000,36.8100,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,25.0700,0.0000,0.0000,0.0000,27.3700,0.0000 +002247.SZ,0.0000,0.0000,0.0000,40.3200,0.0000,0.0000,0.0000,42.6100,0.0000,0.0000,0.0000,45.0100,0.0000,0.0000,0.0000,42.6000,0.0000,0.0000,0.0000,36.8100,0.0000 +300860.SZ,0.0000,0.0000,0.0000,21.6100,0.0000,0.0000,0.0000,29.4300,0.0000,0.0000,0.0000,26.8700,0.0000,0.0000,0.0000,34.8200,0.0000,0.0000,0.0000,24.3600,0.0000 +601375.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +300210.SZ,0.0000,0.0000,0.0000,49.6600,0.0000,0.0000,0.0000,35.1800,0.0000,0.0000,0.0000,44.9100,0.0000,0.0000,0.0000,55.4400,0.0000,0.0000,0.0000,46.5000,0.0000 +600982.SH,0.0000,0.0000,0.0000,54.7700,0.0000,0.0000,0.0000,24.6300,0.0000,0.0000,0.0000,27.3900,0.0000,0.0000,0.0000,17.4000,0.0000,0.0000,0.0000,28.9700,0.0000 +600927.SH,0.0000,0.0000,0.0000,14.0100,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +600579.SH,0.0000,0.0000,0.0000,3.8400,0.0000,0.0000,0.0000,4.9000,0.0000,0.0000,0.0000,6.1400,0.0000,0.0000,0.0000,6.2200,0.0000,0.0000,0.0000,7.1300,0.0000 +002820.SZ,0.0000,0.0000,0.0000,23.4900,0.0000,35.7600,0.0000,26.5600,0.0000,0.0000,0.0000,28.0200,0.0000,0.0000,0.0000,27.3200,0.0000,0.0000,0.0000,26.0300,0.0000 +605060.SH,0.0000,0.0000,0.0000,39.4800,0.0000,0.0000,0.0000,35.8200,0.0000,0.0000,0.0000,32.4300,0.0000,0.0000,0.0000,29.8800,0.0000,0.0000,0.0000,0.0000,0.0000 +002154.SZ,0.0000,0.0000,0.0000,25.1900,0.0000,0.0000,0.0000,16.2400,0.0000,0.0000,0.0000,14.5000,0.0000,0.0000,0.0000,24.3500,0.0000,0.0000,0.0000,13.0100,0.0000 +600771.SH,0.0000,0.0000,0.0000,24.4000,0.0000,0.0000,0.0000,39.5100,0.0000,0.0000,0.0000,67.2000,0.0000,0.0000,0.0000,53.6300,0.0000,0.0000,0.0000,44.9800,0.0000 +688181.SH,0.0000,0.0000,0.0000,55.2500,0.0000,0.0000,0.0000,50.6200,0.0000,0.0000,0.0000,59.0700,0.0000,0.0000,0.0000,57.0100,0.0000,0.0000,0.0000,45.8100,0.0000 +002236.SZ,0.0000,0.0000,0.0000,21.7300,0.0000,0.0000,0.0000,20.1300,0.0000,0.0000,0.0000,19.8900,0.0000,0.0000,0.0000,16.0000,0.0000,0.0000,0.0000,16.8700,0.0000 +688484.SH,0.0000,0.0000,0.0000,90.9000,0.0000,0.0000,0.0000,88.8600,0.0000,91.9800,0.0000,0.0000,0.0000,0.0000,0.0000,90.4500,0.0000,0.0000,0.0000,87.8000,0.0000 +300239.SZ,0.0000,0.0000,0.0000,47.0400,0.0000,0.0000,0.0000,48.4000,0.0000,0.0000,0.0000,45.6600,0.0000,0.0000,0.0000,53.9100,0.0000,0.0000,0.0000,54.2900,0.0000 +301611.SZ,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,54.2900,0.0000,0.0000,0.0000,52.2500,0.0000,0.0000,0.0000,48.1400,0.0000,0.0000,0.0000,32.1200,0.0000 +300375.SZ,0.0000,0.0000,0.0000,18.2200,0.0000,0.0000,0.0000,19.2600,0.0000,0.0000,0.0000,18.1400,0.0000,0.0000,0.0000,16.7900,0.0000,0.0000,0.0000,17.0500,0.0000 +300766.SZ,0.0000,0.0000,0.0000,66.3300,0.0000,0.0000,0.0000,60.0000,0.0000,0.0000,0.0000,49.2300,0.0000,0.0000,0.0000,30.0800,0.0000,0.0000,0.0000,32.0700,0.0000 +002825.SZ,0.0000,0.0000,0.0000,22.4900,0.0000,0.0000,0.0000,18.7600,0.0000,0.0000,0.0000,42.4100,0.0000,0.0000,0.0000,24.8800,0.0000,0.0000,0.0000,21.4600,0.0000 +600103.SH,0.0000,0.0000,0.0000,31.7100,0.0000,0.0000,0.0000,28.6300,0.0000,0.0000,0.0000,38.2100,0.0000,0.0000,0.0000,37.7100,0.0000,0.0000,0.0000,32.8500,0.0000 +300707.SZ,0.0000,0.0000,0.0000,41.5600,0.0000,0.0000,0.0000,41.7700,0.0000,0.0000,0.0000,45.5800,0.0000,0.0000,0.0000,42.2500,0.0000,0.0000,0.0000,42.0900,0.0000 +603218.SH,0.0000,0.0000,0.0000,41.1500,0.0000,0.0000,0.0000,36.4200,0.0000,0.0000,0.0000,36.8600,0.0000,0.0000,0.0000,42.8300,0.0000,0.0000,0.0000,32.9400,0.0000 +300869.SZ,0.0000,0.0000,0.0000,28.6100,0.0000,0.0000,0.0000,25.1000,0.0000,0.0000,0.0000,25.5700,0.0000,0.0000,0.0000,27.2700,0.0000,0.0000,0.0000,16.4100,0.0000 +600704.SH,0.0000,0.0000,0.0000,2.9700,0.0000,0.0000,0.0000,4.1400,0.0000,0.0000,0.0000,4.1100,0.0000,0.0000,0.0000,6.8000,0.0000,0.0000,0.0000,6.3900,0.0000 +603205.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,30.1300,0.0000,0.0000,0.0000,24.6800,0.0000,0.0000,0.0000,29.2300,0.0000,29.1700,0.0000,26.5300,0.0000 +688628.SH,0.0000,0.0000,0.0000,25.7800,0.0000,0.0000,0.0000,17.8900,0.0000,0.0000,0.0000,19.9400,0.0000,0.0000,0.0000,20.5600,0.0000,0.0000,0.0000,18.4000,0.0000 +000926.SZ,0.0000,0.0000,0.0000,44.8600,0.0000,0.0000,0.0000,34.8200,0.0000,0.0000,0.0000,32.9200,0.0000,0.0000,0.0000,35.2700,0.0000,0.0000,0.0000,63.2900,0.0000 +301023.SZ,0.0000,0.0000,0.0000,29.9200,0.0000,0.0000,0.0000,33.7900,0.0000,0.0000,0.0000,36.7700,0.0000,0.0000,0.0000,29.3600,0.0000,0.0000,0.0000,36.2300,0.0000 +002125.SZ,0.0000,0.0000,0.0000,38.3300,0.0000,0.0000,0.0000,37.5600,0.0000,0.0000,0.0000,41.6500,0.0000,0.0000,0.0000,45.9500,0.0000,0.0000,0.0000,27.1100,0.0000 +000737.SZ,0.0000,0.0000,0.0000,40.7200,0.0000,0.0000,0.0000,52.7600,0.0000,0.0000,0.0000,49.4100,0.0000,0.0000,0.0000,44.0500,0.0000,0.0000,0.0000,52.8900,0.0000 +603050.SH,0.0000,0.0000,0.0000,15.9400,0.0000,0.0000,0.0000,12.0400,0.0000,0.0000,0.0000,12.2600,0.0000,0.0000,0.0000,12.7300,0.0000,0.0000,0.0000,14.1100,0.0000 +000789.SZ,0.0000,0.0000,0.0000,19.9700,0.0000,0.0000,0.0000,27.5500,0.0000,0.0000,0.0000,26.2400,0.0000,0.0000,0.0000,27.9800,0.0000,0.0000,0.0000,31.4600,0.0000 +002836.SZ,0.0000,0.0000,0.0000,51.3500,0.0000,0.0000,0.0000,71.7500,0.0000,0.0000,0.0000,72.6400,0.0000,0.0000,0.0000,70.3000,0.0000,0.0000,0.0000,48.6000,0.0000 +002005.SZ,0.0000,0.0000,0.0000,12.8600,0.0000,0.0000,0.0000,14.3400,0.0000,0.0000,0.0000,13.6900,0.0000,0.0000,0.0000,12.2800,0.0000,0.0000,0.0000,18.0200,0.0000 +300673.SZ,0.0000,0.0000,0.0000,19.3300,0.0000,0.0000,0.0000,20.9300,0.0000,0.0000,0.0000,17.2900,0.0000,0.0000,0.0000,17.7900,0.0000,0.0000,0.0000,16.6400,0.0000 +600487.SH,0.0000,0.0000,0.0000,38.7500,0.0000,0.0000,0.0000,41.8300,0.0000,0.0000,0.0000,30.7000,0.0000,0.0000,0.0000,24.7600,0.0000,0.0000,0.0000,28.9300,0.0000 +603558.SH,0.0000,0.0000,0.0000,22.6600,0.0000,0.0000,0.0000,20.5500,0.0000,0.0000,0.0000,17.2900,0.0000,0.0000,0.0000,22.1200,0.0000,0.0000,0.0000,16.5600,0.0000 +000600.SZ,0.0000,0.0000,0.0000,42.1700,0.0000,0.0000,0.0000,45.4300,0.0000,0.0000,0.0000,41.4300,0.0000,0.0000,0.0000,44.3600,0.0000,0.0000,0.0000,37.6200,0.0000 +002111.SZ,0.0000,0.0000,0.0000,20.5700,0.0000,0.0000,0.0000,24.9200,0.0000,0.0000,0.0000,18.1400,0.0000,0.0000,0.0000,24.1300,0.0000,0.0000,0.0000,14.7000,0.0000 +002413.SZ,0.0000,0.0000,0.0000,15.3400,0.0000,0.0000,0.0000,14.9600,0.0000,0.0000,0.0000,16.8900,0.0000,0.0000,0.0000,20.0300,0.0000,0.0000,0.0000,13.8600,0.0000 +600963.SH,0.0000,0.0000,0.0000,19.0600,0.0000,0.0000,0.0000,28.0100,0.0000,0.0000,0.0000,25.2000,0.0000,0.0000,0.0000,24.8800,0.0000,0.0000,0.0000,43.3000,0.0000 +002678.SZ,0.0000,0.0000,0.0000,14.8200,0.0000,0.0000,0.0000,19.3100,0.0000,0.0000,0.0000,12.9100,0.0000,0.0000,0.0000,10.4400,0.0000,0.0000,0.0000,0.0000,0.0000 +301211.SZ,0.0000,0.0000,0.0000,64.7800,0.0000,63.4100,0.0000,57.7700,0.0000,0.0000,0.0000,53.7100,0.0000,0.0000,0.0000,46.2900,0.0000,0.0000,0.0000,36.8600,0.0000 +605111.SH,0.0000,0.0000,0.0000,84.0900,0.0000,0.0000,0.0000,82.3600,0.0000,0.0000,0.0000,83.3900,0.0000,0.0000,0.0000,72.4800,0.0000,0.0000,0.0000,76.3300,0.0000 +600815.SH,0.0000,0.0000,0.0000,46.4200,0.0000,0.0000,0.0000,37.5500,0.0000,0.0000,0.0000,34.3600,0.0000,0.0000,0.0000,37.8100,0.0000,0.0000,0.0000,37.9600,0.0000 +002734.SZ,0.0000,0.0000,0.0000,20.1900,0.0000,0.0000,0.0000,18.8200,0.0000,0.0000,0.0000,17.8500,0.0000,0.0000,0.0000,10.8700,0.0000,0.0000,0.0000,10.6800,0.0000 +002835.SZ,0.0000,0.0000,0.0000,34.6600,0.0000,0.0000,0.0000,27.2200,0.0000,0.0000,0.0000,30.8300,0.0000,0.0000,0.0000,31.6400,0.0000,0.0000,0.0000,33.4700,0.0000 +002939.SZ,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +002402.SZ,0.0000,0.0000,0.0000,19.3000,0.0000,0.0000,0.0000,12.9000,0.0000,0.0000,0.0000,14.1500,0.0000,0.0000,0.0000,12.5800,0.0000,0.0000,0.0000,13.6200,0.0000 +002659.SZ,0.0000,0.0000,0.0000,39.6300,0.0000,0.0000,0.0000,33.4600,0.0000,0.0000,0.0000,51.2600,0.0000,0.0000,0.0000,44.2500,0.0000,0.0000,0.0000,49.4000,0.0000 +002240.SZ,0.0000,0.0000,0.0000,24.9900,0.0000,0.0000,0.0000,62.8400,0.0000,0.0000,0.0000,64.7100,0.0000,0.0000,0.0000,69.4100,0.0000,0.0000,0.0000,34.9200,0.0000 +000543.SZ,0.0000,0.0000,0.0000,37.4500,0.0000,0.0000,0.0000,33.5200,0.0000,0.0000,0.0000,26.4100,0.0000,0.0000,0.0000,37.1800,0.0000,0.0000,0.0000,45.5300,0.0000 +300801.SZ,0.0000,0.0000,0.0000,40.6300,0.0000,0.0000,0.0000,44.4500,0.0000,0.0000,0.0000,35.7200,0.0000,0.0000,0.0000,29.2000,0.0000,0.0000,0.0000,30.0000,0.0000 +603203.SH,0.0000,0.0000,0.0000,12.7900,0.0000,0.0000,0.0000,11.3800,0.0000,0.0000,0.0000,11.0300,0.0000,0.0000,0.0000,8.7500,0.0000,0.0000,0.0000,5.7700,0.0000 +300717.SZ,0.0000,0.0000,0.0000,36.5900,0.0000,0.0000,0.0000,56.9300,0.0000,0.0000,0.0000,56.7600,0.0000,0.0000,0.0000,36.3200,0.0000,0.0000,0.0000,47.0900,0.0000 +603196.SH,0.0000,0.0000,0.0000,31.9700,0.0000,0.0000,0.0000,30.4200,0.0000,0.0000,0.0000,30.0000,0.0000,0.0000,0.0000,33.6800,0.0000,0.0000,0.0000,29.0200,0.0000 +000960.SZ,0.0000,0.0000,0.0000,44.8600,0.0000,0.0000,0.0000,16.9700,0.0000,0.0000,0.0000,40.4200,0.0000,0.0000,0.0000,36.3900,0.0000,0.0000,0.0000,61.2900,0.0000 +301066.SZ,0.0000,0.0000,0.0000,35.6700,0.0000,0.0000,0.0000,27.6300,0.0000,0.0000,0.0000,22.2300,0.0000,0.0000,0.0000,25.5000,0.0000,0.0000,0.0000,24.7200,0.0000 +600613.SH,0.0000,0.0000,0.0000,28.2300,0.0000,0.0000,0.0000,14.5400,0.0000,0.0000,0.0000,5.7600,0.0000,0.0000,0.0000,26.8400,0.0000,0.0000,0.0000,23.4900,0.0000 +600568.SH,0.0000,0.0000,0.0000,34.2100,0.0000,0.0000,0.0000,37.6200,0.0000,0.0000,0.0000,41.6100,0.0000,0.0000,0.0000,36.8000,0.0000,0.0000,0.0000,43.3300,0.0000 +603139.SH,0.0000,0.0000,0.0000,57.5300,0.0000,0.0000,0.0000,32.4700,0.0000,0.0000,0.0000,35.6100,0.0000,0.0000,0.0000,53.8600,0.0000,0.0000,0.0000,30.3600,0.0000 +605117.SH,0.0000,76.0800,0.0000,0.0000,0.0000,0.0000,0.0000,68.5200,0.0000,0.0000,0.0000,34.4800,0.0000,0.0000,0.0000,39.3200,0.0000,0.0000,0.0000,42.1700,0.0000 +688281.SH,0.0000,0.0000,0.0000,96.6300,0.0000,93.9800,0.0000,0.0000,0.0000,0.0000,0.0000,90.2100,0.0000,0.0000,0.0000,89.9900,0.0000,0.0000,0.0000,81.0700,0.0000 +301598.SZ,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,29.2300,0.0000,0.0000,0.0000,29.3600,0.0000,0.0000,0.0000,36.7500,0.0000,31.3900,0.0000,20.1200,0.0000 +000603.SZ,0.0000,0.0000,0.0000,38.1700,0.0000,0.0000,0.0000,33.1700,0.0000,0.0000,0.0000,33.0400,0.0000,0.0000,0.0000,39.9100,0.0000,0.0000,0.0000,45.0000,0.0000 +002982.SZ,0.0000,0.0000,0.0000,31.6100,0.0000,0.0000,0.0000,20.8400,0.0000,0.0000,0.0000,24.6500,0.0000,0.0000,0.0000,20.3000,0.0000,0.0000,0.0000,22.8100,0.0000 +836208.BJ,0.0000,0.0000,0.0000,33.7400,0.0000,0.0000,0.0000,21.7000,0.0000,24.1400,0.0000,17.3100,0.0000,0.0000,0.0000,14.4500,0.0000,0.0000,0.0000,14.1300,0.0000 +605567.SH,0.0000,0.0000,0.0000,25.9900,0.0000,0.0000,0.0000,33.9400,0.0000,0.0000,0.0000,25.4600,0.0000,0.0000,0.0000,29.1000,0.0000,0.0000,0.0000,17.7200,0.0000 +603685.SH,0.0000,0.0000,0.0000,34.0900,0.0000,0.0000,0.0000,29.3200,0.0000,0.0000,0.0000,20.3200,0.0000,0.0000,0.0000,32.1000,0.0000,0.0000,0.0000,27.8900,0.0000 +002631.SZ,0.0000,0.0000,0.0000,17.5000,0.0000,0.0000,0.0000,19.7200,0.0000,0.0000,0.0000,15.7700,0.0000,0.0000,0.0000,26.1800,0.0000,0.0000,0.0000,22.0700,0.0000 +000812.SZ,0.0000,0.0000,0.0000,32.9700,0.0000,0.0000,0.0000,39.7900,0.0000,0.0000,0.0000,35.0500,0.0000,0.0000,0.0000,36.8100,0.0000,0.0000,0.0000,44.2800,0.0000 +688558.SH,0.0000,0.0000,0.0000,28.5100,0.0000,0.0000,0.0000,28.7300,0.0000,0.0000,0.0000,32.2800,0.0000,0.0000,0.0000,28.2500,0.0000,0.0000,0.0000,24.8600,0.0000 +002339.SZ,0.0000,0.0000,0.0000,21.1300,0.0000,0.0000,0.0000,17.0500,0.0000,0.0000,0.0000,16.6700,0.0000,0.0000,0.0000,14.5500,0.0000,0.0000,0.0000,10.8000,0.0000 +002205.SZ,0.0000,0.0000,0.0000,35.9600,0.0000,0.0000,0.0000,40.1200,0.0000,0.0000,0.0000,27.9600,0.0000,0.0000,0.0000,27.7000,0.0000,0.0000,0.0000,33.2200,0.0000 +301588.SZ,0.0000,0.0000,0.0000,28.3800,0.0000,0.0000,0.0000,30.6500,0.0000,0.0000,0.0000,37.9900,0.0000,30.2400,0.0000,33.8300,0.0000,0.0000,0.0000,34.2600,0.0000 +688579.SH,0.0000,0.0000,0.0000,18.2900,0.0000,0.0000,0.0000,20.5700,0.0000,0.0000,0.0000,17.6200,0.0000,0.0000,0.0000,16.4700,0.0000,0.0000,0.0000,17.2800,0.0000 +600429.SH,0.0000,0.0000,0.0000,41.6700,0.0000,0.0000,0.0000,41.7800,0.0000,0.0000,0.0000,18.5100,0.0000,0.0000,0.0000,26.6300,0.0000,0.0000,0.0000,45.5200,0.0000 +300800.SZ,0.0000,0.0000,0.0000,20.9000,0.0000,0.0000,0.0000,16.4000,0.0000,0.0000,0.0000,15.9800,0.0000,0.0000,0.0000,12.2600,0.0000,0.0000,0.0000,10.5100,0.0000 +688168.SH,0.0000,0.0000,0.0000,91.7200,0.0000,0.0000,0.0000,80.6500,0.0000,0.0000,0.0000,63.6300,0.0000,0.0000,0.0000,51.8500,0.0000,0.0000,0.0000,78.8800,0.0000 +600166.SH,0.0000,0.0000,0.0000,31.8900,0.0000,0.0000,0.0000,28.4100,0.0000,0.0000,0.0000,27.1800,0.0000,0.0000,0.0000,32.0600,0.0000,0.0000,0.0000,30.7700,0.0000 +002176.SZ,0.0000,0.0000,0.0000,23.9500,0.0000,0.0000,0.0000,17.8600,0.0000,0.0000,0.0000,25.0900,0.0000,0.0000,0.0000,19.8700,0.0000,0.0000,0.0000,25.6000,0.0000 +603777.SH,0.0000,0.0000,0.0000,17.6600,0.0000,0.0000,0.0000,15.9600,0.0000,0.0000,0.0000,15.1900,0.0000,0.0000,0.0000,16.9600,0.0000,0.0000,0.0000,15.0400,0.0000 +301201.SZ,0.0000,0.0000,0.0000,28.2900,0.0000,32.9100,0.0000,40.2000,0.0000,0.0000,0.0000,30.5900,0.0000,0.0000,0.0000,27.7300,0.0000,0.0000,0.0000,30.2700,0.0000 +837242.BJ,0.0000,0.0000,0.0000,39.7700,0.0000,0.0000,0.0000,36.1500,0.0000,0.0000,0.0000,24.0800,0.0000,0.0000,0.0000,29.3700,0.0000,0.0000,0.0000,31.7900,0.0000 +301349.SZ,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,69.4900,0.0000,0.0000,0.0000,52.3500,0.0000,0.0000,0.0000,72.6700,0.0000 +605169.SH,0.0000,0.0000,0.0000,88.9000,0.0000,0.0000,0.0000,75.2500,0.0000,0.0000,0.0000,77.7700,0.0000,0.0000,0.0000,83.0800,0.0000,0.0000,0.0000,82.7100,0.0000 +001322.SZ,0.0000,0.0000,0.0000,21.7000,0.0000,0.0000,0.0000,18.2700,0.0000,0.0000,0.0000,19.0900,0.0000,0.0000,0.0000,18.0700,0.0000,0.0000,0.0000,12.1700,0.0000 +300845.SZ,0.0000,0.0000,0.0000,32.5500,0.0000,0.0000,0.0000,13.6300,0.0000,0.0000,0.0000,11.6800,0.0000,0.0000,0.0000,19.0200,0.0000,0.0000,0.0000,12.9500,0.0000 +603325.SH,0.0000,0.0000,0.0000,58.6000,0.0000,0.0000,0.0000,43.3300,0.0000,0.0000,0.0000,46.8300,0.0000,45.4800,0.0000,37.6500,0.0000,0.0000,0.0000,35.5700,0.0000 +301239.SZ,0.0000,0.0000,0.0000,55.7700,0.0000,0.0000,0.0000,57.5700,0.0000,0.0000,0.0000,54.7800,0.0000,0.0000,0.0000,54.6500,0.0000,0.0000,0.0000,47.8700,0.0000 +688357.SH,0.0000,0.0000,0.0000,30.3500,0.0000,0.0000,0.0000,27.8400,0.0000,0.0000,0.0000,33.5500,0.0000,0.0000,0.0000,32.5800,0.0000,0.0000,0.0000,32.1700,0.0000 +603277.SH,0.0000,0.0000,0.0000,17.2700,0.0000,0.0000,0.0000,22.7900,0.0000,0.0000,0.0000,18.5700,0.0000,0.0000,0.0000,18.1700,0.0000,0.0000,0.0000,20.7200,0.0000 +300358.SZ,0.0000,0.0000,0.0000,10.0000,0.0000,0.0000,0.0000,4.6300,0.0000,0.0000,0.0000,9.1100,0.0000,0.0000,0.0000,10.3400,0.0000,0.0000,0.0000,9.3300,0.0000 +002793.SZ,0.0000,0.0000,0.0000,7.8900,0.0000,0.0000,0.0000,6.4800,0.0000,0.0000,0.0000,8.4100,0.0000,0.0000,0.0000,17.8900,0.0000,0.0000,0.0000,22.6600,0.0000 +603198.SH,0.0000,0.0000,0.0000,19.9200,0.0000,0.0000,0.0000,20.6700,0.0000,0.0000,0.0000,17.8500,0.0000,0.0000,0.0000,18.6700,0.0000,0.0000,0.0000,19.5200,0.0000 +000488.SZ,0.0000,0.0000,0.0000,14.0300,0.0000,0.0000,0.0000,18.6000,0.0000,0.0000,0.0000,20.8400,0.0000,0.0000,0.0000,22.3300,0.0000,0.0000,0.0000,25.0400,0.0000 +300886.SZ,0.0000,0.0000,0.0000,39.2700,0.0000,0.0000,0.0000,41.4200,0.0000,0.0000,0.0000,45.0500,0.0000,0.0000,0.0000,44.8000,0.0000,0.0000,0.0000,42.5700,0.0000 +002886.SZ,0.0000,0.0000,0.0000,23.5600,0.0000,0.0000,0.0000,24.5700,0.0000,0.0000,0.0000,27.1900,0.0000,0.0000,0.0000,26.8500,0.0000,0.0000,0.0000,24.0800,0.0000 +301195.SZ,0.0000,0.0000,0.0000,25.5700,0.0000,0.0000,0.0000,21.4300,0.0000,0.0000,0.0000,18.3200,0.0000,0.0000,0.0000,18.0900,0.0000,0.0000,0.0000,15.9500,0.0000 +002702.SZ,0.0000,0.0000,0.0000,16.8300,0.0000,0.0000,0.0000,16.3900,0.0000,0.0000,0.0000,14.8000,0.0000,0.0000,0.0000,23.7100,0.0000,0.0000,0.0000,27.3100,0.0000 +600736.SH,0.0000,0.0000,0.0000,21.8500,0.0000,0.0000,0.0000,24.1600,0.0000,0.0000,0.0000,24.6400,0.0000,0.0000,0.0000,39.6500,0.0000,0.0000,0.0000,35.1700,0.0000 +688219.SH,0.0000,0.0000,0.0000,29.3500,0.0000,0.0000,0.0000,28.1300,0.0000,0.0000,0.0000,31.8400,0.0000,0.0000,0.0000,38.4100,0.0000,0.0000,0.0000,39.1500,0.0000 +688073.SH,0.0000,0.0000,0.0000,9.9500,0.0000,0.0000,0.0000,8.6200,0.0000,0.0000,0.0000,8.8200,0.0000,0.0000,0.0000,7.3900,0.0000,0.0000,0.0000,5.9200,0.0000 +600651.SH,0.0000,0.0000,0.0000,10.6700,0.0000,0.0000,0.0000,9.6700,0.0000,0.0000,0.0000,16.4900,0.0000,0.0000,0.0000,21.0600,0.0000,0.0000,0.0000,0.0000,0.0000 +002009.SZ,0.0000,0.0000,0.0000,9.3600,0.0000,0.0000,0.0000,9.0400,0.0000,0.0000,0.0000,14.9700,0.0000,0.0000,0.0000,19.6500,0.0000,0.0000,0.0000,20.7000,0.0000 +300161.SZ,0.0000,0.0000,0.0000,7.3200,0.0000,0.0000,0.0000,9.5700,0.0000,0.0000,0.0000,9.0900,0.0000,0.0000,0.0000,15.6300,0.0000,0.0000,0.0000,11.6800,0.0000 +301510.SZ,0.0000,0.0000,0.0000,39.1600,0.0000,0.0000,0.0000,38.9700,0.0000,0.0000,0.0000,38.2300,0.0000,0.0000,0.0000,23.6200,0.0000,0.0000,0.0000,23.9800,0.0000 +002156.SZ,0.0000,0.0000,0.0000,29.3300,0.0000,0.0000,0.0000,23.4400,0.0000,0.0000,0.0000,35.2600,0.0000,0.0000,0.0000,35.3800,0.0000,0.0000,0.0000,26.7600,0.0000 +001206.SZ,0.0000,0.0000,0.0000,44.9800,0.0000,0.0000,0.0000,45.3000,0.0000,0.0000,0.0000,54.9800,0.0000,0.0000,0.0000,50.7100,0.0000,0.0000,0.0000,47.9900,0.0000 +002615.SZ,0.0000,0.0000,0.0000,30.1700,0.0000,0.0000,0.0000,39.7900,0.0000,0.0000,0.0000,33.8500,0.0000,0.0000,0.0000,29.8500,0.0000,0.0000,0.0000,30.5500,0.0000 +688365.SH,0.0000,0.0000,0.0000,69.5600,0.0000,0.0000,0.0000,69.7400,0.0000,0.0000,0.0000,59.4300,0.0000,0.0000,0.0000,59.9900,0.0000,0.0000,0.0000,58.5700,0.0000 +002863.SZ,0.0000,0.0000,0.0000,55.9100,0.0000,0.0000,0.0000,52.2600,0.0000,0.0000,0.0000,54.6800,0.0000,0.0000,0.0000,42.7300,0.0000,0.0000,0.0000,53.9000,0.0000 +002935.SZ,0.0000,0.0000,0.0000,32.5000,0.0000,0.0000,0.0000,33.7100,0.0000,0.0000,0.0000,28.1200,0.0000,0.0000,0.0000,27.1400,0.0000,0.0000,0.0000,24.4900,0.0000 +600792.SH,0.0000,0.0000,0.0000,33.5100,0.0000,0.0000,0.0000,48.0600,0.0000,0.0000,0.0000,47.2300,0.0000,0.0000,0.0000,58.7200,0.0000,0.0000,0.0000,50.7500,0.0000 +600561.SH,0.0000,0.0000,0.0000,86.6500,0.0000,0.0000,0.0000,90.6900,0.0000,0.0000,0.0000,90.5500,0.0000,0.0000,0.0000,94.4300,0.0000,0.0000,0.0000,91.1500,0.0000 +300070.SZ,0.0000,0.0000,0.0000,10.5000,0.0000,0.0000,0.0000,7.4300,0.0000,0.0000,0.0000,15.0000,0.0000,0.0000,0.0000,13.4100,0.0000,0.0000,0.0000,12.9600,0.0000 +300636.SZ,0.0000,0.0000,0.0000,32.2200,0.0000,0.0000,0.0000,29.7600,0.0000,0.0000,0.0000,41.8000,0.0000,0.0000,0.0000,46.9900,0.0000,0.0000,0.0000,40.1800,0.0000 +603297.SH,0.0000,0.0000,0.0000,18.0200,0.0000,0.0000,0.0000,19.6300,0.0000,0.0000,0.0000,17.5700,0.0000,0.0000,0.0000,17.3300,0.0000,0.0000,0.0000,17.8400,0.0000 +300227.SZ,0.0000,0.0000,0.0000,12.9600,0.0000,0.0000,0.0000,11.5300,0.0000,0.0000,0.0000,9.0800,0.0000,0.0000,0.0000,12.4300,0.0000,0.0000,0.0000,12.9900,0.0000 +688343.SH,0.0000,0.0000,0.0000,40.0300,0.0000,0.0000,0.0000,37.6400,0.0000,34.9100,0.0000,30.1500,0.0000,0.0000,0.0000,34.3000,0.0000,0.0000,0.0000,31.4000,0.0000 +301076.SZ,0.0000,0.0000,0.0000,37.3000,0.0000,0.0000,0.0000,58.6500,0.0000,0.0000,0.0000,69.4700,0.0000,0.0000,0.0000,48.7000,0.0000,0.0000,0.0000,43.6200,0.0000 +002726.SZ,0.0000,0.0000,0.0000,17.7600,0.0000,0.0000,0.0000,20.9700,0.0000,0.0000,0.0000,28.3600,0.0000,0.0000,0.0000,29.7700,0.0000,0.0000,0.0000,37.3300,0.0000 +603856.SH,0.0000,0.0000,0.0000,40.9700,0.0000,0.0000,0.0000,33.9900,0.0000,0.0000,0.0000,43.1600,0.0000,0.0000,0.0000,47.0100,0.0000,0.0000,0.0000,41.7500,0.0000 +688355.SH,0.0000,0.0000,0.0000,55.1700,0.0000,0.0000,0.0000,51.0300,0.0000,0.0000,0.0000,39.9900,0.0000,0.0000,0.0000,44.8200,0.0000,0.0000,0.0000,50.0700,0.0000 +600955.SH,0.0000,0.0000,0.0000,27.0200,0.0000,0.0000,0.0000,21.8700,0.0000,0.0000,0.0000,17.6100,0.0000,0.0000,0.0000,18.7600,0.0000,0.0000,0.0000,24.0700,0.0000 +000681.SZ,0.0000,0.0000,0.0000,52.7600,0.0000,0.0000,0.0000,41.3500,0.0000,0.0000,0.0000,100.0000,0.0000,0.0000,0.0000,23.1400,0.0000,0.0000,0.0000,18.1900,0.0000 +000576.SZ,0.0000,0.0000,0.0000,51.2800,0.0000,0.0000,0.0000,73.1700,0.0000,0.0000,0.0000,42.6800,0.0000,0.0000,0.0000,47.2000,0.0000,0.0000,0.0000,55.8500,0.0000 +600880.SH,0.0000,0.0000,0.0000,11.1800,0.0000,0.0000,0.0000,16.2900,0.0000,0.0000,0.0000,21.8800,0.0000,0.0000,0.0000,33.9400,0.0000,0.0000,0.0000,50.9400,0.0000 +688257.SH,0.0000,0.0000,0.0000,52.6800,0.0000,0.0000,0.0000,45.9500,0.0000,0.0000,0.0000,37.1000,0.0000,0.0000,0.0000,41.8100,0.0000,0.0000,0.0000,45.9700,0.0000 +600862.SH,0.0000,0.0000,0.0000,66.8200,0.0000,0.0000,0.0000,66.5100,0.0000,0.0000,0.0000,74.6900,0.0000,0.0000,0.0000,67.3900,0.0000,0.0000,0.0000,68.1400,0.0000 +600712.SH,0.0000,0.0000,0.0000,13.5600,0.0000,0.0000,0.0000,24.6100,0.0000,0.0000,0.0000,28.7500,0.0000,0.0000,0.0000,28.1500,0.0000,0.0000,0.0000,36.1300,0.0000 +605001.SH,0.0000,0.0000,0.0000,24.3800,0.0000,0.0000,0.0000,13.8600,0.0000,0.0000,0.0000,16.8900,0.0000,0.0000,0.0000,9.9100,0.0000,0.0000,0.0000,10.6900,0.0000 +301165.SZ,0.0000,0.0000,0.0000,58.4700,0.0000,0.0000,0.0000,61.6300,0.0000,76.5300,0.0000,71.9900,0.0000,0.0000,0.0000,62.9400,0.0000,0.0000,0.0000,54.9300,0.0000 +300318.SZ,0.0000,0.0000,0.0000,19.5100,0.0000,0.0000,0.0000,15.7400,0.0000,0.0000,0.0000,22.5900,0.0000,0.0000,0.0000,9.9600,0.0000,0.0000,0.0000,10.3100,0.0000 +300514.SZ,0.0000,0.0000,0.0000,63.6300,0.0000,0.0000,0.0000,51.6400,0.0000,0.0000,0.0000,47.9300,0.0000,0.0000,0.0000,46.9200,0.0000,0.0000,0.0000,38.2200,0.0000 +603117.SH,0.0000,0.0000,0.0000,30.9100,0.0000,0.0000,0.0000,29.3900,0.0000,0.0000,0.0000,27.1300,0.0000,0.0000,0.0000,29.4700,0.0000,0.0000,0.0000,37.8800,0.0000 +301298.SZ,0.0000,0.0000,0.0000,50.2300,0.0000,0.0000,0.0000,41.6600,0.0000,0.0000,0.0000,40.0100,0.0000,0.0000,0.0000,37.7800,0.0000,0.0000,0.0000,43.3300,0.0000 +000925.SZ,0.0000,0.0000,0.0000,41.5300,0.0000,0.0000,0.0000,44.3200,0.0000,0.0000,0.0000,30.5100,0.0000,0.0000,0.0000,32.7900,0.0000,0.0000,0.0000,31.3200,0.0000 +002843.SZ,0.0000,0.0000,0.0000,53.4400,0.0000,0.0000,0.0000,57.7600,0.0000,0.0000,0.0000,39.6000,0.0000,0.0000,0.0000,28.9200,0.0000,0.0000,0.0000,30.2700,0.0000 +002107.SZ,0.0000,0.0000,0.0000,63.8200,0.0000,0.0000,0.0000,62.4100,0.0000,0.0000,0.0000,55.0900,0.0000,0.0000,0.0000,53.3400,0.0000,0.0000,0.0000,41.8400,0.0000 +601179.SH,0.0000,0.0000,0.0000,9.2200,0.0000,0.0000,0.0000,16.0200,0.0000,0.0000,0.0000,9.0900,0.0000,0.0000,0.0000,14.6800,0.0000,0.0000,0.0000,17.2100,0.0000 +002416.SZ,0.0000,0.0000,0.0000,69.6700,0.0000,0.0000,0.0000,71.0400,0.0000,0.0000,0.0000,72.9800,0.0000,0.0000,0.0000,73.5200,0.0000,0.0000,0.0000,82.8500,0.0000 +601012.SH,0.0000,0.0000,0.0000,28.0900,0.0000,0.0000,0.0000,28.8100,0.0000,0.0000,0.0000,50.6800,0.0000,0.0000,0.0000,35.9300,0.0000,0.0000,0.0000,27.1800,0.0000 +300613.SZ,0.0000,0.0000,0.0000,85.5100,0.0000,0.0000,0.0000,82.7700,0.0000,0.0000,0.0000,86.1700,0.0000,0.0000,0.0000,79.6000,0.0000,0.0000,0.0000,80.5800,0.0000 +601008.SH,0.0000,0.0000,0.0000,34.4300,0.0000,0.0000,0.0000,33.1200,0.0000,0.0000,0.0000,42.4000,0.0000,0.0000,0.0000,55.8100,0.0000,0.0000,0.0000,49.8200,0.0000 +300722.SZ,0.0000,0.0000,0.0000,35.5400,0.0000,0.0000,0.0000,29.0200,0.0000,0.0000,0.0000,35.2600,0.0000,0.0000,0.0000,30.5300,0.0000,0.0000,0.0000,42.2500,0.0000 +002273.SZ,0.0000,0.0000,0.0000,54.2900,0.0000,0.0000,0.0000,45.1500,0.0000,0.0000,0.0000,54.2600,0.0000,0.0000,0.0000,51.3700,0.0000,0.0000,0.0000,49.6700,0.0000 +301045.SZ,0.0000,0.0000,0.0000,63.8700,0.0000,0.0000,0.0000,64.3700,0.0000,0.0000,0.0000,67.3500,0.0000,0.0000,0.0000,78.9000,0.0000,0.0000,0.0000,67.4900,0.0000 +688530.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,69.4800,0.0000,0.0000,0.0000,83.1500,0.0000,0.0000,0.0000,79.8300,0.0000,0.0000,0.0000,69.9400,0.0000 +000060.SZ,0.0000,0.0000,0.0000,41.4600,0.0000,0.0000,0.0000,35.2000,0.0000,0.0000,0.0000,41.2400,0.0000,0.0000,0.0000,34.3200,0.0000,0.0000,0.0000,35.7000,0.0000 +002285.SZ,0.0000,0.0000,0.0000,6.5100,0.0000,0.0000,0.0000,7.6300,0.0000,0.0000,0.0000,6.1000,0.0000,0.0000,0.0000,5.7500,0.0000,0.0000,0.0000,8.0100,0.0000 +002977.SZ,0.0000,0.0000,0.0000,58.7600,0.0000,0.0000,0.0000,83.0800,0.0000,0.0000,0.0000,55.0400,0.0000,0.0000,0.0000,74.0200,0.0000,0.0000,0.0000,63.6700,0.0000 +300847.SZ,0.0000,0.0000,0.0000,47.8500,0.0000,0.0000,0.0000,35.2700,0.0000,0.0000,0.0000,30.2200,0.0000,0.0000,0.0000,24.5800,0.0000,0.0000,0.0000,32.1400,0.0000 +000935.SZ,0.0000,0.0000,0.0000,51.0300,0.0000,0.0000,0.0000,72.7400,0.0000,0.0000,0.0000,64.8500,0.0000,0.0000,0.0000,73.2200,0.0000,0.0000,0.0000,53.8800,0.0000 +603132.SH,0.0000,0.0000,0.0000,35.8700,0.0000,0.0000,0.0000,35.5100,0.0000,0.0000,0.0000,37.8000,0.0000,0.0000,0.0000,40.9200,0.0000,0.0000,0.0000,52.0600,0.0000 +603888.SH,0.0000,0.0000,0.0000,10.5800,0.0000,0.0000,0.0000,9.1000,0.0000,0.0000,0.0000,10.0000,0.0000,0.0000,0.0000,9.3000,0.0000,0.0000,0.0000,8.7400,0.0000 +600467.SH,0.0000,0.0000,0.0000,17.2700,0.0000,0.0000,0.0000,10.9100,0.0000,0.0000,0.0000,30.2900,0.0000,0.0000,0.0000,5.9800,0.0000,0.0000,0.0000,21.8800,0.0000 +300582.SZ,0.0000,0.0000,0.0000,24.5400,0.0000,0.0000,0.0000,22.5200,0.0000,0.0000,0.0000,25.3500,0.0000,0.0000,0.0000,46.4800,0.0000,0.0000,0.0000,38.2700,0.0000 +002133.SZ,0.0000,0.0000,0.0000,46.6500,0.0000,0.0000,0.0000,29.7300,0.0000,0.0000,0.0000,43.5000,0.0000,0.0000,0.0000,18.9000,0.0000,0.0000,0.0000,35.7100,0.0000 +601099.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +688038.SH,0.0000,0.0000,0.0000,34.7300,0.0000,0.0000,0.0000,27.3300,0.0000,0.0000,0.0000,23.4500,0.0000,0.0000,0.0000,26.8700,0.0000,0.0000,0.0000,26.7200,0.0000 +301559.SZ,0.0000,0.0000,0.0000,35.2400,0.0000,0.0000,0.0000,52.9300,0.0000,0.0000,0.0000,57.4900,0.0000,0.0000,0.0000,66.0800,0.0000,0.0000,0.0000,68.4400,0.0000 +600346.SH,0.0000,0.0000,0.0000,31.1800,0.0000,0.0000,0.0000,33.4800,0.0000,0.0000,0.0000,34.9600,0.0000,0.0000,0.0000,28.2300,0.0000,0.0000,0.0000,28.3800,0.0000 +300607.SZ,0.0000,0.0000,0.0000,12.9800,0.0000,0.0000,0.0000,11.2600,0.0000,0.0000,0.0000,7.9600,0.0000,0.0000,0.0000,6.7800,0.0000,0.0000,0.0000,12.0300,0.0000 +603041.SH,0.0000,0.0000,0.0000,68.4000,0.0000,0.0000,0.0000,60.5800,0.0000,0.0000,0.0000,53.3000,0.0000,0.0000,0.0000,61.4100,0.0000,0.0000,0.0000,55.4500,0.0000 +300343.SZ,0.0000,0.0000,0.0000,26.6300,0.0000,0.0000,0.0000,33.7700,0.0000,0.0000,0.0000,27.8500,0.0000,0.0000,0.0000,22.7800,0.0000,0.0000,0.0000,37.4100,0.0000 +002787.SZ,0.0000,0.0000,0.0000,53.6700,0.0000,0.0000,0.0000,47.2800,0.0000,0.0000,0.0000,37.3100,0.0000,0.0000,0.0000,46.3800,0.0000,0.0000,0.0000,45.6900,0.0000 +688552.SH,0.0000,0.0000,0.0000,39.8500,0.0000,0.0000,0.0000,33.3400,0.0000,0.0000,0.0000,36.9300,0.0000,0.0000,0.0000,56.4700,0.0000,0.0000,0.0000,31.1500,0.0000 +605258.SH,0.0000,0.0000,0.0000,25.0600,0.0000,0.0000,0.0000,25.8900,0.0000,0.0000,0.0000,26.6300,0.0000,0.0000,0.0000,26.7700,0.0000,0.0000,0.0000,33.2000,0.0000 +600664.SH,0.0000,0.0000,0.0000,14.1000,0.0000,0.0000,0.0000,15.1600,0.0000,0.0000,0.0000,15.0200,0.0000,0.0000,0.0000,15.8000,0.0000,0.0000,0.0000,15.0200,0.0000 +002395.SZ,0.0000,0.0000,0.0000,79.1400,0.0000,0.0000,0.0000,72.7600,0.0000,0.0000,0.0000,71.0800,0.0000,0.0000,0.0000,68.6700,0.0000,0.0000,0.0000,73.6500,0.0000 +300752.SZ,0.0000,0.0000,0.0000,40.3400,0.0000,0.0000,0.0000,30.5400,0.0000,0.0000,0.0000,35.9100,0.0000,0.0000,0.0000,30.4100,0.0000,0.0000,0.0000,28.7600,0.0000 +601689.SH,0.0000,0.0000,0.0000,9.2400,0.0000,0.0000,0.0000,18.1600,0.0000,0.0000,0.0000,22.0400,0.0000,0.0000,0.0000,24.9500,0.0000,0.0000,0.0000,22.6000,0.0000 +000716.SZ,0.0000,0.0000,0.0000,42.9400,0.0000,0.0000,0.0000,50.8600,0.0000,0.0000,0.0000,44.3700,0.0000,0.0000,0.0000,44.4300,0.0000,0.0000,0.0000,37.1000,0.0000 +600763.SH,0.0000,0.0000,0.0000,9.8600,0.0000,0.0000,0.0000,9.8600,0.0000,0.0000,0.0000,10.1500,0.0000,0.0000,0.0000,8.7300,0.0000,0.0000,0.0000,9.8700,0.0000 +301039.SZ,0.0000,0.0000,0.0000,29.0600,0.0000,0.0000,0.0000,24.0200,0.0000,0.0000,0.0000,13.1100,0.0000,0.0000,0.0000,12.9300,0.0000,0.0000,0.0000,8.5900,0.0000 +002191.SZ,0.0000,0.0000,0.0000,16.7300,0.0000,0.0000,0.0000,16.8600,0.0000,0.0000,0.0000,24.0200,0.0000,0.0000,0.0000,10.9700,0.0000,0.0000,0.0000,10.7300,0.0000 +600188.SH,0.0000,0.0000,0.0000,18.8000,0.0000,0.0000,0.0000,2.2800,0.0000,0.0000,0.0000,13.1000,0.0000,0.0000,0.0000,20.8000,0.0000,0.0000,0.0000,18.5000,0.0000 +688478.SH,0.0000,0.0000,0.0000,40.2100,0.0000,0.0000,0.0000,28.4600,0.0000,30.1400,0.0000,0.0000,0.0000,0.0000,0.0000,26.9500,0.0000,0.0000,0.0000,25.9100,0.0000 +300955.SZ,0.0000,0.0000,0.0000,21.7800,0.0000,0.0000,0.0000,22.1800,0.0000,0.0000,0.0000,23.6100,0.0000,0.0000,0.0000,21.0300,0.0000,0.0000,0.0000,21.1900,0.0000 +603032.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,49.1200,0.0000,0.0000,0.0000,44.4600,0.0000,0.0000,0.0000,34.0000,0.0000,0.0000,0.0000,21.4000,0.0000 +300674.SZ,0.0000,0.0000,0.0000,62.7300,0.0000,0.0000,0.0000,56.8900,0.0000,0.0000,0.0000,68.1900,0.0000,0.0000,0.0000,79.8200,0.0000,0.0000,0.0000,41.7900,0.0000 +605058.SH,0.0000,0.0000,0.0000,74.8000,0.0000,0.0000,0.0000,79.8400,0.0000,0.0000,0.0000,74.1400,0.0000,0.0000,0.0000,70.7300,0.0000,0.0000,0.0000,69.3200,0.0000 +603648.SH,0.0000,0.0000,0.0000,22.9500,0.0000,0.0000,0.0000,22.5600,0.0000,0.0000,0.0000,21.9300,0.0000,0.0000,0.0000,20.8700,0.0000,0.0000,0.0000,12.0600,0.0000 +430510.BJ,0.0000,0.0000,0.0000,46.7700,0.0000,0.0000,0.0000,43.4200,0.0000,0.0000,0.0000,40.9600,0.0000,0.0000,0.0000,47.2300,0.0000,0.0000,0.0000,55.1900,0.0000 +300627.SZ,0.0000,0.0000,0.0000,27.8400,0.0000,0.0000,0.0000,23.2400,0.0000,0.0000,0.0000,16.9900,0.0000,0.0000,0.0000,21.0000,0.0000,0.0000,0.0000,17.9500,0.0000 +301355.SZ,0.0000,0.0000,0.0000,34.4700,0.0000,0.0000,0.0000,40.4400,0.0000,0.0000,0.0000,40.3500,0.0000,0.0000,0.0000,34.8100,0.0000,0.0000,0.0000,26.7100,0.0000 +688586.SH,0.0000,0.0000,0.0000,54.3100,0.0000,0.0000,0.0000,57.9300,0.0000,0.0000,0.0000,54.9400,0.0000,0.0000,0.0000,54.8200,0.0000,0.0000,0.0000,61.3200,0.0000 +301028.SZ,0.0000,0.0000,0.0000,34.8400,0.0000,0.0000,0.0000,34.0300,0.0000,0.0000,0.0000,33.9200,0.0000,0.0000,0.0000,37.2500,0.0000,0.0000,0.0000,37.0300,0.0000 +300456.SZ,0.0000,0.0000,0.0000,24.0500,0.0000,0.0000,0.0000,22.4400,0.0000,0.0000,0.0000,26.6800,0.0000,0.0000,0.0000,22.9100,0.0000,0.0000,0.0000,28.2700,0.0000 +301207.SZ,0.0000,0.0000,0.0000,41.5400,0.0000,33.0400,0.0000,40.0600,0.0000,0.0000,0.0000,30.1500,0.0000,0.0000,0.0000,33.5000,0.0000,0.0000,0.0000,33.5900,0.0000 +002965.SZ,0.0000,0.0000,0.0000,14.5200,0.0000,0.0000,0.0000,14.0500,0.0000,0.0000,0.0000,17.3000,0.0000,0.0000,0.0000,16.8800,0.0000,0.0000,0.0000,17.6700,0.0000 +603087.SH,0.0000,0.0000,0.0000,48.3100,0.0000,0.0000,0.0000,49.7800,0.0000,0.0000,0.0000,51.9300,0.0000,0.0000,0.0000,41.9000,0.0000,0.0000,0.0000,38.4700,0.0000 +688328.SH,0.0000,0.0000,0.0000,18.9900,0.0000,0.0000,0.0000,23.0800,0.0000,0.0000,0.0000,17.8900,0.0000,0.0000,0.0000,16.0500,0.0000,0.0000,0.0000,18.2200,0.0000 +603080.SH,0.0000,0.0000,0.0000,66.7000,0.0000,0.0000,0.0000,66.7600,0.0000,0.0000,0.0000,65.1700,0.0000,0.0000,0.0000,48.5200,0.0000,0.0000,0.0000,62.9100,0.0000 +002099.SZ,0.0000,0.0000,0.0000,17.4300,0.0000,0.0000,0.0000,14.5800,0.0000,0.0000,0.0000,20.1800,0.0000,0.0000,0.0000,20.8300,0.0000,0.0000,0.0000,21.6700,0.0000 +002415.SZ,0.0000,0.0000,0.0000,23.6400,0.0000,0.0000,0.0000,17.8100,0.0000,0.0000,0.0000,17.5800,0.0000,0.0000,0.0000,15.8600,0.0000,0.0000,0.0000,12.7900,0.0000 +000016.SZ,0.0000,0.0000,0.0000,46.7100,0.0000,0.0000,0.0000,35.1500,0.0000,0.0000,0.0000,39.3500,0.0000,0.0000,0.0000,31.9600,0.0000,0.0000,0.0000,31.8500,0.0000 +603085.SH,0.0000,0.0000,0.0000,13.7100,0.0000,0.0000,0.0000,16.7100,0.0000,0.0000,0.0000,14.9900,0.0000,0.0000,0.0000,15.8000,0.0000,0.0000,0.0000,15.4700,0.0000 +600682.SH,0.0000,0.0000,0.0000,14.6200,0.0000,0.0000,0.0000,16.4900,0.0000,0.0000,0.0000,11.3800,0.0000,0.0000,0.0000,15.1800,0.0000,0.0000,0.0000,16.3000,0.0000 +002968.SZ,0.0000,0.0000,0.0000,17.2800,0.0000,0.0000,0.0000,13.6200,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,18.0500,0.0000,0.0000,0.0000,11.5900,0.0000 +603311.SH,0.0000,0.0000,0.0000,23.4500,0.0000,0.0000,0.0000,19.8000,0.0000,0.0000,0.0000,20.1000,0.0000,0.0000,0.0000,18.3900,0.0000,0.0000,0.0000,14.1100,0.0000 +688368.SH,0.0000,0.0000,0.0000,55.3800,0.0000,0.0000,0.0000,49.3000,0.0000,0.0000,0.0000,58.5600,0.0000,0.0000,0.0000,58.3500,0.0000,0.0000,0.0000,49.3900,0.0000 +300993.SZ,0.0000,0.0000,0.0000,30.0800,0.0000,0.0000,0.0000,30.2300,0.0000,0.0000,0.0000,28.9300,0.0000,0.0000,0.0000,28.9000,0.0000,0.0000,0.0000,29.7000,0.0000 +600222.SH,0.0000,0.0000,0.0000,12.6800,0.0000,0.0000,0.0000,17.9500,0.0000,0.0000,0.0000,27.2000,0.0000,0.0000,0.0000,30.9700,0.0000,0.0000,0.0000,28.6000,0.0000 +301456.SZ,0.0000,0.0000,0.0000,30.3900,0.0000,0.0000,0.0000,27.5100,0.0000,0.0000,0.0000,23.7900,0.0000,0.0000,0.0000,23.4800,0.0000,0.0000,0.0000,22.5800,0.0000 +301050.SZ,0.0000,0.0000,0.0000,53.0400,0.0000,0.0000,0.0000,50.8500,0.0000,0.0000,0.0000,51.9600,0.0000,0.0000,0.0000,49.4000,0.0000,0.0000,0.0000,80.8900,0.0000 +002196.SZ,0.0000,0.0000,0.0000,19.3400,0.0000,0.0000,0.0000,25.3100,0.0000,0.0000,0.0000,30.5100,0.0000,0.0000,0.0000,40.4300,0.0000,0.0000,0.0000,32.3500,0.0000 +603788.SH,0.0000,0.0000,0.0000,18.8500,0.0000,0.0000,0.0000,18.0300,0.0000,0.0000,0.0000,17.6800,0.0000,0.0000,0.0000,15.6300,0.0000,0.0000,0.0000,18.8900,0.0000 +600699.SH,0.0000,0.0000,0.0000,8.0000,0.0000,0.0000,0.0000,7.0000,0.0000,0.0000,0.0000,9.0000,0.0000,0.0000,0.0000,8.0000,0.0000,0.0000,0.0000,8.0000,0.0000 +001215.SZ,0.0000,0.0000,0.0000,49.1000,0.0000,0.0000,0.0000,48.2700,0.0000,0.0000,0.0000,50.9800,0.0000,0.0000,0.0000,44.5500,0.0000,0.0000,0.0000,42.8700,0.0000 +300940.SZ,0.0000,0.0000,0.0000,41.3200,0.0000,0.0000,0.0000,35.4900,0.0000,0.0000,0.0000,35.6700,0.0000,0.0000,0.0000,36.9000,0.0000,0.0000,0.0000,46.2000,0.0000 +688390.SH,0.0000,0.0000,0.0000,17.4400,0.0000,0.0000,0.0000,22.2000,0.0000,0.0000,0.0000,28.7200,0.0000,0.0000,0.0000,26.8500,0.0000,0.0000,0.0000,18.5600,0.0000 +300978.SZ,0.0000,25.6000,0.0000,25.3900,0.0000,0.0000,0.0000,21.3800,0.0000,0.0000,0.0000,16.8900,0.0000,0.0000,0.0000,14.9600,0.0000,0.0000,0.0000,13.8500,0.0000 +300105.SZ,0.0000,0.0000,0.0000,17.4500,0.0000,0.0000,0.0000,21.1300,0.0000,0.0000,0.0000,18.1000,0.0000,0.0000,0.0000,24.7300,0.0000,0.0000,0.0000,28.7000,0.0000 +002531.SZ,0.0000,0.0000,0.0000,31.0900,0.0000,0.0000,0.0000,37.2500,0.0000,0.0000,0.0000,30.9900,0.0000,0.0000,0.0000,26.1200,0.0000,0.0000,0.0000,21.3000,0.0000 +300987.SZ,0.0000,0.0000,0.0000,41.5900,0.0000,0.0000,0.0000,38.3600,0.0000,0.0000,0.0000,37.4100,0.0000,0.0000,0.0000,42.7400,0.0000,0.0000,0.0000,42.2700,0.0000 +301505.SZ,0.0000,0.0000,0.0000,13.7200,0.0000,0.0000,0.0000,15.4200,0.0000,0.0000,0.0000,13.5800,0.0000,0.0000,0.0000,11.9900,0.0000,0.0000,0.0000,15.2700,0.0000 +300234.SZ,0.0000,0.0000,0.0000,37.7100,0.0000,0.0000,0.0000,39.3600,0.0000,0.0000,0.0000,41.0100,0.0000,0.0000,0.0000,34.2100,0.0000,0.0000,0.0000,38.3000,0.0000 +002838.SZ,0.0000,0.0000,0.0000,41.8700,0.0000,0.0000,0.0000,29.9400,0.0000,0.0000,0.0000,28.9900,0.0000,0.0000,0.0000,26.9400,0.0000,0.0000,0.0000,31.4500,0.0000 +301551.SZ,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,53.8200,0.0000,0.0000,0.0000,53.8700,0.0000,0.0000,0.0000,52.8600,0.0000,0.0000,0.0000,62.6600,0.0000 +300929.SZ,0.0000,0.0000,0.0000,17.9800,0.0000,0.0000,0.0000,33.0500,0.0000,0.0000,0.0000,25.6300,0.0000,0.0000,0.0000,23.4100,0.0000,0.0000,0.0000,21.3600,0.0000 +300257.SZ,0.0000,0.0000,0.0000,23.7300,0.0000,0.0000,0.0000,20.0700,0.0000,0.0000,0.0000,16.5600,0.0000,0.0000,0.0000,12.7500,0.0000,0.0000,0.0000,12.4800,0.0000 +301391.SZ,0.0000,0.0000,0.0000,58.9100,0.0000,0.0000,0.0000,61.9100,0.0000,62.2800,0.0000,62.3800,0.0000,0.0000,0.0000,59.1300,0.0000,0.0000,0.0000,63.1500,0.0000 +301133.SZ,0.0000,0.0000,0.0000,45.9700,0.0000,80.3400,0.0000,43.5800,0.0000,0.0000,0.0000,46.5400,0.0000,0.0000,0.0000,44.8500,0.0000,0.0000,0.0000,42.3900,0.0000 +301362.SZ,0.0000,0.0000,0.0000,19.9500,0.0000,0.0000,0.0000,15.8100,0.0000,0.0000,0.0000,15.0700,0.0000,0.0000,0.0000,12.8000,0.0000,0.0000,0.0000,11.9800,0.0000 +300221.SZ,0.0000,0.0000,0.0000,17.6300,0.0000,0.0000,0.0000,17.7700,0.0000,0.0000,0.0000,18.9000,0.0000,0.0000,0.0000,19.0400,0.0000,0.0000,0.0000,18.1900,0.0000 +301580.SZ,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,55.7300,0.0000,0.0000,0.0000,60.8300,0.0000,0.0000,0.0000,61.4500,0.0000,0.0000,0.0000,65.0300,0.0000 +603229.SH,0.0000,0.0000,0.0000,27.1800,0.0000,0.0000,0.0000,28.9400,0.0000,0.0000,0.0000,21.8800,0.0000,0.0000,0.0000,18.7200,0.0000,0.0000,0.0000,21.6500,0.0000 +600733.SH,0.0000,0.0000,0.0000,28.1200,0.0000,0.0000,0.0000,41.6700,0.0000,0.0000,0.0000,53.0400,0.0000,0.0000,0.0000,67.4400,0.0000,0.0000,0.0000,38.1100,0.0000 +601700.SH,0.0000,0.0000,0.0000,21.5400,0.0000,0.0000,0.0000,25.8400,0.0000,0.0000,0.0000,30.3300,0.0000,0.0000,0.0000,27.5700,0.0000,0.0000,0.0000,33.8500,0.0000 +300982.SZ,0.0000,20.2800,0.0000,0.0000,0.0000,0.0000,0.0000,32.5800,0.0000,0.0000,0.0000,32.4600,0.0000,0.0000,0.0000,18.8400,0.0000,0.0000,0.0000,19.8700,0.0000 +603639.SH,0.0000,0.0000,0.0000,23.8800,0.0000,0.0000,0.0000,21.5800,0.0000,0.0000,0.0000,20.7400,0.0000,0.0000,0.0000,17.2900,0.0000,0.0000,0.0000,15.9800,0.0000 +688026.SH,0.0000,0.0000,0.0000,39.8000,0.0000,0.0000,0.0000,48.8700,0.0000,0.0000,0.0000,45.2700,0.0000,0.0000,0.0000,45.3200,0.0000,0.0000,0.0000,56.7100,0.0000 +002003.SZ,0.0000,0.0000,0.0000,20.4500,0.0000,0.0000,0.0000,26.5300,0.0000,0.0000,0.0000,23.4700,0.0000,0.0000,0.0000,22.5700,0.0000,0.0000,0.0000,23.4800,0.0000 +002960.SZ,0.0000,0.0000,0.0000,29.1500,0.0000,0.0000,0.0000,29.9500,0.0000,0.0000,0.0000,27.8800,0.0000,0.0000,0.0000,30.3700,0.0000,0.0000,0.0000,35.8700,0.0000 +002397.SZ,0.0000,0.0000,0.0000,20.3900,0.0000,0.0000,0.0000,24.3700,0.0000,0.0000,0.0000,31.3500,0.0000,0.0000,0.0000,27.6300,0.0000,0.0000,0.0000,16.4600,0.0000 +688031.SH,0.0000,0.0000,0.0000,60.5900,0.0000,0.0000,0.0000,48.8900,0.0000,0.0000,0.0000,44.1500,0.0000,0.0000,0.0000,43.1800,0.0000,0.0000,0.0000,39.0600,0.0000 +603153.SH,0.0000,0.0000,0.0000,28.2300,0.0000,0.0000,0.0000,0.0000,0.0000,24.9600,0.0000,20.9100,0.0000,0.0000,0.0000,17.8100,0.0000,0.0000,0.0000,16.9300,0.0000 +301508.SZ,0.0000,0.0000,0.0000,49.9600,0.0000,0.0000,0.0000,38.9100,0.0000,0.0000,0.0000,37.3500,0.0000,43.7400,0.0000,33.6100,0.0000,0.0000,0.0000,31.6200,0.0000 +600057.SH,0.0000,0.0000,0.0000,21.2500,0.0000,0.0000,0.0000,20.9900,0.0000,0.0000,0.0000,18.3400,0.0000,0.0000,0.0000,18.4700,0.0000,0.0000,0.0000,9.0200,0.0000 +300639.SZ,0.0000,0.0000,0.0000,31.8100,0.0000,0.0000,0.0000,31.4600,0.0000,0.0000,0.0000,30.9100,0.0000,0.0000,0.0000,15.7100,0.0000,0.0000,0.0000,8.1700,0.0000 +002317.SZ,0.0000,0.0000,0.0000,18.1000,0.0000,0.0000,0.0000,17.9200,0.0000,0.0000,0.0000,19.6700,0.0000,0.0000,0.0000,21.9800,0.0000,0.0000,0.0000,22.1600,0.0000 +000155.SZ,0.0000,0.0000,0.0000,59.7700,0.0000,0.0000,0.0000,76.3300,0.0000,0.0000,0.0000,37.3400,0.0000,0.0000,0.0000,61.7100,0.0000,0.0000,0.0000,63.3600,0.0000 +301098.SZ,0.0000,0.0000,0.0000,8.7200,0.0000,11.2800,0.0000,6.8600,0.0000,0.0000,0.0000,10.3400,0.0000,0.0000,0.0000,11.6900,0.0000,0.0000,0.0000,12.4500,0.0000 +688479.SH,0.0000,0.0000,0.0000,50.6200,0.0000,0.0000,0.0000,41.5000,0.0000,0.0000,0.0000,44.1200,0.0000,0.0000,0.0000,47.6600,0.0000,0.0000,0.0000,41.5300,0.0000 +002623.SZ,0.0000,0.0000,0.0000,51.0500,0.0000,0.0000,0.0000,66.4600,0.0000,0.0000,0.0000,83.1200,0.0000,0.0000,0.0000,75.0400,0.0000,0.0000,0.0000,69.8200,0.0000 +603312.SH,0.0000,0.0000,0.0000,70.6500,0.0000,0.0000,0.0000,68.8500,0.0000,0.0000,0.0000,66.4600,0.0000,67.4700,0.0000,55.1300,0.0000,0.0000,0.0000,51.0700,0.0000 +301291.SZ,0.0000,0.0000,0.0000,22.1700,0.0000,0.0000,0.0000,26.1000,0.0000,0.0000,0.0000,25.8200,0.0000,0.0000,0.0000,20.6800,0.0000,0.0000,0.0000,18.9200,0.0000 +000722.SZ,0.0000,0.0000,0.0000,94.0000,0.0000,0.0000,0.0000,96.0000,0.0000,0.0000,0.0000,93.0500,0.0000,0.0000,0.0000,77.2800,0.0000,0.0000,0.0000,70.6500,0.0000 +002961.SZ,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +300305.SZ,0.0000,0.0000,0.0000,87.6500,0.0000,0.0000,0.0000,85.8500,0.0000,0.0000,0.0000,72.8300,0.0000,0.0000,0.0000,82.4300,0.0000,0.0000,0.0000,81.8100,0.0000 +603717.SH,0.0000,0.0000,0.0000,22.8600,0.0000,0.0000,0.0000,12.3900,0.0000,0.0000,0.0000,21.8300,0.0000,0.0000,0.0000,23.8100,0.0000,0.0000,0.0000,17.3700,0.0000 +301167.SZ,0.0000,0.0000,0.0000,49.8600,0.0000,48.0500,0.0000,41.0100,0.0000,0.0000,0.0000,54.3700,0.0000,0.0000,0.0000,59.2600,0.0000,0.0000,0.0000,15.0700,0.0000 +300509.SZ,0.0000,0.0000,0.0000,15.3200,0.0000,0.0000,0.0000,15.5300,0.0000,0.0000,0.0000,11.7000,0.0000,0.0000,0.0000,14.1200,0.0000,0.0000,0.0000,18.3900,0.0000 +603123.SH,0.0000,0.0000,0.0000,19.7500,0.0000,0.0000,0.0000,17.7400,0.0000,0.0000,0.0000,23.3300,0.0000,0.0000,0.0000,14.4900,0.0000,0.0000,0.0000,11.0200,0.0000 +600375.SH,0.0000,0.0000,0.0000,12.4900,0.0000,0.0000,0.0000,18.6400,0.0000,0.0000,0.0000,31.8700,0.0000,0.0000,0.0000,29.2700,0.0000,0.0000,0.0000,32.5200,0.0000 +688695.SH,0.0000,0.0000,0.0000,97.7500,0.0000,0.0000,0.0000,97.6400,0.0000,0.0000,0.0000,100.0000,0.0000,92.3000,0.0000,0.0000,0.0000,0.0000,0.0000,66.1900,0.0000 +002146.SZ,0.0000,0.0000,0.0000,5.9300,0.0000,0.0000,0.0000,4.1800,0.0000,0.0000,0.0000,4.0700,0.0000,0.0000,0.0000,2.6400,0.0000,0.0000,0.0000,2.4900,0.0000 +600379.SH,0.0000,0.0000,0.0000,26.4200,0.0000,0.0000,0.0000,27.7800,0.0000,0.0000,0.0000,23.9900,0.0000,0.0000,0.0000,24.7600,0.0000,0.0000,0.0000,22.0300,0.0000 +002795.SZ,0.0000,0.0000,0.0000,37.3800,0.0000,0.0000,0.0000,39.8500,0.0000,0.0000,0.0000,50.6300,0.0000,0.0000,0.0000,43.6400,0.0000,0.0000,0.0000,66.4400,0.0000 +688779.SH,0.0000,0.0000,0.0000,59.8300,0.0000,0.0000,0.0000,60.3100,0.0000,0.0000,0.0000,73.9000,0.0000,0.0000,0.0000,66.1100,0.0000,0.0000,0.0000,56.9600,0.0000 +002478.SZ,0.0000,0.0000,0.0000,59.2300,0.0000,0.0000,0.0000,60.5700,0.0000,0.0000,0.0000,64.5100,0.0000,0.0000,0.0000,75.1300,0.0000,0.0000,0.0000,0.0000,0.0000 +301234.SZ,0.0000,0.0000,0.0000,49.4500,0.0000,0.0000,0.0000,46.8700,0.0000,0.0000,0.0000,39.3000,0.0000,0.0000,0.0000,32.6200,0.0000,0.0000,0.0000,36.2000,0.0000 +600864.SH,0.0000,0.0000,0.0000,33.8500,0.0000,0.0000,0.0000,51.3300,0.0000,0.0000,0.0000,49.7000,0.0000,0.0000,0.0000,50.8300,0.0000,0.0000,0.0000,75.0400,0.0000 +601136.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +002110.SZ,0.0000,0.0000,0.0000,47.8500,0.0000,0.0000,0.0000,47.0300,0.0000,0.0000,0.0000,43.2800,0.0000,0.0000,0.0000,41.0900,0.0000,0.0000,0.0000,46.0500,0.0000 +002628.SZ,0.0000,0.0000,0.0000,17.0300,0.0000,0.0000,0.0000,18.2500,0.0000,0.0000,0.0000,20.5000,0.0000,0.0000,0.0000,21.1300,0.0000,0.0000,0.0000,25.5800,0.0000 +300616.SZ,0.0000,0.0000,0.0000,17.5100,0.0000,0.0000,0.0000,18.8800,0.0000,0.0000,0.0000,23.2400,0.0000,0.0000,0.0000,19.0500,0.0000,0.0000,0.0000,21.6300,0.0000 +603360.SH,0.0000,0.0000,0.0000,33.4000,0.0000,0.0000,0.0000,33.6000,0.0000,0.0000,0.0000,45.6800,0.0000,0.0000,0.0000,38.2200,0.0000,0.0000,0.0000,0.0000,0.0000 +603650.SH,0.0000,0.0000,0.0000,41.0700,0.0000,0.0000,0.0000,30.1800,0.0000,0.0000,0.0000,24.5600,0.0000,0.0000,0.0000,25.3400,0.0000,0.0000,0.0000,27.1200,0.0000 +603606.SH,0.0000,0.0000,0.0000,75.1300,0.0000,0.0000,0.0000,57.6000,0.0000,0.0000,0.0000,67.3500,0.0000,0.0000,0.0000,56.1100,0.0000,0.0000,0.0000,66.5200,0.0000 +600802.SH,0.0000,0.0000,0.0000,37.3800,0.0000,0.0000,0.0000,62.6000,0.0000,0.0000,0.0000,73.7000,0.0000,0.0000,0.0000,64.4700,0.0000,0.0000,0.0000,65.6200,0.0000 +688107.SH,0.0000,0.0000,0.0000,88.7200,0.0000,87.6500,0.0000,84.5000,0.0000,0.0000,0.0000,75.6300,0.0000,0.0000,0.0000,91.1300,0.0000,0.0000,0.0000,70.9200,0.0000 +605222.SH,0.0000,0.0000,0.0000,30.0100,0.0000,0.0000,0.0000,33.1700,0.0000,0.0000,0.0000,28.7900,0.0000,0.0000,0.0000,30.2900,0.0000,0.0000,0.0000,26.7000,0.0000 +000546.SZ,0.0000,0.0000,0.0000,15.2900,0.0000,0.0000,0.0000,10.9400,0.0000,0.0000,0.0000,21.7700,0.0000,0.0000,0.0000,70.4400,0.0000,0.0000,0.0000,81.9900,0.0000 +300653.SZ,0.0000,0.0000,0.0000,37.5900,0.0000,0.0000,0.0000,43.9700,0.0000,0.0000,0.0000,41.1600,0.0000,0.0000,0.0000,9.7700,0.0000,0.0000,0.0000,13.9100,0.0000 +301421.SZ,0.0000,0.0000,0.0000,23.8600,0.0000,0.0000,0.0000,23.7000,0.0000,0.0000,0.0000,23.1900,0.0000,0.0000,0.0000,29.2100,0.0000,0.0000,0.0000,27.4900,0.0000 +600822.SH,0.0000,0.0000,0.0000,76.9100,0.0000,0.0000,0.0000,43.6600,0.0000,0.0000,0.0000,82.5100,0.0000,0.0000,0.0000,88.8200,0.0000,0.0000,0.0000,67.3100,0.0000 +301107.SZ,0.0000,0.0000,0.0000,21.3100,0.0000,0.0000,0.0000,21.8100,0.0000,0.0000,0.0000,22.4000,0.0000,0.0000,0.0000,21.8400,0.0000,0.0000,0.0000,18.6600,0.0000 +300135.SZ,0.0000,0.0000,0.0000,37.2500,0.0000,0.0000,0.0000,45.3900,0.0000,0.0000,0.0000,53.0100,0.0000,0.0000,0.0000,45.6100,0.0000,0.0000,0.0000,65.9600,0.0000 +301600.SZ,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,45.7100,0.0000,0.0000,0.0000,43.6900,0.0000,0.0000,0.0000,36.6200,0.0000,0.0000,0.0000,38.0600,0.0000 +601858.SH,0.0000,0.0000,0.0000,47.7400,0.0000,0.0000,0.0000,45.6400,0.0000,0.0000,0.0000,45.4700,0.0000,0.0000,0.0000,51.0600,0.0000,0.0000,0.0000,49.0100,0.0000 +836260.BJ,0.0000,0.0000,0.0000,26.0300,0.0000,0.0000,0.0000,16.3300,0.0000,0.0000,0.0000,17.6400,0.0000,0.0000,0.0000,29.5200,0.0000,0.0000,0.0000,15.9100,0.0000 +000886.SZ,0.0000,0.0000,0.0000,84.3900,0.0000,0.0000,0.0000,69.5700,0.0000,0.0000,0.0000,72.0000,0.0000,0.0000,0.0000,58.4900,0.0000,0.0000,0.0000,62.0100,0.0000 +605122.SH,0.0000,0.0000,0.0000,47.7300,0.0000,0.0000,0.0000,40.9100,0.0000,0.0000,0.0000,33.2200,0.0000,0.0000,0.0000,28.9600,0.0000,0.0000,0.0000,36.2000,0.0000 +600829.SH,0.0000,0.0000,0.0000,16.8100,0.0000,0.0000,0.0000,17.8100,0.0000,0.0000,0.0000,17.9200,0.0000,0.0000,0.0000,15.3200,0.0000,0.0000,0.0000,14.8500,0.0000 +002643.SZ,0.0000,0.0000,0.0000,27.2000,0.0000,0.0000,0.0000,32.8600,0.0000,0.0000,0.0000,36.7600,0.0000,0.0000,0.0000,23.5000,0.0000,0.0000,0.0000,20.2000,0.0000 +300692.SZ,0.0000,0.0000,0.0000,26.8500,0.0000,0.0000,0.0000,30.1100,0.0000,0.0000,0.0000,23.2400,0.0000,0.0000,0.0000,20.7800,0.0000,0.0000,0.0000,21.3600,0.0000 +688383.SH,0.0000,0.0000,0.0000,15.5500,0.0000,0.0000,0.0000,13.6700,0.0000,0.0000,0.0000,15.2400,0.0000,0.0000,0.0000,27.9200,0.0000,0.0000,0.0000,13.4100,0.0000 +301059.SZ,0.0000,0.0000,0.0000,66.6400,0.0000,0.0000,0.0000,67.3300,0.0000,0.0000,0.0000,72.0700,0.0000,0.0000,0.0000,70.2600,0.0000,0.0000,0.0000,59.7200,0.0000 +300615.SZ,0.0000,0.0000,0.0000,36.1600,0.0000,0.0000,0.0000,27.5100,0.0000,0.0000,0.0000,33.1200,0.0000,0.0000,0.0000,45.8000,0.0000,0.0000,0.0000,24.4800,0.0000 +300696.SZ,0.0000,0.0000,0.0000,41.6700,0.0000,0.0000,0.0000,39.9300,0.0000,0.0000,0.0000,29.8800,0.0000,0.0000,0.0000,33.9400,0.0000,0.0000,0.0000,43.2700,0.0000 +300432.SZ,0.0000,0.0000,0.0000,21.0800,0.0000,0.0000,0.0000,25.4000,0.0000,0.0000,0.0000,32.4700,0.0000,0.0000,0.0000,46.8300,0.0000,0.0000,0.0000,34.3700,0.0000 +300596.SZ,0.0000,0.0000,0.0000,23.1200,0.0000,0.0000,0.0000,23.7000,0.0000,0.0000,0.0000,22.0800,0.0000,0.0000,0.0000,24.3400,0.0000,0.0000,0.0000,24.4600,0.0000 +600195.SH,0.0000,0.0000,0.0000,23.0500,0.0000,0.0000,0.0000,26.9600,0.0000,0.0000,0.0000,31.9000,0.0000,0.0000,0.0000,17.4800,0.0000,0.0000,0.0000,20.7700,0.0000 +603105.SH,0.0000,0.0000,0.0000,33.0500,0.0000,0.0000,0.0000,35.4500,0.0000,0.0000,0.0000,45.8500,0.0000,0.0000,0.0000,45.8300,0.0000,0.0000,0.0000,37.3000,0.0000 +002040.SZ,0.0000,0.0000,0.0000,36.3200,0.0000,0.0000,0.0000,43.9000,0.0000,0.0000,0.0000,43.7500,0.0000,0.0000,0.0000,56.3500,0.0000,0.0000,0.0000,40.7500,0.0000 +000581.SZ,0.0000,0.0000,0.0000,39.4800,0.0000,0.0000,0.0000,29.6700,0.0000,0.0000,0.0000,25.4000,0.0000,0.0000,0.0000,24.5700,0.0000,0.0000,0.0000,21.7600,0.0000 +301170.SZ,0.0000,0.0000,0.0000,66.0600,0.0000,0.0000,0.0000,63.3500,0.0000,0.0000,0.0000,62.2900,0.0000,0.0000,0.0000,64.8300,0.0000,0.0000,0.0000,64.1700,0.0000 +301359.SZ,0.0000,0.0000,0.0000,47.7900,0.0000,0.0000,0.0000,48.6000,0.0000,45.7700,0.0000,44.3400,0.0000,0.0000,0.0000,45.4400,0.0000,0.0000,0.0000,46.8800,0.0000 +002192.SZ,0.0000,0.0000,0.0000,41.3500,0.0000,0.0000,0.0000,42.1900,0.0000,0.0000,0.0000,54.5500,0.0000,0.0000,0.0000,52.0300,0.0000,0.0000,0.0000,66.5600,0.0000 +300718.SZ,0.0000,0.0000,0.0000,38.2200,0.0000,0.0000,0.0000,38.2600,0.0000,0.0000,0.0000,26.7500,0.0000,0.0000,0.0000,29.9400,0.0000,0.0000,0.0000,31.5200,0.0000 +600739.SH,0.0000,0.0000,0.0000,36.9200,0.0000,0.0000,0.0000,43.8500,0.0000,0.0000,0.0000,47.3500,0.0000,0.0000,0.0000,44.1600,0.0000,0.0000,0.0000,41.1900,0.0000 +603968.SH,0.0000,0.0000,0.0000,39.6900,0.0000,0.0000,0.0000,39.9900,0.0000,0.0000,0.0000,37.0900,0.0000,0.0000,0.0000,30.8100,0.0000,0.0000,0.0000,24.7400,0.0000 +301079.SZ,0.0000,0.0000,0.0000,25.0400,0.0000,0.0000,0.0000,21.9500,0.0000,0.0000,0.0000,14.9900,0.0000,0.0000,0.0000,17.2900,0.0000,0.0000,0.0000,15.7500,0.0000 +301067.SZ,0.0000,0.0000,0.0000,21.3000,0.0000,0.0000,0.0000,24.2700,0.0000,0.0000,0.0000,24.1200,0.0000,0.0000,0.0000,15.6500,0.0000,0.0000,0.0000,17.6900,0.0000 +001231.SZ,0.0000,0.0000,0.0000,24.1200,0.0000,0.0000,0.0000,29.0400,0.0000,0.0000,0.0000,18.1800,0.0000,0.0000,0.0000,19.3300,0.0000,0.0000,0.0000,18.9600,0.0000 +001378.SZ,0.0000,0.0000,0.0000,60.9000,0.0000,0.0000,0.0000,64.9900,0.0000,0.0000,0.0000,63.2600,0.0000,64.4100,0.0000,64.7800,0.0000,0.0000,0.0000,69.7000,0.0000 +600373.SH,0.0000,0.0000,0.0000,21.2900,0.0000,0.0000,0.0000,22.6800,0.0000,0.0000,0.0000,23.9300,0.0000,0.0000,0.0000,18.7600,0.0000,0.0000,0.0000,9.4300,0.0000 +600456.SH,0.0000,0.0000,0.0000,47.4900,0.0000,0.0000,0.0000,38.8900,0.0000,0.0000,0.0000,43.9700,0.0000,0.0000,0.0000,36.2300,0.0000,0.0000,0.0000,33.9700,0.0000 +000505.SZ,0.0000,0.0000,0.0000,46.0500,0.0000,0.0000,0.0000,41.6400,0.0000,0.0000,0.0000,46.4300,0.0000,0.0000,0.0000,33.6100,0.0000,0.0000,0.0000,37.3100,0.0000 +600340.SH,0.0000,0.0000,0.0000,21.4500,0.0000,0.0000,0.0000,15.8500,0.0000,0.0000,0.0000,38.7500,0.0000,0.0000,0.0000,18.2200,0.0000,0.0000,0.0000,20.7800,0.0000 +300378.SZ,0.0000,0.0000,0.0000,45.5100,0.0000,0.0000,0.0000,45.7100,0.0000,0.0000,0.0000,47.5400,0.0000,0.0000,0.0000,42.9400,0.0000,0.0000,0.0000,37.2900,0.0000 +300743.SZ,0.0000,0.0000,0.0000,57.8600,0.0000,0.0000,0.0000,51.9500,0.0000,0.0000,0.0000,54.2900,0.0000,0.0000,0.0000,47.7100,0.0000,0.0000,0.0000,42.1400,0.0000 +300133.SZ,0.0000,0.0000,0.0000,16.0000,0.0000,0.0000,0.0000,6.9500,0.0000,0.0000,0.0000,16.6800,0.0000,0.0000,0.0000,7.6900,0.0000,0.0000,0.0000,16.2200,0.0000 +002351.SZ,0.0000,0.0000,0.0000,22.8400,0.0000,0.0000,0.0000,21.0600,0.0000,0.0000,0.0000,29.8200,0.0000,0.0000,0.0000,32.0200,0.0000,0.0000,0.0000,27.4200,0.0000 +002029.SZ,0.0000,0.0000,0.0000,13.9900,0.0000,0.0000,0.0000,14.3300,0.0000,0.0000,0.0000,13.3400,0.0000,0.0000,0.0000,14.9900,0.0000,0.0000,0.0000,14.1200,0.0000 +300642.SZ,0.0000,0.0000,0.0000,54.0500,0.0000,0.0000,0.0000,33.0200,0.0000,0.0000,0.0000,64.1900,0.0000,0.0000,0.0000,47.8000,0.0000,0.0000,0.0000,58.7000,0.0000 +002873.SZ,0.0000,0.0000,0.0000,49.7300,0.0000,0.0000,0.0000,52.0900,0.0000,0.0000,0.0000,45.3500,0.0000,0.0000,0.0000,47.7700,0.0000,0.0000,0.0000,59.9000,0.0000 +603078.SH,0.0000,0.0000,0.0000,30.4100,0.0000,0.0000,0.0000,33.9500,0.0000,0.0000,0.0000,22.6100,0.0000,0.0000,0.0000,13.7700,0.0000,0.0000,0.0000,16.5700,0.0000 +603839.SH,0.0000,0.0000,0.0000,50.2100,0.0000,0.0000,0.0000,51.4700,0.0000,0.0000,0.0000,53.3000,0.0000,0.0000,0.0000,31.4200,0.0000,0.0000,0.0000,55.5700,0.0000 +000408.SZ,0.0000,0.0000,0.0000,50.0700,0.0000,0.0000,0.0000,58.6900,0.0000,0.0000,0.0000,46.0100,0.0000,0.0000,0.0000,46.5600,0.0000,0.0000,0.0000,51.2500,0.0000 +603161.SH,0.0000,0.0000,0.0000,40.9100,0.0000,0.0000,0.0000,42.7000,0.0000,0.0000,0.0000,51.4200,0.0000,0.0000,0.0000,41.9600,0.0000,0.0000,0.0000,39.8300,0.0000 +603697.SH,0.0000,0.0000,0.0000,45.5100,0.0000,0.0000,0.0000,45.3500,0.0000,0.0000,0.0000,40.3100,0.0000,0.0000,0.0000,51.5100,0.0000,0.0000,0.0000,61.6400,0.0000 +688093.SH,0.0000,0.0000,0.0000,41.4200,0.0000,0.0000,0.0000,31.9500,0.0000,0.0000,0.0000,32.4600,0.0000,0.0000,0.0000,38.1300,0.0000,0.0000,0.0000,42.9500,0.0000 +300782.SZ,0.0000,0.0000,0.0000,90.8000,0.0000,0.0000,0.0000,76.4000,0.0000,0.0000,0.0000,61.0800,0.0000,0.0000,0.0000,54.7800,0.0000,0.0000,0.0000,46.7900,0.0000 +600784.SH,0.0000,0.0000,0.0000,23.8000,0.0000,0.0000,0.0000,19.9000,0.0000,0.0000,0.0000,21.3100,0.0000,0.0000,0.0000,16.8100,0.0000,0.0000,0.0000,16.6600,0.0000 +301629.SZ,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,23.3000,0.0000,0.0000,0.0000,26.7700,0.0000,0.0000,0.0000,20.7600,0.0000,21.5300,0.0000,19.3700,0.0000 +301035.SZ,0.0000,0.0000,0.0000,44.4600,0.0000,0.0000,0.0000,42.9100,0.0000,0.0000,0.0000,37.4800,0.0000,0.0000,0.0000,19.5000,0.0000,0.0000,0.0000,25.5800,0.0000 +600633.SH,0.0000,0.0000,0.0000,20.7300,0.0000,0.0000,0.0000,20.3300,0.0000,0.0000,0.0000,47.9000,0.0000,0.0000,0.0000,40.9800,0.0000,0.0000,0.0000,42.3800,0.0000 +300259.SZ,0.0000,0.0000,0.0000,16.3000,0.0000,0.0000,0.0000,16.9500,0.0000,0.0000,0.0000,12.9900,0.0000,0.0000,0.0000,16.1700,0.0000,0.0000,0.0000,12.4900,0.0000 +600280.SH,0.0000,0.0000,0.0000,16.7400,0.0000,0.0000,0.0000,14.9200,0.0000,0.0000,0.0000,16.5300,0.0000,0.0000,0.0000,17.4600,0.0000,0.0000,0.0000,53.2300,0.0000 +002419.SZ,0.0000,0.0000,0.0000,15.0600,0.0000,0.0000,0.0000,12.4400,0.0000,0.0000,0.0000,11.1200,0.0000,0.0000,0.0000,10.4100,0.0000,0.0000,0.0000,9.2300,0.0000 +600779.SH,0.0000,0.0000,0.0000,31.0000,0.0000,0.0000,0.0000,34.0400,0.0000,0.0000,0.0000,24.1000,0.0000,0.0000,0.0000,20.5400,0.0000,0.0000,0.0000,23.4800,0.0000 +002712.SZ,0.0000,0.0000,0.0000,60.1400,0.0000,0.0000,0.0000,63.3100,0.0000,0.0000,0.0000,69.2100,0.0000,0.0000,0.0000,72.0100,0.0000,0.0000,0.0000,69.8200,0.0000 +002044.SZ,0.0000,0.0000,0.0000,12.2800,0.0000,0.0000,0.0000,13.9200,0.0000,0.0000,0.0000,14.2700,0.0000,0.0000,0.0000,12.6300,0.0000,0.0000,0.0000,11.5100,0.0000 +600979.SH,0.0000,0.0000,0.0000,48.0400,0.0000,0.0000,0.0000,44.0500,0.0000,0.0000,0.0000,38.7100,0.0000,0.0000,0.0000,76.1800,0.0000,0.0000,0.0000,76.2000,0.0000 +301081.SZ,0.0000,0.0000,0.0000,29.9600,0.0000,0.0000,0.0000,38.4100,0.0000,0.0000,0.0000,38.1600,0.0000,0.0000,0.0000,35.2200,0.0000,0.0000,0.0000,35.7800,0.0000 +836699.BJ,0.0000,0.0000,0.0000,47.5400,0.0000,0.0000,0.0000,50.2200,54.1100,0.0000,0.0000,49.0700,0.0000,0.0000,0.0000,41.3600,0.0000,0.0000,0.0000,35.4000,0.0000 +002758.SZ,0.0000,0.0000,0.0000,56.0200,0.0000,0.0000,0.0000,51.4300,0.0000,0.0000,0.0000,42.5900,0.0000,0.0000,0.0000,41.8500,0.0000,0.0000,0.0000,35.8300,0.0000 +600179.SH,0.0000,0.0000,0.0000,16.0600,0.0000,0.0000,0.0000,11.6200,0.0000,0.0000,0.0000,11.6400,0.0000,0.0000,0.0000,15.7000,0.0000,0.0000,0.0000,13.8400,0.0000 +002797.SZ,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +002674.SZ,0.0000,0.0000,0.0000,42.0500,0.0000,0.0000,0.0000,46.4000,0.0000,0.0000,0.0000,41.3500,0.0000,0.0000,0.0000,36.1800,0.0000,0.0000,0.0000,26.5900,0.0000 +300072.SZ,0.0000,0.0000,0.0000,18.1600,0.0000,0.0000,0.0000,27.8500,0.0000,0.0000,0.0000,43.9800,0.0000,0.0000,0.0000,33.5800,0.0000,0.0000,0.0000,35.7200,0.0000 +689009.SH,0.0000,0.0000,0.0000,43.6800,0.0000,0.0000,0.0000,32.1600,0.0000,0.0000,0.0000,22.5900,0.0000,0.0000,0.0000,17.9600,0.0000,0.0000,0.0000,12.2000,0.0000 +301149.SZ,0.0000,0.0000,0.0000,61.7800,0.0000,63.1800,0.0000,66.2400,0.0000,0.0000,0.0000,63.6000,0.0000,0.0000,0.0000,56.7700,0.0000,0.0000,0.0000,55.4000,0.0000 +301469.SZ,0.0000,0.0000,0.0000,62.9100,0.0000,0.0000,0.0000,65.1300,0.0000,0.0000,0.0000,61.0000,0.0000,0.0000,0.0000,47.3800,0.0000,0.0000,0.0000,51.1600,0.0000 +300658.SZ,0.0000,0.0000,0.0000,53.0000,0.0000,0.0000,0.0000,48.5800,0.0000,0.0000,0.0000,53.6500,0.0000,0.0000,0.0000,56.3700,0.0000,0.0000,0.0000,56.4000,0.0000 +688568.SH,0.0000,0.0000,0.0000,22.2800,0.0000,0.0000,0.0000,24.4500,0.0000,0.0000,0.0000,22.2200,0.0000,0.0000,0.0000,11.3300,0.0000,0.0000,0.0000,14.9100,0.0000 +688603.SH,0.0000,0.0000,0.0000,73.3600,0.0000,0.0000,0.0000,74.3500,0.0000,0.0000,0.0000,71.5800,0.0000,0.0000,0.0000,65.0900,0.0000,0.0000,0.0000,67.6300,0.0000 +600459.SH,0.0000,0.0000,0.0000,41.5400,0.0000,0.0000,0.0000,28.8300,0.0000,0.0000,0.0000,28.2900,0.0000,0.0000,0.0000,35.9700,0.0000,0.0000,0.0000,29.7300,0.0000 +300207.SZ,0.0000,0.0000,0.0000,59.7900,0.0000,0.0000,0.0000,46.8100,0.0000,0.0000,0.0000,44.7500,0.0000,0.0000,0.0000,40.5500,0.0000,0.0000,0.0000,32.1700,0.0000 +300991.SZ,0.0000,0.0000,0.0000,32.1800,0.0000,0.0000,0.0000,31.8400,0.0000,0.0000,0.0000,36.8100,0.0000,0.0000,0.0000,35.3400,0.0000,0.0000,0.0000,27.1300,0.0000 +002888.SZ,0.0000,0.0000,0.0000,13.2300,0.0000,0.0000,0.0000,19.2000,0.0000,0.0000,0.0000,14.9600,0.0000,0.0000,0.0000,15.3800,0.0000,0.0000,0.0000,31.6000,0.0000 +688049.SH,0.0000,0.0000,0.0000,75.2000,0.0000,75.0000,0.0000,73.7300,0.0000,0.0000,0.0000,78.2000,0.0000,0.0000,0.0000,77.9900,0.0000,0.0000,0.0000,81.5200,0.0000 +600061.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +600072.SH,0.0000,0.0000,0.0000,58.5400,0.0000,0.0000,0.0000,28.0300,0.0000,0.0000,0.0000,31.2500,0.0000,24.7900,0.0000,72.1100,0.0000,0.0000,0.0000,20.8300,0.0000 +002144.SZ,0.0000,0.0000,0.0000,25.6200,0.0000,0.0000,0.0000,21.8700,0.0000,0.0000,0.0000,33.3000,0.0000,0.0000,0.0000,36.0300,0.0000,0.0000,0.0000,32.8300,0.0000 +001207.SZ,0.0000,0.0000,0.0000,41.5300,0.0000,0.0000,0.0000,40.6900,0.0000,0.0000,0.0000,42.4600,0.0000,0.0000,0.0000,18.6500,0.0000,0.0000,0.0000,24.8000,0.0000 +688116.SH,0.0000,0.0000,0.0000,78.0200,0.0000,0.0000,0.0000,56.0300,0.0000,0.0000,0.0000,63.4400,0.0000,0.0000,0.0000,55.0700,0.0000,0.0000,0.0000,53.9500,0.0000 +603291.SH,0.0000,0.0000,0.0000,21.3700,0.0000,0.0000,0.0000,20.1900,0.0000,24.5000,0.0000,0.0000,0.0000,0.0000,0.0000,13.9000,0.0000,0.0000,0.0000,19.4100,0.0000 +002127.SZ,0.0000,0.0000,0.0000,80.8200,0.0000,0.0000,0.0000,76.8700,0.0000,0.0000,0.0000,88.0300,0.0000,0.0000,0.0000,89.3600,0.0000,0.0000,0.0000,88.5100,0.0000 +603477.SH,0.0000,0.0000,0.0000,15.1800,0.0000,0.0000,0.0000,24.8800,0.0000,0.0000,0.0000,23.6200,0.0000,0.0000,0.0000,23.8800,0.0000,0.0000,0.0000,22.5200,0.0000 +603903.SH,0.0000,0.0000,0.0000,19.6200,0.0000,0.0000,0.0000,17.3200,0.0000,0.0000,0.0000,17.6400,0.0000,0.0000,0.0000,12.2600,0.0000,0.0000,0.0000,11.7700,0.0000 +002183.SZ,0.0000,0.0000,0.0000,17.2400,0.0000,0.0000,0.0000,18.7600,0.0000,0.0000,0.0000,16.7100,0.0000,0.0000,0.0000,21.6500,0.0000,0.0000,0.0000,17.0200,0.0000 +301499.SZ,0.0000,0.0000,0.0000,37.9500,0.0000,0.0000,0.0000,39.4800,0.0000,0.0000,0.0000,38.5300,0.0000,0.0000,0.0000,33.5800,0.0000,0.0000,0.0000,32.5300,0.0000 +000547.SZ,0.0000,0.0000,0.0000,27.2500,0.0000,0.0000,0.0000,10.7500,0.0000,0.0000,0.0000,37.9300,0.0000,0.0000,0.0000,25.8200,0.0000,0.0000,0.0000,20.4900,0.0000 +300726.SZ,0.0000,0.0000,0.0000,34.5400,0.0000,0.0000,0.0000,35.1600,0.0000,0.0000,0.0000,34.8400,0.0000,0.0000,0.0000,30.1500,0.0000,0.0000,0.0000,20.7200,0.0000 +603529.SH,0.0000,0.0000,0.0000,40.3100,0.0000,0.0000,0.0000,32.8800,0.0000,0.0000,0.0000,36.4500,0.0000,0.0000,0.0000,37.4500,0.0000,0.0000,0.0000,38.0100,0.0000 +603103.SH,0.0000,0.0000,0.0000,41.2200,0.0000,0.0000,0.0000,60.1600,0.0000,0.0000,0.0000,47.0300,0.0000,0.0000,0.0000,56.6500,0.0000,0.0000,0.0000,50.8500,0.0000 +300712.SZ,0.0000,0.0000,0.0000,27.1100,0.0000,0.0000,0.0000,32.0400,0.0000,0.0000,0.0000,36.8300,0.0000,0.0000,0.0000,29.3400,0.0000,0.0000,0.0000,21.7000,0.0000 +301057.SZ,0.0000,0.0000,0.0000,78.0100,0.0000,0.0000,0.0000,67.0400,0.0000,0.0000,0.0000,78.0900,0.0000,0.0000,0.0000,71.6900,0.0000,0.0000,0.0000,73.2300,0.0000 +603202.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,34.9000,0.0000,0.0000,0.0000,32.0300,0.0000,0.0000,0.0000,30.9000,0.0000 +603013.SH,0.0000,0.0000,0.0000,25.9600,0.0000,0.0000,0.0000,24.1100,0.0000,0.0000,0.0000,22.5100,0.0000,0.0000,0.0000,23.9100,0.0000,0.0000,0.0000,25.7900,0.0000 +688416.SH,0.0000,0.0000,0.0000,97.0500,0.0000,0.0000,0.0000,94.5500,0.0000,0.0000,0.0000,95.0500,0.0000,0.0000,0.0000,93.5200,0.0000,0.0000,0.0000,83.5600,0.0000 +688718.SH,0.0000,0.0000,0.0000,48.3900,0.0000,0.0000,0.0000,43.7500,0.0000,0.0000,0.0000,40.9000,0.0000,0.0000,0.0000,42.9600,0.0000,0.0000,0.0000,44.4200,0.0000 +300059.SZ,0.0000,0.0000,0.0000,32.5900,0.0000,0.0000,0.0000,29.6400,0.0000,0.0000,0.0000,29.7300,0.0000,0.0000,0.0000,29.3900,0.0000,0.0000,0.0000,36.6100,0.0000 +301368.SZ,0.0000,0.0000,0.0000,7.1100,0.0000,0.0000,0.0000,4.7000,0.0000,4.6600,0.0000,19.8000,0.0000,0.0000,0.0000,17.5200,0.0000,0.0000,0.0000,13.8800,0.0000 +603037.SH,0.0000,0.0000,0.0000,59.0000,0.0000,0.0000,0.0000,63.4900,0.0000,0.0000,0.0000,45.6000,0.0000,0.0000,0.0000,38.9000,0.0000,0.0000,0.0000,37.2600,0.0000 +301397.SZ,0.0000,0.0000,0.0000,39.5500,0.0000,0.0000,0.0000,39.0300,0.0000,0.0000,0.0000,40.2600,0.0000,0.0000,0.0000,34.6400,0.0000,0.0000,0.0000,36.6900,0.0000 +300483.SZ,0.0000,0.0000,0.0000,54.3800,0.0000,0.0000,0.0000,58.9000,0.0000,0.0000,0.0000,63.8200,0.0000,0.0000,0.0000,62.8900,0.0000,0.0000,0.0000,94.4400,0.0000 +300622.SZ,0.0000,0.0000,0.0000,47.1900,0.0000,0.0000,0.0000,40.2700,0.0000,0.0000,0.0000,43.7000,0.0000,0.0000,0.0000,36.7100,0.0000,0.0000,0.0000,48.6800,0.0000 +002011.SZ,0.0000,0.0000,0.0000,22.4700,0.0000,0.0000,0.0000,29.7700,0.0000,0.0000,0.0000,33.5800,0.0000,0.0000,0.0000,33.4200,0.0000,0.0000,0.0000,36.4600,0.0000 +688276.SH,0.0000,0.0000,0.0000,48.4300,0.0000,0.0000,0.0000,51.6400,0.0000,0.0000,0.0000,34.0400,0.0000,0.0000,0.0000,31.8400,0.0000,0.0000,0.0000,28.9900,0.0000 +000338.SZ,0.0000,0.0000,0.0000,13.7400,0.0000,0.0000,0.0000,10.6700,0.0000,0.0000,0.0000,6.8100,0.0000,0.0000,0.0000,10.3900,0.0000,0.0000,0.0000,10.6900,0.0000 +002026.SZ,0.0000,0.0000,0.0000,25.5300,0.0000,0.0000,0.0000,18.4800,0.0000,0.0000,0.0000,14.4200,0.0000,0.0000,0.0000,11.9500,0.0000,0.0000,0.0000,11.5600,0.0000 +003016.SZ,0.0000,0.0000,0.0000,14.8000,0.0000,0.0000,0.0000,14.2000,0.0000,0.0000,0.0000,14.6000,0.0000,0.0000,0.0000,16.8600,0.0000,0.0000,0.0000,19.7700,0.0000 +000905.SZ,0.0000,0.0000,0.0000,13.4600,0.0000,0.0000,0.0000,13.0800,0.0000,0.0000,0.0000,10.7200,0.0000,0.0000,0.0000,13.2300,0.0000,0.0000,0.0000,24.2300,0.0000 +002452.SZ,0.0000,0.0000,0.0000,52.1000,0.0000,0.0000,0.0000,8.6300,0.0000,0.0000,0.0000,12.4800,0.0000,0.0000,0.0000,14.3000,0.0000,0.0000,0.0000,13.8700,0.0000 +001201.SZ,0.0000,0.0000,0.0000,52.1600,0.0000,0.0000,0.0000,29.6400,0.0000,0.0000,0.0000,23.3700,0.0000,0.0000,0.0000,23.0600,0.0000,0.0000,0.0000,26.9600,0.0000 +000823.SZ,0.0000,0.0000,0.0000,22.8200,0.0000,0.0000,0.0000,20.6700,0.0000,0.0000,0.0000,19.9900,0.0000,0.0000,0.0000,21.2700,0.0000,0.0000,0.0000,24.2300,0.0000 +688109.SH,0.0000,0.0000,0.0000,28.4100,0.0000,0.0000,0.0000,19.9400,0.0000,0.0000,0.0000,16.6600,0.0000,0.0000,0.0000,19.9000,0.0000,0.0000,0.0000,22.5500,0.0000 +600199.SH,0.0000,0.0000,0.0000,19.8000,0.0000,0.0000,0.0000,21.3400,0.0000,0.0000,0.0000,19.2700,0.0000,0.0000,0.0000,21.3000,0.0000,0.0000,0.0000,19.7100,0.0000 +002777.SZ,0.0000,0.0000,0.0000,24.2400,0.0000,0.0000,0.0000,39.3300,0.0000,0.0000,0.0000,27.3800,0.0000,0.0000,0.0000,17.8900,0.0000,0.0000,0.0000,18.5000,0.0000 +600118.SH,0.0000,0.0000,0.0000,68.2500,0.0000,0.0000,0.0000,67.1500,0.0000,0.0000,0.0000,70.2400,0.0000,0.0000,0.0000,67.2900,0.0000,0.0000,0.0000,57.9400,0.0000 +000665.SZ,0.0000,0.0000,0.0000,17.0300,0.0000,0.0000,0.0000,15.8900,0.0000,0.0000,0.0000,16.7400,0.0000,0.0000,0.0000,20.1700,0.0000,0.0000,0.0000,20.5600,0.0000 +601236.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +002753.SZ,0.0000,0.0000,0.0000,19.2300,0.0000,0.0000,0.0000,21.0900,0.0000,0.0000,0.0000,20.7200,0.0000,0.0000,0.0000,21.1900,0.0000,0.0000,0.0000,29.0000,0.0000 +300680.SZ,0.0000,0.0000,0.0000,23.1400,0.0000,0.0000,0.0000,32.2700,0.0000,0.0000,0.0000,41.6100,0.0000,0.0000,0.0000,45.6100,0.0000,0.0000,0.0000,53.4300,0.0000 +603237.SH,0.0000,0.0000,0.0000,25.1000,0.0000,0.0000,0.0000,33.0200,0.0000,0.0000,0.0000,29.0100,0.0000,0.0000,0.0000,30.2700,0.0000,0.0000,0.0000,29.2400,0.0000 +300564.SZ,0.0000,0.0000,0.0000,15.9300,0.0000,0.0000,0.0000,17.2600,0.0000,0.0000,0.0000,25.3600,0.0000,0.0000,0.0000,19.2300,0.0000,0.0000,0.0000,19.5700,0.0000 +603097.SH,0.0000,0.0000,0.0000,34.0500,0.0000,0.0000,0.0000,33.5500,0.0000,0.0000,0.0000,36.9100,0.0000,0.0000,0.0000,31.7600,0.0000,0.0000,0.0000,25.4700,0.0000 +003023.SZ,0.0000,0.0000,0.0000,16.7700,0.0000,0.0000,0.0000,19.5000,0.0000,0.0000,0.0000,16.7200,0.0000,0.0000,0.0000,14.8700,0.0000,0.0000,0.0000,12.8600,0.0000 +600906.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +300443.SZ,0.0000,0.0000,0.0000,37.7100,0.0000,0.0000,0.0000,32.2800,0.0000,0.0000,0.0000,50.0500,0.0000,0.0000,0.0000,31.0800,0.0000,0.0000,0.0000,28.6100,0.0000 +300272.SZ,0.0000,0.0000,0.0000,31.1900,0.0000,0.0000,0.0000,27.0200,0.0000,0.0000,0.0000,18.1800,0.0000,0.0000,0.0000,17.5000,0.0000,0.0000,0.0000,17.0300,0.0000 +688179.SH,0.0000,0.0000,0.0000,7.5300,0.0000,0.0000,0.0000,7.2400,0.0000,0.0000,0.0000,8.9000,0.0000,0.0000,0.0000,10.6700,0.0000,0.0000,0.0000,9.7400,0.0000 +688393.SH,0.0000,0.0000,0.0000,19.1500,0.0000,0.0000,0.0000,15.3200,0.0000,0.0000,0.0000,16.6800,0.0000,0.0000,0.0000,11.3600,0.0000,0.0000,0.0000,12.9500,0.0000 +002051.SZ,0.0000,0.0000,0.0000,11.6100,0.0000,0.0000,0.0000,23.7700,0.0000,0.0000,0.0000,11.6200,0.0000,0.0000,0.0000,13.6300,0.0000,0.0000,0.0000,13.2000,0.0000 +300527.SZ,0.0000,0.0000,0.0000,45.3400,0.0000,0.0000,0.0000,40.3700,0.0000,0.0000,0.0000,45.4000,0.0000,0.0000,0.0000,21.2300,0.0000,0.0000,0.0000,45.7300,0.0000 +000702.SZ,0.0000,0.0000,0.0000,18.4800,0.0000,0.0000,0.0000,19.0000,0.0000,0.0000,0.0000,27.9300,0.0000,0.0000,0.0000,38.5800,0.0000,0.0000,0.0000,55.6900,0.0000 +002249.SZ,0.0000,0.0000,0.0000,28.2300,0.0000,0.0000,0.0000,34.5400,0.0000,0.0000,0.0000,27.5200,0.0000,0.0000,0.0000,26.7900,0.0000,0.0000,0.0000,28.6700,0.0000 +300389.SZ,0.0000,0.0000,0.0000,43.1700,0.0000,0.0000,0.0000,39.7600,0.0000,0.0000,0.0000,32.6900,0.0000,0.0000,0.0000,32.8600,0.0000,0.0000,0.0000,27.2400,0.0000 +002423.SZ,0.0000,0.0000,0.0000,11.5200,0.0000,0.0000,0.0000,24.6900,0.0000,0.0000,0.0000,23.4200,0.0000,0.0000,0.0000,15.7500,0.0000,0.0000,0.0000,15.8000,0.0000 +000554.SZ,0.0000,0.0000,0.0000,79.7900,0.0000,0.0000,0.0000,65.5700,0.0000,0.0000,0.0000,64.5700,0.0000,0.0000,0.0000,70.0800,0.0000,0.0000,0.0000,88.6800,0.0000 +600168.SH,0.0000,0.0000,0.0000,66.5800,0.0000,0.0000,0.0000,60.1900,0.0000,0.0000,0.0000,40.0000,0.0000,0.0000,0.0000,25.0000,0.0000,0.0000,0.0000,20.1500,0.0000 +600547.SH,0.0000,0.0000,0.0000,55.1900,0.0000,0.0000,0.0000,54.4000,0.0000,0.0000,0.0000,53.5800,0.0000,0.0000,0.0000,46.4000,0.0000,0.0000,0.0000,45.3600,0.0000 +002303.SZ,0.0000,0.0000,0.0000,31.8800,0.0000,0.0000,0.0000,30.9500,0.0000,0.0000,0.0000,32.9900,0.0000,0.0000,0.0000,27.1600,0.0000,0.0000,0.0000,23.0700,0.0000 +001336.SZ,0.0000,0.0000,0.0000,31.5400,0.0000,0.0000,0.0000,32.9200,0.0000,0.0000,0.0000,27.1100,0.0000,0.0000,0.0000,30.9600,0.0000,0.0000,0.0000,26.2100,0.0000 +001360.SZ,0.0000,0.0000,0.0000,78.5000,0.0000,0.0000,0.0000,78.6600,0.0000,95.0800,0.0000,0.0000,0.0000,0.0000,0.0000,24.3400,0.0000,0.0000,0.0000,20.9400,0.0000 +300474.SZ,0.0000,0.0000,0.0000,44.1500,0.0000,0.0000,0.0000,56.2700,0.0000,0.0000,0.0000,51.8100,0.0000,0.0000,0.0000,32.4300,0.0000,0.0000,0.0000,33.4400,0.0000 +002802.SZ,0.0000,0.0000,0.0000,64.3900,0.0000,0.0000,0.0000,78.3400,0.0000,0.0000,0.0000,66.4100,0.0000,0.0000,0.0000,71.9400,0.0000,0.0000,0.0000,62.1100,0.0000 +300624.SZ,0.0000,0.0000,0.0000,42.2300,0.0000,0.0000,0.0000,50.3800,0.0000,0.0000,0.0000,56.7100,0.0000,0.0000,0.0000,57.2600,0.0000,0.0000,0.0000,64.3000,0.0000 +301395.SZ,0.0000,0.0000,0.0000,91.4600,0.0000,0.0000,0.0000,96.3500,0.0000,0.0000,0.0000,98.8300,0.0000,0.0000,0.0000,94.3300,0.0000,0.0000,0.0000,91.4300,0.0000 +600857.SH,0.0000,0.0000,0.0000,78.1400,0.0000,0.0000,0.0000,81.0400,0.0000,0.0000,0.0000,75.9300,0.0000,0.0000,0.0000,87.4100,0.0000,0.0000,0.0000,80.8700,0.0000 +605287.SH,0.0000,0.0000,0.0000,7.8200,0.0000,0.0000,0.0000,24.4000,0.0000,0.0000,0.0000,31.4900,0.0000,0.0000,0.0000,23.9400,0.0000,0.0000,0.0000,28.9800,0.0000 +000927.SZ,0.0000,0.0000,0.0000,53.1700,0.0000,0.0000,0.0000,43.5100,0.0000,0.0000,0.0000,49.2800,0.0000,0.0000,0.0000,45.7100,0.0000,0.0000,0.0000,59.7800,0.0000 +600540.SH,0.0000,0.0000,0.0000,14.7700,0.0000,0.0000,0.0000,8.5700,0.0000,0.0000,0.0000,37.2800,0.0000,0.0000,0.0000,10.9500,0.0000,0.0000,0.0000,20.2600,0.0000 +000599.SZ,0.0000,0.0000,0.0000,24.6600,0.0000,0.0000,0.0000,26.6600,0.0000,0.0000,0.0000,32.3900,0.0000,0.0000,0.0000,25.8000,0.0000,0.0000,0.0000,30.5200,0.0000 +300586.SZ,0.0000,0.0000,0.0000,49.8400,0.0000,0.0000,0.0000,45.4600,0.0000,0.0000,0.0000,51.1600,0.0000,0.0000,0.0000,46.0600,0.0000,0.0000,0.0000,55.0800,0.0000 +603173.SH,0.0000,0.0000,0.0000,36.5000,0.0000,0.0000,0.0000,17.9800,0.0000,22.8800,0.0000,14.3200,0.0000,0.0000,0.0000,19.2900,0.0000,0.0000,0.0000,18.2500,0.0000 +300396.SZ,0.0000,0.0000,0.0000,21.9500,0.0000,0.0000,0.0000,21.1400,0.0000,0.0000,0.0000,14.3800,0.0000,0.0000,0.0000,27.1300,0.0000,0.0000,0.0000,17.1300,0.0000 +000952.SZ,0.0000,0.0000,0.0000,35.4300,0.0000,0.0000,0.0000,32.2200,0.0000,0.0000,0.0000,31.4400,0.0000,0.0000,0.0000,22.6300,0.0000,0.0000,0.0000,22.4300,0.0000 +300013.SZ,0.0000,0.0000,0.0000,16.6200,0.0000,0.0000,0.0000,12.3600,0.0000,0.0000,0.0000,12.2400,0.0000,0.0000,0.0000,17.6800,0.0000,0.0000,0.0000,17.4800,0.0000 +600495.SH,0.0000,0.0000,0.0000,45.8000,0.0000,0.0000,0.0000,42.0300,0.0000,0.0000,0.0000,45.7100,0.0000,0.0000,0.0000,51.1700,0.0000,0.0000,0.0000,52.2000,0.0000 +603867.SH,0.0000,0.0000,0.0000,28.5900,0.0000,0.0000,0.0000,28.0400,0.0000,0.0000,0.0000,19.8000,0.0000,0.0000,0.0000,22.4500,0.0000,0.0000,0.0000,19.4600,0.0000 +688229.SH,0.0000,0.0000,0.0000,51.2800,0.0000,0.0000,0.0000,37.4500,0.0000,0.0000,0.0000,34.3400,0.0000,0.0000,0.0000,29.7900,0.0000,0.0000,0.0000,27.0000,0.0000 +600593.SH,0.0000,0.0000,0.0000,11.7500,0.0000,0.0000,0.0000,20.2900,0.0000,0.0000,0.0000,24.9600,0.0000,0.0000,0.0000,20.3600,0.0000,0.0000,0.0000,26.0800,0.0000 +603021.SH,0.0000,0.0000,0.0000,27.4100,0.0000,0.0000,0.0000,20.9000,0.0000,0.0000,0.0000,30.3200,0.0000,0.0000,0.0000,33.8500,0.0000,0.0000,0.0000,28.0700,0.0000 +603566.SH,0.0000,0.0000,0.0000,17.9800,0.0000,0.0000,0.0000,26.3000,0.0000,0.0000,0.0000,25.1600,0.0000,0.0000,0.0000,26.9500,0.0000,0.0000,0.0000,26.7400,0.0000 +002926.SZ,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +603589.SH,0.0000,0.0000,0.0000,46.0000,0.0000,0.0000,0.0000,46.0000,0.0000,0.0000,0.0000,46.0000,0.0000,0.0000,0.0000,48.5300,0.0000,0.0000,0.0000,44.1600,0.0000 +601599.SH,0.0000,0.0000,0.0000,24.2400,0.0000,0.0000,0.0000,24.4000,0.0000,0.0000,0.0000,27.9200,0.0000,0.0000,0.0000,25.3700,0.0000,0.0000,0.0000,23.7700,0.0000 +300710.SZ,0.0000,0.0000,0.0000,22.0800,0.0000,0.0000,0.0000,14.9300,0.0000,0.0000,0.0000,26.1900,0.0000,0.0000,0.0000,27.9900,0.0000,0.0000,0.0000,38.8800,0.0000 +603708.SH,0.0000,0.0000,0.0000,6.9300,0.0000,0.0000,0.0000,6.5400,0.0000,0.0000,0.0000,7.3700,0.0000,0.0000,0.0000,6.4100,0.0000,0.0000,0.0000,5.9100,0.0000 +600895.SH,0.0000,0.0000,0.0000,48.6300,0.0000,0.0000,0.0000,73.3500,0.0000,0.0000,0.0000,72.4300,0.0000,0.0000,0.0000,37.6200,0.0000,0.0000,0.0000,60.0300,0.0000 +300621.SZ,0.0000,0.0000,0.0000,20.2800,0.0000,0.0000,0.0000,14.5000,0.0000,0.0000,0.0000,24.7200,0.0000,0.0000,0.0000,12.4900,0.0000,0.0000,0.0000,12.1900,0.0000 +601633.SH,0.0000,0.0000,0.0000,8.1800,0.0000,0.0000,0.0000,8.8500,0.0000,0.0000,0.0000,10.3500,0.0000,0.0000,0.0000,10.4000,0.0000,0.0000,0.0000,10.5900,0.0000 +300194.SZ,0.0000,0.0000,0.0000,25.8400,0.0000,0.0000,0.0000,25.9500,0.0000,0.0000,0.0000,29.6400,0.0000,0.0000,0.0000,34.7200,0.0000,0.0000,0.0000,28.6000,0.0000 +688291.SH,0.0000,0.0000,0.0000,42.1000,0.0000,0.0000,0.0000,34.5100,0.0000,0.0000,0.0000,47.5400,0.0000,0.0000,0.0000,29.6000,0.0000,0.0000,0.0000,32.4400,0.0000 +605177.SH,0.0000,0.0000,0.0000,23.9300,0.0000,0.0000,0.0000,26.1900,0.0000,0.0000,0.0000,25.2800,0.0000,0.0000,0.0000,36.7800,0.0000,0.0000,0.0000,28.1100,0.0000 +600885.SH,0.0000,0.0000,0.0000,18.0400,0.0000,0.0000,0.0000,19.0700,0.0000,0.0000,0.0000,18.2200,0.0000,0.0000,0.0000,18.7100,0.0000,0.0000,0.0000,19.4500,0.0000 +603350.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,40.3900,0.0000,0.0000,0.0000,44.0900,0.0000,0.0000,0.0000,47.1900,0.0000,0.0000,0.0000,51.5200,0.0000 +300334.SZ,0.0000,0.0000,0.0000,26.8000,0.0000,0.0000,0.0000,19.0600,0.0000,0.0000,0.0000,35.4800,0.0000,0.0000,0.0000,28.8600,0.0000,0.0000,0.0000,18.2400,0.0000 +688510.SH,0.0000,0.0000,0.0000,34.0700,0.0000,0.0000,0.0000,25.9300,0.0000,0.0000,0.0000,31.4500,0.0000,0.0000,0.0000,34.2800,0.0000,0.0000,0.0000,34.5600,0.0000 +301015.SZ,0.0000,0.0000,0.0000,33.8300,0.0000,0.0000,0.0000,30.4800,0.0000,0.0000,0.0000,24.6100,0.0000,0.0000,0.0000,38.4800,0.0000,0.0000,0.0000,40.3800,0.0000 +301287.SZ,0.0000,0.0000,0.0000,33.1400,0.0000,0.0000,0.0000,31.3600,0.0000,0.0000,0.0000,34.1100,0.0000,0.0000,0.0000,33.2500,0.0000,0.0000,0.0000,32.7900,0.0000 +300684.SZ,0.0000,0.0000,0.0000,57.2700,0.0000,0.0000,0.0000,61.4700,0.0000,0.0000,0.0000,62.0300,0.0000,0.0000,0.0000,51.6200,0.0000,0.0000,0.0000,57.8500,0.0000 +688015.SH,0.0000,0.0000,0.0000,33.7100,0.0000,0.0000,0.0000,30.9800,0.0000,0.0000,0.0000,28.8600,0.0000,0.0000,0.0000,27.6400,0.0000,0.0000,0.0000,19.8800,0.0000 +600527.SH,0.0000,0.0000,0.0000,51.9500,0.0000,0.0000,0.0000,72.9200,0.0000,0.0000,0.0000,75.0300,0.0000,0.0000,0.0000,47.7500,0.0000,0.0000,0.0000,59.6400,0.0000 +300660.SZ,0.0000,0.0000,0.0000,24.8800,0.0000,0.0000,0.0000,22.6700,0.0000,0.0000,0.0000,20.6900,0.0000,0.0000,0.0000,22.1600,0.0000,0.0000,0.0000,19.3500,0.0000 +600586.SH,0.0000,0.0000,0.0000,39.6700,0.0000,0.0000,0.0000,15.6700,0.0000,0.0000,0.0000,14.4700,0.0000,0.0000,0.0000,18.6700,0.0000,0.0000,0.0000,26.0400,0.0000 +301068.SZ,0.0000,0.0000,0.0000,53.9500,0.0000,0.0000,0.0000,47.3300,0.0000,0.0000,0.0000,53.4000,0.0000,0.0000,0.0000,54.9100,0.0000,0.0000,0.0000,59.7500,0.0000 +301215.SZ,0.0000,0.0000,0.0000,61.6100,0.0000,49.9900,0.0000,73.9700,0.0000,0.0000,0.0000,60.7400,0.0000,0.0000,0.0000,80.6200,0.0000,0.0000,0.0000,81.3100,0.0000 +603259.SH,0.0000,0.0000,0.0000,18.4000,0.0000,0.0000,0.0000,14.7100,0.0000,0.0000,0.0000,14.3000,0.0000,0.0000,0.0000,8.1100,0.0000,0.0000,0.0000,6.2700,0.0000 +600617.SH,0.0000,0.0000,0.0000,46.2300,0.0000,0.0000,0.0000,72.4800,0.0000,0.0000,0.0000,65.3300,0.0000,0.0000,0.0000,59.0200,0.0000,0.0000,0.0000,57.5300,0.0000 +688308.SH,0.0000,0.0000,0.0000,72.5800,0.0000,0.0000,0.0000,63.9300,0.0000,0.0000,0.0000,69.8800,0.0000,0.0000,0.0000,61.6900,0.0000,0.0000,0.0000,57.8000,0.0000 +301386.SZ,0.0000,0.0000,0.0000,27.1600,0.0000,0.0000,0.0000,29.7500,0.0000,35.6000,0.0000,36.8400,0.0000,0.0000,0.0000,35.5600,0.0000,0.0000,0.0000,34.4000,0.0000 +603876.SH,0.0000,0.0000,0.0000,56.0900,0.0000,0.0000,0.0000,68.9100,0.0000,0.0000,0.0000,68.0800,0.0000,0.0000,0.0000,66.2900,0.0000,0.0000,0.0000,61.6700,0.0000 +300203.SZ,0.0000,0.0000,0.0000,20.4400,0.0000,0.0000,0.0000,8.8000,0.0000,0.0000,0.0000,8.3800,0.0000,0.0000,0.0000,10.5700,0.0000,0.0000,0.0000,5.9700,0.0000 +603329.SH,0.0000,0.0000,0.0000,32.6100,0.0000,0.0000,0.0000,37.5900,0.0000,0.0000,0.0000,29.8500,0.0000,0.0000,0.0000,28.5600,0.0000,0.0000,0.0000,37.8700,0.0000 +301110.SZ,0.0000,0.0000,0.0000,62.8200,0.0000,58.4700,0.0000,46.2800,0.0000,0.0000,0.0000,50.2800,0.0000,0.0000,0.0000,43.7700,0.0000,0.0000,0.0000,48.6700,0.0000 +600497.SH,0.0000,0.0000,0.0000,32.2300,0.0000,0.0000,0.0000,41.1100,0.0000,0.0000,0.0000,36.0100,0.0000,0.0000,0.0000,33.1700,0.0000,0.0000,0.0000,28.0000,0.0000 +603207.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,51.2600,0.0000,0.0000,0.0000,53.0700,0.0000,0.0000,0.0000,55.5500,0.0000,0.0000,0.0000,49.1000,0.0000 +000739.SZ,0.0000,0.0000,0.0000,15.4600,0.0000,0.0000,0.0000,18.5700,0.0000,0.0000,0.0000,15.3500,0.0000,0.0000,0.0000,15.7500,0.0000,0.0000,0.0000,20.9300,0.0000 +300211.SZ,0.0000,0.0000,0.0000,37.3500,0.0000,0.0000,0.0000,50.1200,0.0000,0.0000,0.0000,49.0500,0.0000,46.9100,0.0000,41.9400,0.0000,47.0500,0.0000,43.8500,0.0000 +300633.SZ,0.0000,0.0000,0.0000,20.1200,0.0000,0.0000,0.0000,20.9400,0.0000,0.0000,0.0000,21.1600,0.0000,0.0000,0.0000,23.8100,0.0000,0.0000,0.0000,19.5100,0.0000 +002563.SZ,0.0000,0.0000,0.0000,10.4000,0.0000,0.0000,0.0000,11.2700,0.0000,0.0000,0.0000,14.6400,0.0000,0.0000,0.0000,16.9100,0.0000,0.0000,0.0000,15.4600,0.0000 +002246.SZ,0.0000,0.0000,0.0000,15.7500,0.0000,0.0000,0.0000,23.7200,0.0000,0.0000,0.0000,22.1900,0.0000,0.0000,0.0000,27.5900,0.0000,0.0000,0.0000,27.3400,0.0000 +600052.SH,0.0000,0.0000,0.0000,39.3000,0.0000,0.0000,0.0000,38.2900,0.0000,0.0000,0.0000,41.3300,0.0000,0.0000,0.0000,59.2600,0.0000,0.0000,0.0000,30.3900,0.0000 +002501.SZ,0.0000,0.0000,0.0000,69.6500,0.0000,0.0000,0.0000,68.0000,0.0000,0.0000,0.0000,83.4500,0.0000,0.0000,0.0000,82.6900,0.0000,0.0000,0.0000,70.1100,0.0000 +601992.SH,0.0000,0.0000,0.0000,8.3300,0.0000,0.0000,0.0000,13.5000,0.0000,0.0000,0.0000,5.0300,0.0000,0.0000,0.0000,16.2000,0.0000,0.0000,0.0000,19.4000,0.0000 +300314.SZ,0.0000,0.0000,0.0000,26.3300,0.0000,0.0000,0.0000,22.8300,0.0000,0.0000,0.0000,24.4200,0.0000,0.0000,0.0000,21.1900,0.0000,0.0000,0.0000,26.4400,0.0000 +603816.SH,0.0000,0.0000,0.0000,10.2000,0.0000,0.0000,0.0000,10.7300,0.0000,0.0000,0.0000,13.3700,0.0000,0.0000,0.0000,10.6500,0.0000,0.0000,0.0000,11.0300,0.0000 +688108.SH,0.0000,0.0000,0.0000,47.6800,0.0000,0.0000,0.0000,26.3200,0.0000,0.0000,0.0000,26.7200,0.0000,0.0000,0.0000,38.0700,0.0000,0.0000,0.0000,35.8300,0.0000 +002363.SZ,0.0000,0.0000,0.0000,40.9300,0.0000,0.0000,0.0000,42.0100,0.0000,0.0000,0.0000,43.1000,0.0000,0.0000,0.0000,42.0200,0.0000,0.0000,0.0000,39.2200,0.0000 +002015.SZ,0.0000,0.0000,0.0000,73.1600,0.0000,0.0000,0.0000,65.2300,0.0000,0.0000,0.0000,76.2400,0.0000,0.0000,0.0000,66.5000,0.0000,0.0000,0.0000,52.5200,0.0000 +000863.SZ,0.0000,0.0000,0.0000,26.1900,0.0000,0.0000,0.0000,57.9900,0.0000,0.0000,0.0000,34.3700,0.0000,0.0000,0.0000,38.0900,0.0000,0.0000,0.0000,23.2400,0.0000 +002959.SZ,0.0000,0.0000,0.0000,15.0500,0.0000,0.0000,0.0000,11.7600,0.0000,0.0000,0.0000,11.9600,0.0000,0.0000,0.0000,10.8600,0.0000,0.0000,0.0000,10.1900,0.0000 +603353.SH,0.0000,0.0000,0.0000,62.0200,0.0000,0.0000,0.0000,49.5000,0.0000,0.0000,0.0000,51.2200,0.0000,0.0000,0.0000,53.2700,0.0000,0.0000,0.0000,40.7700,0.0000 +300834.SZ,0.0000,0.0000,0.0000,81.9700,0.0000,89.9400,0.0000,85.0400,0.0000,0.0000,0.0000,84.8600,0.0000,0.0000,0.0000,88.4300,0.0000,0.0000,0.0000,92.0700,0.0000 +603806.SH,0.0000,0.0000,0.0000,55.9900,0.0000,0.0000,0.0000,45.9100,0.0000,0.0000,0.0000,41.5800,0.0000,0.0000,0.0000,40.4600,0.0000,0.0000,0.0000,36.3600,0.0000 +603878.SH,0.0000,0.0000,0.0000,60.2600,0.0000,0.0000,0.0000,64.5500,0.0000,0.0000,0.0000,56.3300,0.0000,0.0000,0.0000,63.0800,0.0000,0.0000,0.0000,69.7000,0.0000 +600438.SH,0.0000,0.0000,0.0000,25.5300,0.0000,0.0000,0.0000,39.5300,0.0000,0.0000,0.0000,21.2300,0.0000,0.0000,0.0000,20.1900,0.0000,0.0000,0.0000,17.9200,0.0000 +603186.SH,0.0000,0.0000,0.0000,39.2300,0.0000,0.0000,0.0000,41.4100,0.0000,0.0000,0.0000,46.3600,0.0000,0.0000,0.0000,40.1300,0.0000,0.0000,0.0000,44.4900,0.0000 +603817.SH,0.0000,0.0000,0.0000,38.2000,0.0000,0.0000,0.0000,49.7400,0.0000,0.0000,0.0000,44.8200,0.0000,0.0000,0.0000,45.2400,0.0000,0.0000,0.0000,29.2900,0.0000 +603887.SH,0.0000,0.0000,0.0000,16.0200,0.0000,0.0000,0.0000,22.3900,0.0000,0.0000,0.0000,18.2400,0.0000,0.0000,0.0000,17.6900,0.0000,0.0000,0.0000,29.8700,0.0000 +600851.SH,0.0000,0.0000,0.0000,13.4400,0.0000,0.0000,0.0000,16.6700,0.0000,0.0000,0.0000,31.8600,0.0000,0.0000,0.0000,26.9900,0.0000,0.0000,0.0000,35.3300,0.0000 +300761.SZ,0.0000,0.0000,0.0000,21.9500,0.0000,0.0000,0.0000,30.0100,0.0000,0.0000,0.0000,19.3800,0.0000,0.0000,0.0000,14.6300,0.0000,0.0000,0.0000,14.1800,0.0000 +600824.SH,0.0000,0.0000,0.0000,57.2100,0.0000,0.0000,0.0000,51.2000,0.0000,0.0000,0.0000,71.5800,0.0000,0.0000,0.0000,55.3800,0.0000,0.0000,0.0000,50.8700,0.0000 +688019.SH,0.0000,0.0000,0.0000,53.2100,0.0000,0.0000,0.0000,44.2200,0.0000,0.0000,0.0000,52.8100,0.0000,0.0000,0.0000,47.0900,0.0000,0.0000,0.0000,46.6500,0.0000 +002594.SZ,0.0000,0.0000,0.0000,27.5200,0.0000,0.0000,0.0000,28.4100,0.0000,0.0000,0.0000,22.0800,0.0000,0.0000,0.0000,20.1700,0.0000,0.0000,0.0000,16.9200,0.0000 +300837.SZ,0.0000,0.0000,0.0000,37.3000,0.0000,0.0000,0.0000,44.1900,0.0000,0.0000,0.0000,36.1100,0.0000,0.0000,0.0000,36.0800,0.0000,0.0000,0.0000,28.0700,0.0000 +301053.SZ,0.0000,0.0000,0.0000,44.3600,0.0000,0.0000,0.0000,43.9000,0.0000,0.0000,0.0000,41.1900,0.0000,0.0000,0.0000,35.1700,0.0000,0.0000,0.0000,36.8300,0.0000 +600371.SH,0.0000,0.0000,0.0000,74.7100,0.0000,0.0000,0.0000,89.3000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +301138.SZ,0.0000,0.0000,0.0000,26.9400,0.0000,33.3700,0.0000,30.6100,0.0000,0.0000,0.0000,25.1100,0.0000,0.0000,0.0000,22.9400,0.0000,0.0000,0.0000,24.2200,0.0000 +600759.SH,0.0000,0.0000,0.0000,35.4500,0.0000,0.0000,0.0000,29.1400,0.0000,0.0000,0.0000,27.7300,0.0000,0.0000,0.0000,35.1800,0.0000,0.0000,0.0000,45.3200,0.0000 +603281.SH,0.0000,0.0000,0.0000,31.5000,0.0000,0.0000,0.0000,34.1900,0.0000,37.3600,0.0000,31.4100,0.0000,0.0000,0.0000,29.7000,0.0000,0.0000,0.0000,39.4500,0.0000 +000156.SZ,0.0000,0.0000,0.0000,19.8800,0.0000,0.0000,0.0000,18.5400,0.0000,0.0000,0.0000,16.5200,0.0000,0.0000,0.0000,21.4200,0.0000,0.0000,0.0000,22.9800,0.0000 +000531.SZ,0.0000,0.0000,0.0000,94.2400,0.0000,0.0000,0.0000,86.0700,0.0000,0.0000,0.0000,89.4600,0.0000,0.0000,0.0000,76.1200,0.0000,0.0000,0.0000,89.0400,0.0000 +600702.SH,0.0000,0.0000,0.0000,31.7100,0.0000,0.0000,0.0000,24.9300,0.0000,0.0000,0.0000,22.0100,0.0000,0.0000,0.0000,29.4300,0.0000,0.0000,0.0000,31.4300,0.0000 +605011.SH,0.0000,0.0000,0.0000,86.9200,0.0000,0.0000,0.0000,87.0200,0.0000,0.0000,0.0000,88.4400,0.0000,0.0000,0.0000,83.0700,0.0000,0.0000,0.0000,79.8200,0.0000 +301269.SZ,0.0000,0.0000,0.0000,65.9500,0.0000,0.0000,0.0000,54.4800,0.0000,0.0000,0.0000,29.7800,0.0000,0.0000,0.0000,26.1700,0.0000,0.0000,0.0000,35.5300,0.0000 +603728.SH,0.0000,0.0000,0.0000,32.3400,0.0000,0.0000,0.0000,31.1400,0.0000,0.0000,0.0000,28.3400,0.0000,0.0000,0.0000,25.0600,0.0000,0.0000,0.0000,22.3500,0.0000 +300926.SZ,0.0000,0.0000,0.0000,36.2500,0.0000,0.0000,0.0000,34.9700,0.0000,0.0000,0.0000,46.6800,0.0000,0.0000,0.0000,43.8900,0.0000,0.0000,0.0000,39.4100,0.0000 +601566.SH,0.0000,0.0000,0.0000,17.0300,0.0000,0.0000,0.0000,13.8900,0.0000,0.0000,0.0000,10.9800,0.0000,0.0000,0.0000,15.3600,0.0000,0.0000,0.0000,12.0100,0.0000 +001296.SZ,0.0000,0.0000,0.0000,29.3100,0.0000,28.9500,0.0000,25.7100,0.0000,0.0000,0.0000,19.1400,0.0000,0.0000,0.0000,29.2100,0.0000,0.0000,0.0000,28.4700,0.0000 +002479.SZ,0.0000,0.0000,0.0000,44.4500,0.0000,0.0000,0.0000,41.3800,0.0000,0.0000,0.0000,35.1900,0.0000,0.0000,0.0000,36.5300,0.0000,0.0000,0.0000,36.5000,0.0000 +600748.SH,0.0000,0.0000,0.0000,48.9200,0.0000,0.0000,0.0000,67.3100,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,47.8800,0.0000,0.0000,0.0000,22.9200,0.0000 +002050.SZ,0.0000,0.0000,0.0000,15.3700,0.0000,0.0000,0.0000,14.8000,0.0000,0.0000,0.0000,13.3800,0.0000,0.0000,0.0000,14.3200,0.0000,0.0000,0.0000,15.4500,0.0000 +002731.SZ,0.0000,0.0000,0.0000,97.7600,0.0000,0.0000,0.0000,98.7300,0.0000,0.0000,0.0000,99.7700,0.0000,0.0000,0.0000,97.7800,0.0000,0.0000,0.0000,89.6000,0.0000 +300781.SZ,0.0000,0.0000,0.0000,12.1600,0.0000,0.0000,0.0000,10.0600,0.0000,0.0000,0.0000,14.5700,0.0000,0.0000,0.0000,20.2400,0.0000,0.0000,0.0000,44.3400,0.0000 +300413.SZ,0.0000,0.0000,0.0000,22.4900,0.0000,0.0000,0.0000,19.9600,0.0000,0.0000,0.0000,19.9500,0.0000,0.0000,0.0000,22.8600,0.0000,0.0000,0.0000,21.4000,0.0000 +603709.SH,0.0000,0.0000,0.0000,26.0100,0.0000,0.0000,0.0000,25.4100,0.0000,0.0000,0.0000,28.4300,0.0000,0.0000,0.0000,28.1500,0.0000,0.0000,0.0000,23.9200,0.0000 +688610.SH,0.0000,0.0000,0.0000,76.8900,0.0000,0.0000,0.0000,67.5700,0.0000,0.0000,0.0000,61.3500,0.0000,0.0000,0.0000,70.6300,0.0000,0.0000,0.0000,60.1100,0.0000 +301021.SZ,0.0000,0.0000,0.0000,63.2800,0.0000,0.0000,0.0000,49.1100,0.0000,0.0000,0.0000,43.2200,0.0000,0.0000,0.0000,31.9400,0.0000,0.0000,0.0000,33.8500,0.0000 +688127.SH,0.0000,0.0000,0.0000,43.1400,0.0000,0.0000,0.0000,42.6200,0.0000,0.0000,0.0000,38.8200,0.0000,0.0000,0.0000,29.2500,0.0000,0.0000,0.0000,31.9000,0.0000 +688486.SH,0.0000,0.0000,0.0000,98.7800,0.0000,0.0000,0.0000,96.1900,0.0000,96.8300,0.0000,84.4500,0.0000,0.0000,0.0000,83.2300,0.0000,0.0000,0.0000,93.0400,0.0000 +300629.SZ,0.0000,0.0000,0.0000,22.5900,0.0000,0.0000,0.0000,30.6800,0.0000,0.0000,0.0000,25.7000,0.0000,0.0000,0.0000,27.1900,0.0000,0.0000,0.0000,28.5400,0.0000 +600511.SH,0.0000,0.0000,0.0000,20.0000,0.0000,0.0000,0.0000,20.1700,0.0000,0.0000,0.0000,28.9100,0.0000,0.0000,0.0000,19.0800,0.0000,0.0000,0.0000,17.7000,0.0000 +300354.SZ,0.0000,0.0000,0.0000,27.5500,0.0000,0.0000,0.0000,26.4400,0.0000,0.0000,0.0000,16.2100,0.0000,0.0000,0.0000,16.4400,0.0000,0.0000,0.0000,27.1600,0.0000 +603937.SH,0.0000,0.0000,0.0000,54.5500,0.0000,0.0000,0.0000,33.4700,0.0000,0.0000,0.0000,56.1700,0.0000,0.0000,0.0000,49.5700,0.0000,0.0000,0.0000,66.9500,0.0000 +300381.SZ,0.0000,0.0000,0.0000,28.5200,0.0000,0.0000,0.0000,27.7100,0.0000,0.0000,0.0000,28.2800,0.0000,0.0000,0.0000,29.0200,0.0000,0.0000,0.0000,29.7700,0.0000 +605300.SH,0.0000,0.0000,44.0300,0.0000,0.0000,0.0000,0.0000,42.9900,0.0000,0.0000,0.0000,40.5800,0.0000,0.0000,0.0000,43.5600,0.0000,0.0000,0.0000,37.3500,0.0000 +603776.SH,0.0000,0.0000,0.0000,33.0300,0.0000,0.0000,0.0000,21.1800,0.0000,0.0000,0.0000,15.7800,0.0000,0.0000,0.0000,18.9400,0.0000,0.0000,0.0000,21.7700,0.0000 +603035.SH,0.0000,0.0000,0.0000,13.6300,0.0000,0.0000,0.0000,16.4200,0.0000,0.0000,0.0000,17.4800,0.0000,0.0000,0.0000,22.4700,0.0000,0.0000,0.0000,23.7400,0.0000 +002601.SZ,0.0000,0.0000,0.0000,11.8000,0.0000,0.0000,0.0000,15.2600,0.0000,0.0000,0.0000,17.2000,0.0000,0.0000,0.0000,13.6700,0.0000,0.0000,0.0000,21.1200,0.0000 +300317.SZ,0.0000,0.0000,0.0000,25.9500,0.0000,0.0000,0.0000,42.1100,0.0000,0.0000,0.0000,27.2100,0.0000,0.0000,0.0000,72.8600,0.0000,0.0000,0.0000,33.3100,0.0000 +603577.SH,0.0000,0.0000,0.0000,37.1400,0.0000,0.0000,0.0000,33.1000,0.0000,0.0000,0.0000,34.9100,0.0000,0.0000,0.0000,39.6300,0.0000,0.0000,0.0000,34.5800,0.0000 +301181.SZ,0.0000,0.0000,0.0000,60.1200,0.0000,58.2400,0.0000,54.3500,0.0000,0.0000,0.0000,46.8900,0.0000,0.0000,0.0000,39.6800,0.0000,0.0000,0.0000,31.7900,0.0000 +300143.SZ,0.0000,0.0000,0.0000,22.3600,0.0000,0.0000,0.0000,54.3200,0.0000,0.0000,0.0000,57.7900,0.0000,0.0000,0.0000,44.9300,0.0000,0.0000,0.0000,58.5200,0.0000 +002405.SZ,0.0000,0.0000,0.0000,30.7600,0.0000,0.0000,0.0000,28.6700,0.0000,0.0000,0.0000,34.4700,0.0000,0.0000,0.0000,34.1400,0.0000,0.0000,0.0000,39.2900,0.0000 +000403.SZ,0.0000,0.0000,0.0000,59.8400,0.0000,0.0000,0.0000,72.7800,0.0000,0.0000,0.0000,66.5000,0.0000,0.0000,0.0000,61.2100,0.0000,0.0000,0.0000,44.5800,0.0000 +688289.SH,0.0000,0.0000,0.0000,43.0100,0.0000,0.0000,0.0000,43.3500,0.0000,0.0000,0.0000,33.7200,0.0000,0.0000,0.0000,38.8300,0.0000,0.0000,0.0000,37.6300,0.0000 +600526.SH,0.0000,0.0000,0.0000,17.8900,0.0000,0.0000,0.0000,26.1300,0.0000,0.0000,0.0000,27.0500,0.0000,0.0000,0.0000,22.4600,0.0000,0.0000,0.0000,25.0000,0.0000 +600000.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +688020.SH,0.0000,0.0000,0.0000,56.5100,0.0000,0.0000,0.0000,69.4100,0.0000,0.0000,0.0000,77.3900,0.0000,0.0000,0.0000,82.3700,0.0000,0.0000,0.0000,74.8800,0.0000 +002316.SZ,0.0000,0.0000,0.0000,7.5000,0.0000,0.0000,0.0000,5.0500,0.0000,0.0000,0.0000,22.4800,0.0000,0.0000,0.0000,26.8100,0.0000,0.0000,0.0000,17.9000,0.0000 +833575.BJ,0.0000,0.0000,0.0000,58.1100,0.0000,0.0000,0.0000,41.1800,44.9400,0.0000,42.0700,100.0000,0.0000,0.0000,0.0000,42.3100,0.0000,0.0000,0.0000,45.7700,0.0000 +601878.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +600834.SH,0.0000,0.0000,0.0000,25.3300,0.0000,0.0000,0.0000,22.6600,0.0000,0.0000,0.0000,36.2300,0.0000,0.0000,0.0000,37.5600,0.0000,0.0000,0.0000,61.6700,0.0000 +301119.SZ,0.0000,0.0000,0.0000,36.8000,0.0000,37.7600,0.0000,37.1100,0.0000,0.0000,0.0000,39.2100,0.0000,0.0000,0.0000,26.7500,0.0000,0.0000,0.0000,44.2200,0.0000 +000159.SZ,0.0000,0.0000,0.0000,74.7800,0.0000,0.0000,0.0000,54.5100,0.0000,0.0000,0.0000,32.7900,0.0000,0.0000,0.0000,27.0400,0.0000,0.0000,0.0000,28.7900,0.0000 +601199.SH,0.0000,0.0000,0.0000,45.7500,0.0000,0.0000,0.0000,28.3400,0.0000,0.0000,0.0000,25.2500,0.0000,0.0000,0.0000,22.0900,0.0000,0.0000,0.0000,27.8800,0.0000 +001376.SZ,0.0000,0.0000,0.0000,46.2800,0.0000,0.0000,0.0000,41.0700,0.0000,0.0000,0.0000,32.5200,0.0000,41.2400,0.0000,32.1500,0.0000,0.0000,0.0000,47.0700,0.0000 +601601.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +605598.SH,0.0000,0.0000,0.0000,31.8500,0.0000,0.0000,0.0000,15.8600,0.0000,0.0000,0.0000,14.6300,0.0000,0.0000,0.0000,16.7900,0.0000,0.0000,0.0000,19.3500,0.0000 +600272.SH,0.0000,0.0000,0.0000,40.3500,0.0000,0.0000,0.0000,37.2700,0.0000,0.0000,0.0000,38.0500,0.0000,0.0000,0.0000,29.3800,0.0000,0.0000,0.0000,19.2800,0.0000 +301005.SZ,0.0000,0.0000,0.0000,35.2200,0.0000,0.0000,0.0000,31.4200,0.0000,0.0000,0.0000,19.3800,0.0000,0.0000,0.0000,26.1300,0.0000,0.0000,0.0000,19.2000,0.0000 +000819.SZ,0.0000,0.0000,0.0000,81.1800,0.0000,0.0000,0.0000,81.9500,0.0000,0.0000,0.0000,91.7600,0.0000,0.0000,0.0000,90.2700,0.0000,0.0000,0.0000,89.7300,0.0000 +688096.SH,0.0000,0.0000,0.0000,21.7300,0.0000,0.0000,0.0000,23.0800,0.0000,0.0000,0.0000,22.1500,0.0000,0.0000,0.0000,17.7500,0.0000,0.0000,0.0000,14.3900,0.0000 +002871.SZ,0.0000,0.0000,0.0000,14.1900,0.0000,0.0000,0.0000,20.5200,0.0000,0.0000,0.0000,20.7300,0.0000,0.0000,0.0000,15.2500,0.0000,0.0000,0.0000,14.4800,0.0000 +300829.SZ,0.0000,0.0000,0.0000,17.1500,0.0000,0.0000,0.0000,13.1200,0.0000,0.0000,0.0000,16.9700,0.0000,0.0000,0.0000,15.9900,0.0000,0.0000,0.0000,20.1300,0.0000 +688105.SH,0.0000,0.0000,0.0000,17.5900,0.0000,20.7900,0.0000,17.0100,0.0000,0.0000,0.0000,24.6600,0.0000,0.0000,0.0000,23.2900,0.0000,0.0000,0.0000,17.1300,0.0000 +920029.BJ,0.0000,0.0000,0.0000,36.5200,0.0000,0.0000,0.0000,32.6600,0.0000,0.0000,0.0000,33.4900,0.0000,37.9800,0.0000,37.9200,0.0000,33.4600,0.0000,35.5100,0.0000 +300441.SZ,0.0000,0.0000,0.0000,10.3500,0.0000,0.0000,0.0000,13.8500,0.0000,0.0000,0.0000,13.5700,0.0000,0.0000,0.0000,12.8300,0.0000,0.0000,0.0000,14.9800,0.0000 +301102.SZ,0.0000,0.0000,0.0000,65.2100,0.0000,68.2100,0.0000,70.0400,0.0000,0.0000,0.0000,63.4200,0.0000,0.0000,0.0000,49.6600,0.0000,0.0000,0.0000,44.7900,0.0000 +301150.SZ,0.0000,0.0000,0.0000,82.5700,0.0000,90.2900,0.0000,0.0000,0.0000,0.0000,0.0000,68.2400,0.0000,0.0000,0.0000,74.9200,0.0000,0.0000,0.0000,78.0800,0.0000 +002407.SZ,0.0000,0.0000,0.0000,25.3400,0.0000,0.0000,0.0000,28.1400,0.0000,0.0000,0.0000,31.7100,0.0000,0.0000,0.0000,22.2400,0.0000,0.0000,0.0000,22.3100,0.0000 +000682.SZ,0.0000,0.0000,0.0000,9.9700,0.0000,0.0000,0.0000,12.0200,0.0000,0.0000,0.0000,11.4100,0.0000,0.0000,0.0000,7.4700,0.0000,0.0000,0.0000,6.1800,0.0000 +002913.SZ,0.0000,0.0000,0.0000,34.0300,0.0000,0.0000,0.0000,48.0100,0.0000,0.0000,0.0000,36.2600,0.0000,0.0000,0.0000,41.0700,0.0000,0.0000,0.0000,35.6500,0.0000 +600080.SH,0.0000,0.0000,0.0000,23.7700,0.0000,0.0000,0.0000,37.4600,0.0000,0.0000,0.0000,36.6900,0.0000,0.0000,0.0000,42.1500,0.0000,0.0000,0.0000,48.4000,0.0000 +688047.SH,0.0000,0.0000,0.0000,90.7900,0.0000,0.0000,0.0000,80.8400,0.0000,0.0000,0.0000,64.2500,0.0000,0.0000,0.0000,75.4600,0.0000,0.0000,0.0000,72.1600,0.0000 +603387.SH,0.0000,0.0000,0.0000,16.1100,0.0000,0.0000,0.0000,11.5600,0.0000,0.0000,0.0000,17.3800,0.0000,0.0000,0.0000,18.2600,0.0000,0.0000,0.0000,11.5900,0.0000 +601949.SH,0.0000,0.0000,0.0000,15.9400,0.0000,0.0000,0.0000,9.9800,0.0000,0.0000,0.0000,10.9600,0.0000,0.0000,0.0000,11.4400,0.0000,0.0000,0.0000,7.9000,0.0000 +002785.SZ,0.0000,0.0000,0.0000,19.8700,0.0000,0.0000,0.0000,24.7700,0.0000,0.0000,0.0000,31.0800,0.0000,0.0000,0.0000,39.1500,0.0000,0.0000,0.0000,32.1900,0.0000 +002521.SZ,0.0000,0.0000,0.0000,44.3600,0.0000,0.0000,0.0000,37.7400,0.0000,0.0000,0.0000,42.9900,0.0000,0.0000,0.0000,42.0800,0.0000,0.0000,0.0000,50.0800,0.0000 +688001.SH,0.0000,0.0000,0.0000,15.3600,0.0000,0.0000,0.0000,20.3800,0.0000,0.0000,0.0000,16.9700,0.0000,0.0000,0.0000,17.9700,0.0000,0.0000,0.0000,14.6200,0.0000 +002832.SZ,0.0000,0.0000,0.0000,32.3700,0.0000,0.0000,0.0000,33.7500,0.0000,0.0000,0.0000,33.5300,0.0000,0.0000,0.0000,34.1200,0.0000,0.0000,0.0000,43.1900,0.0000 +603950.SH,0.0000,0.0000,0.0000,77.4700,0.0000,0.0000,0.0000,65.5800,0.0000,0.0000,0.0000,64.2100,0.0000,0.0000,0.0000,54.4100,0.0000,0.0000,0.0000,44.8300,0.0000 +300357.SZ,0.0000,0.0000,0.0000,92.1800,0.0000,0.0000,0.0000,85.4800,0.0000,0.0000,0.0000,81.1100,0.0000,0.0000,0.0000,86.6000,0.0000,0.0000,0.0000,75.0100,0.0000 +002381.SZ,0.0000,0.0000,0.0000,28.3400,0.0000,0.0000,0.0000,24.2900,0.0000,0.0000,0.0000,26.3100,0.0000,0.0000,0.0000,25.4700,0.0000,0.0000,0.0000,29.5000,0.0000 +002532.SZ,0.0000,0.0000,0.0000,34.1800,0.0000,0.0000,0.0000,32.2900,0.0000,0.0000,0.0000,28.9400,0.0000,0.0000,0.0000,29.7600,0.0000,0.0000,0.0000,42.2600,0.0000 +300937.SZ,0.0000,0.0000,0.0000,27.9200,0.0000,0.0000,0.0000,26.9200,0.0000,0.0000,0.0000,19.5400,0.0000,0.0000,0.0000,17.6600,0.0000,0.0000,0.0000,16.6900,0.0000 +601901.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +002853.SZ,0.0000,0.0000,0.0000,20.1000,0.0000,0.0000,0.0000,16.4900,0.0000,0.0000,0.0000,16.9600,0.0000,0.0000,0.0000,17.9700,0.0000,0.0000,0.0000,18.5300,0.0000 +301093.SZ,0.0000,0.0000,0.0000,54.1000,0.0000,0.0000,0.0000,43.0900,0.0000,0.0000,0.0000,28.0800,0.0000,0.0000,0.0000,34.0400,0.0000,0.0000,0.0000,34.5500,0.0000 +688501.SH,0.0000,0.0000,0.0000,27.6400,0.0000,0.0000,0.0000,19.6000,0.0000,0.0000,0.0000,17.5600,0.0000,0.0000,0.0000,11.2300,0.0000,0.0000,0.0000,27.7900,0.0000 +605066.SH,0.0000,0.0000,0.0000,15.8200,0.0000,0.0000,0.0000,16.3900,0.0000,0.0000,0.0000,23.0700,0.0000,0.0000,0.0000,24.0100,0.0000,0.0000,0.0000,15.8600,0.0000 +600757.SH,0.0000,0.0000,0.0000,42.0000,0.0000,0.0000,0.0000,11.0000,0.0000,0.0000,0.0000,13.0000,0.0000,0.0000,0.0000,12.0000,0.0000,0.0000,0.0000,14.0000,0.0000 +603337.SH,0.0000,0.0000,0.0000,14.7400,0.0000,0.0000,0.0000,15.0500,0.0000,0.0000,0.0000,13.8100,0.0000,0.0000,0.0000,14.0400,0.0000,0.0000,0.0000,13.0500,0.0000 +002657.SZ,0.0000,0.0000,0.0000,21.0400,0.0000,0.0000,0.0000,26.1900,0.0000,0.0000,0.0000,38.3900,0.0000,0.0000,0.0000,30.3200,0.0000,0.0000,0.0000,42.1800,0.0000 +300562.SZ,0.0000,0.0000,0.0000,19.3300,0.0000,0.0000,0.0000,18.3100,0.0000,0.0000,0.0000,20.1300,0.0000,0.0000,0.0000,23.9800,0.0000,0.0000,0.0000,31.1200,0.0000 +002723.SZ,0.0000,0.0000,0.0000,29.0500,0.0000,0.0000,0.0000,24.0000,0.0000,0.0000,0.0000,20.3800,0.0000,0.0000,0.0000,12.8600,0.0000,0.0000,0.0000,12.8400,0.0000 +300923.SZ,0.0000,0.0000,0.0000,44.2400,0.0000,0.0000,0.0000,38.1900,0.0000,0.0000,0.0000,43.7200,0.0000,0.0000,0.0000,58.5300,0.0000,0.0000,0.0000,52.1800,0.0000 +603602.SH,0.0000,0.0000,0.0000,18.9200,0.0000,0.0000,0.0000,32.8100,0.0000,0.0000,0.0000,34.6500,0.0000,0.0000,0.0000,31.0400,0.0000,0.0000,0.0000,22.7900,0.0000 +300039.SZ,0.0000,0.0000,0.0000,50.0400,0.0000,0.0000,0.0000,54.0400,0.0000,0.0000,0.0000,49.5500,0.0000,0.0000,0.0000,43.8800,0.0000,0.0000,0.0000,49.9300,0.0000 +300796.SZ,0.0000,0.0000,0.0000,60.8000,0.0000,0.0000,0.0000,58.7700,0.0000,0.0000,0.0000,68.0400,0.0000,0.0000,0.0000,48.0000,0.0000,0.0000,0.0000,16.8500,0.0000 +002330.SZ,0.0000,0.0000,0.0000,17.1800,0.0000,0.0000,0.0000,16.0100,0.0000,0.0000,0.0000,21.2300,0.0000,0.0000,0.0000,8.8900,0.0000,0.0000,0.0000,22.6600,0.0000 +601975.SH,0.0000,0.0000,0.0000,14.9100,0.0000,0.0000,0.0000,19.1200,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,16.6200,0.0000,0.0000,0.0000,24.4980,0.0000 +000027.SZ,0.0000,0.0000,0.0000,50.4100,0.0000,0.0000,0.0000,22.2700,0.0000,0.0000,0.0000,23.8000,0.0000,0.0000,0.0000,24.9600,0.0000,0.0000,0.0000,22.1100,0.0000 +000030.SZ,0.0000,0.0000,0.0000,16.4200,0.0000,0.0000,0.0000,12.4600,0.0000,0.0000,0.0000,14.1300,0.0000,0.0000,0.0000,10.8800,0.0000,0.0000,0.0000,24.3900,0.0000 +002721.SZ,0.0000,0.0000,0.0000,82.4200,0.0000,0.0000,0.0000,92.4300,0.0000,0.0000,0.0000,90.7100,0.0000,0.0000,0.0000,95.5300,0.0000,0.0000,0.0000,78.4000,0.0000 +002810.SZ,0.0000,0.0000,0.0000,38.9500,0.0000,0.0000,0.0000,47.5200,0.0000,0.0000,0.0000,29.3600,0.0000,0.0000,0.0000,31.3200,0.0000,0.0000,0.0000,31.9400,0.0000 +605118.SH,0.0000,0.0000,0.0000,24.0200,0.0000,0.0000,0.0000,22.5500,0.0000,0.0000,0.0000,22.8500,0.0000,0.0000,0.0000,29.7800,0.0000,0.0000,0.0000,29.1900,0.0000 +603090.SH,0.0000,0.0000,0.0000,45.0400,0.0000,0.0000,0.0000,39.3200,0.0000,0.0000,0.0000,39.1400,0.0000,0.0000,0.0000,41.9500,0.0000,0.0000,0.0000,42.6500,0.0000 +300898.SZ,0.0000,0.0000,0.0000,79.2800,0.0000,0.0000,0.0000,78.8700,0.0000,0.0000,0.0000,65.3600,0.0000,0.0000,0.0000,52.1200,0.0000,0.0000,0.0000,41.3600,0.0000 +603386.SH,0.0000,0.0000,0.0000,33.1600,0.0000,0.0000,0.0000,41.2200,0.0000,0.0000,0.0000,40.8900,0.0000,0.0000,0.0000,37.8900,0.0000,0.0000,0.0000,37.7300,0.0000 +301108.SZ,0.0000,0.0000,0.0000,37.9900,0.0000,41.8200,0.0000,44.7500,0.0000,0.0000,0.0000,47.3600,0.0000,0.0000,0.0000,52.2900,0.0000,0.0000,0.0000,53.1900,0.0000 +300775.SZ,0.0000,0.0000,0.0000,90.4200,0.0000,0.0000,0.0000,93.3700,0.0000,0.0000,0.0000,89.6700,0.0000,0.0000,0.0000,81.1600,0.0000,0.0000,0.0000,84.2300,0.0000 +600738.SH,0.0000,0.0000,0.0000,23.9700,0.0000,0.0000,0.0000,52.2300,0.0000,0.0000,0.0000,67.8600,0.0000,0.0000,0.0000,48.7000,0.0000,0.0000,0.0000,48.3400,0.0000 +000850.SZ,0.0000,0.0000,0.0000,23.0300,0.0000,0.0000,0.0000,26.6600,0.0000,0.0000,0.0000,26.3300,0.0000,0.0000,0.0000,31.6000,0.0000,0.0000,0.0000,20.0100,0.0000 +002320.SZ,0.0000,0.0000,0.0000,15.9200,0.0000,0.0000,0.0000,33.5500,0.0000,0.0000,0.0000,37.4800,0.0000,0.0000,0.0000,34.2700,0.0000,0.0000,0.0000,25.5100,0.0000 +300668.SZ,0.0000,0.0000,0.0000,24.6400,0.0000,0.0000,0.0000,17.4400,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.8900,0.0000,0.0000,0.0000,6.1200,0.0000 +603100.SH,0.0000,0.0000,0.0000,24.9700,0.0000,0.0000,0.0000,23.5100,0.0000,0.0000,0.0000,3.4600,0.0000,23.1800,0.0000,20.7200,0.0000,24.4700,0.0000,23.2700,0.0000 +002938.SZ,0.0000,0.0000,0.0000,30.4800,0.0000,0.0000,0.0000,28.5600,0.0000,0.0000,0.0000,29.8800,0.0000,0.0000,0.0000,30.6100,0.0000,0.0000,0.0000,29.2900,0.0000 +603948.SH,0.0000,0.0000,0.0000,36.8600,0.0000,0.0000,0.0000,28.9300,0.0000,0.0000,0.0000,34.0800,0.0000,0.0000,0.0000,31.9700,0.0000,0.0000,0.0000,35.6900,0.0000 +600517.SH,0.0000,0.0000,0.0000,10.2100,0.0000,0.0000,0.0000,10.6400,0.0000,0.0000,0.0000,12.5400,0.0000,0.0000,0.0000,13.5200,0.0000,0.0000,0.0000,12.7700,0.0000 +600032.SH,0.0000,0.0000,0.0000,95.2100,0.0000,0.0000,0.0000,75.1800,0.0000,0.0000,0.0000,75.5300,0.0000,0.0000,0.0000,90.0200,0.0000,0.0000,0.0000,84.6200,0.0000 +000008.SZ,0.0000,0.0000,0.0000,11.4100,0.0000,0.0000,0.0000,30.4000,0.0000,0.0000,0.0000,10.4600,0.0000,0.0000,0.0000,13.3900,0.0000,0.0000,0.0000,13.1200,0.0000 +601615.SH,0.0000,0.0000,0.0000,25.5400,0.0000,0.0000,0.0000,23.0000,0.0000,0.0000,0.0000,24.3400,0.0000,0.0000,0.0000,17.8600,0.0000,0.0000,0.0000,24.5500,0.0000 +003043.SZ,0.0000,0.0000,0.0000,22.0500,0.0000,0.0000,0.0000,23.2000,0.0000,0.0000,0.0000,25.2700,0.0000,0.0000,0.0000,29.9600,0.0000,0.0000,0.0000,19.4100,0.0000 +601636.SH,0.0000,0.0000,0.0000,18.8900,0.0000,0.0000,0.0000,19.6100,0.0000,0.0000,0.0000,18.5400,0.0000,0.0000,0.0000,18.5300,0.0000,0.0000,0.0000,26.1700,0.0000 +688677.SH,0.0000,0.0000,0.0000,38.2900,0.0000,0.0000,0.0000,32.2400,0.0000,0.0000,0.0000,36.2000,0.0000,0.0000,0.0000,29.9900,0.0000,0.0000,0.0000,35.6200,0.0000 +688507.SH,0.0000,0.0000,0.0000,66.3200,0.0000,0.0000,0.0000,60.6800,0.0000,65.3200,0.0000,0.0000,0.0000,0.0000,0.0000,49.8600,0.0000,0.0000,0.0000,40.6800,0.0000 +688187.SH,0.0000,0.0000,0.0000,36.6800,0.0000,0.0000,0.0000,32.9900,0.0000,0.0000,0.0000,21.1600,0.0000,0.0000,0.0000,18.1000,0.0000,0.0000,0.0000,20.6300,0.0000 +300286.SZ,0.0000,0.0000,0.0000,17.2300,0.0000,0.0000,0.0000,15.8400,0.0000,0.0000,0.0000,17.1100,0.0000,0.0000,0.0000,18.6100,0.0000,0.0000,0.0000,18.4200,0.0000 +600866.SH,0.0000,0.0000,0.0000,33.6100,0.0000,0.0000,0.0000,36.3400,0.0000,0.0000,0.0000,10.0200,0.0000,0.0000,0.0000,7.7800,0.0000,0.0000,0.0000,8.3800,0.0000 +688016.SH,0.0000,0.0000,0.0000,47.1700,0.0000,0.0000,0.0000,40.7200,0.0000,0.0000,0.0000,63.4700,0.0000,0.0000,0.0000,45.3800,0.0000,0.0000,0.0000,52.5100,0.0000 +300897.SZ,0.0000,0.0000,0.0000,33.6100,0.0000,0.0000,0.0000,32.6100,0.0000,0.0000,0.0000,29.8900,0.0000,0.0000,0.0000,29.0300,0.0000,0.0000,0.0000,29.3300,0.0000 +002918.SZ,0.0000,0.0000,0.0000,18.6300,0.0000,0.0000,0.0000,19.5300,0.0000,0.0000,0.0000,25.5500,0.0000,0.0000,0.0000,30.4000,0.0000,0.0000,0.0000,28.4200,0.0000 +003006.SZ,0.0000,0.0000,0.0000,25.0900,0.0000,0.0000,0.0000,22.2500,0.0000,0.0000,0.0000,23.7400,0.0000,0.0000,0.0000,30.6000,0.0000,0.0000,0.0000,20.3600,0.0000 +002849.SZ,0.0000,0.0000,0.0000,38.5900,0.0000,0.0000,0.0000,31.8700,0.0000,0.0000,0.0000,29.6200,0.0000,0.0000,0.0000,31.6000,0.0000,0.0000,0.0000,32.3500,0.0000 +600162.SH,0.0000,0.0000,0.0000,73.0000,0.0000,0.0000,0.0000,70.6600,0.0000,0.0000,0.0000,61.0800,0.0000,0.0000,0.0000,27.7600,0.0000,0.0000,0.0000,96.6900,0.0000 +300158.SZ,0.0000,0.0000,0.0000,22.4800,0.0000,0.0000,0.0000,23.0300,0.0000,0.0000,0.0000,28.0500,0.0000,0.0000,0.0000,20.7300,0.0000,0.0000,0.0000,18.0200,0.0000 +603209.SH,0.0000,0.0000,0.0000,29.3800,0.0000,0.0000,0.0000,44.4300,0.0000,0.0000,0.0000,51.5800,0.0000,0.0000,0.0000,25.9400,0.0000,0.0000,0.0000,35.9600,0.0000 +002867.SZ,0.0000,0.0000,0.0000,72.5100,0.0000,0.0000,0.0000,83.4700,0.0000,0.0000,0.0000,90.7600,0.0000,0.0000,0.0000,97.5200,0.0000,0.0000,0.0000,92.8900,0.0000 +600563.SH,0.0000,0.0000,0.0000,33.7000,0.0000,0.0000,0.0000,26.5200,0.0000,0.0000,0.0000,27.4500,0.0000,0.0000,0.0000,31.8100,0.0000,0.0000,0.0000,25.7100,0.0000 +603615.SH,0.0000,0.0000,0.0000,38.2000,0.0000,0.0000,0.0000,43.3400,0.0000,0.0000,0.0000,34.0400,0.0000,0.0000,0.0000,34.3400,0.0000,0.0000,0.0000,32.3900,0.0000 +300198.SZ,0.0000,0.0000,0.0000,39.7900,0.0000,0.0000,0.0000,43.9700,0.0000,0.0000,0.0000,33.2300,0.0000,0.0000,0.0000,55.4100,0.0000,0.0000,0.0000,44.9200,0.0000 +001234.SZ,0.0000,0.0000,0.0000,51.5000,0.0000,51.9900,0.0000,45.8000,0.0000,0.0000,0.0000,41.4500,0.0000,0.0000,0.0000,37.8900,0.0000,0.0000,0.0000,38.2700,0.0000 +688312.SH,0.0000,0.0000,0.0000,13.0700,0.0000,0.0000,0.0000,11.7700,0.0000,0.0000,0.0000,17.1400,0.0000,0.0000,0.0000,17.8000,0.0000,0.0000,0.0000,16.8800,0.0000 +601966.SH,0.0000,0.0000,0.0000,27.0900,0.0000,0.0000,0.0000,26.4100,0.0000,0.0000,0.0000,25.2900,0.0000,0.0000,0.0000,24.9800,0.0000,0.0000,0.0000,25.5900,0.0000 +600850.SH,0.0000,0.0000,0.0000,35.5600,0.0000,0.0000,0.0000,35.0000,0.0000,0.0000,0.0000,43.5200,0.0000,0.0000,0.0000,38.7900,0.0000,0.0000,0.0000,40.9300,0.0000 +603958.SH,0.0000,0.0000,0.0000,54.0700,0.0000,0.0000,0.0000,50.5900,0.0000,0.0000,0.0000,55.3500,0.0000,0.0000,0.0000,44.7600,0.0000,0.0000,0.0000,33.5000,0.0000 +600512.SH,0.0000,0.0000,0.0000,35.1200,0.0000,0.0000,0.0000,28.0000,0.0000,0.0000,0.0000,35.6200,0.0000,0.0000,0.0000,38.8500,0.0000,0.0000,0.0000,15.7800,0.0000 +603017.SH,0.0000,0.0000,0.0000,19.5300,0.0000,0.0000,0.0000,27.6300,0.0000,0.0000,0.0000,33.7900,0.0000,0.0000,0.0000,24.0600,0.0000,0.0000,0.0000,8.6700,0.0000 +688261.SH,0.0000,0.0000,0.0000,99.0100,0.0000,97.7300,0.0000,97.6000,0.0000,0.0000,0.0000,96.6900,0.0000,0.0000,0.0000,96.4900,0.0000,0.0000,0.0000,93.0400,0.0000 +300685.SZ,0.0000,0.0000,0.0000,44.5700,0.0000,0.0000,0.0000,53.4500,0.0000,0.0000,0.0000,52.3900,0.0000,0.0000,0.0000,44.6400,0.0000,0.0000,0.0000,45.3600,0.0000 +000811.SZ,0.0000,0.0000,0.0000,7.9000,0.0000,0.0000,0.0000,10.2200,0.0000,0.0000,0.0000,7.8000,0.0000,0.0000,0.0000,8.9100,0.0000,0.0000,0.0000,7.6100,0.0000 +601022.SH,0.0000,0.0000,0.0000,34.7900,0.0000,0.0000,0.0000,34.6600,0.0000,35.9500,0.0000,33.6600,0.0000,0.0000,0.0000,36.2700,0.0000,0.0000,0.0000,32.2500,0.0000 +688169.SH,0.0000,0.0000,0.0000,73.0900,0.0000,0.0000,0.0000,69.6400,0.0000,0.0000,0.0000,71.5100,0.0000,0.0000,0.0000,50.3000,0.0000,0.0000,0.0000,31.6500,0.0000 +600604.SH,0.0000,0.0000,0.0000,78.1400,0.0000,0.0000,0.0000,66.7000,0.0000,0.0000,0.0000,94.4500,0.0000,0.0000,0.0000,70.3800,0.0000,0.0000,0.0000,49.1000,0.0000 +600354.SH,0.0000,0.0000,0.0000,27.1800,0.0000,0.0000,0.0000,7.2800,0.0000,0.0000,0.0000,14.0800,0.0000,0.0000,0.0000,15.1600,0.0000,0.0000,0.0000,9.8000,0.0000 +002485.SZ,0.0000,0.0000,0.0000,53.5700,0.0000,0.0000,0.0000,78.2300,0.0000,0.0000,0.0000,75.0200,0.0000,0.0000,0.0000,92.0700,0.0000,0.0000,0.0000,90.2500,0.0000 +301370.SZ,0.0000,0.0000,0.0000,71.6400,0.0000,0.0000,0.0000,75.6800,0.0000,0.0000,0.0000,73.1900,0.0000,0.0000,0.0000,56.2800,0.0000,0.0000,0.0000,56.9900,0.0000 +300664.SZ,0.0000,0.0000,0.0000,14.5500,0.0000,0.0000,0.0000,20.3900,0.0000,0.0000,0.0000,25.1700,0.0000,0.0000,0.0000,23.0700,0.0000,0.0000,0.0000,21.1300,0.0000 +600773.SH,0.0000,0.0000,0.0000,78.7000,0.0000,0.0000,0.0000,34.1700,0.0000,0.0000,0.0000,63.2100,0.0000,0.0000,0.0000,49.0800,0.0000,0.0000,0.0000,46.1700,0.0000 +601588.SH,0.0000,0.0000,0.0000,21.7500,0.0000,0.0000,0.0000,30.6000,0.0000,0.0000,0.0000,46.7900,0.0000,0.0000,0.0000,36.7500,0.0000,0.0000,0.0000,31.3000,0.0000 +832023.BJ,0.0000,0.0000,0.0000,47.0500,0.0000,0.0000,0.0000,36.3300,0.0000,35.4700,0.0000,28.9600,0.0000,0.0000,0.0000,43.9300,0.0000,0.0000,0.0000,28.4400,0.0000 +688499.SH,0.0000,0.0000,0.0000,12.5000,0.0000,0.0000,0.0000,12.8500,0.0000,0.0000,0.0000,12.9100,0.0000,0.0000,0.0000,12.9500,0.0000,0.0000,0.0000,15.8300,0.0000 +600217.SH,0.0000,0.0000,0.0000,37.2800,0.0000,0.0000,0.0000,39.3400,0.0000,0.0000,0.0000,14.7300,0.0000,0.0000,0.0000,28.7900,0.0000,0.0000,0.0000,30.2400,0.0000 +600322.SH,0.0000,0.0000,0.0000,39.0500,0.0000,0.0000,0.0000,36.3100,0.0000,0.0000,0.0000,49.4400,0.0000,0.0000,0.0000,49.4400,0.0000,0.0000,0.0000,75.6300,0.0000 +000548.SZ,0.0000,0.0000,0.0000,28.4400,0.0000,0.0000,0.0000,36.0200,0.0000,0.0000,0.0000,11.7300,0.0000,0.0000,0.0000,50.5500,0.0000,0.0000,0.0000,24.6400,0.0000 +002230.SZ,0.0000,0.0000,0.0000,25.6900,0.0000,0.0000,0.0000,24.7300,0.0000,0.0000,0.0000,13.8300,0.0000,0.0000,0.0000,23.9500,0.0000,0.0000,0.0000,15.9800,0.0000 +603798.SH,0.0000,0.0000,0.0000,48.1700,0.0000,0.0000,0.0000,47.0500,0.0000,0.0000,0.0000,52.5400,0.0000,0.0000,0.0000,51.2800,0.0000,0.0000,0.0000,42.5900,0.0000 +300425.SZ,0.0000,0.0000,0.0000,15.1700,0.0000,0.0000,0.0000,12.3700,0.0000,0.0000,0.0000,13.6400,0.0000,0.0000,0.0000,14.6400,0.0000,0.0000,0.0000,6.7300,0.0000 +603066.SH,0.0000,0.0000,0.0000,42.1800,0.0000,0.0000,0.0000,29.4000,0.0000,0.0000,0.0000,27.5800,0.0000,0.0000,0.0000,27.1500,0.0000,0.0000,0.0000,25.9200,0.0000 +002933.SZ,0.0000,0.0000,0.0000,40.4600,0.0000,0.0000,0.0000,51.6500,0.0000,0.0000,0.0000,32.8200,0.0000,0.0000,0.0000,42.9600,0.0000,0.0000,0.0000,54.5900,0.0000 +600399.SH,0.0000,0.0000,0.0000,32.1600,0.0000,0.0000,0.0000,28.7200,0.0000,0.0000,0.0000,38.0200,0.0000,0.0000,0.0000,25.9500,0.0000,0.0000,0.0000,24.5700,0.0000 +002483.SZ,0.0000,0.0000,0.0000,50.6900,0.0000,0.0000,0.0000,33.0800,0.0000,0.0000,0.0000,35.4800,0.0000,0.0000,0.0000,49.9000,0.0000,0.0000,0.0000,53.4600,0.0000 +688359.SH,0.0000,0.0000,0.0000,53.8600,0.0000,0.0000,0.0000,52.9600,0.0000,0.0000,0.0000,40.1000,0.0000,0.0000,0.0000,31.9100,0.0000,0.0000,0.0000,22.3400,0.0000 +002048.SZ,0.0000,0.0000,0.0000,13.9400,0.0000,0.0000,0.0000,17.4700,0.0000,0.0000,0.0000,13.4400,0.0000,0.0000,0.0000,15.5600,0.0000,0.0000,0.0000,10.2300,0.0000 +002408.SZ,0.0000,0.0000,0.0000,24.2500,0.0000,0.0000,0.0000,27.3300,0.0000,0.0000,0.0000,23.1900,0.0000,0.0000,0.0000,24.8700,0.0000,0.0000,0.0000,30.5500,0.0000 +688231.SH,0.0000,0.0000,0.0000,67.0000,0.0000,0.0000,0.0000,63.2400,0.0000,0.0000,0.0000,40.6600,0.0000,0.0000,0.0000,43.1200,0.0000,0.0000,0.0000,45.4900,0.0000 +000878.SZ,0.0000,0.0000,0.0000,32.0600,0.0000,0.0000,0.0000,44.3200,0.0000,0.0000,0.0000,32.2400,0.0000,0.0000,0.0000,22.7300,0.0000,0.0000,0.0000,23.1700,0.0000 +002270.SZ,0.0000,0.0000,0.0000,37.3700,0.0000,0.0000,0.0000,32.3100,0.0000,0.0000,0.0000,38.1000,0.0000,0.0000,0.0000,31.4900,0.0000,0.0000,0.0000,37.3900,0.0000 +600716.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,77.6900,0.0000,0.0000,0.0000,78.5200,0.0000,0.0000,0.0000,75.4400,0.0000 +600333.SH,0.0000,0.0000,0.0000,78.2400,0.0000,0.0000,0.0000,76.5000,0.0000,0.0000,0.0000,69.5900,0.0000,0.0000,0.0000,61.2400,0.0000,0.0000,0.0000,59.5100,0.0000 +002393.SZ,0.0000,0.0000,0.0000,27.4700,0.0000,0.0000,0.0000,32.5000,0.0000,0.0000,0.0000,48.7300,0.0000,0.0000,0.0000,29.7400,0.0000,0.0000,0.0000,16.8900,0.0000 +300901.SZ,0.0000,0.0000,0.0000,23.3400,0.0000,0.0000,0.0000,20.1500,0.0000,0.0000,0.0000,18.5400,0.0000,0.0000,0.0000,20.3900,0.0000,0.0000,0.0000,25.5500,0.0000 +603239.SH,0.0000,0.0000,0.0000,33.1800,0.0000,0.0000,0.0000,40.3800,0.0000,0.0000,0.0000,42.6400,0.0000,0.0000,0.0000,42.6400,0.0000,0.0000,0.0000,41.0200,0.0000 +002494.SZ,0.0000,0.0000,0.0000,42.2100,0.0000,0.0000,0.0000,57.3300,0.0000,0.0000,0.0000,65.3000,0.0000,0.0000,0.0000,53.6800,0.0000,0.0000,0.0000,58.6300,0.0000 +605123.SH,0.0000,0.0000,0.0000,41.6700,0.0000,0.0000,0.0000,37.1400,0.0000,0.0000,0.0000,53.8500,0.0000,0.0000,0.0000,50.7400,0.0000,0.0000,0.0000,50.8000,0.0000 +688082.SH,0.0000,0.0000,0.0000,28.9200,0.0000,23.2100,0.0000,27.0900,0.0000,0.0000,0.0000,25.1600,0.0000,0.0000,0.0000,23.7700,0.0000,0.0000,0.0000,26.0500,0.0000 +600675.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,40.8900,0.0000,0.0000,0.0000,73.9600,0.0000,0.0000,0.0000,59.0500,0.0000,0.0000,0.0000,61.0100,0.0000 +603982.SH,0.0000,0.0000,0.0000,42.2200,0.0000,0.0000,0.0000,40.2900,0.0000,0.0000,0.0000,35.0700,0.0000,0.0000,0.0000,40.5600,0.0000,0.0000,0.0000,45.6500,0.0000 +300191.SZ,0.0000,0.0000,0.0000,77.2700,0.0000,0.0000,0.0000,44.8700,0.0000,0.0000,0.0000,51.9500,0.0000,0.0000,0.0000,72.1100,0.0000,0.0000,0.0000,81.3800,0.0000 +300453.SZ,0.0000,0.0000,0.0000,21.3100,0.0000,0.0000,0.0000,19.4200,0.0000,0.0000,0.0000,24.5600,0.0000,0.0000,0.0000,26.8300,0.0000,0.0000,0.0000,24.4000,0.0000 +300001.SZ,0.0000,0.0000,0.0000,9.2900,0.0000,0.0000,0.0000,9.8300,0.0000,0.0000,0.0000,7.7300,0.0000,0.0000,0.0000,6.6800,0.0000,0.0000,0.0000,10.5900,0.0000 +002980.SZ,0.0000,0.0000,0.0000,25.1500,0.0000,0.0000,0.0000,19.7100,0.0000,0.0000,0.0000,32.2000,0.0000,0.0000,0.0000,21.9700,0.0000,0.0000,0.0000,18.4300,0.0000 +603077.SH,0.0000,0.0000,0.0000,51.0500,0.0000,0.0000,0.0000,52.4800,0.0000,0.0000,0.0000,44.0800,0.0000,0.0000,0.0000,47.3200,0.0000,0.0000,0.0000,49.5200,0.0000 +000582.SZ,0.0000,0.0000,0.0000,11.4600,0.0000,0.0000,0.0000,10.9800,0.0000,0.0000,0.0000,8.2300,0.0000,0.0000,0.0000,8.5900,0.0000,0.0000,0.0000,34.1400,0.0000 +300917.SZ,0.0000,0.0000,0.0000,17.6600,0.0000,0.0000,0.0000,10.2300,0.0000,0.0000,0.0000,16.2300,0.0000,0.0000,0.0000,10.9600,0.0000,0.0000,0.0000,31.5400,0.0000 +300880.SZ,0.0000,0.0000,0.0000,46.8000,0.0000,0.0000,0.0000,47.0500,0.0000,0.0000,0.0000,40.2500,0.0000,0.0000,0.0000,51.9000,0.0000,0.0000,0.0000,41.4600,0.0000 +688396.SH,0.0000,0.0000,0.0000,14.4800,0.0000,0.0000,0.0000,13.2000,0.0000,0.0000,0.0000,14.0200,0.0000,0.0000,0.0000,11.8200,0.0000,0.0000,0.0000,14.0100,0.0000 +000778.SZ,0.0000,0.0000,0.0000,10.5500,0.0000,0.0000,0.0000,5.0400,0.0000,0.0000,0.0000,8.8200,0.0000,0.0000,0.0000,9.2600,0.0000,0.0000,0.0000,7.6400,0.0000 +300859.SZ,0.0000,0.0000,0.0000,40.7200,0.0000,0.0000,0.0000,43.1600,0.0000,0.0000,0.0000,59.4300,0.0000,0.0000,0.0000,45.1100,0.0000,0.0000,0.0000,77.1300,0.0000 +000975.SZ,0.0000,0.0000,0.0000,36.0100,0.0000,0.0000,0.0000,27.0500,0.0000,0.0000,0.0000,35.0500,0.0000,0.0000,0.0000,44.0500,0.0000,0.0000,0.0000,33.5500,0.0000 +000985.SZ,0.0000,0.0000,0.0000,95.5900,0.0000,0.0000,0.0000,95.8600,0.0000,0.0000,0.0000,98.4800,0.0000,0.0000,0.0000,96.4100,0.0000,0.0000,0.0000,94.0200,0.0000 +688581.SH,0.0000,0.0000,0.0000,30.6200,0.0000,0.0000,0.0000,33.0300,0.0000,0.0000,0.0000,32.3900,0.0000,0.0000,0.0000,29.0000,0.0000,0.0000,0.0000,26.0500,0.0000 +300376.SZ,0.0000,0.0000,0.0000,25.2700,0.0000,0.0000,0.0000,25.0000,0.0000,0.0000,0.0000,22.6700,0.0000,0.0000,0.0000,23.8100,0.0000,0.0000,0.0000,22.5000,0.0000 +002042.SZ,0.0000,0.0000,0.0000,18.2700,0.0000,0.0000,0.0000,24.6900,0.0000,0.0000,0.0000,20.0800,0.0000,0.0000,0.0000,13.3400,0.0000,0.0000,0.0000,14.0500,0.0000 +688011.SH,0.0000,0.0000,0.0000,29.5400,0.0000,0.0000,0.0000,28.0200,0.0000,0.0000,0.0000,20.1300,0.0000,0.0000,0.0000,19.8800,0.0000,0.0000,0.0000,17.9500,0.0000 +000410.SZ,0.0000,0.0000,0.0000,31.8600,0.0000,0.0000,0.0000,36.1800,0.0000,0.0000,0.0000,52.6700,0.0000,0.0000,0.0000,52.7900,0.0000,0.0000,0.0000,65.8000,0.0000 +688051.SH,0.0000,0.0000,0.0000,16.1500,0.0000,0.0000,0.0000,8.6800,0.0000,0.0000,0.0000,14.8600,0.0000,0.0000,0.0000,18.9400,0.0000,0.0000,0.0000,17.7900,0.0000 +000876.SZ,0.0000,0.0000,0.0000,10.7500,0.0000,0.0000,0.0000,17.8700,0.0000,0.0000,0.0000,14.9600,0.0000,0.0000,0.0000,16.6500,0.0000,0.0000,0.0000,19.4800,0.0000 +603517.SH,0.0000,0.0000,0.0000,42.3200,0.0000,0.0000,0.0000,34.7400,0.0000,0.0000,0.0000,38.6600,0.0000,0.0000,0.0000,36.1500,0.0000,0.0000,0.0000,36.3800,0.0000 +600523.SH,0.0000,0.0000,0.0000,9.4900,0.0000,0.0000,0.0000,9.4300,0.0000,0.0000,0.0000,13.6400,0.0000,0.0000,0.0000,12.8700,0.0000,0.0000,0.0000,15.6300,0.0000 +300552.SZ,0.0000,0.0000,0.0000,22.8300,0.0000,0.0000,0.0000,16.2600,0.0000,0.0000,0.0000,16.7800,0.0000,0.0000,0.0000,20.5100,0.0000,0.0000,0.0000,21.0600,0.0000 +000411.SZ,0.0000,0.0000,0.0000,13.8700,0.0000,0.0000,0.0000,12.8800,0.0000,0.0000,0.0000,11.1300,0.0000,0.0000,0.0000,10.8400,0.0000,0.0000,0.0000,10.2400,0.0000 +688433.SH,0.0000,0.0000,0.0000,32.2000,0.0000,0.0000,0.0000,33.6400,0.0000,25.2000,0.0000,0.0000,0.0000,0.0000,0.0000,42.3400,0.0000,0.0000,0.0000,40.9000,0.0000 +300360.SZ,0.0000,0.0000,0.0000,24.2700,0.0000,0.0000,0.0000,30.6300,0.0000,0.0000,0.0000,26.1000,0.0000,0.0000,0.0000,35.1400,0.0000,0.0000,0.0000,24.2500,0.0000 +300015.SZ,0.0000,0.0000,0.0000,27.3500,0.0000,0.0000,0.0000,37.6900,0.0000,0.0000,0.0000,27.0300,0.0000,0.0000,0.0000,25.7700,0.0000,0.0000,0.0000,24.0100,0.0000 +002117.SZ,0.0000,0.0000,0.0000,21.5600,0.0000,0.0000,0.0000,11.6600,0.0000,0.0000,0.0000,11.3000,0.0000,0.0000,0.0000,28.7300,0.0000,0.0000,0.0000,24.0800,0.0000 +300037.SZ,0.0000,0.0000,0.0000,27.3800,0.0000,0.0000,0.0000,37.5700,0.0000,0.0000,0.0000,44.7100,0.0000,0.0000,0.0000,38.9300,0.0000,0.0000,0.0000,30.2800,0.0000 +600724.SH,0.0000,0.0000,0.0000,25.0900,0.0000,0.0000,0.0000,32.3800,0.0000,0.0000,0.0000,33.5100,0.0000,0.0000,0.0000,28.3000,0.0000,0.0000,0.0000,40.6700,0.0000 +300946.SZ,0.0000,0.0000,0.0000,64.2800,0.0000,0.0000,0.0000,64.1900,0.0000,0.0000,0.0000,60.8300,0.0000,0.0000,0.0000,54.1200,0.0000,0.0000,0.0000,54.5100,0.0000 +601500.SH,0.0000,0.0000,0.0000,29.3300,0.0000,0.0000,0.0000,29.0800,0.0000,0.0000,0.0000,29.8700,0.0000,0.0000,0.0000,21.3600,0.0000,0.0000,0.0000,27.7900,0.0000 +000078.SZ,0.0000,0.0000,0.0000,10.0100,0.0000,0.0000,0.0000,11.7700,0.0000,0.0000,0.0000,11.3600,0.0000,0.0000,0.0000,13.4600,0.0000,0.0000,0.0000,20.3600,0.0000 +300694.SZ,0.0000,0.0000,0.0000,52.2100,0.0000,0.0000,0.0000,49.9700,0.0000,0.0000,0.0000,60.1200,0.0000,0.0000,0.0000,55.4700,0.0000,0.0000,0.0000,55.6900,0.0000 +300788.SZ,0.0000,0.0000,0.0000,23.3200,0.0000,0.0000,0.0000,18.4300,0.0000,0.0000,0.0000,17.3000,0.0000,0.0000,0.0000,16.3100,0.0000,0.0000,0.0000,18.3300,0.0000 +002418.SZ,0.0000,0.0000,0.0000,49.0500,0.0000,0.0000,0.0000,39.1000,0.0000,0.0000,0.0000,31.3600,0.0000,0.0000,0.0000,33.6300,0.0000,0.0000,0.0000,38.3900,0.0000 +002996.SZ,0.0000,0.0000,0.0000,39.6300,0.0000,0.0000,0.0000,31.5600,0.0000,0.0000,0.0000,20.7700,0.0000,0.0000,0.0000,18.3800,0.0000,0.0000,0.0000,28.0900,0.0000 +001368.SZ,0.0000,0.0000,0.0000,20.0400,0.0000,0.0000,0.0000,20.8700,0.0000,21.4000,0.0000,22.4100,0.0000,0.0000,0.0000,25.8800,0.0000,0.0000,0.0000,22.4600,0.0000 +002297.SZ,0.0000,0.0000,0.0000,43.5300,0.0000,0.0000,0.0000,44.7300,0.0000,0.0000,0.0000,46.9600,0.0000,0.0000,0.0000,40.5500,0.0000,0.0000,0.0000,58.3300,0.0000 +600201.SH,0.0000,0.0000,0.0000,32.2200,0.0000,0.0000,0.0000,32.5000,0.0000,0.0000,0.0000,39.9000,0.0000,0.0000,0.0000,28.1100,0.0000,0.0000,0.0000,25.9800,0.0000 +600097.SH,0.0000,0.0000,0.0000,29.0000,0.0000,0.0000,0.0000,21.0000,0.0000,0.0000,0.0000,26.0000,0.0000,0.0000,0.0000,31.0000,0.0000,0.0000,0.0000,25.0000,0.0000 +301024.SZ,0.0000,0.0000,0.0000,42.6000,0.0000,0.0000,0.0000,58.9200,0.0000,0.0000,0.0000,20.9500,0.0000,0.0000,0.0000,32.9900,0.0000,0.0000,0.0000,27.1700,0.0000 +603213.SH,0.0000,0.0000,0.0000,68.1400,0.0000,61.4300,0.0000,58.1400,0.0000,0.0000,0.0000,66.7400,0.0000,0.0000,0.0000,53.9600,0.0000,0.0000,0.0000,32.9100,0.0000 +688391.SH,0.0000,0.0000,0.0000,91.6300,0.0000,0.0000,0.0000,90.5900,0.0000,0.0000,0.0000,91.5500,0.0000,0.0000,0.0000,86.1300,0.0000,0.0000,0.0000,94.2600,0.0000 +300277.SZ,0.0000,0.0000,0.0000,38.4000,0.0000,0.0000,0.0000,41.3600,0.0000,0.0000,0.0000,41.4800,0.0000,0.0000,0.0000,45.3700,0.0000,0.0000,0.0000,41.3700,0.0000 +600027.SH,0.0000,0.0000,0.0000,15.8300,0.0000,0.0000,0.0000,21.6500,0.0000,0.0000,0.0000,18.2900,0.0000,0.0000,0.0000,28.4900,0.0000,0.0000,0.0000,34.0900,0.0000 +300705.SZ,0.0000,0.0000,0.0000,36.4100,0.0000,0.0000,0.0000,21.0800,0.0000,0.0000,0.0000,20.6600,0.0000,0.0000,0.0000,21.6500,0.0000,0.0000,0.0000,19.3800,0.0000 +301026.SZ,0.0000,0.0000,0.0000,54.6500,0.0000,0.0000,0.0000,57.8100,0.0000,0.0000,0.0000,44.6100,0.0000,0.0000,0.0000,68.0700,0.0000,0.0000,0.0000,46.2500,0.0000 +603511.SH,0.0000,0.0000,0.0000,26.5700,0.0000,0.0000,0.0000,23.4100,0.0000,0.0000,0.0000,27.8300,0.0000,0.0000,0.0000,25.2700,0.0000,0.0000,0.0000,24.8300,0.0000 +603194.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,18.5600,0.0000,0.0000,0.0000,20.9300,0.0000,0.0000,0.0000,19.6600,0.0000,16.7900,0.0000,15.7300,0.0000 +002187.SZ,0.0000,0.0000,0.0000,35.8000,0.0000,0.0000,0.0000,28.0100,0.0000,0.0000,0.0000,26.9100,0.0000,37.7400,0.0000,34.1700,0.0000,0.0000,0.0000,39.4500,0.0000 +002629.SZ,0.0000,0.0000,0.0000,30.0000,0.0000,0.0000,0.0000,25.5900,0.0000,0.0000,0.0000,22.9000,0.0000,0.0000,0.0000,38.2900,0.0000,0.0000,0.0000,42.1100,0.0000 +600845.SH,0.0000,0.0000,0.0000,19.8800,0.0000,0.0000,0.0000,13.3700,0.0000,0.0000,0.0000,15.2100,0.0000,0.0000,0.0000,15.0300,0.0000,0.0000,0.0000,16.1100,0.0000 +600970.SH,0.0000,0.0000,0.0000,2.6700,0.0000,0.0000,0.0000,3.4300,0.0000,0.0000,0.0000,3.7800,0.0000,0.0000,0.0000,2.4300,0.0000,0.0000,0.0000,3.7800,0.0000 +000756.SZ,0.0000,0.0000,0.0000,19.7400,0.0000,0.0000,0.0000,23.4100,0.0000,0.0000,0.0000,22.6000,0.0000,0.0000,0.0000,21.2900,0.0000,0.0000,0.0000,19.1000,0.0000 +002390.SZ,0.0000,0.0000,0.0000,12.2500,0.0000,0.0000,0.0000,12.3600,0.0000,0.0000,0.0000,10.2900,0.0000,0.0000,0.0000,10.6700,0.0000,0.0000,0.0000,0.0000,0.0000 +001387.SZ,0.0000,0.0000,0.0000,30.6000,0.0000,0.0000,0.0000,33.1000,0.0000,0.0000,0.0000,33.3400,0.0000,29.7800,0.0000,29.9700,0.0000,0.0000,0.0000,31.6300,0.0000 +600283.SH,0.0000,0.0000,0.0000,45.1500,0.0000,0.0000,0.0000,29.5700,0.0000,0.0000,0.0000,23.2100,0.0000,0.0000,0.0000,25.0700,0.0000,0.0000,0.0000,17.4100,0.0000 +002698.SZ,0.0000,0.0000,0.0000,20.2500,0.0000,0.0000,0.0000,20.3800,0.0000,0.0000,0.0000,17.4600,0.0000,0.0000,0.0000,16.5000,0.0000,0.0000,0.0000,18.3500,0.0000 +601798.SH,0.0000,0.0000,0.0000,25.9600,0.0000,0.0000,0.0000,16.5300,0.0000,0.0000,0.0000,21.4800,0.0000,0.0000,0.0000,16.5400,0.0000,0.0000,0.0000,26.0600,0.0000 +301519.SZ,0.0000,0.0000,0.0000,25.2000,0.0000,0.0000,0.0000,27.5600,0.0000,0.0000,0.0000,25.7200,0.0000,0.0000,0.0000,39.1800,0.0000,0.0000,0.0000,30.3700,0.0000 +002054.SZ,0.0000,0.0000,0.0000,31.0000,0.0000,0.0000,0.0000,32.3300,0.0000,0.0000,0.0000,66.5400,0.0000,0.0000,0.0000,45.4900,0.0000,0.0000,0.0000,41.8400,0.0000 +002488.SZ,0.0000,0.0000,0.0000,54.7000,0.0000,0.0000,0.0000,74.9200,0.0000,0.0000,0.0000,61.9400,0.0000,0.0000,0.0000,68.5300,0.0000,0.0000,0.0000,62.0900,0.0000 +000751.SZ,0.0000,0.0000,0.0000,55.3500,0.0000,0.0000,0.0000,55.1300,0.0000,0.0000,0.0000,41.3200,0.0000,0.0000,0.0000,37.5800,0.0000,0.0000,0.0000,36.7000,0.0000 +002074.SZ,0.0000,0.0000,0.0000,30.1600,0.0000,0.0000,0.0000,25.4200,0.0000,0.0000,0.0000,20.8300,0.0000,0.0000,0.0000,15.9800,0.0000,0.0000,0.0000,24.2400,0.0000 +603160.SH,0.0000,0.0000,0.0000,64.8200,0.0000,0.0000,0.0000,52.2000,0.0000,0.0000,0.0000,61.8700,0.0000,0.0000,0.0000,55.0100,0.0000,0.0000,0.0000,51.1700,0.0000 +601016.SH,0.0000,0.0000,0.0000,53.7100,0.0000,0.0000,0.0000,60.3800,0.0000,0.0000,0.0000,46.5000,0.0000,0.0000,0.0000,41.4900,0.0000,0.0000,0.0000,39.4800,0.0000 +601788.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +688203.SH,0.0000,0.0000,0.0000,93.2300,0.0000,0.0000,0.0000,92.4400,0.0000,0.0000,0.0000,56.9800,0.0000,0.0000,0.0000,67.8700,0.0000,0.0000,0.0000,62.4800,0.0000 +601121.SH,0.0000,0.0000,0.0000,57.4800,0.0000,0.0000,0.0000,48.4100,0.0000,61.6600,0.0000,58.4400,0.0000,0.0000,0.0000,63.5500,0.0000,0.0000,0.0000,47.8300,0.0000 +601958.SH,0.0000,0.0000,0.0000,63.7600,0.0000,0.0000,0.0000,52.6600,0.0000,0.0000,0.0000,50.4200,0.0000,0.0000,0.0000,52.6600,0.0000,0.0000,0.0000,21.1200,0.0000 +000006.SZ,0.0000,0.0000,0.0000,27.6500,0.0000,0.0000,0.0000,91.2400,0.0000,0.0000,0.0000,34.4900,0.0000,0.0000,0.0000,22.5700,0.0000,0.0000,0.0000,21.2900,0.0000 +600226.SH,0.0000,0.0000,0.0000,37.0600,0.0000,0.0000,0.0000,50.9000,0.0000,0.0000,0.0000,54.8400,0.0000,0.0000,0.0000,34.2300,0.0000,0.0000,0.0000,46.5200,0.0000 +600765.SH,0.0000,0.0000,0.0000,37.9200,0.0000,0.0000,0.0000,41.4800,0.0000,0.0000,0.0000,46.9600,0.0000,0.0000,0.0000,47.0300,0.0000,0.0000,0.0000,45.8700,0.0000 +300232.SZ,0.0000,0.0000,0.0000,26.5300,0.0000,0.0000,0.0000,23.9400,0.0000,0.0000,0.0000,23.7800,0.0000,0.0000,0.0000,21.9400,0.0000,0.0000,0.0000,22.6500,0.0000 +600278.SH,0.0000,0.0000,0.0000,17.7500,0.0000,0.0000,0.0000,14.2800,0.0000,0.0000,0.0000,7.8800,0.0000,0.0000,0.0000,9.7900,0.0000,0.0000,0.0000,7.2900,0.0000 +600606.SH,0.0000,0.0000,0.0000,6.9900,0.0000,0.0000,0.0000,5.7300,0.0000,0.0000,0.0000,2.0900,0.0000,0.0000,0.0000,1.7600,0.0000,0.0000,0.0000,2.8200,0.0000 +600575.SH,0.0000,0.0000,0.0000,34.9400,0.0000,0.0000,0.0000,31.3000,0.0000,0.0000,0.0000,36.5700,0.0000,0.0000,0.0000,35.6300,0.0000,0.0000,0.0000,34.5100,0.0000 +000404.SZ,0.0000,0.0000,0.0000,24.7600,0.0000,0.0000,0.0000,32.9800,0.0000,0.0000,0.0000,29.8100,0.0000,0.0000,0.0000,27.7400,0.0000,0.0000,0.0000,30.4600,0.0000 +603167.SH,0.0000,0.0000,0.0000,61.6300,0.0000,0.0000,0.0000,59.6300,0.0000,0.0000,0.0000,63.4100,0.0000,0.0000,0.0000,50.9200,0.0000,0.0000,0.0000,53.9700,0.0000 +002135.SZ,0.0000,0.0000,0.0000,62.8600,0.0000,0.0000,0.0000,42.0600,0.0000,0.0000,0.0000,45.5500,0.0000,0.0000,0.0000,44.1400,0.0000,0.0000,0.0000,46.8900,0.0000 +601899.SH,0.0000,0.0000,0.0000,25.0200,0.0000,0.0000,0.0000,25.9900,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,24.5000,0.0000,0.0000,0.0000,23.0600,0.0000 +839493.BJ,0.0000,0.0000,0.0000,51.5400,0.0000,0.0000,0.0000,35.8700,0.0000,0.0000,0.0000,33.9100,0.0000,42.2500,0.0000,33.7000,0.0000,0.0000,0.0000,36.4900,0.0000 +600758.SH,0.0000,0.0000,0.0000,25.2100,0.0000,0.0000,0.0000,41.2900,0.0000,0.0000,0.0000,57.3500,0.0000,0.0000,0.0000,39.1700,0.0000,0.0000,0.0000,30.5300,0.0000 +300289.SZ,0.0000,0.0000,0.0000,36.7500,0.0000,0.0000,0.0000,47.0100,0.0000,0.0000,0.0000,61.5300,0.0000,0.0000,0.0000,47.4500,0.0000,0.0000,0.0000,42.6000,0.0000 +002941.SZ,0.0000,0.0000,0.0000,12.5200,0.0000,0.0000,0.0000,8.3600,0.0000,0.0000,0.0000,10.5900,0.0000,0.0000,0.0000,15.9000,0.0000,0.0000,0.0000,8.0200,0.0000 +688468.SH,0.0000,71.0000,0.0000,0.0000,0.0000,0.0000,0.0000,70.2100,0.0000,0.0000,0.0000,59.2500,0.0000,0.0000,0.0000,49.4900,0.0000,0.0000,0.0000,47.8700,0.0000 +301042.SZ,0.0000,0.0000,0.0000,32.7200,0.0000,0.0000,0.0000,29.2800,0.0000,0.0000,0.0000,30.3700,0.0000,0.0000,0.0000,27.9800,0.0000,0.0000,0.0000,26.9800,0.0000 +688596.SH,0.0000,0.0000,0.0000,15.3800,0.0000,0.0000,0.0000,15.7300,0.0000,0.0000,0.0000,17.2200,0.0000,0.0000,0.0000,15.5500,0.0000,0.0000,0.0000,14.5300,0.0000 +301309.SZ,0.0000,0.0000,0.0000,45.1000,0.0000,0.0000,0.0000,51.1600,0.0000,0.0000,0.0000,40.6300,0.0000,0.0000,0.0000,48.5700,0.0000,0.0000,0.0000,43.6400,0.0000 +601368.SH,0.0000,0.0000,0.0000,7.1800,0.0000,0.0000,0.0000,27.5300,0.0000,0.0000,0.0000,30.0100,0.0000,0.0000,0.0000,25.1900,0.0000,0.0000,0.0000,23.7400,0.0000 +002749.SZ,0.0000,0.0000,0.0000,37.5700,0.0000,0.0000,0.0000,29.2000,0.0000,0.0000,0.0000,30.4200,0.0000,0.0000,0.0000,24.7200,0.0000,0.0000,0.0000,21.2500,0.0000 +301468.SZ,0.0000,0.0000,0.0000,84.9300,0.0000,0.0000,0.0000,68.8800,0.0000,0.0000,0.0000,59.5300,0.0000,0.0000,0.0000,59.1200,0.0000,0.0000,0.0000,56.6700,0.0000 +603799.SH,0.0000,0.0000,0.0000,32.4500,0.0000,0.0000,0.0000,22.5100,0.0000,0.0000,0.0000,37.2600,0.0000,0.0000,0.0000,22.6500,0.0000,0.0000,0.0000,14.0800,0.0000 +600463.SH,0.0000,0.0000,0.0000,18.9300,0.0000,0.0000,0.0000,70.3100,0.0000,0.0000,0.0000,16.7900,0.0000,0.0000,0.0000,15.6200,0.0000,0.0000,0.0000,23.1200,0.0000 +002517.SZ,0.0000,0.0000,0.0000,26.3800,0.0000,0.0000,0.0000,17.4100,0.0000,0.0000,0.0000,39.3700,0.0000,0.0000,0.0000,37.6500,0.0000,0.0000,0.0000,39.2000,0.0000 +002671.SZ,0.0000,0.0000,0.0000,25.5400,0.0000,0.0000,0.0000,20.9400,0.0000,0.0000,0.0000,17.8100,0.0000,0.0000,0.0000,24.5300,0.0000,0.0000,0.0000,30.6500,0.0000 +603530.SH,0.0000,0.0000,0.0000,38.7200,0.0000,0.0000,0.0000,38.0900,0.0000,0.0000,0.0000,37.3800,0.0000,0.0000,0.0000,36.5200,0.0000,0.0000,0.0000,66.0500,0.0000 +301548.SZ,0.0000,0.0000,0.0000,68.6600,0.0000,0.0000,0.0000,60.8100,0.0000,0.0000,0.0000,54.5400,0.0000,0.0000,0.0000,51.1100,0.0000,0.0000,0.0000,50.7400,0.0000 +600790.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +603909.SH,0.0000,0.0000,0.0000,39.8500,0.0000,0.0000,0.0000,15.7600,0.0000,0.0000,0.0000,34.4600,0.0000,0.0000,0.0000,20.0000,0.0000,0.0000,0.0000,11.0800,0.0000 +600030.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +002545.SZ,0.0000,0.0000,0.0000,25.7100,0.0000,0.0000,0.0000,21.9500,0.0000,0.0000,0.0000,27.3900,0.0000,0.0000,0.0000,20.9200,0.0000,0.0000,0.0000,30.4100,0.0000 +300831.SZ,0.0000,0.0000,0.0000,42.6600,0.0000,0.0000,0.0000,50.4000,0.0000,0.0000,0.0000,52.0700,0.0000,0.0000,0.0000,52.5100,0.0000,0.0000,0.0000,52.3100,0.0000 +000529.SZ,0.0000,0.0000,0.0000,24.3900,0.0000,0.0000,0.0000,26.6100,0.0000,0.0000,0.0000,19.3700,0.0000,0.0000,0.0000,21.1600,0.0000,0.0000,0.0000,14.6600,0.0000 +688197.SH,0.0000,0.0000,0.0000,38.0400,0.0000,34.2600,0.0000,24.2700,0.0000,0.0000,0.0000,33.6600,0.0000,0.0000,0.0000,34.2200,0.0000,0.0000,0.0000,38.1600,0.0000 +603970.SH,0.0000,0.0000,0.0000,44.5100,0.0000,0.0000,0.0000,40.9100,0.0000,0.0000,0.0000,43.6400,0.0000,0.0000,0.0000,37.1500,0.0000,0.0000,0.0000,36.6900,0.0000 +603779.SH,0.0000,0.0000,0.0000,32.7000,0.0000,0.0000,0.0000,37.0800,0.0000,0.0000,0.0000,35.5200,0.0000,0.0000,0.0000,36.5700,0.0000,0.0000,0.0000,36.9500,0.0000 +688253.SH,0.0000,0.0000,0.0000,61.2100,0.0000,0.0000,0.0000,40.1500,0.0000,0.0000,0.0000,29.0600,0.0000,0.0000,0.0000,30.8800,0.0000,0.0000,0.0000,42.9200,0.0000 +600257.SH,0.0000,0.0000,0.0000,16.3200,0.0000,0.0000,0.0000,22.5000,0.0000,0.0000,0.0000,23.4500,0.0000,0.0000,0.0000,31.6500,0.0000,0.0000,0.0000,46.0000,0.0000 +600961.SH,0.0000,0.0000,0.0000,15.4000,0.0000,0.0000,0.0000,24.1600,0.0000,0.0000,0.0000,28.9500,0.0000,0.0000,0.0000,20.4000,0.0000,0.0000,0.0000,29.6200,0.0000 +300625.SZ,0.0000,0.0000,0.0000,12.1800,0.0000,0.0000,0.0000,10.9000,0.0000,0.0000,0.0000,11.5700,0.0000,0.0000,0.0000,13.3900,0.0000,0.0000,0.0000,12.8000,0.0000 +300737.SZ,0.0000,0.0000,0.0000,28.4100,0.0000,0.0000,0.0000,31.9400,0.0000,0.0000,0.0000,24.5300,0.0000,0.0000,0.0000,23.5800,0.0000,0.0000,0.0000,26.7000,0.0000 +688061.SH,0.0000,0.0000,0.0000,63.0300,0.0000,0.0000,0.0000,66.5200,0.0000,0.0000,0.0000,55.3100,0.0000,0.0000,0.0000,65.4900,0.0000,0.0000,0.0000,64.8100,0.0000 +600833.SH,0.0000,0.0000,0.0000,20.8800,0.0000,0.0000,0.0000,36.1700,0.0000,0.0000,0.0000,45.4700,0.0000,0.0000,0.0000,33.5000,0.0000,0.0000,0.0000,19.2600,0.0000 +300981.SZ,0.0000,41.1800,0.0000,0.0000,0.0000,0.0000,0.0000,18.5800,0.0000,0.0000,0.0000,33.1100,0.0000,0.0000,0.0000,44.0700,0.0000,0.0000,0.0000,37.7000,0.0000 +605365.SH,0.0000,0.0000,0.0000,13.6200,0.0000,0.0000,0.0000,10.8900,0.0000,0.0000,0.0000,12.7100,0.0000,0.0000,0.0000,9.8000,0.0000,0.0000,0.0000,9.7200,0.0000 +300003.SZ,0.0000,0.0000,0.0000,10.4900,0.0000,0.0000,0.0000,10.0100,0.0000,0.0000,0.0000,7.8700,0.0000,0.0000,0.0000,5.5200,0.0000,0.0000,0.0000,6.4700,0.0000 +300628.SZ,0.0000,0.0000,0.0000,22.5500,0.0000,0.0000,0.0000,25.6400,0.0000,0.0000,0.0000,26.9100,0.0000,0.0000,0.0000,20.6700,0.0000,0.0000,0.0000,20.8800,0.0000 +688321.SH,0.0000,0.0000,0.0000,77.8600,0.0000,0.0000,0.0000,73.0800,0.0000,0.0000,0.0000,80.7800,0.0000,0.0000,0.0000,78.3000,0.0000,0.0000,0.0000,57.6500,0.0000 +300856.SZ,0.0000,0.0000,0.0000,38.5900,0.0000,0.0000,0.0000,27.1400,0.0000,0.0000,0.0000,35.9200,0.0000,0.0000,0.0000,28.6300,0.0000,0.0000,0.0000,31.6100,0.0000 +002746.SZ,0.0000,0.0000,0.0000,37.6000,0.0000,0.0000,0.0000,32.1300,0.0000,0.0000,0.0000,31.2600,0.0000,0.0000,0.0000,33.4100,0.0000,0.0000,0.0000,36.9100,0.0000 +002172.SZ,0.0000,0.0000,0.0000,14.9400,0.0000,0.0000,0.0000,19.2900,0.0000,0.0000,0.0000,15.7400,0.0000,0.0000,0.0000,16.6300,0.0000,0.0000,0.0000,16.9800,0.0000 +603929.SH,0.0000,0.0000,0.0000,30.4300,0.0000,0.0000,0.0000,25.5800,0.0000,0.0000,0.0000,25.9600,0.0000,0.0000,0.0000,16.7500,0.0000,0.0000,0.0000,20.8600,0.0000 +000738.SZ,0.0000,0.0000,0.0000,38.1800,0.0000,0.0000,0.0000,32.1500,0.0000,0.0000,0.0000,20.8800,0.0000,0.0000,0.0000,29.8600,0.0000,0.0000,0.0000,35.4500,0.0000 +000421.SZ,0.0000,0.0000,0.0000,82.3000,0.0000,0.0000,0.0000,58.4700,0.0000,0.0000,0.0000,70.1000,0.0000,0.0000,0.0000,46.2000,0.0000,0.0000,0.0000,57.7900,0.0000 +600500.SH,0.0000,0.0000,0.0000,14.5300,0.0000,0.0000,0.0000,13.0900,0.0000,0.0000,0.0000,12.1500,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,14.3800,0.0000 +603058.SH,0.0000,0.0000,0.0000,68.4300,0.0000,0.0000,0.0000,49.0900,0.0000,0.0000,0.0000,43.1300,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,53.6700,0.0000 +603701.SH,0.0000,0.0000,0.0000,43.4900,0.0000,0.0000,0.0000,44.9600,0.0000,0.0000,0.0000,40.4200,0.0000,0.0000,0.0000,38.4100,0.0000,0.0000,0.0000,37.8000,0.0000 +002803.SZ,0.0000,0.0000,0.0000,49.0800,0.0000,0.0000,0.0000,43.0500,0.0000,0.0000,0.0000,42.0400,0.0000,0.0000,0.0000,26.1100,0.0000,0.0000,0.0000,22.7500,0.0000 +603612.SH,0.0000,0.0000,0.0000,31.6600,0.0000,0.0000,0.0000,29.8400,0.0000,0.0000,0.0000,29.4500,0.0000,0.0000,0.0000,32.7200,0.0000,0.0000,0.0000,30.7300,0.0000 +688337.SH,0.0000,0.0000,0.0000,35.7700,0.0000,29.9300,0.0000,0.0000,0.0000,0.0000,0.0000,24.0100,0.0000,0.0000,0.0000,45.6600,0.0000,0.0000,0.0000,34.2500,0.0000 +001309.SZ,0.0000,0.0000,0.0000,93.1000,0.0000,0.0000,0.0000,87.7900,0.0000,0.0000,0.0000,62.3500,0.0000,0.0000,0.0000,54.1300,0.0000,0.0000,0.0000,68.8400,0.0000 +002906.SZ,0.0000,0.0000,0.0000,23.2800,0.0000,0.0000,0.0000,20.1800,0.0000,0.0000,0.0000,21.3800,0.0000,0.0000,0.0000,20.3600,0.0000,0.0000,0.0000,24.1900,0.0000 +603707.SH,0.0000,0.0000,0.0000,33.2700,0.0000,0.0000,0.0000,39.2300,0.0000,0.0000,0.0000,35.4800,0.0000,0.0000,0.0000,32.6900,0.0000,0.0000,0.0000,31.9700,0.0000 +600936.SH,0.0000,0.0000,0.0000,48.9800,0.0000,0.0000,0.0000,29.6200,0.0000,0.0000,0.0000,12.8700,0.0000,0.0000,0.0000,11.8300,0.0000,0.0000,0.0000,35.4400,0.0000 +002752.SZ,0.0000,0.0000,0.0000,49.8100,0.0000,0.0000,0.0000,32.4300,0.0000,0.0000,0.0000,56.6500,0.0000,0.0000,0.0000,58.3300,0.0000,0.0000,0.0000,56.2700,0.0000 +301275.SZ,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,67.6900,0.0000,0.0000,0.0000,62.8800,0.0000,0.0000,0.0000,58.9600,0.0000,64.0800,0.0000,60.1300,0.0000 +688369.SH,0.0000,0.0000,0.0000,32.4900,0.0000,0.0000,0.0000,30.4600,0.0000,0.0000,0.0000,32.5100,0.0000,0.0000,0.0000,31.1400,0.0000,0.0000,0.0000,39.8500,0.0000 +603866.SH,0.0000,0.0000,0.0000,44.9400,0.0000,0.0000,0.0000,45.5500,0.0000,0.0000,0.0000,47.2000,0.0000,0.0000,0.0000,46.6800,0.0000,0.0000,0.0000,42.9700,0.0000 +603282.SH,0.0000,0.0000,0.0000,18.7000,0.0000,0.0000,0.0000,21.2700,0.0000,0.0000,0.0000,29.2000,0.0000,0.0000,0.0000,18.8000,0.0000,0.0000,0.0000,17.3900,0.0000 +300557.SZ,0.0000,0.0000,0.0000,23.3000,0.0000,0.0000,0.0000,12.6300,0.0000,0.0000,0.0000,16.7600,0.0000,0.0000,0.0000,12.9200,0.0000,0.0000,0.0000,13.6100,0.0000 +603181.SH,0.0000,0.0000,0.0000,70.7600,0.0000,0.0000,0.0000,68.3600,0.0000,0.0000,0.0000,56.2800,0.0000,0.0000,0.0000,48.6900,0.0000,0.0000,0.0000,54.7600,0.0000 +300247.SZ,0.0000,0.0000,0.0000,47.1900,0.0000,0.0000,0.0000,39.0900,0.0000,0.0000,0.0000,56.7700,0.0000,0.0000,0.0000,46.6500,0.0000,0.0000,0.0000,54.8000,0.0000 +688466.SH,0.0000,0.0000,0.0000,22.4500,0.0000,0.0000,0.0000,28.4400,0.0000,0.0000,0.0000,32.7400,0.0000,0.0000,0.0000,36.9300,0.0000,0.0000,0.0000,28.5900,0.0000 +600433.SH,0.0000,0.0000,0.0000,26.1200,0.0000,0.0000,0.0000,18.8600,0.0000,0.0000,0.0000,24.5400,0.0000,0.0000,0.0000,22.3300,0.0000,0.0000,0.0000,28.7700,0.0000 +301185.SZ,0.0000,0.0000,0.0000,19.2200,0.0000,14.4000,0.0000,12.4100,0.0000,0.0000,0.0000,15.0500,0.0000,0.0000,0.0000,12.5100,0.0000,0.0000,0.0000,15.1500,0.0000 +603275.SH,0.0000,0.0000,0.0000,34.7200,0.0000,0.0000,0.0000,33.9900,0.0000,0.0000,0.0000,30.6000,0.0000,0.0000,0.0000,25.4800,0.0000,0.0000,0.0000,21.3700,0.0000 +300027.SZ,0.0000,0.0000,0.0000,56.2400,0.0000,0.0000,0.0000,46.2300,0.0000,0.0000,0.0000,30.6300,0.0000,0.0000,0.0000,48.7000,0.0000,0.0000,0.0000,41.8100,0.0000 +300482.SZ,0.0000,0.0000,0.0000,19.8500,0.0000,0.0000,0.0000,23.3800,0.0000,0.0000,0.0000,26.2500,0.0000,0.0000,0.0000,25.2500,0.0000,0.0000,0.0000,24.8700,0.0000 +603182.SH,0.0000,0.0000,0.0000,22.3000,0.0000,0.0000,0.0000,23.9000,0.0000,0.0000,0.0000,23.4800,0.0000,0.0000,0.0000,20.4500,0.0000,0.0000,0.0000,20.9800,0.0000 +600239.SH,0.0000,0.0000,0.0000,30.2300,0.0000,0.0000,0.0000,34.7400,0.0000,0.0000,0.0000,12.5000,0.0000,0.0000,0.0000,33.8700,0.0000,0.0000,0.0000,25.8700,0.0000 +002880.SZ,0.0000,0.0000,0.0000,23.1800,0.0000,0.0000,0.0000,24.8600,0.0000,0.0000,0.0000,24.4100,0.0000,0.0000,0.0000,41.0800,0.0000,0.0000,0.0000,41.1700,0.0000 +603227.SH,0.0000,0.0000,0.0000,42.9900,0.0000,0.0000,0.0000,42.0300,0.0000,0.0000,0.0000,36.9200,0.0000,0.0000,0.0000,37.1300,0.0000,0.0000,0.0000,33.1900,0.0000 +600378.SH,0.0000,0.0000,0.0000,12.5000,0.0000,0.0000,0.0000,21.5000,0.0000,0.0000,0.0000,24.8400,0.0000,0.0000,0.0000,13.9700,0.0000,0.0000,0.0000,11.1100,0.0000 +832145.BJ,0.0000,0.0000,0.0000,89.2200,0.0000,0.0000,0.0000,83.1000,0.0000,0.0000,0.0000,63.0000,0.0000,0.0000,0.0000,87.7400,0.0000,0.0000,0.0000,74.1800,0.0000 +600237.SH,0.0000,0.0000,0.0000,25.7500,0.0000,0.0000,0.0000,29.2900,0.0000,0.0000,0.0000,35.2500,0.0000,0.0000,0.0000,38.4400,0.0000,0.0000,0.0000,39.6600,0.0000 +002572.SZ,0.0000,0.0000,0.0000,21.7300,0.0000,0.0000,0.0000,27.5700,0.0000,0.0000,0.0000,23.0800,0.0000,0.0000,0.0000,22.7300,0.0000,0.0000,0.0000,21.3700,0.0000 +300529.SZ,0.0000,0.0000,0.0000,44.0900,0.0000,0.0000,0.0000,38.7100,0.0000,0.0000,0.0000,36.7400,0.0000,0.0000,0.0000,36.1800,0.0000,0.0000,0.0000,44.9000,0.0000 +000707.SZ,0.0000,0.0000,0.0000,54.5000,0.0000,0.0000,0.0000,56.8100,0.0000,0.0000,0.0000,60.2200,0.0000,0.0000,0.0000,71.7400,0.0000,0.0000,0.0000,77.1100,0.0000 +600310.SH,0.0000,0.0000,0.0000,48.7800,0.0000,0.0000,0.0000,37.8300,0.0000,0.0000,0.0000,27.3600,0.0000,0.0000,0.0000,27.6300,0.0000,0.0000,0.0000,51.2700,0.0000 +600320.SH,0.0000,0.0000,0.0000,12.0000,0.0000,0.0000,0.0000,13.2400,0.0000,0.0000,0.0000,15.2900,0.0000,0.0000,0.0000,15.3700,0.0000,0.0000,0.0000,13.6000,0.0000 +300767.SZ,0.0000,0.0000,0.0000,46.2200,0.0000,0.0000,0.0000,35.9800,0.0000,0.0000,0.0000,18.7000,0.0000,0.0000,0.0000,27.2700,0.0000,0.0000,0.0000,21.7800,0.0000 +000019.SZ,0.0000,0.0000,0.0000,38.7500,0.0000,0.0000,0.0000,31.7500,0.0000,0.0000,0.0000,35.8300,0.0000,0.0000,0.0000,38.3400,0.0000,0.0000,0.0000,34.3400,0.0000 +688101.SH,0.0000,0.0000,0.0000,19.2000,0.0000,0.0000,0.0000,28.8000,0.0000,0.0000,0.0000,24.3800,0.0000,0.0000,0.0000,26.3000,0.0000,0.0000,0.0000,20.4300,0.0000 +688766.SH,0.0000,0.0000,0.0000,92.6900,0.0000,0.0000,0.0000,91.6200,0.0000,0.0000,0.0000,93.0900,0.0000,0.0000,0.0000,83.2800,0.0000,0.0000,0.0000,84.8900,0.0000 +300610.SZ,0.0000,0.0000,0.0000,32.7400,0.0000,0.0000,0.0000,35.6900,0.0000,0.0000,0.0000,40.0600,0.0000,0.0000,0.0000,44.9300,0.0000,0.0000,0.0000,44.0800,0.0000 +300953.SZ,0.0000,0.0000,0.0000,40.2700,0.0000,0.0000,0.0000,48.2000,0.0000,0.0000,0.0000,56.0000,0.0000,0.0000,0.0000,54.0900,0.0000,0.0000,0.0000,54.7100,0.0000 +000652.SZ,0.0000,0.0000,0.0000,34.5300,0.0000,0.0000,0.0000,72.5800,0.0000,0.0000,0.0000,45.1400,0.0000,0.0000,0.0000,56.9400,0.0000,0.0000,0.0000,65.8900,0.0000 +000050.SZ,0.0000,0.0000,0.0000,20.9700,0.0000,0.0000,0.0000,21.6100,0.0000,0.0000,0.0000,19.5000,0.0000,0.0000,0.0000,20.4500,0.0000,0.0000,0.0000,17.2500,0.0000 +603667.SH,0.0000,0.0000,0.0000,43.2800,0.0000,0.0000,0.0000,38.7900,0.0000,0.0000,0.0000,43.7600,0.0000,0.0000,0.0000,31.1800,0.0000,0.0000,0.0000,34.0600,0.0000 +603656.SH,0.0000,0.0000,0.0000,11.6200,0.0000,0.0000,0.0000,14.1300,0.0000,0.0000,0.0000,17.5800,0.0000,0.0000,0.0000,18.6200,0.0000,0.0000,0.0000,15.9300,0.0000 +002169.SZ,0.0000,0.0000,0.0000,46.4200,0.0000,0.0000,0.0000,40.2100,0.0000,0.0000,0.0000,29.8900,0.0000,0.0000,0.0000,33.9600,0.0000,0.0000,0.0000,52.2100,0.0000 +002441.SZ,0.0000,0.0000,0.0000,77.9700,0.0000,0.0000,0.0000,76.1400,0.0000,0.0000,0.0000,78.7300,0.0000,0.0000,0.0000,76.4100,0.0000,0.0000,0.0000,70.6800,0.0000 +688508.SH,0.0000,0.0000,0.0000,90.1500,0.0000,0.0000,0.0000,81.4100,0.0000,0.0000,0.0000,80.4100,0.0000,0.0000,0.0000,86.9900,0.0000,0.0000,0.0000,87.9000,0.0000 +300804.SZ,0.0000,0.0000,0.0000,28.2600,0.0000,0.0000,0.0000,24.1500,0.0000,0.0000,0.0000,30.6800,0.0000,0.0000,0.0000,25.4800,0.0000,0.0000,0.0000,24.4900,0.0000 +688366.SH,0.0000,0.0000,0.0000,54.5300,0.0000,0.0000,0.0000,41.6100,0.0000,0.0000,0.0000,53.2100,0.0000,0.0000,0.0000,45.5400,0.0000,0.0000,0.0000,44.0600,0.0000 +603180.SH,0.0000,0.0000,0.0000,12.4700,0.0000,0.0000,0.0000,20.3500,0.0000,0.0000,0.0000,20.0000,0.0000,0.0000,0.0000,23.7100,0.0000,0.0000,0.0000,19.8900,0.0000 +002984.SZ,0.0000,0.0000,0.0000,37.1100,0.0000,0.0000,0.0000,29.4800,0.0000,0.0000,0.0000,26.8900,0.0000,0.0000,0.0000,30.3100,0.0000,0.0000,0.0000,26.1900,0.0000 +300699.SZ,0.0000,0.0000,0.0000,52.3300,0.0000,0.0000,0.0000,47.1600,0.0000,0.0000,0.0000,49.7400,0.0000,0.0000,0.0000,41.4300,0.0000,0.0000,0.0000,43.6100,0.0000 +000089.SZ,0.0000,0.0000,0.0000,20.6800,0.0000,0.0000,0.0000,22.2000,0.0000,0.0000,0.0000,24.9700,0.0000,0.0000,0.0000,26.4400,0.0000,0.0000,0.0000,26.0900,0.0000 +000020.SZ,0.0000,0.0000,0.0000,68.5100,0.0000,0.0000,0.0000,61.2100,0.0000,0.0000,0.0000,53.9000,0.0000,0.0000,0.0000,48.7900,0.0000,0.0000,0.0000,59.3900,0.0000 +603060.SH,0.0000,0.0000,0.0000,13.0900,0.0000,0.0000,0.0000,9.3400,0.0000,0.0000,0.0000,21.1300,0.0000,0.0000,0.0000,17.9000,0.0000,0.0000,0.0000,0.0000,0.0000 +603319.SH,0.0000,0.0000,0.0000,21.1800,0.0000,0.0000,0.0000,22.8400,0.0000,0.0000,0.0000,23.8300,0.0000,0.0000,0.0000,23.4500,0.0000,0.0000,0.0000,16.2400,0.0000 +002412.SZ,0.0000,0.0000,0.0000,32.9000,0.0000,0.0000,0.0000,33.6900,0.0000,0.0000,0.0000,29.9200,0.0000,0.0000,0.0000,35.1400,0.0000,0.0000,0.0000,38.3600,0.0000 +002687.SZ,0.0000,0.0000,0.0000,31.2400,0.0000,0.0000,0.0000,27.6700,0.0000,0.0000,0.0000,16.4700,0.0000,0.0000,0.0000,30.4300,0.0000,0.0000,0.0000,28.8100,0.0000 +002160.SZ,0.0000,0.0000,0.0000,22.8000,0.0000,0.0000,0.0000,50.0600,0.0000,0.0000,0.0000,55.4200,0.0000,0.0000,0.0000,46.4700,0.0000,0.0000,0.0000,46.9800,0.0000 +603331.SH,0.0000,0.0000,0.0000,29.1800,0.0000,0.0000,0.0000,33.8800,0.0000,0.0000,0.0000,37.5700,0.0000,0.0000,0.0000,33.4600,0.0000,0.0000,0.0000,40.0400,0.0000 +003018.SZ,0.0000,0.0000,0.0000,58.9300,0.0000,0.0000,0.0000,58.6700,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,65.7900,0.0000,0.0000,0.0000,59.5700,0.0000 +603800.SH,0.0000,0.0000,0.0000,30.2000,0.0000,0.0000,0.0000,38.0900,0.0000,0.0000,0.0000,31.9700,0.0000,0.0000,0.0000,27.6000,0.0000,0.0000,0.0000,46.0900,0.0000 +603456.SH,0.0000,0.0000,0.0000,20.8400,0.0000,0.0000,0.0000,28.4000,0.0000,0.0000,0.0000,24.6100,0.0000,0.0000,0.0000,24.5600,0.0000,0.0000,0.0000,26.1300,0.0000 +603718.SH,0.0000,0.0000,0.0000,22.5800,0.0000,0.0000,0.0000,37.0600,0.0000,0.0000,0.0000,31.0000,0.0000,0.0000,0.0000,34.8700,0.0000,0.0000,0.0000,31.6700,0.0000 +002271.SZ,0.0000,0.0000,0.0000,28.5000,0.0000,0.0000,0.0000,20.7700,0.0000,0.0000,0.0000,19.6600,0.0000,0.0000,0.0000,22.9700,0.0000,0.0000,0.0000,20.6600,0.0000 +002210.SZ,0.0000,0.0000,0.0000,44.8700,0.0000,0.0000,0.0000,30.4400,0.0000,0.0000,0.0000,30.6500,0.0000,0.0000,0.0000,60.9200,0.0000,0.0000,0.0000,29.5500,0.0000 +000788.SZ,0.0000,0.0000,0.0000,13.4600,0.0000,0.0000,0.0000,14.3500,0.0000,0.0000,0.0000,14.4700,0.0000,0.0000,0.0000,16.0200,0.0000,0.0000,0.0000,17.9300,0.0000 +002224.SZ,0.0000,0.0000,0.0000,52.6400,0.0000,0.0000,0.0000,33.6700,0.0000,0.0000,0.0000,33.6600,0.0000,0.0000,0.0000,41.3800,0.0000,0.0000,0.0000,36.7600,0.0000 +688690.SH,0.0000,0.0000,0.0000,34.6200,0.0000,0.0000,0.0000,36.2700,0.0000,0.0000,0.0000,36.6600,0.0000,0.0000,0.0000,38.9700,0.0000,0.0000,0.0000,19.6600,0.0000 +001210.SZ,0.0000,0.0000,0.0000,69.8600,0.0000,0.0000,0.0000,60.8300,0.0000,0.0000,0.0000,63.0900,0.0000,0.0000,0.0000,60.6700,0.0000,0.0000,0.0000,45.8400,0.0000 +603113.SH,0.0000,0.0000,0.0000,40.4700,0.0000,0.0000,0.0000,42.5000,0.0000,0.0000,0.0000,30.8400,0.0000,0.0000,0.0000,30.8200,0.0000,0.0000,0.0000,0.0000,0.0000 +002690.SZ,0.0000,0.0000,0.0000,30.7700,0.0000,0.0000,0.0000,22.2900,0.0000,0.0000,0.0000,23.0500,0.0000,0.0000,0.0000,19.8100,0.0000,0.0000,0.0000,19.1200,0.0000 +301305.SZ,0.0000,0.0000,0.0000,39.9200,0.0000,0.0000,0.0000,18.7200,0.0000,0.0000,0.0000,26.1500,0.0000,0.0000,0.0000,20.4700,0.0000,0.0000,0.0000,18.2800,0.0000 +301332.SZ,0.0000,0.0000,0.0000,18.7400,0.0000,0.0000,0.0000,17.6700,0.0000,0.0000,0.0000,19.0100,0.0000,0.0000,0.0000,17.9700,0.0000,0.0000,0.0000,19.8900,0.0000 +301246.SZ,0.0000,0.0000,0.0000,38.0800,0.0000,0.0000,0.0000,36.8000,0.0000,43.4300,0.0000,47.3200,0.0000,0.0000,0.0000,45.1000,0.0000,0.0000,0.0000,38.1700,0.0000 +300436.SZ,0.0000,0.0000,0.0000,54.3800,0.0000,0.0000,0.0000,59.3300,0.0000,0.0000,0.0000,39.8600,0.0000,0.0000,0.0000,56.5700,0.0000,0.0000,0.0000,60.5300,0.0000 +002648.SZ,0.0000,0.0000,0.0000,32.3900,0.0000,0.0000,0.0000,43.0700,0.0000,0.0000,0.0000,51.2800,0.0000,0.0000,0.0000,41.0600,0.0000,0.0000,0.0000,33.6600,0.0000 +002374.SZ,0.0000,0.0000,0.0000,40.9800,0.0000,0.0000,0.0000,30.0600,0.0000,0.0000,0.0000,34.5900,0.0000,0.0000,0.0000,34.8800,0.0000,0.0000,0.0000,40.2600,0.0000 +688092.SH,0.0000,0.0000,0.0000,36.2500,0.0000,0.0000,0.0000,37.6300,0.0000,0.0000,0.0000,31.7100,0.0000,0.0000,0.0000,30.9600,0.0000,0.0000,0.0000,43.5700,0.0000 +301115.SZ,0.0000,0.0000,0.0000,17.8400,0.0000,0.0000,0.0000,23.1400,0.0000,0.0000,0.0000,21.7200,0.0000,0.0000,0.0000,16.5100,0.0000,0.0000,0.0000,13.4500,0.0000 +002082.SZ,0.0000,0.0000,0.0000,37.8500,0.0000,0.0000,0.0000,39.1300,0.0000,0.0000,0.0000,25.9300,0.0000,0.0000,0.0000,23.2300,0.0000,0.0000,0.0000,26.1200,0.0000 +603955.SH,0.0000,0.0000,0.0000,13.9000,0.0000,0.0000,0.0000,14.0900,0.0000,0.0000,0.0000,16.8100,0.0000,0.0000,0.0000,20.4000,0.0000,0.0000,0.0000,21.0900,0.0000 +300777.SZ,0.0000,0.0000,0.0000,70.3700,0.0000,0.0000,0.0000,62.1000,0.0000,0.0000,0.0000,38.0400,0.0000,0.0000,0.0000,50.8200,0.0000,0.0000,0.0000,47.2700,0.0000 +301233.SZ,0.0000,0.0000,0.0000,35.0400,0.0000,0.0000,0.0000,30.8900,0.0000,0.0000,0.0000,32.8800,0.0000,0.0000,0.0000,32.1700,0.0000,0.0000,0.0000,30.2000,0.0000 +688114.SH,0.0000,0.0000,0.0000,23.5700,0.0000,0.0000,0.0000,22.5000,0.0000,0.0000,0.0000,33.1600,0.0000,0.0000,0.0000,44.7000,0.0000,0.0000,0.0000,18.5900,0.0000 +002705.SZ,0.0000,0.0000,0.0000,6.9800,0.0000,0.0000,0.0000,6.5500,0.0000,0.0000,0.0000,6.2200,0.0000,0.0000,0.0000,6.0000,0.0000,0.0000,0.0000,6.1700,0.0000 +300190.SZ,0.0000,0.0000,0.0000,8.5500,0.0000,0.0000,0.0000,16.9500,0.0000,0.0000,0.0000,7.6700,0.0000,0.0000,0.0000,5.5100,0.0000,0.0000,0.0000,6.2500,0.0000 +603096.SH,0.0000,0.0000,0.0000,47.8700,0.0000,0.0000,0.0000,33.2000,0.0000,0.0000,0.0000,33.2200,0.0000,0.0000,0.0000,38.9000,0.0000,0.0000,0.0000,47.6300,0.0000 +603989.SH,0.0000,0.0000,0.0000,28.4900,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,32.8100,0.0000,0.0000,0.0000,24.6200,0.0000,0.0000,0.0000,29.4000,0.0000 +002808.SZ,0.0000,0.0000,0.0000,51.0400,0.0000,0.0000,0.0000,41.8200,0.0000,0.0000,0.0000,48.8700,0.0000,0.0000,0.0000,47.3000,0.0000,0.0000,0.0000,61.8400,0.0000 +002969.SZ,0.0000,0.0000,0.0000,53.2200,0.0000,0.0000,0.0000,64.0200,0.0000,0.0000,0.0000,58.2300,0.0000,0.0000,0.0000,53.8000,0.0000,0.0000,0.0000,43.8900,0.0000 +601999.SH,0.0000,0.0000,0.0000,10.0700,0.0000,0.0000,0.0000,15.4000,0.0000,0.0000,0.0000,17.6000,0.0000,0.0000,0.0000,17.7000,0.0000,0.0000,0.0000,20.1000,0.0000 +600778.SH,0.0000,0.0000,0.0000,16.3900,0.0000,0.0000,0.0000,20.7400,0.0000,0.0000,0.0000,15.3700,0.0000,0.0000,0.0000,18.5800,0.0000,0.0000,0.0000,13.9300,0.0000 +301267.SZ,0.0000,0.0000,0.0000,37.8800,0.0000,0.0000,0.0000,39.0700,0.0000,38.4800,0.0000,37.8800,0.0000,0.0000,0.0000,34.6700,0.0000,0.0000,0.0000,31.8000,0.0000 +002019.SZ,0.0000,0.0000,0.0000,16.0400,0.0000,0.0000,0.0000,13.7900,0.0000,0.0000,0.0000,11.5400,0.0000,0.0000,0.0000,14.2400,0.0000,0.0000,0.0000,24.9300,0.0000 +002234.SZ,0.0000,0.0000,0.0000,49.0100,0.0000,0.0000,0.0000,55.0100,0.0000,0.0000,0.0000,49.6700,0.0000,0.0000,0.0000,42.9000,0.0000,0.0000,0.0000,39.8000,0.0000 +000560.SZ,0.0000,0.0000,0.0000,4.9700,0.0000,0.0000,0.0000,3.1300,0.0000,0.0000,0.0000,2.3600,0.0000,0.0000,0.0000,2.3800,0.0000,0.0000,0.0000,2.0800,0.0000 +002382.SZ,0.0000,0.0000,0.0000,33.1200,0.0000,0.0000,0.0000,35.8700,0.0000,0.0000,0.0000,42.3000,0.0000,0.0000,0.0000,43.0100,0.0000,0.0000,0.0000,38.6600,0.0000 +002560.SZ,0.0000,0.0000,0.0000,55.7900,0.0000,0.0000,0.0000,55.7800,0.0000,0.0000,0.0000,37.8000,0.0000,0.0000,0.0000,39.6400,0.0000,0.0000,0.0000,43.6500,0.0000 +600596.SH,0.0000,0.0000,0.0000,24.7700,0.0000,0.0000,0.0000,16.6900,0.0000,0.0000,0.0000,18.7900,0.0000,0.0000,0.0000,13.0600,0.0000,0.0000,0.0000,11.9100,0.0000 +000630.SZ,0.0000,0.0000,0.0000,18.4900,0.0000,0.0000,0.0000,20.4600,0.0000,0.0000,0.0000,25.0000,0.0000,0.0000,0.0000,17.9100,0.0000,0.0000,0.0000,23.2100,0.0000 +000998.SZ,0.0000,0.0000,0.0000,8.0300,0.0000,0.0000,0.0000,11.4500,0.0000,0.0000,0.0000,9.6100,0.0000,0.0000,0.0000,15.6500,0.0000,0.0000,0.0000,13.0900,0.0000 +301217.SZ,0.0000,0.0000,0.0000,93.4700,0.0000,94.3400,0.0000,93.4500,0.0000,0.0000,0.0000,84.2700,0.0000,0.0000,0.0000,70.9400,0.0000,0.0000,0.0000,83.2200,0.0000 +000061.SZ,0.0000,0.0000,0.0000,11.0400,0.0000,0.0000,0.0000,29.4100,0.0000,0.0000,0.0000,34.0300,0.0000,0.0000,0.0000,29.7200,0.0000,0.0000,0.0000,25.1900,0.0000 +600197.SH,0.0000,0.0000,0.0000,34.7700,0.0000,0.0000,0.0000,31.1800,0.0000,0.0000,0.0000,36.9200,0.0000,0.0000,0.0000,39.4700,0.0000,0.0000,0.0000,39.4700,0.0000 +605336.SH,0.0000,0.0000,0.0000,31.7300,0.0000,0.0000,0.0000,26.2100,0.0000,0.0000,0.0000,7.0200,0.0000,0.0000,0.0000,20.8400,0.0000,0.0000,0.0000,22.7300,0.0000 +000523.SZ,0.0000,0.0000,0.0000,28.8300,0.0000,0.0000,0.0000,27.6900,0.0000,0.0000,0.0000,43.1300,0.0000,0.0000,0.0000,42.9400,0.0000,0.0000,0.0000,57.4700,0.0000 +000615.SZ,0.0000,0.0000,0.0000,24.1800,0.0000,0.0000,0.0000,14.0400,0.0000,0.0000,0.0000,14.1800,0.0000,0.0000,0.0000,16.0800,0.0000,0.0000,0.0000,13.0500,0.0000 +603725.SH,0.0000,0.0000,0.0000,29.3000,0.0000,0.0000,0.0000,22.4600,0.0000,0.0000,0.0000,15.7200,0.0000,0.0000,0.0000,20.6400,0.0000,0.0000,0.0000,19.9400,0.0000 +001259.SZ,0.0000,0.0000,0.0000,50.9300,0.0000,0.0000,0.0000,35.6300,0.0000,0.0000,0.0000,43.2600,0.0000,0.0000,0.0000,52.4600,0.0000,0.0000,0.0000,42.0700,0.0000 +600496.SH,0.0000,0.0000,0.0000,12.2800,0.0000,0.0000,0.0000,16.4500,0.0000,0.0000,0.0000,15.2900,0.0000,0.0000,0.0000,13.9500,0.0000,0.0000,0.0000,13.2500,0.0000 +603877.SH,0.0000,0.0000,0.0000,11.1000,0.0000,0.0000,0.0000,11.8000,0.0000,0.0000,0.0000,13.5000,0.0000,0.0000,0.0000,14.2000,0.0000,0.0000,0.0000,20.7700,0.0000 +000750.SZ,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +603059.SH,0.0000,0.0000,0.0000,32.2500,0.0000,0.0000,0.0000,32.6100,0.0000,0.0000,0.0000,27.1300,0.0000,0.0000,0.0000,24.9500,0.0000,0.0000,0.0000,21.6900,0.0000 +000909.SZ,0.0000,0.0000,0.0000,65.4200,0.0000,0.0000,0.0000,52.1900,0.0000,0.0000,0.0000,59.5500,0.0000,0.0000,0.0000,20.8300,0.0000,0.0000,0.0000,24.6400,0.0000 +603357.SH,0.0000,0.0000,0.0000,39.3900,0.0000,0.0000,0.0000,53.4800,0.0000,0.0000,0.0000,37.4000,0.0000,0.0000,0.0000,33.9300,0.0000,0.0000,0.0000,37.5500,0.0000 +603613.SH,0.0000,0.0000,0.0000,29.8100,0.0000,0.0000,0.0000,21.8900,0.0000,0.0000,0.0000,27.5800,0.0000,0.0000,0.0000,17.5100,0.0000,0.0000,0.0000,10.6900,0.0000 +000153.SZ,0.0000,0.0000,0.0000,19.8100,0.0000,0.0000,0.0000,22.9700,0.0000,0.0000,0.0000,18.3500,0.0000,0.0000,0.0000,20.5500,0.0000,0.0000,0.0000,24.7600,0.0000 +601005.SH,0.0000,0.0000,0.0000,33.6400,0.0000,0.0000,0.0000,22.6000,0.0000,0.0000,0.0000,29.4500,0.0000,0.0000,0.0000,28.9600,0.0000,0.0000,0.0000,30.5800,0.0000 +603238.SH,0.0000,0.0000,0.0000,31.5400,0.0000,0.0000,0.0000,32.5900,0.0000,0.0000,0.0000,37.9200,0.0000,0.0000,0.0000,30.0000,0.0000,0.0000,0.0000,32.2800,0.0000 +688716.SH,0.0000,0.0000,0.0000,81.1900,0.0000,0.0000,0.0000,76.0800,0.0000,0.0000,0.0000,81.6600,0.0000,0.0000,0.0000,86.5400,0.0000,0.0000,0.0000,84.0800,0.0000 +002333.SZ,0.0000,0.0000,0.0000,48.1900,0.0000,0.0000,0.0000,41.2600,0.0000,0.0000,0.0000,36.1500,0.0000,0.0000,0.0000,64.2800,0.0000,0.0000,0.0000,43.6200,0.0000 +002038.SZ,0.0000,0.0000,0.0000,9.6300,0.0000,0.0000,0.0000,20.9100,0.0000,0.0000,0.0000,26.8000,0.0000,0.0000,0.0000,29.8800,0.0000,0.0000,0.0000,48.6000,0.0000 +300977.SZ,0.0000,77.7700,0.0000,77.2100,0.0000,0.0000,0.0000,44.0400,0.0000,0.0000,0.0000,45.4200,0.0000,0.0000,0.0000,42.3400,0.0000,0.0000,0.0000,45.1900,0.0000 +002551.SZ,0.0000,0.0000,0.0000,16.0300,0.0000,0.0000,0.0000,18.6400,0.0000,0.0000,0.0000,28.6100,0.0000,0.0000,0.0000,46.7200,0.0000,0.0000,0.0000,28.0800,0.0000 +603676.SH,0.0000,0.0000,0.0000,14.1700,0.0000,0.0000,0.0000,9.7200,0.0000,0.0000,0.0000,7.7300,0.0000,0.0000,0.0000,6.2900,0.0000,0.0000,0.0000,16.6700,0.0000 +603711.SH,0.0000,0.0000,0.0000,32.2800,0.0000,0.0000,0.0000,34.9300,0.0000,0.0000,0.0000,36.3600,0.0000,0.0000,0.0000,40.3700,0.0000,0.0000,0.0000,0.0000,0.0000 +600559.SH,0.0000,0.0000,0.0000,23.7100,0.0000,0.0000,0.0000,25.9300,0.0000,0.0000,0.0000,24.0200,0.0000,0.0000,0.0000,14.9600,0.0000,0.0000,0.0000,20.2700,0.0000 +688267.SH,0.0000,0.0000,0.0000,47.1700,0.0000,47.6400,0.0000,26.9200,0.0000,0.0000,0.0000,41.3200,0.0000,0.0000,0.0000,25.4600,0.0000,0.0000,0.0000,25.5900,0.0000 +601995.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +601718.SH,0.0000,0.0000,0.0000,8.7200,0.0000,0.0000,0.0000,7.2200,0.0000,0.0000,0.0000,9.2000,0.0000,0.0000,0.0000,7.4000,0.0000,0.0000,0.0000,5.1300,0.0000 +001211.SZ,0.0000,0.0000,0.0000,28.9200,0.0000,0.0000,0.0000,12.1400,0.0000,0.0000,0.0000,11.9700,0.0000,0.0000,0.0000,13.4500,0.0000,0.0000,0.0000,12.2500,0.0000 +001218.SZ,0.0000,0.0000,0.0000,89.6500,0.0000,0.0000,0.0000,65.7600,0.0000,0.0000,0.0000,62.6100,0.0000,0.0000,0.0000,62.1700,0.0000,0.0000,0.0000,64.0200,0.0000 +600036.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +603500.SH,0.0000,0.0000,0.0000,60.1100,0.0000,0.0000,0.0000,33.2400,0.0000,0.0000,0.0000,32.9200,0.0000,0.0000,0.0000,21.2200,0.0000,0.0000,0.0000,26.1300,0.0000 +002876.SZ,0.0000,0.0000,0.0000,56.1900,0.0000,0.0000,0.0000,48.8300,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,41.6500,0.0000,0.0000,0.0000,46.5000,0.0000 +603931.SH,0.0000,0.0000,0.0000,41.3900,0.0000,0.0000,0.0000,42.4200,0.0000,0.0000,0.0000,43.4000,0.0000,0.0000,0.0000,29.7100,0.0000,0.0000,0.0000,25.2000,0.0000 +601001.SH,0.0000,0.0000,0.0000,31.7800,0.0000,0.0000,0.0000,43.0100,0.0000,0.0000,0.0000,42.7000,0.0000,0.0000,0.0000,39.4500,0.0000,0.0000,0.0000,31.7200,0.0000 +688222.SH,0.0000,0.0000,0.0000,66.3200,0.0000,0.0000,0.0000,28.4100,0.0000,0.0000,0.0000,18.4000,0.0000,0.0000,0.0000,12.1200,0.0000,0.0000,0.0000,17.5300,0.0000 +688439.SH,0.0000,0.0000,0.0000,66.6500,0.0000,0.0000,0.0000,62.6200,0.0000,0.0000,0.0000,43.1800,0.0000,0.0000,0.0000,50.8300,0.0000,0.0000,0.0000,57.9200,0.0000 +601366.SH,0.0000,0.0000,0.0000,9.8200,0.0000,0.0000,0.0000,10.4300,0.0000,0.0000,0.0000,16.1400,0.0000,0.0000,0.0000,11.9800,0.0000,0.0000,0.0000,10.8500,0.0000 +603336.SH,0.0000,0.0000,0.0000,5.2800,0.0000,0.0000,0.0000,8.0000,0.0000,0.0000,0.0000,9.7900,0.0000,0.0000,0.0000,9.9900,0.0000,0.0000,0.0000,9.7000,0.0000 +603380.SH,0.0000,0.0000,0.0000,23.7500,0.0000,0.0000,0.0000,19.0400,0.0000,0.0000,0.0000,17.5100,0.0000,0.0000,0.0000,54.8900,0.0000,0.0000,0.0000,23.5500,0.0000 +301111.SZ,0.0000,0.0000,0.0000,18.2800,0.0000,36.1300,0.0000,27.1300,0.0000,0.0000,0.0000,31.4000,0.0000,0.0000,0.0000,37.4900,0.0000,0.0000,0.0000,22.8200,0.0000 +002930.SZ,0.0000,0.0000,0.0000,41.2100,0.0000,0.0000,0.0000,39.8200,0.0000,0.0000,0.0000,16.9200,0.0000,0.0000,0.0000,20.8100,0.0000,0.0000,0.0000,16.8500,0.0000 +600518.SH,0.0000,0.0000,0.0000,19.1100,0.0000,0.0000,0.0000,13.2300,0.0000,0.0000,0.0000,11.3900,0.0000,0.0000,0.0000,17.1000,0.0000,0.0000,0.0000,13.5900,0.0000 +600022.SH,0.0000,0.0000,0.0000,44.6100,0.0000,0.0000,0.0000,43.8800,0.0000,0.0000,0.0000,41.1100,0.0000,0.0000,0.0000,44.0100,0.0000,0.0000,0.0000,39.7700,0.0000 +002084.SZ,0.0000,0.0000,0.0000,22.8200,0.0000,0.0000,0.0000,22.2400,0.0000,0.0000,0.0000,25.3700,0.0000,0.0000,0.0000,25.0600,0.0000,0.0000,0.0000,24.4900,0.0000 +000705.SZ,0.0000,0.0000,0.0000,17.5700,0.0000,0.0000,0.0000,24.1700,0.0000,0.0000,0.0000,22.1000,0.0000,0.0000,0.0000,24.7400,0.0000,0.0000,0.0000,24.0200,0.0000 +600285.SH,0.0000,0.0000,0.0000,21.1100,0.0000,0.0000,0.0000,23.6600,0.0000,0.0000,0.0000,31.1300,0.0000,0.0000,0.0000,16.2500,0.0000,0.0000,0.0000,15.8700,0.0000 +300246.SZ,0.0000,0.0000,0.0000,18.9700,0.0000,0.0000,0.0000,19.3900,0.0000,0.0000,0.0000,13.7100,0.0000,0.0000,0.0000,17.3300,0.0000,0.0000,0.0000,24.9700,0.0000 +600598.SH,0.0000,0.0000,0.0000,77.8000,0.0000,0.0000,0.0000,83.0000,0.0000,0.0000,0.0000,81.5400,0.0000,0.0000,0.0000,54.2000,0.0000,0.0000,0.0000,68.6400,0.0000 +300266.SZ,0.0000,0.0000,0.0000,12.6500,0.0000,0.0000,0.0000,14.1800,0.0000,0.0000,0.0000,9.3000,0.0000,0.0000,0.0000,17.1300,0.0000,0.0000,0.0000,14.5800,0.0000 +688385.SH,0.0000,0.0000,0.0000,66.6400,0.0000,0.0000,0.0000,51.1800,0.0000,0.0000,0.0000,83.8200,0.0000,0.0000,0.0000,69.2700,0.0000,0.0000,0.0000,48.9400,0.0000 +002679.SZ,0.0000,0.0000,0.0000,77.9800,0.0000,0.0000,0.0000,83.0600,0.0000,0.0000,0.0000,94.7500,0.0000,0.0000,0.0000,82.8000,0.0000,0.0000,0.0000,63.9600,0.0000 +688575.SH,0.0000,0.0000,0.0000,19.7700,0.0000,0.0000,0.0000,41.8200,0.0000,0.0000,0.0000,33.2100,0.0000,0.0000,0.0000,35.5900,0.0000,0.0000,0.0000,36.3500,0.0000 +002858.SZ,0.0000,0.0000,0.0000,28.3600,0.0000,0.0000,0.0000,28.9100,0.0000,0.0000,0.0000,34.7400,0.0000,0.0000,0.0000,28.2600,0.0000,0.0000,0.0000,25.4600,0.0000 +300174.SZ,0.0000,0.0000,0.0000,23.3700,0.0000,0.0000,0.0000,26.2400,0.0000,0.0000,0.0000,20.4300,0.0000,0.0000,0.0000,25.5600,0.0000,0.0000,0.0000,18.1800,0.0000 +688728.SH,0.0000,0.0000,0.0000,74.2600,0.0000,0.0000,0.0000,76.7000,0.0000,0.0000,0.0000,66.8500,0.0000,0.0000,0.0000,57.1900,0.0000,0.0000,0.0000,59.1800,0.0000 +605077.SH,0.0000,0.0000,0.0000,43.5900,0.0000,0.0000,0.0000,50.0600,0.0000,0.0000,0.0000,36.6300,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,21.9500,0.0000 +002424.SZ,0.0000,0.0000,0.0000,23.8400,0.0000,0.0000,0.0000,28.5000,0.0000,0.0000,0.0000,56.0200,0.0000,0.0000,0.0000,51.7700,0.0000,0.0000,0.0000,46.0500,0.0000 +002543.SZ,0.0000,0.0000,0.0000,11.8400,0.0000,0.0000,0.0000,14.4700,0.0000,0.0000,0.0000,8.6300,0.0000,0.0000,0.0000,10.8800,0.0000,0.0000,0.0000,9.7800,0.0000 +301479.SZ,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,41.0200,0.0000,0.0000,0.0000,37.9100,0.0000,0.0000,0.0000,43.1300,0.0000,46.8800,0.0000,44.0200,0.0000 +002223.SZ,0.0000,0.0000,0.0000,20.6000,0.0000,0.0000,0.0000,24.4800,0.0000,0.0000,0.0000,23.7400,0.0000,0.0000,0.0000,22.5400,0.0000,0.0000,0.0000,18.1500,0.0000 +002827.SZ,0.0000,0.0000,0.0000,31.2800,0.0000,0.0000,0.0000,61.8900,0.0000,0.0000,0.0000,18.9100,0.0000,0.0000,0.0000,29.5500,0.0000,0.0000,0.0000,25.7200,0.0000 +688097.SH,0.0000,0.0000,26.6100,0.0000,0.0000,0.0000,0.0000,20.4600,0.0000,0.0000,0.0000,16.8000,0.0000,0.0000,0.0000,16.1100,0.0000,0.0000,0.0000,19.3500,0.0000 +301151.SZ,0.0000,0.0000,0.0000,24.3500,0.0000,24.4700,0.0000,18.4000,0.0000,0.0000,0.0000,20.1600,0.0000,0.0000,0.0000,24.9200,0.0000,0.0000,0.0000,21.8300,0.0000 +000700.SZ,0.0000,0.0000,0.0000,25.1900,0.0000,0.0000,0.0000,23.6100,0.0000,0.0000,0.0000,16.1600,0.0000,0.0000,0.0000,16.2900,0.0000,0.0000,0.0000,12.9300,0.0000 +002826.SZ,0.0000,0.0000,0.0000,26.3400,0.0000,0.0000,0.0000,27.4300,0.0000,0.0000,0.0000,19.5900,0.0000,0.0000,0.0000,16.4200,0.0000,0.0000,0.0000,17.3800,0.0000 +600391.SH,0.0000,0.0000,0.0000,17.1800,0.0000,0.0000,0.0000,15.8400,0.0000,0.0000,0.0000,15.0000,0.0000,0.0000,0.0000,20.0000,0.0000,0.0000,0.0000,23.2900,0.0000 +000797.SZ,0.0000,0.0000,0.0000,46.6400,0.0000,0.0000,0.0000,33.5100,0.0000,0.0000,0.0000,29.9900,0.0000,0.0000,0.0000,42.8300,0.0000,0.0000,0.0000,44.6100,0.0000 +300463.SZ,0.0000,0.0000,0.0000,29.3900,0.0000,0.0000,0.0000,30.6600,0.0000,0.0000,0.0000,28.8800,0.0000,0.0000,0.0000,34.3600,0.0000,0.0000,0.0000,42.4900,0.0000 +002971.SZ,0.0000,0.0000,0.0000,41.3000,0.0000,0.0000,0.0000,39.8900,0.0000,0.0000,0.0000,65.5300,0.0000,0.0000,0.0000,36.6500,0.0000,0.0000,0.0000,67.2500,0.0000 +600888.SH,0.0000,0.0000,0.0000,36.2800,0.0000,0.0000,0.0000,33.9100,0.0000,0.0000,0.0000,37.2900,0.0000,0.0000,0.0000,34.3900,0.0000,0.0000,0.0000,16.3900,0.0000 +301097.SZ,0.0000,0.0000,0.0000,37.3700,0.0000,40.0700,0.0000,46.4300,0.0000,0.0000,0.0000,44.1800,0.0000,0.0000,0.0000,44.0500,0.0000,0.0000,0.0000,34.2900,0.0000 +603659.SH,0.0000,0.0000,0.0000,28.0000,0.0000,0.0000,0.0000,18.8100,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,12.4900,0.0000,0.0000,0.0000,17.2900,0.0000 +603163.SH,0.0000,0.0000,0.0000,11.2100,0.0000,0.0000,0.0000,11.7400,0.0000,0.0000,0.0000,10.5800,0.0000,0.0000,0.0000,10.5800,0.0000,0.0000,0.0000,12.6700,0.0000 +002905.SZ,0.0000,0.0000,0.0000,45.5800,0.0000,0.0000,0.0000,59.0300,0.0000,0.0000,0.0000,69.0000,0.0000,0.0000,0.0000,62.3000,0.0000,0.0000,0.0000,61.0400,0.0000 +002708.SZ,0.0000,0.0000,0.0000,20.0700,0.0000,0.0000,0.0000,14.9300,0.0000,0.0000,0.0000,15.9900,0.0000,0.0000,0.0000,19.3000,0.0000,0.0000,0.0000,17.1700,0.0000 +002556.SZ,0.0000,0.0000,0.0000,25.3700,0.0000,0.0000,0.0000,21.1100,0.0000,0.0000,0.0000,22.6600,0.0000,0.0000,0.0000,23.4200,0.0000,0.0000,0.0000,25.7300,0.0000 +001230.SZ,0.0000,0.0000,0.0000,24.8300,0.0000,0.0000,0.0000,25.6700,0.0000,0.0000,0.0000,27.0500,0.0000,0.0000,0.0000,25.9100,0.0000,0.0000,0.0000,29.4100,0.0000 +002709.SZ,0.0000,0.0000,0.0000,37.1400,0.0000,0.0000,0.0000,33.8900,0.0000,0.0000,0.0000,36.8600,0.0000,0.0000,0.0000,35.9500,0.0000,0.0000,0.0000,33.7500,0.0000 +000007.SZ,0.0000,0.0000,0.0000,46.8200,0.0000,0.0000,0.0000,85.3800,0.0000,0.0000,0.0000,73.1300,0.0000,0.0000,0.0000,65.3600,0.0000,0.0000,0.0000,72.1800,0.0000 +600157.SH,0.0000,0.0000,0.0000,23.7200,0.0000,0.0000,0.0000,22.5400,0.0000,0.0000,0.0000,17.5000,0.0000,0.0000,0.0000,23.1600,0.0000,0.0000,0.0000,43.2800,0.0000 +600359.SH,0.0000,0.0000,0.0000,30.1000,0.0000,0.0000,0.0000,40.3700,0.0000,0.0000,0.0000,32.8500,0.0000,0.0000,0.0000,19.5200,0.0000,0.0000,0.0000,14.2200,0.0000 +000301.SZ,0.0000,0.0000,0.0000,28.9300,0.0000,0.0000,0.0000,17.3700,0.0000,0.0000,0.0000,22.0600,0.0000,0.0000,0.0000,35.6800,0.0000,0.0000,0.0000,30.0900,0.0000 +301088.SZ,0.0000,0.0000,0.0000,12.7500,0.0000,0.0000,0.0000,16.0100,0.0000,0.0000,0.0000,13.0300,0.0000,0.0000,0.0000,9.4700,0.0000,0.0000,0.0000,8.9500,0.0000 +002688.SZ,0.0000,0.0000,0.0000,23.1600,0.0000,0.0000,0.0000,19.4900,0.0000,0.0000,0.0000,23.6100,0.0000,0.0000,0.0000,17.2000,0.0000,0.0000,0.0000,15.6700,0.0000 +002889.SZ,0.0000,0.0000,0.0000,33.2900,0.0000,0.0000,0.0000,25.5900,0.0000,0.0000,0.0000,22.0300,0.0000,0.0000,0.0000,18.9500,0.0000,0.0000,0.0000,44.7200,0.0000 +600993.SH,0.0000,0.0000,0.0000,24.4700,0.0000,0.0000,0.0000,26.7900,0.0000,0.0000,0.0000,18.0300,0.0000,0.0000,0.0000,18.7200,0.0000,0.0000,0.0000,26.7400,0.0000 +301200.SZ,0.0000,0.0000,0.0000,32.3400,0.0000,31.6500,0.0000,32.5600,0.0000,0.0000,0.0000,26.6900,0.0000,0.0000,0.0000,18.8900,0.0000,0.0000,0.0000,25.1400,0.0000 +300388.SZ,0.0000,0.0000,0.0000,13.2200,0.0000,0.0000,0.0000,17.6000,0.0000,0.0000,0.0000,15.7100,0.0000,0.0000,0.0000,18.0000,0.0000,0.0000,0.0000,16.5600,0.0000 +688636.SH,0.0000,36.1400,0.0000,0.0000,0.0000,0.0000,0.0000,38.5000,0.0000,0.0000,0.0000,38.4300,0.0000,0.0000,0.0000,40.5100,0.0000,0.0000,0.0000,41.4300,0.0000 +002371.SZ,0.0000,0.0000,0.0000,20.7900,0.0000,0.0000,0.0000,20.4800,0.0000,0.0000,0.0000,15.5200,0.0000,0.0000,0.0000,7.8600,0.0000,0.0000,0.0000,16.3200,0.0000 +000521.SZ,0.0000,0.0000,0.0000,19.7000,0.0000,0.0000,0.0000,21.9900,0.0000,0.0000,0.0000,21.1800,0.0000,0.0000,0.0000,20.3000,0.0000,0.0000,0.0000,23.8500,0.0000 +600785.SH,0.0000,0.0000,0.0000,6.9800,0.0000,0.0000,0.0000,7.3900,0.0000,0.0000,0.0000,10.0200,0.0000,0.0000,0.0000,9.4200,0.0000,0.0000,0.0000,13.0000,0.0000 +688819.SH,0.0000,0.0000,0.0000,34.0100,0.0000,0.0000,0.0000,34.5100,0.0000,0.0000,0.0000,35.0900,0.0000,0.0000,0.0000,43.0500,0.0000,0.0000,0.0000,48.4600,0.0000 +002340.SZ,0.0000,0.0000,0.0000,34.6800,0.0000,0.0000,0.0000,36.0000,0.0000,0.0000,0.0000,30.7900,0.0000,0.0000,0.0000,21.8300,0.0000,0.0000,0.0000,16.4000,0.0000 +600343.SH,0.0000,0.0000,0.0000,19.3500,0.0000,0.0000,0.0000,16.6800,0.0000,0.0000,0.0000,13.8700,0.0000,0.0000,0.0000,11.5700,0.0000,0.0000,0.0000,12.7000,0.0000 +600629.SH,0.0000,0.0000,0.0000,10.4600,0.0000,0.0000,0.0000,8.3600,0.0000,0.0000,0.0000,12.3900,0.0000,0.0000,0.0000,7.7100,0.0000,0.0000,0.0000,7.0400,0.0000 +300125.SZ,0.0000,0.0000,0.0000,91.7100,0.0000,0.0000,0.0000,62.0600,0.0000,0.0000,0.0000,63.2600,0.0000,0.0000,0.0000,37.3200,0.0000,0.0000,0.0000,63.5500,0.0000 +300363.SZ,0.0000,0.0000,0.0000,33.3500,0.0000,0.0000,0.0000,33.1900,0.0000,0.0000,0.0000,36.5800,0.0000,0.0000,0.0000,22.3500,0.0000,0.0000,0.0000,35.1700,0.0000 +300206.SZ,0.0000,0.0000,0.0000,28.5000,0.0000,0.0000,0.0000,23.9000,0.0000,0.0000,0.0000,23.5100,0.0000,0.0000,0.0000,17.1400,0.0000,0.0000,0.0000,19.1200,0.0000 +600143.SH,0.0000,0.0000,0.0000,17.9600,0.0000,0.0000,0.0000,13.4300,0.0000,0.0000,0.0000,12.9300,0.0000,0.0000,0.0000,18.2800,0.0000,0.0000,0.0000,20.4500,0.0000 +601033.SH,0.0000,0.0000,0.0000,44.0600,0.0000,0.0000,0.0000,48.8600,0.0000,0.0000,0.0000,32.4500,0.0000,27.8600,0.0000,22.7900,0.0000,0.0000,0.0000,22.6000,0.0000 +600307.SH,0.0000,0.0000,0.0000,25.9600,0.0000,0.0000,0.0000,39.5100,0.0000,0.0000,0.0000,21.1300,0.0000,0.0000,0.0000,22.1300,0.0000,0.0000,0.0000,32.6200,0.0000 +600299.SH,0.0000,0.0000,0.0000,24.0000,0.0000,0.0000,0.0000,32.0000,0.0000,0.0000,0.0000,20.0000,0.0000,0.0000,0.0000,22.0000,0.0000,0.0000,0.0000,23.0000,0.0000 +300450.SZ,0.0000,0.0000,0.0000,11.1900,0.0000,0.0000,0.0000,10.0100,0.0000,0.0000,0.0000,9.5000,0.0000,0.0000,0.0000,7.9800,0.0000,0.0000,0.0000,7.8300,0.0000 +000762.SZ,0.0000,0.0000,0.0000,73.7100,0.0000,0.0000,0.0000,36.6900,0.0000,0.0000,0.0000,89.8200,0.0000,0.0000,0.0000,87.7800,0.0000,0.0000,0.0000,67.4500,0.0000 +300415.SZ,0.0000,0.0000,0.0000,22.3800,0.0000,0.0000,0.0000,20.3500,0.0000,0.0000,0.0000,22.1400,0.0000,0.0000,0.0000,19.4000,0.0000,0.0000,0.0000,22.5200,0.0000 +600369.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +002157.SZ,0.0000,0.0000,0.0000,13.5900,0.0000,0.0000,0.0000,15.8900,0.0000,0.0000,0.0000,8.6100,0.0000,0.0000,0.0000,38.8100,0.0000,0.0000,0.0000,42.6100,0.0000 +000631.SZ,0.0000,0.0000,0.0000,37.4500,0.0000,0.0000,0.0000,81.1600,0.0000,0.0000,0.0000,45.2300,0.0000,0.0000,0.0000,39.7500,0.0000,0.0000,0.0000,57.3400,0.0000 +002612.SZ,0.0000,0.0000,0.0000,12.4200,0.0000,0.0000,0.0000,10.3600,0.0000,0.0000,0.0000,10.5700,0.0000,0.0000,0.0000,13.9300,0.0000,0.0000,0.0000,11.6700,0.0000 +000906.SZ,0.0000,0.0000,0.0000,15.2400,0.0000,0.0000,0.0000,15.8400,0.0000,0.0000,0.0000,12.9600,0.0000,0.0000,0.0000,12.2100,0.0000,0.0000,0.0000,11.0000,0.0000 +600250.SH,0.0000,0.0000,0.0000,43.1300,0.0000,0.0000,0.0000,46.8800,0.0000,0.0000,0.0000,53.8100,0.0000,0.0000,0.0000,41.1600,0.0000,0.0000,0.0000,31.8200,0.0000 +600409.SH,0.0000,0.0000,0.0000,14.2100,0.0000,0.0000,0.0000,14.9000,0.0000,0.0000,0.0000,15.3700,0.0000,0.0000,0.0000,14.8000,0.0000,0.0000,0.0000,16.5100,0.0000 +600740.SH,0.0000,0.0000,0.0000,88.3900,0.0000,0.0000,0.0000,95.5300,0.0000,0.0000,0.0000,85.5200,0.0000,0.0000,0.0000,77.1500,0.0000,0.0000,0.0000,81.0100,0.0000 +001226.SZ,0.0000,0.0000,0.0000,81.8100,0.0000,0.0000,0.0000,72.5700,0.0000,0.0000,0.0000,61.8900,0.0000,0.0000,0.0000,45.1400,0.0000,0.0000,0.0000,57.2900,0.0000 +601989.SH,0.0000,0.0000,0.0000,29.0000,0.0000,0.0000,0.0000,26.1200,0.0000,0.0000,0.0000,24.3900,0.0000,0.0000,0.0000,29.0700,0.0000,0.0000,0.0000,52.7500,0.0000 +603025.SH,0.0000,0.0000,0.0000,18.7000,0.0000,0.0000,0.0000,28.2000,0.0000,0.0000,0.0000,22.3100,0.0000,0.0000,0.0000,20.9800,0.0000,0.0000,0.0000,10.8300,0.0000 +600893.SH,0.0000,0.0000,0.0000,22.0600,0.0000,0.0000,0.0000,23.6000,0.0000,0.0000,0.0000,24.6500,0.0000,0.0000,0.0000,18.2000,0.0000,0.0000,0.0000,20.5300,0.0000 +300810.SZ,0.0000,0.0000,0.0000,67.4400,0.0000,0.0000,0.0000,48.6000,0.0000,0.0000,0.0000,58.1200,0.0000,0.0000,0.0000,42.7300,0.0000,0.0000,0.0000,32.0600,0.0000 +688202.SH,0.0000,0.0000,0.0000,39.5700,0.0000,0.0000,0.0000,46.8800,0.0000,0.0000,0.0000,50.3900,0.0000,0.0000,0.0000,38.5800,0.0000,0.0000,0.0000,45.3500,0.0000 +688687.SH,0.0000,0.0000,0.0000,53.5400,0.0000,0.0000,0.0000,63.0500,0.0000,0.0000,0.0000,55.9900,0.0000,0.0000,0.0000,66.6400,0.0000,0.0000,0.0000,60.3500,0.0000 +301371.SZ,0.0000,0.0000,0.0000,100.0000,0.0000,0.0000,0.0000,57.6300,0.0000,0.0000,0.0000,54.2400,0.0000,0.0000,0.0000,46.3000,0.0000,0.0000,0.0000,52.0500,0.0000 +301060.SZ,0.0000,0.0000,0.0000,67.6200,0.0000,0.0000,0.0000,53.8400,0.0000,0.0000,0.0000,55.2500,0.0000,0.0000,0.0000,73.5600,0.0000,0.0000,0.0000,65.2800,0.0000 +605566.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,40.5000,0.0000,0.0000,0.0000,36.7100,0.0000,0.0000,0.0000,30.4900,0.0000,0.0000,0.0000,29.7400,0.0000 +002182.SZ,0.0000,0.0000,0.0000,44.1400,0.0000,0.0000,0.0000,44.6300,0.0000,0.0000,0.0000,42.7600,0.0000,0.0000,0.0000,42.0000,0.0000,0.0000,0.0000,31.4200,0.0000 +000573.SZ,0.0000,0.0000,0.0000,23.5300,0.0000,0.0000,0.0000,24.2400,0.0000,0.0000,0.0000,72.7800,0.0000,0.0000,0.0000,54.5500,0.0000,0.0000,0.0000,48.9800,0.0000 +603027.SH,0.0000,0.0000,0.0000,32.1200,0.0000,0.0000,0.0000,25.6500,0.0000,0.0000,0.0000,26.3600,0.0000,0.0000,0.0000,31.0300,0.0000,0.0000,0.0000,30.7800,0.0000 +300172.SZ,0.0000,0.0000,0.0000,10.5100,0.0000,0.0000,0.0000,10.0600,0.0000,0.0000,0.0000,10.3400,0.0000,0.0000,0.0000,17.3700,0.0000,0.0000,0.0000,21.1800,0.0000 +300452.SZ,0.0000,0.0000,0.0000,35.5600,0.0000,0.0000,0.0000,36.8600,0.0000,0.0000,0.0000,40.6600,0.0000,0.0000,0.0000,30.6300,0.0000,0.0000,0.0000,29.9700,0.0000 +001366.SZ,0.0000,0.0000,0.0000,24.8600,0.0000,0.0000,0.0000,26.9500,0.0000,24.2600,0.0000,20.6100,0.0000,0.0000,0.0000,31.8500,0.0000,0.0000,0.0000,30.8600,0.0000 +600125.SH,0.0000,0.0000,0.0000,22.0000,0.0000,0.0000,0.0000,28.4400,0.0000,0.0000,0.0000,33.2000,0.0000,0.0000,0.0000,23.4100,0.0000,0.0000,0.0000,22.5200,0.0000 +002500.SZ,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +301515.SZ,0.0000,0.0000,0.0000,13.0100,0.0000,0.0000,0.0000,11.5700,0.0000,0.0000,0.0000,18.3500,0.0000,0.0000,0.0000,19.5900,0.0000,0.0000,0.0000,17.7100,0.0000 +000825.SZ,0.0000,0.0000,0.0000,61.3300,0.0000,0.0000,0.0000,56.6000,0.0000,0.0000,0.0000,54.7300,0.0000,0.0000,0.0000,59.1100,0.0000,0.0000,0.0000,58.2800,0.0000 +603616.SH,0.0000,0.0000,0.0000,36.3600,0.0000,0.0000,0.0000,24.3000,0.0000,0.0000,0.0000,21.1700,0.0000,0.0000,0.0000,30.7000,0.0000,0.0000,0.0000,29.4600,0.0000 +600335.SH,0.0000,0.0000,0.0000,63.4900,0.0000,0.0000,0.0000,62.2400,0.0000,0.0000,0.0000,59.9400,0.0000,0.0000,0.0000,46.8300,0.0000,0.0000,0.0000,42.9400,0.0000 +300528.SZ,0.0000,0.0000,0.0000,88.3000,0.0000,0.0000,0.0000,62.6600,0.0000,0.0000,0.0000,82.3800,0.0000,0.0000,0.0000,60.5800,0.0000,0.0000,0.0000,62.3300,0.0000 +600958.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +300776.SZ,0.0000,0.0000,0.0000,54.0700,0.0000,0.0000,0.0000,52.6700,0.0000,0.0000,0.0000,41.4700,0.0000,0.0000,0.0000,40.4000,0.0000,0.0000,0.0000,50.8600,0.0000 +002302.SZ,0.0000,0.0000,0.0000,8.1500,0.0000,0.0000,0.0000,6.7300,0.0000,0.0000,0.0000,11.3000,0.0000,0.0000,0.0000,10.1000,0.0000,0.0000,0.0000,10.1700,0.0000 +002180.SZ,0.0000,0.0000,0.0000,22.3900,0.0000,0.0000,0.0000,20.1000,0.0000,0.0000,0.0000,22.3400,0.0000,0.0000,0.0000,28.0700,0.0000,0.0000,0.0000,21.7700,0.0000 +688707.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,74.3300,0.0000,0.0000,0.0000,58.6500,0.0000,0.0000,0.0000,74.6300,0.0000,0.0000,0.0000,51.4400,0.0000 +002022.SZ,0.0000,0.0000,0.0000,50.7000,0.0000,0.0000,0.0000,54.9000,0.0000,0.0000,0.0000,24.3000,0.0000,0.0000,0.0000,22.1600,0.0000,0.0000,0.0000,30.6100,0.0000 +000713.SZ,0.0000,0.0000,0.0000,17.4400,0.0000,0.0000,0.0000,13.2800,0.0000,0.0000,0.0000,8.9100,0.0000,0.0000,0.0000,10.6900,0.0000,0.0000,0.0000,13.0900,0.0000 +601600.SH,0.0000,0.0000,0.0000,12.4200,0.0000,0.0000,0.0000,15.3800,0.0000,0.0000,0.0000,20.2600,0.0000,0.0000,0.0000,12.8400,0.0000,0.0000,0.0000,18.0600,0.0000 +600108.SH,0.0000,0.0000,0.0000,16.8500,0.0000,0.0000,0.0000,21.4700,0.0000,0.0000,0.0000,15.5200,0.0000,0.0000,0.0000,13.2600,0.0000,0.0000,0.0000,11.5800,0.0000 +603098.SH,0.0000,0.0000,0.0000,11.8900,0.0000,0.0000,0.0000,15.5200,0.0000,0.0000,0.0000,31.0000,0.0000,0.0000,0.0000,25.4500,0.0000,0.0000,0.0000,21.6500,0.0000 +603111.SH,0.0000,0.0000,0.0000,10.2400,0.0000,0.0000,0.0000,9.2100,0.0000,0.0000,0.0000,10.2300,0.0000,0.0000,0.0000,13.6800,0.0000,0.0000,0.0000,10.6100,0.0000 +603185.SH,0.0000,0.0000,0.0000,63.4400,0.0000,0.0000,0.0000,61.6200,0.0000,0.0000,0.0000,65.5200,0.0000,0.0000,0.0000,57.6700,0.0000,0.0000,0.0000,29.3800,0.0000 +301262.SZ,0.0000,0.0000,0.0000,70.7100,0.0000,0.0000,0.0000,74.3100,0.0000,0.0000,0.0000,72.3000,0.0000,0.0000,0.0000,76.1200,0.0000,0.0000,0.0000,78.3000,0.0000 +002864.SZ,0.0000,0.0000,0.0000,8.4500,0.0000,0.0000,0.0000,18.3700,0.0000,0.0000,0.0000,12.8600,0.0000,0.0000,0.0000,15.6400,0.0000,0.0000,0.0000,11.9800,0.0000 +300087.SZ,0.0000,0.0000,0.0000,14.1000,0.0000,0.0000,0.0000,20.6500,0.0000,0.0000,0.0000,15.8000,0.0000,0.0000,0.0000,15.9200,0.0000,0.0000,0.0000,15.8100,0.0000 +002738.SZ,0.0000,0.0000,0.0000,42.6300,0.0000,0.0000,0.0000,45.1400,0.0000,0.0000,0.0000,64.9000,0.0000,0.0000,0.0000,20.1900,0.0000,0.0000,0.0000,26.5500,0.0000 +688160.SH,0.0000,0.0000,0.0000,22.4900,0.0000,0.0000,0.0000,24.0800,0.0000,0.0000,0.0000,20.6100,0.0000,0.0000,0.0000,15.2000,0.0000,0.0000,0.0000,18.7100,0.0000 +688349.SH,0.0000,0.0000,0.0000,36.1600,0.0000,0.0000,0.0000,34.6900,0.0000,0.0000,0.0000,21.1900,0.0000,0.0000,0.0000,28.9800,0.0000,0.0000,0.0000,22.4700,0.0000 +688375.SH,0.0000,0.0000,0.0000,77.5400,0.0000,0.0000,0.0000,71.6400,0.0000,0.0000,0.0000,70.2500,0.0000,0.0000,0.0000,66.1000,0.0000,0.0000,0.0000,61.4600,0.0000 +002647.SZ,0.0000,0.0000,0.0000,49.4700,0.0000,0.0000,0.0000,49.3500,0.0000,0.0000,0.0000,53.4000,0.0000,0.0000,0.0000,14.0100,0.0000,0.0000,0.0000,43.9700,0.0000 +300983.SZ,0.0000,0.0000,0.0000,27.5600,0.0000,0.0000,0.0000,28.9300,0.0000,0.0000,0.0000,34.2100,0.0000,0.0000,0.0000,25.5500,0.0000,0.0000,0.0000,27.2000,0.0000 +000539.SZ,0.0000,0.0000,0.0000,77.1300,0.0000,0.0000,0.0000,89.6600,0.0000,0.0000,0.0000,81.7800,0.0000,0.0000,0.0000,86.6300,0.0000,0.0000,0.0000,79.6300,0.0000 +000568.SZ,0.0000,0.0000,0.0000,46.5200,0.0000,0.0000,0.0000,41.7600,0.0000,0.0000,0.0000,39.8800,0.0000,0.0000,0.0000,34.1200,0.0000,0.0000,0.0000,33.4900,0.0000 +000902.SZ,0.0000,0.0000,0.0000,21.2100,0.0000,0.0000,0.0000,23.6100,0.0000,0.0000,0.0000,24.0200,0.0000,0.0000,0.0000,21.7500,0.0000,0.0000,0.0000,19.6500,0.0000 +688083.SH,0.0000,0.0000,0.0000,39.3900,0.0000,0.0000,0.0000,22.8100,0.0000,0.0000,0.0000,24.8400,0.0000,0.0000,0.0000,26.2200,0.0000,0.0000,0.0000,31.9200,0.0000 +688657.SH,0.0000,0.0000,0.0000,67.4200,0.0000,0.0000,0.0000,63.3700,0.0000,0.0000,0.0000,61.0500,0.0000,0.0000,0.0000,57.5900,0.0000,0.0000,0.0000,46.0700,0.0000 +000571.SZ,0.0000,0.0000,0.0000,15.6200,0.0000,0.0000,0.0000,9.1900,0.0000,0.0000,0.0000,12.0500,0.0000,0.0000,0.0000,6.3900,0.0000,0.0000,0.0000,15.9600,0.0000 +601006.SH,0.0000,0.0000,0.0000,70.1800,0.0000,0.0000,0.0000,68.5000,0.0000,0.0000,0.0000,67.1300,0.0000,0.0000,0.0000,67.8900,0.0000,0.0000,0.0000,71.2700,0.0000 +301047.SZ,0.0000,0.0000,0.0000,28.6500,0.0000,0.0000,0.0000,20.4200,0.0000,0.0000,0.0000,24.6400,0.0000,0.0000,0.0000,25.4000,0.0000,0.0000,0.0000,34.2000,0.0000 +000919.SZ,0.0000,0.0000,0.0000,42.4400,0.0000,0.0000,0.0000,40.5300,0.0000,0.0000,0.0000,39.9500,0.0000,0.0000,0.0000,35.8100,0.0000,0.0000,0.0000,43.9000,0.0000 +000892.SZ,0.0000,0.0000,0.0000,35.9900,0.0000,0.0000,0.0000,32.0600,0.0000,0.0000,0.0000,39.2600,0.0000,0.0000,0.0000,37.3200,0.0000,0.0000,0.0000,27.8400,0.0000 +002540.SZ,0.0000,0.0000,0.0000,59.8700,0.0000,0.0000,0.0000,79.7600,0.0000,0.0000,0.0000,68.7100,0.0000,0.0000,0.0000,57.7500,0.0000,0.0000,0.0000,49.4700,0.0000 +002728.SZ,0.0000,0.0000,0.0000,21.8200,0.0000,0.0000,0.0000,24.0800,0.0000,0.0000,0.0000,26.7900,0.0000,0.0000,0.0000,23.5100,0.0000,0.0000,0.0000,26.1300,0.0000 +000959.SZ,0.0000,0.0000,0.0000,72.9700,0.0000,0.0000,0.0000,70.2400,0.0000,0.0000,0.0000,69.1800,0.0000,0.0000,0.0000,65.9300,0.0000,0.0000,0.0000,67.0700,0.0000 +601919.SH,0.0000,0.0000,0.0000,10.3000,0.0000,0.0000,0.0000,12.5900,0.0000,0.0000,0.0000,15.1300,0.0000,0.0000,0.0000,19.4400,0.0000,0.0000,0.0000,16.8000,0.0000 +600282.SH,0.0000,0.0000,0.0000,21.0000,0.0000,0.0000,0.0000,18.1400,0.0000,0.0000,0.0000,16.8100,0.0000,0.0000,0.0000,12.6000,0.0000,0.0000,0.0000,10.8200,0.0000 +600058.SH,0.0000,0.0000,0.0000,27.2000,0.0000,0.0000,0.0000,27.4000,0.0000,0.0000,0.0000,20.3600,0.0000,0.0000,0.0000,15.6800,0.0000,0.0000,0.0000,18.8400,0.0000 +002102.SZ,0.0000,0.0000,0.0000,22.1600,0.0000,0.0000,0.0000,30.0500,0.0000,0.0000,0.0000,28.5400,0.0000,0.0000,0.0000,33.9500,0.0000,0.0000,0.0000,40.8700,0.0000 +300677.SZ,0.0000,0.0000,0.0000,33.8700,0.0000,0.0000,0.0000,31.8100,0.0000,0.0000,0.0000,23.5100,0.0000,0.0000,0.0000,26.5200,0.0000,0.0000,0.0000,25.4600,0.0000 +300815.SZ,0.0000,0.0000,0.0000,27.4900,0.0000,0.0000,0.0000,29.1100,0.0000,0.0000,0.0000,22.8900,0.0000,0.0000,0.0000,23.1300,0.0000,0.0000,0.0000,33.5300,0.0000 +000516.SZ,0.0000,0.0000,0.0000,53.7000,0.0000,0.0000,0.0000,59.6600,0.0000,0.0000,0.0000,57.4200,0.0000,0.0000,0.0000,79.7600,0.0000,0.0000,0.0000,69.8600,0.0000 +002967.SZ,0.0000,0.0000,0.0000,10.9200,0.0000,0.0000,0.0000,10.0400,0.0000,0.0000,0.0000,8.5800,0.0000,0.0000,0.0000,6.4600,0.0000,0.0000,0.0000,8.4100,0.0000 +000709.SZ,0.0000,0.0000,0.0000,51.6400,0.0000,0.0000,0.0000,65.8500,0.0000,0.0000,0.0000,66.1500,0.0000,0.0000,0.0000,73.6700,0.0000,0.0000,0.0000,82.7200,0.0000 +601618.SH,0.0000,0.0000,0.0000,1.2000,0.0000,0.0000,0.0000,1.3800,0.0000,0.0000,0.0000,1.3900,0.0000,1.3500,0.0000,1.4800,0.0000,0.0000,0.0000,1.2600,0.0000 +001229.SZ,0.0000,0.0000,0.0000,45.5600,0.0000,0.0000,0.0000,34.5100,0.0000,0.0000,0.0000,27.2700,0.0000,0.0000,0.0000,39.9000,0.0000,0.0000,0.0000,26.8500,0.0000 +002201.SZ,0.0000,0.0000,0.0000,27.0700,0.0000,0.0000,0.0000,20.5100,0.0000,0.0000,0.0000,23.6700,0.0000,0.0000,0.0000,31.2400,0.0000,0.0000,0.0000,14.9800,0.0000 +603826.SH,0.0000,0.0000,0.0000,42.5200,0.0000,0.0000,0.0000,37.1600,0.0000,0.0000,0.0000,37.8500,0.0000,0.0000,0.0000,30.9500,0.0000,0.0000,0.0000,42.9700,0.0000 +301001.SZ,0.0000,0.0000,0.0000,81.4200,0.0000,0.0000,0.0000,64.0800,0.0000,0.0000,0.0000,56.3100,0.0000,0.0000,0.0000,54.3600,0.0000,0.0000,0.0000,65.9300,0.0000 +300928.SZ,0.0000,0.0000,0.0000,88.0500,0.0000,0.0000,0.0000,90.1600,0.0000,0.0000,0.0000,89.0200,0.0000,0.0000,0.0000,84.4200,0.0000,0.0000,0.0000,88.8800,0.0000 +002282.SZ,0.0000,0.0000,0.0000,18.1300,0.0000,0.0000,0.0000,26.0300,0.0000,0.0000,0.0000,22.5300,0.0000,0.0000,0.0000,26.3700,0.0000,0.0000,0.0000,26.1200,0.0000 +600665.SH,0.0000,0.0000,0.0000,21.9700,0.0000,0.0000,0.0000,32.4900,0.0000,0.0000,0.0000,29.4700,0.0000,0.0000,0.0000,47.9400,0.0000,0.0000,0.0000,44.0900,0.0000 +600033.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +000860.SZ,0.0000,0.0000,0.0000,8.9500,0.0000,0.0000,0.0000,18.4600,0.0000,0.0000,0.0000,27.3500,0.0000,0.0000,0.0000,23.1400,0.0000,0.0000,0.0000,50.6400,0.0000 +002166.SZ,0.0000,0.0000,0.0000,41.1900,0.0000,0.0000,0.0000,23.4700,0.0000,0.0000,0.0000,29.7200,0.0000,0.0000,0.0000,32.6100,0.0000,0.0000,0.0000,24.2200,0.0000 +603408.SH,0.0000,0.0000,0.0000,11.5500,0.0000,0.0000,0.0000,10.2900,0.0000,0.0000,0.0000,9.5300,0.0000,0.0000,0.0000,10.2800,0.0000,0.0000,0.0000,8.7500,0.0000 +688298.SH,0.0000,0.0000,0.0000,50.6000,0.0000,0.0000,0.0000,65.0200,0.0000,0.0000,0.0000,30.7500,0.0000,0.0000,0.0000,14.7900,0.0000,0.0000,0.0000,10.9200,0.0000 +000635.SZ,0.0000,0.0000,0.0000,32.0800,0.0000,0.0000,0.0000,66.8000,0.0000,0.0000,0.0000,66.9100,0.0000,0.0000,0.0000,40.6300,0.0000,0.0000,0.0000,42.3500,0.0000 +300016.SZ,0.0000,0.0000,0.0000,70.3500,0.0000,0.0000,0.0000,57.7800,0.0000,0.0000,0.0000,65.6200,0.0000,0.0000,0.0000,56.7700,0.0000,0.0000,0.0000,30.5600,0.0000 +605337.SH,0.0000,0.0000,0.0000,53.6700,0.0000,0.0000,0.0000,47.1000,0.0000,0.0000,0.0000,52.5600,0.0000,0.0000,0.0000,39.2700,0.0000,0.0000,0.0000,30.8700,0.0000 +601010.SH,0.0000,0.0000,0.0000,38.5400,0.0000,0.0000,0.0000,30.3700,0.0000,0.0000,0.0000,20.5700,0.0000,0.0000,0.0000,29.3500,0.0000,0.0000,0.0000,34.3400,0.0000 +000592.SZ,0.0000,0.0000,0.0000,32.8500,0.0000,0.0000,0.0000,25.1800,0.0000,0.0000,0.0000,30.0200,0.0000,0.0000,0.0000,28.0200,0.0000,0.0000,0.0000,25.7500,0.0000 +001367.SZ,0.0000,0.0000,0.0000,47.4700,0.0000,0.0000,0.0000,51.9700,0.0000,50.7300,0.0000,0.0000,0.0000,0.0000,0.0000,52.9800,0.0000,0.0000,0.0000,0.0000,0.0000 +688584.SH,0.0000,0.0000,0.0000,76.3800,0.0000,0.0000,0.0000,58.1400,0.0000,0.0000,0.0000,51.2700,0.0000,51.5100,0.0000,53.1100,0.0000,0.0000,0.0000,45.8100,0.0000 +000065.SZ,0.0000,0.0000,0.0000,25.7300,0.0000,0.0000,0.0000,29.7200,0.0000,0.0000,0.0000,28.9300,0.0000,0.0000,0.0000,37.2700,0.0000,0.0000,0.0000,32.2700,0.0000 +002151.SZ,0.0000,0.0000,0.0000,26.5200,0.0000,0.0000,0.0000,32.7900,0.0000,0.0000,0.0000,44.2800,0.0000,0.0000,0.0000,44.8700,0.0000,0.0000,0.0000,43.2500,0.0000 +002372.SZ,0.0000,0.0000,0.0000,51.8400,0.0000,0.0000,0.0000,53.6600,0.0000,0.0000,0.0000,41.6500,0.0000,0.0000,0.0000,36.5300,0.0000,0.0000,0.0000,36.5700,0.0000 +600637.SH,0.0000,0.0000,0.0000,7.3300,0.0000,0.0000,0.0000,8.0700,0.0000,0.0000,0.0000,7.5900,0.0000,0.0000,0.0000,6.6700,0.0000,0.0000,0.0000,6.5800,0.0000 +003009.SZ,0.0000,0.0000,0.0000,36.6800,0.0000,0.0000,0.0000,39.4900,0.0000,0.0000,0.0000,40.0200,0.0000,0.0000,0.0000,30.4300,0.0000,0.0000,0.0000,32.9100,0.0000 +600316.SH,0.0000,0.0000,0.0000,45.7400,0.0000,0.0000,0.0000,69.6600,0.0000,0.0000,0.0000,66.3200,0.0000,0.0000,0.0000,44.0100,0.0000,0.0000,0.0000,76.1900,0.0000 +601933.SH,0.0000,0.0000,0.0000,6.8400,0.0000,0.0000,0.0000,8.4200,0.0000,0.0000,0.0000,10.1500,0.0000,0.0000,0.0000,10.2000,0.0000,0.0000,0.0000,8.7600,0.0000 +002911.SZ,0.0000,0.0000,0.0000,85.7900,0.0000,0.0000,0.0000,84.8500,0.0000,0.0000,0.0000,89.7000,0.0000,0.0000,0.0000,68.7500,0.0000,0.0000,0.0000,61.8800,0.0000 +300391.SZ,0.0000,0.0000,0.0000,12.4600,0.0000,0.0000,0.0000,19.3700,0.0000,0.0000,0.0000,46.7300,0.0000,0.0000,0.0000,65.0200,0.0000,0.0000,0.0000,36.1400,0.0000 +600769.SH,0.0000,0.0000,0.0000,41.7900,0.0000,0.0000,0.0000,53.4900,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,69.8000,0.0000,0.0000,0.0000,46.5800,0.0000 +300009.SZ,0.0000,0.0000,0.0000,21.8800,0.0000,0.0000,0.0000,22.9900,0.0000,0.0000,0.0000,23.2200,0.0000,0.0000,0.0000,29.1000,0.0000,0.0000,0.0000,0.0000,0.0000 +000897.SZ,0.0000,0.0000,0.0000,69.1100,0.0000,0.0000,0.0000,72.8800,0.0000,0.0000,0.0000,65.0500,0.0000,0.0000,0.0000,63.3900,0.0000,0.0000,0.0000,61.4200,0.0000 +688582.SH,0.0000,0.0000,0.0000,89.6000,0.0000,0.0000,0.0000,92.5700,0.0000,0.0000,0.0000,87.0800,0.0000,0.0000,0.0000,76.4800,0.0000,0.0000,0.0000,64.2700,0.0000 +603260.SH,0.0000,0.0000,0.0000,29.0400,0.0000,0.0000,0.0000,35.7800,0.0000,0.0000,0.0000,46.4900,0.0000,0.0000,0.0000,39.8200,0.0000,0.0000,0.0000,46.8400,0.0000 +688683.SH,0.0000,37.9100,0.0000,35.6300,0.0000,0.0000,0.0000,32.7700,0.0000,0.0000,0.0000,34.4300,0.0000,0.0000,0.0000,42.8000,0.0000,0.0000,0.0000,46.1200,0.0000 +603916.SH,0.0000,0.0000,0.0000,41.2400,0.0000,0.0000,0.0000,39.4500,0.0000,0.0000,0.0000,42.6600,0.0000,0.0000,0.0000,40.8100,0.0000,0.0000,0.0000,44.0000,0.0000 +603587.SH,0.0000,0.0000,0.0000,27.2000,0.0000,0.0000,0.0000,27.3200,0.0000,0.0000,0.0000,26.2800,0.0000,0.0000,0.0000,28.6300,0.0000,0.0000,0.0000,30.7200,0.0000 +688522.SH,0.0000,0.0000,0.0000,30.4300,0.0000,0.0000,0.0000,32.3900,0.0000,32.4500,0.0000,30.8600,0.0000,0.0000,0.0000,31.4200,0.0000,0.0000,0.0000,34.5200,0.0000 +601628.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +301292.SZ,0.0000,0.0000,0.0000,49.0800,0.0000,0.0000,0.0000,51.9800,0.0000,0.0000,0.0000,43.8600,0.0000,0.0000,0.0000,44.5700,0.0000,0.0000,0.0000,39.1500,0.0000 +688052.SH,0.0000,0.0000,0.0000,81.4400,0.0000,89.5200,0.0000,0.0000,0.0000,0.0000,0.0000,90.4700,0.0000,0.0000,0.0000,86.7700,0.0000,0.0000,0.0000,82.3100,0.0000 +002812.SZ,0.0000,0.0000,0.0000,15.1800,0.0000,0.0000,0.0000,32.3400,0.0000,0.0000,0.0000,28.1500,0.0000,0.0000,0.0000,28.5400,0.0000,0.0000,0.0000,28.4500,0.0000 +002292.SZ,0.0000,0.0000,0.0000,22.4100,0.0000,0.0000,0.0000,18.9900,0.0000,0.0000,0.0000,19.1200,0.0000,0.0000,0.0000,16.5400,0.0000,0.0000,0.0000,22.1300,0.0000 +002568.SZ,0.0000,0.0000,0.0000,36.5200,0.0000,0.0000,0.0000,38.4300,0.0000,0.0000,0.0000,43.7200,0.0000,0.0000,0.0000,40.9300,0.0000,0.0000,0.0000,44.3900,0.0000 +688163.SH,0.0000,0.0000,0.0000,52.5700,0.0000,61.0000,0.0000,48.3400,0.0000,0.0000,0.0000,57.9700,0.0000,0.0000,0.0000,48.9500,0.0000,0.0000,0.0000,73.2100,0.0000 +301017.SZ,0.0000,0.0000,0.0000,40.1700,0.0000,0.0000,0.0000,43.0400,0.0000,0.0000,0.0000,37.9300,0.0000,0.0000,0.0000,42.1900,0.0000,0.0000,0.0000,46.5600,0.0000 +002497.SZ,0.0000,0.0000,0.0000,15.1200,0.0000,0.0000,0.0000,30.7800,0.0000,0.0000,0.0000,50.9100,0.0000,0.0000,0.0000,40.3500,0.0000,0.0000,0.0000,31.8000,0.0000 +601866.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,55.8100,0.0000,0.0000,0.0000,48.5600,0.0000,0.0000,0.0000,30.3100,0.0000,0.0000,0.0000,40.1900,0.0000 +000731.SZ,0.0000,0.0000,0.0000,67.4800,0.0000,0.0000,0.0000,61.6800,0.0000,0.0000,0.0000,58.9200,0.0000,0.0000,0.0000,54.1900,0.0000,0.0000,0.0000,59.7400,0.0000 +003039.SZ,0.0000,0.0000,0.0000,84.6700,0.0000,0.0000,0.0000,75.2900,0.0000,0.0000,0.0000,76.1000,0.0000,0.0000,0.0000,47.1700,0.0000,0.0000,0.0000,29.4800,0.0000 +688293.SH,0.0000,0.0000,0.0000,29.7200,0.0000,0.0000,0.0000,36.2000,0.0000,0.0000,0.0000,40.1200,0.0000,0.0000,0.0000,42.3300,0.0000,0.0000,0.0000,36.6900,0.0000 +002548.SZ,0.0000,0.0000,0.0000,17.3000,0.0000,0.0000,0.0000,20.5200,0.0000,0.0000,0.0000,21.0700,0.0000,0.0000,0.0000,21.3800,0.0000,0.0000,0.0000,21.3900,0.0000 +301199.SZ,0.0000,0.0000,0.0000,14.3500,0.0000,16.8900,0.0000,30.3600,0.0000,0.0000,0.0000,21.0400,0.0000,0.0000,0.0000,20.1400,0.0000,0.0000,0.0000,23.2300,0.0000 +688302.SH,0.0000,0.0000,0.0000,57.2700,0.0000,67.1800,0.0000,0.0000,0.0000,0.0000,0.0000,58.7800,0.0000,0.0000,0.0000,51.1400,0.0000,0.0000,0.0000,42.5000,0.0000 +603170.SH,0.0000,0.0000,0.0000,21.2400,0.0000,0.0000,0.0000,21.0200,0.0000,0.0000,0.0000,26.7800,0.0000,0.0000,0.0000,23.6300,0.0000,0.0000,0.0000,20.9600,0.0000 +688139.SH,0.0000,0.0000,0.0000,20.7600,0.0000,0.0000,0.0000,17.2400,0.0000,0.0000,0.0000,19.8700,0.0000,0.0000,0.0000,17.1300,0.0000,0.0000,0.0000,12.1400,0.0000 +000507.SZ,0.0000,0.0000,0.0000,37.9200,0.0000,0.0000,0.0000,41.9300,0.0000,0.0000,0.0000,27.1300,0.0000,0.0000,0.0000,39.4000,0.0000,0.0000,0.0000,33.9600,0.0000 +600690.SH,0.0000,0.0000,0.0000,20.4600,0.0000,0.0000,0.0000,19.8300,0.0000,0.0000,0.0000,19.3000,0.0000,0.0000,0.0000,23.6000,0.0000,0.0000,0.0000,16.8000,0.0000 +000607.SZ,0.0000,0.0000,0.0000,15.0700,0.0000,0.0000,0.0000,23.9800,0.0000,0.0000,0.0000,27.5500,0.0000,0.0000,0.0000,16.0300,0.0000,0.0000,0.0000,25.2800,0.0000 +600017.SH,0.0000,0.0000,0.0000,43.0500,0.0000,0.0000,0.0000,61.4800,0.0000,0.0000,0.0000,57.8000,0.0000,0.0000,0.0000,33.4900,0.0000,0.0000,0.0000,31.7500,0.0000 +601369.SH,0.0000,0.0000,0.0000,20.2200,0.0000,0.0000,0.0000,18.3400,0.0000,0.0000,0.0000,17.6900,0.0000,0.0000,0.0000,21.4100,0.0000,0.0000,0.0000,22.9400,0.0000 +688376.SH,0.0000,0.0000,0.0000,43.7000,0.0000,0.0000,0.0000,37.0300,0.0000,33.2900,0.0000,30.9900,0.0000,0.0000,0.0000,26.1500,0.0000,0.0000,0.0000,35.4800,0.0000 +688087.SH,0.0000,0.0000,0.0000,13.1600,0.0000,0.0000,0.0000,16.9600,0.0000,0.0000,0.0000,14.9800,0.0000,0.0000,0.0000,9.5000,0.0000,0.0000,0.0000,9.1600,0.0000 +002817.SZ,0.0000,0.0000,0.0000,52.8100,0.0000,0.0000,0.0000,81.7200,0.0000,0.0000,0.0000,80.3400,0.0000,0.0000,0.0000,81.1800,0.0000,0.0000,0.0000,70.3100,0.0000 +000572.SZ,0.0000,0.0000,0.0000,14.4500,0.0000,0.0000,0.0000,18.8100,0.0000,0.0000,0.0000,22.3800,0.0000,0.0000,0.0000,21.0100,0.0000,0.0000,0.0000,24.9900,0.0000 +603214.SH,0.0000,0.0000,0.0000,44.0100,0.0000,0.0000,0.0000,50.4200,0.0000,0.0000,0.0000,48.8600,0.0000,0.0000,0.0000,52.7200,0.0000,0.0000,0.0000,50.6900,0.0000 +301229.SZ,0.0000,0.0000,0.0000,48.2800,0.0000,58.0200,0.0000,52.4700,0.0000,0.0000,0.0000,54.9000,0.0000,0.0000,0.0000,53.8000,0.0000,0.0000,0.0000,56.9600,0.0000 +000786.SZ,0.0000,0.0000,0.0000,21.6900,0.0000,0.0000,0.0000,19.9200,0.0000,0.0000,0.0000,19.8600,0.0000,0.0000,0.0000,15.9400,0.0000,0.0000,0.0000,12.0000,0.0000 +603662.SH,0.0000,0.0000,0.0000,28.7800,0.0000,0.0000,0.0000,21.2800,0.0000,0.0000,0.0000,15.6900,0.0000,0.0000,0.0000,12.3400,0.0000,0.0000,0.0000,9.6000,0.0000 +300329.SZ,0.0000,0.0000,0.0000,27.3500,0.0000,0.0000,0.0000,25.3000,0.0000,0.0000,0.0000,29.5000,0.0000,0.0000,0.0000,18.8300,0.0000,0.0000,0.0000,20.4800,0.0000 +600760.SH,0.0000,0.0000,0.0000,85.8000,0.0000,0.0000,0.0000,85.7300,0.0000,0.0000,0.0000,88.7200,0.0000,0.0000,0.0000,81.2800,0.0000,0.0000,0.0000,79.1300,0.0000 +603171.SH,0.0000,0.0000,0.0000,48.8500,0.0000,0.0000,0.0000,32.9900,0.0000,0.0000,0.0000,41.6800,0.0000,0.0000,0.0000,26.8700,0.0000,0.0000,0.0000,25.1700,0.0000 +002129.SZ,0.0000,0.0000,0.0000,33.8500,0.0000,0.0000,0.0000,55.3300,0.0000,0.0000,0.0000,49.2800,0.0000,0.0000,0.0000,37.7000,0.0000,0.0000,0.0000,18.5700,0.0000 +688173.SH,0.0000,0.0000,0.0000,82.2200,0.0000,85.0200,0.0000,81.2500,0.0000,0.0000,0.0000,87.2800,0.0000,0.0000,0.0000,83.7500,0.0000,0.0000,0.0000,74.9100,0.0000 +002701.SZ,0.0000,0.0000,0.0000,44.3000,0.0000,0.0000,0.0000,59.6800,0.0000,0.0000,0.0000,52.8800,0.0000,0.0000,0.0000,56.0300,0.0000,0.0000,0.0000,58.7300,0.0000 +600339.SH,0.0000,0.0000,0.0000,13.3200,0.0000,0.0000,0.0000,12.6400,0.0000,0.0000,0.0000,16.9400,0.0000,0.0000,0.0000,10.1700,0.0000,0.0000,0.0000,8.5100,0.0000 +603898.SH,0.0000,0.0000,0.0000,24.3200,0.0000,12.9700,0.0000,16.2600,0.0000,0.0000,0.0000,18.3600,0.0000,0.0000,0.0000,20.6900,0.0000,0.0000,0.0000,16.8400,0.0000 +603520.SH,0.0000,0.0000,0.0000,44.6700,0.0000,0.0000,0.0000,41.3800,0.0000,0.0000,0.0000,58.4600,0.0000,0.0000,0.0000,67.6700,0.0000,0.0000,0.0000,36.5100,0.0000 +688789.SH,0.0000,0.0000,0.0000,65.0000,0.0000,0.0000,0.0000,59.0000,0.0000,0.0000,0.0000,44.3600,0.0000,0.0000,0.0000,38.2600,0.0000,0.0000,0.0000,37.4800,0.0000 +605266.SH,0.0000,0.0000,0.0000,55.8200,0.0000,0.0000,0.0000,57.0000,0.0000,0.0000,0.0000,56.7300,0.0000,0.0000,0.0000,56.2600,0.0000,0.0000,0.0000,58.2500,0.0000 +000875.SZ,0.0000,0.0000,0.0000,35.6400,0.0000,0.0000,0.0000,53.2700,0.0000,0.0000,0.0000,30.6400,0.0000,0.0000,0.0000,36.9400,0.0000,0.0000,0.0000,37.5200,0.0000 +301507.SZ,0.0000,0.0000,0.0000,33.5400,0.0000,0.0000,0.0000,29.5700,0.0000,0.0000,0.0000,32.9500,0.0000,0.0000,0.0000,35.9500,0.0000,0.0000,0.0000,42.3600,0.0000 +688338.SH,0.0000,0.0000,0.0000,55.8900,0.0000,0.0000,0.0000,67.7600,0.0000,0.0000,0.0000,59.6600,0.0000,0.0000,0.0000,59.0300,0.0000,0.0000,0.0000,58.7600,0.0000 +600612.SH,0.0000,0.0000,0.0000,93.7300,0.0000,0.0000,0.0000,94.6400,0.0000,0.0000,0.0000,93.7100,0.0000,0.0000,0.0000,93.0100,0.0000,0.0000,0.0000,94.9400,0.0000 +688147.SH,0.0000,0.0000,0.0000,33.6300,0.0000,0.0000,0.0000,24.7600,0.0000,13.3300,0.0000,13.0900,0.0000,0.0000,0.0000,16.9500,0.0000,0.0000,0.0000,28.1600,0.0000 +603519.SH,0.0000,0.0000,0.0000,85.6700,0.0000,0.0000,0.0000,87.8100,0.0000,0.0000,0.0000,85.0500,0.0000,0.0000,0.0000,77.6100,0.0000,0.0000,0.0000,0.0000,0.0000 +002492.SZ,0.0000,0.0000,0.0000,38.0700,0.0000,0.0000,0.0000,38.6500,0.0000,0.0000,0.0000,52.9400,0.0000,0.0000,0.0000,26.3800,0.0000,0.0000,0.0000,42.8300,0.0000 +300587.SZ,0.0000,0.0000,0.0000,34.0800,0.0000,0.0000,0.0000,39.1200,0.0000,0.0000,0.0000,30.8500,0.0000,0.0000,0.0000,50.0400,0.0000,0.0000,0.0000,71.8100,0.0000 +002945.SZ,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +688700.SH,0.0000,0.0000,0.0000,29.7900,0.0000,0.0000,0.0000,26.1300,0.0000,0.0000,0.0000,22.1600,0.0000,0.0000,0.0000,22.0900,0.0000,0.0000,0.0000,25.3900,0.0000 +002625.SZ,0.0000,0.0000,0.0000,40.8200,0.0000,0.0000,0.0000,56.9600,0.0000,0.0000,0.0000,53.2100,0.0000,0.0000,0.0000,50.2000,0.0000,0.0000,0.0000,56.0600,0.0000 +605488.SH,0.0000,0.0000,0.0000,47.0200,0.0000,0.0000,0.0000,38.4200,0.0000,0.0000,0.0000,41.7000,0.0000,0.0000,0.0000,33.6500,0.0000,0.0000,0.0000,27.6300,0.0000 +301070.SZ,0.0000,0.0000,0.0000,51.1700,0.0000,0.0000,0.0000,44.1000,0.0000,0.0000,0.0000,28.9600,0.0000,0.0000,0.0000,22.0000,0.0000,0.0000,0.0000,23.4400,0.0000 +688301.SH,0.0000,0.0000,0.0000,36.8100,0.0000,0.0000,0.0000,36.5000,0.0000,0.0000,0.0000,45.5400,0.0000,0.0000,0.0000,42.3200,0.0000,0.0000,0.0000,33.3600,0.0000 +600388.SH,0.0000,0.0000,0.0000,6.5000,0.0000,0.0000,0.0000,6.8600,0.0000,0.0000,0.0000,7.8200,0.0000,0.0000,0.0000,5.9800,0.0000,0.0000,0.0000,10.3400,0.0000 +002066.SZ,0.0000,0.0000,0.0000,15.0700,0.0000,0.0000,0.0000,9.3900,0.0000,0.0000,0.0000,10.6100,0.0000,0.0000,0.0000,10.0600,0.0000,0.0000,0.0000,9.1400,0.0000 +300864.SZ,0.0000,0.0000,0.0000,16.3400,0.0000,0.0000,0.0000,14.8600,0.0000,0.0000,0.0000,11.2500,0.0000,0.0000,0.0000,11.6900,0.0000,0.0000,0.0000,14.2300,0.0000 +688129.SH,0.0000,0.0000,0.0000,23.3200,0.0000,0.0000,0.0000,22.8600,0.0000,0.0000,0.0000,24.9400,0.0000,0.0000,0.0000,27.1400,0.0000,0.0000,0.0000,26.1200,0.0000 +002286.SZ,0.0000,0.0000,0.0000,46.5300,0.0000,0.0000,0.0000,51.3000,0.0000,0.0000,0.0000,56.5200,0.0000,0.0000,0.0000,61.2100,0.0000,0.0000,0.0000,65.9000,0.0000 +601990.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +301303.SZ,0.0000,0.0000,0.0000,30.2000,0.0000,0.0000,0.0000,27.4600,0.0000,32.9500,0.0000,27.5100,0.0000,0.0000,0.0000,28.5600,0.0000,0.0000,0.0000,16.6800,0.0000 +002349.SZ,0.0000,0.0000,0.0000,12.9500,0.0000,0.0000,0.0000,16.6900,0.0000,0.0000,0.0000,19.5500,0.0000,0.0000,0.0000,14.9900,0.0000,0.0000,0.0000,15.5100,0.0000 +688006.SH,0.0000,0.0000,0.0000,20.8300,0.0000,0.0000,0.0000,12.6900,0.0000,0.0000,0.0000,17.7200,0.0000,0.0000,0.0000,18.0100,0.0000,0.0000,0.0000,23.7200,0.0000 +601969.SH,0.0000,0.0000,0.0000,18.4000,0.0000,0.0000,0.0000,20.5400,0.0000,0.0000,0.0000,28.5800,0.0000,0.0000,0.0000,23.4700,0.0000,0.0000,0.0000,23.8100,0.0000 +301265.SZ,0.0000,0.0000,0.0000,46.7000,0.0000,0.0000,0.0000,51.6700,0.0000,35.3400,0.0000,32.5700,0.0000,0.0000,0.0000,31.9800,0.0000,0.0000,0.0000,36.9500,0.0000 +688576.SH,0.0000,0.0000,0.0000,34.6800,0.0000,0.0000,0.0000,30.4700,0.0000,0.0000,0.0000,39.4200,0.0000,0.0000,0.0000,32.0500,0.0000,0.0000,0.0000,30.5300,0.0000 +300584.SZ,0.0000,0.0000,0.0000,34.1600,0.0000,0.0000,0.0000,31.4400,0.0000,0.0000,0.0000,33.4100,0.0000,0.0000,0.0000,39.3400,0.0000,0.0000,0.0000,44.5000,0.0000 +000049.SZ,0.0000,0.0000,0.0000,60.9500,0.0000,0.0000,0.0000,57.4100,0.0000,0.0000,0.0000,57.2700,0.0000,0.0000,0.0000,50.2800,0.0000,0.0000,0.0000,50.2400,0.0000 +688141.SH,0.0000,0.0000,0.0000,70.2500,0.0000,0.0000,0.0000,69.1500,0.0000,70.9100,0.0000,74.8300,0.0000,0.0000,0.0000,69.3900,0.0000,0.0000,0.0000,68.9800,0.0000 +002041.SZ,0.0000,0.0000,0.0000,36.2600,0.0000,0.0000,0.0000,30.6400,0.0000,0.0000,0.0000,34.5800,0.0000,0.0000,0.0000,36.6700,0.0000,0.0000,0.0000,36.6700,0.0000 +002370.SZ,0.0000,0.0000,0.0000,22.5700,0.0000,0.0000,0.0000,28.4100,0.0000,0.0000,0.0000,35.4900,0.0000,0.0000,0.0000,35.0300,0.0000,0.0000,0.0000,47.5700,0.0000 +600210.SH,0.0000,0.0000,0.0000,16.1300,0.0000,0.0000,0.0000,14.7000,0.0000,0.0000,0.0000,11.1000,0.0000,0.0000,0.0000,10.9200,0.0000,0.0000,0.0000,9.8600,0.0000 +000552.SZ,0.0000,0.0000,0.0000,32.5500,0.0000,0.0000,0.0000,45.9400,0.0000,0.0000,0.0000,22.7100,0.0000,0.0000,0.0000,17.9300,0.0000,0.0000,0.0000,41.2800,0.0000 +688098.SH,0.0000,0.0000,0.0000,44.9600,0.0000,0.0000,0.0000,60.5000,0.0000,0.0000,0.0000,52.8300,0.0000,0.0000,0.0000,52.8300,0.0000,0.0000,0.0000,55.1800,0.0000 +600182.SH,0.0000,0.0000,0.0000,62.6200,0.0000,0.0000,0.0000,33.1600,0.0000,0.0000,0.0000,25.9200,0.0000,0.0000,0.0000,24.0800,0.0000,0.0000,0.0000,27.8100,0.0000 +600621.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +600452.SH,0.0000,0.0000,0.0000,47.5500,0.0000,0.0000,0.0000,48.4300,0.0000,0.0000,0.0000,49.9600,0.0000,0.0000,0.0000,55.9900,0.0000,0.0000,0.0000,60.2400,0.0000 +605333.SH,0.0000,0.0000,0.0000,47.8300,0.0000,0.0000,0.0000,48.6500,0.0000,0.0000,0.0000,44.1800,0.0000,0.0000,0.0000,43.1300,0.0000,0.0000,0.0000,47.5100,0.0000 +600131.SH,0.0000,0.0000,0.0000,16.3100,0.0000,0.0000,0.0000,23.4000,0.0000,0.0000,0.0000,24.1600,0.0000,0.0000,0.0000,16.1800,0.0000,0.0000,0.0000,24.6800,0.0000 +002174.SZ,0.0000,0.0000,0.0000,55.2700,0.0000,0.0000,0.0000,43.8800,0.0000,0.0000,0.0000,45.0900,0.0000,0.0000,0.0000,33.8900,0.0000,0.0000,0.0000,42.4700,0.0000 +002884.SZ,0.0000,0.0000,0.0000,34.8200,0.0000,0.0000,0.0000,40.0900,0.0000,0.0000,0.0000,37.1400,0.0000,0.0000,0.0000,33.2200,0.0000,0.0000,0.0000,35.2800,0.0000 +600987.SH,0.0000,0.0000,0.0000,52.4600,0.0000,0.0000,0.0000,72.7000,0.0000,0.0000,0.0000,66.9500,0.0000,0.0000,0.0000,72.5400,0.0000,0.0000,0.0000,47.9400,0.0000 +600909.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +300720.SZ,0.0000,0.0000,0.0000,27.7700,0.0000,0.0000,0.0000,23.6300,0.0000,0.0000,0.0000,28.2300,0.0000,0.0000,0.0000,29.4200,0.0000,0.0000,0.0000,27.6500,0.0000 +000900.SZ,0.0000,0.0000,0.0000,15.4400,0.0000,0.0000,0.0000,21.7100,0.0000,0.0000,0.0000,29.3700,0.0000,0.0000,0.0000,12.7400,0.0000,0.0000,0.0000,21.9400,0.0000 +688353.SH,0.0000,0.0000,0.0000,54.1500,0.0000,0.0000,0.0000,54.7000,0.0000,0.0000,0.0000,31.7600,0.0000,0.0000,0.0000,36.6300,0.0000,0.0000,0.0000,38.9000,0.0000 +300291.SZ,0.0000,0.0000,0.0000,63.0300,0.0000,0.0000,0.0000,41.4400,0.0000,0.0000,0.0000,35.3700,0.0000,0.0000,0.0000,38.7800,0.0000,0.0000,0.0000,42.5000,0.0000 +688018.SH,0.0000,0.0000,0.0000,86.5500,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,79.0400,0.0000,0.0000,0.0000,60.4700,0.0000,0.0000,0.0000,66.2200,0.0000 +688177.SH,0.0000,0.0000,0.0000,36.1300,0.0000,0.0000,0.0000,25.6900,0.0000,0.0000,0.0000,31.9100,0.0000,0.0000,0.0000,38.4700,0.0000,0.0000,0.0000,19.1300,0.0000 +600163.SH,0.0000,0.0000,0.0000,70.0100,0.0000,0.0000,0.0000,75.7300,0.0000,0.0000,0.0000,53.1800,0.0000,0.0000,0.0000,33.1100,0.0000,0.0000,0.0000,29.3500,0.0000 +603318.SH,0.0000,0.0000,0.0000,62.6200,0.0000,0.0000,0.0000,47.4700,0.0000,0.0000,0.0000,54.6900,0.0000,0.0000,0.0000,68.4600,0.0000,0.0000,0.0000,81.1100,0.0000 +003027.SZ,0.0000,0.0000,0.0000,30.5400,0.0000,0.0000,0.0000,29.6700,0.0000,0.0000,0.0000,18.1300,0.0000,0.0000,0.0000,38.0100,0.0000,0.0000,0.0000,18.7300,0.0000 +603919.SH,0.0000,0.0000,0.0000,39.7800,0.0000,0.0000,0.0000,34.3800,0.0000,0.0000,0.0000,30.7100,0.0000,0.0000,0.0000,22.7400,0.0000,0.0000,0.0000,25.7000,0.0000 +600562.SH,0.0000,0.0000,0.0000,44.1500,0.0000,0.0000,0.0000,34.2100,0.0000,0.0000,0.0000,28.6000,0.0000,0.0000,0.0000,21.2500,0.0000,0.0000,0.0000,24.7400,0.0000 +603619.SH,0.0000,0.0000,0.0000,18.3800,0.0000,0.0000,0.0000,17.0000,0.0000,0.0000,0.0000,17.5000,0.0000,0.0000,0.0000,27.9700,0.0000,0.0000,0.0000,29.4000,0.0000 +600483.SH,0.0000,0.0000,0.0000,62.8200,0.0000,0.0000,0.0000,63.8900,0.0000,0.0000,0.0000,73.4300,0.0000,0.0000,0.0000,62.9500,0.0000,0.0000,0.0000,72.9400,0.0000 +605005.SH,0.0000,0.0000,0.0000,27.0100,0.0000,0.0000,0.0000,23.8200,0.0000,0.0000,0.0000,29.8700,0.0000,0.0000,0.0000,26.9500,0.0000,0.0000,0.0000,27.3100,0.0000 +002893.SZ,0.0000,0.0000,0.0000,67.8300,0.0000,0.0000,0.0000,65.2300,0.0000,0.0000,0.0000,60.8500,0.0000,0.0000,0.0000,76.2000,0.0000,0.0000,0.0000,73.4800,0.0000 +000498.SZ,0.0000,0.0000,0.0000,14.2800,0.0000,0.0000,0.0000,18.5800,0.0000,0.0000,0.0000,18.4600,0.0000,0.0000,0.0000,16.3100,0.0000,0.0000,0.0000,21.1700,0.0000 +301100.SZ,0.0000,0.0000,0.0000,40.9900,0.0000,42.2200,0.0000,33.2400,0.0000,0.0000,0.0000,25.5400,0.0000,0.0000,0.0000,36.0600,0.0000,0.0000,0.0000,27.5500,0.0000 +601606.SH,0.0000,0.0000,0.0000,27.6200,0.0000,0.0000,0.0000,31.7400,0.0000,0.0000,0.0000,29.0900,0.0000,0.0000,0.0000,46.5900,0.0000,0.0000,0.0000,32.3700,0.0000 +600877.SH,0.0000,0.0000,0.0000,39.4800,0.0000,0.0000,0.0000,29.2400,0.0000,0.0000,0.0000,30.9700,0.0000,0.0000,0.0000,19.8500,0.0000,0.0000,0.0000,18.6300,0.0000 +600196.SH,0.0000,0.0000,0.0000,8.7300,0.0000,0.0000,0.0000,16.0800,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,11.6900,0.0000,0.0000,0.0000,8.9700,0.0000 +002646.SZ,0.0000,0.0000,0.0000,31.6300,0.0000,0.0000,0.0000,31.7000,0.0000,0.0000,0.0000,31.2100,0.0000,0.0000,0.0000,33.9100,0.0000,0.0000,0.0000,29.5700,0.0000 +300683.SZ,0.0000,0.0000,0.0000,35.8900,0.0000,0.0000,0.0000,26.5000,0.0000,0.0000,0.0000,25.3100,0.0000,0.0000,0.0000,17.5400,0.0000,0.0000,0.0000,17.9800,0.0000 +301327.SZ,0.0000,0.0000,0.0000,55.4200,0.0000,0.0000,0.0000,44.4500,0.0000,0.0000,0.0000,29.3300,0.0000,0.0000,0.0000,47.4300,0.0000,0.0000,0.0000,43.7000,0.0000 +603583.SH,0.0000,0.0000,0.0000,35.8300,0.0000,0.0000,0.0000,29.2700,0.0000,0.0000,0.0000,23.3700,0.0000,0.0000,0.0000,21.4200,0.0000,0.0000,0.0000,25.2700,0.0000 +603633.SH,0.0000,0.0000,0.0000,36.0500,0.0000,0.0000,0.0000,37.4000,0.0000,0.0000,0.0000,34.8300,0.0000,0.0000,0.0000,33.2400,0.0000,0.0000,0.0000,37.5300,0.0000 +002821.SZ,0.0000,0.0000,0.0000,16.6900,0.0000,0.0000,0.0000,17.1300,0.0000,0.0000,0.0000,17.7100,0.0000,0.0000,0.0000,12.2200,0.0000,0.0000,0.0000,17.6300,0.0000 +603099.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +605007.SH,0.0000,0.0000,0.0000,54.6300,0.0000,0.0000,0.0000,48.3000,0.0000,0.0000,0.0000,39.9200,0.0000,0.0000,0.0000,42.8600,0.0000,0.0000,0.0000,35.1900,0.0000 +601108.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +000407.SZ,0.0000,0.0000,0.0000,26.1400,0.0000,0.0000,0.0000,26.1400,0.0000,0.0000,0.0000,42.7200,0.0000,0.0000,0.0000,32.9900,0.0000,0.0000,0.0000,39.2100,0.0000 +600021.SH,0.0000,0.0000,0.0000,39.2300,0.0000,0.0000,0.0000,23.4600,0.0000,0.0000,0.0000,10.5500,0.0000,0.0000,0.0000,49.7400,0.0000,0.0000,0.0000,35.7400,0.0000 +600528.SH,0.0000,0.0000,0.0000,15.8600,0.0000,0.0000,0.0000,13.4000,0.0000,0.0000,0.0000,9.9500,0.0000,0.0000,0.0000,8.3000,0.0000,0.0000,0.0000,8.8000,0.0000 +601231.SH,0.0000,0.0000,0.0000,50.1300,0.0000,0.0000,0.0000,44.8300,0.0000,0.0000,0.0000,48.3800,0.0000,0.0000,0.0000,59.0100,0.0000,0.0000,0.0000,51.2200,0.0000 +603969.SH,0.0000,0.0000,0.0000,54.2900,0.0000,0.0000,0.0000,85.4100,0.0000,0.0000,0.0000,80.7400,0.0000,0.0000,0.0000,63.4100,0.0000,0.0000,0.0000,54.9900,0.0000 +603458.SH,0.0000,0.0000,0.0000,14.2800,0.0000,0.0000,0.0000,19.5100,0.0000,0.0000,0.0000,16.1400,0.0000,0.0000,0.0000,19.9700,0.0000,0.0000,0.0000,18.5200,0.0000 +603020.SH,0.0000,0.0000,0.0000,41.2300,0.0000,0.0000,0.0000,92.5800,0.0000,0.0000,0.0000,90.5600,0.0000,0.0000,0.0000,60.9400,0.0000,0.0000,0.0000,47.8300,0.0000 +300805.SZ,0.0000,0.0000,0.0000,29.7900,0.0000,0.0000,0.0000,36.4500,0.0000,0.0000,0.0000,39.7900,0.0000,0.0000,0.0000,42.9100,0.0000,0.0000,0.0000,58.9100,0.0000 +688146.SH,0.0000,0.0000,0.0000,60.5500,0.0000,0.0000,0.0000,47.7400,0.0000,44.2100,0.0000,0.0000,0.0000,0.0000,0.0000,38.2800,0.0000,0.0000,0.0000,37.3100,0.0000 +688548.SH,0.0000,0.0000,0.0000,82.6400,0.0000,0.0000,0.0000,66.7600,0.0000,0.0000,0.0000,61.4700,0.0000,0.0000,0.0000,56.6400,0.0000,0.0000,0.0000,47.0800,0.0000 +600444.SH,0.0000,0.0000,0.0000,16.1500,0.0000,0.0000,0.0000,5.2800,0.0000,0.0000,0.0000,28.5400,0.0000,0.0000,0.0000,24.1500,0.0000,0.0000,0.0000,33.7800,0.0000 +603036.SH,0.0000,0.0000,0.0000,30.3100,0.0000,0.0000,0.0000,43.9300,0.0000,0.0000,0.0000,25.2200,0.0000,0.0000,0.0000,20.2400,0.0000,0.0000,0.0000,25.2400,0.0000 +601666.SH,0.0000,0.0000,0.0000,22.8600,0.0000,0.0000,0.0000,23.9900,0.0000,0.0000,0.0000,44.2400,0.0000,0.0000,0.0000,48.1700,0.0000,0.0000,0.0000,48.7400,0.0000 +601696.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +688248.SH,0.0000,0.0000,0.0000,21.4500,0.0000,19.0800,0.0000,19.8600,0.0000,0.0000,0.0000,23.7300,0.0000,0.0000,0.0000,27.3300,0.0000,0.0000,0.0000,25.8300,0.0000 +002124.SZ,0.0000,0.0000,0.0000,26.3000,0.0000,0.0000,0.0000,31.5800,0.0000,0.0000,0.0000,77.5400,0.0000,0.0000,0.0000,85.8000,0.0000,0.0000,0.0000,77.0900,0.0000 +600597.SH,0.0000,0.0000,0.0000,29.7400,0.0000,0.0000,0.0000,9.3800,0.0000,0.0000,0.0000,11.0800,0.0000,0.0000,0.0000,6.5300,0.0000,0.0000,0.0000,10.8300,0.0000 +002344.SZ,0.0000,0.0000,0.0000,74.8000,0.0000,0.0000,0.0000,42.3400,0.0000,0.0000,0.0000,34.3500,0.0000,0.0000,0.0000,28.5500,0.0000,0.0000,0.0000,40.6100,0.0000 +002243.SZ,0.0000,0.0000,0.0000,36.1000,0.0000,0.0000,0.0000,53.6000,0.0000,0.0000,0.0000,34.5500,0.0000,0.0000,0.0000,39.5300,0.0000,0.0000,0.0000,50.6100,0.0000 +600256.SH,0.0000,0.0000,0.0000,53.7400,0.0000,0.0000,0.0000,42.8600,0.0000,0.0000,0.0000,24.4000,0.0000,0.0000,0.0000,49.9300,0.0000,0.0000,0.0000,25.5100,0.0000 +001203.SZ,0.0000,0.0000,0.0000,21.3700,0.0000,0.0000,0.0000,27.3900,0.0000,0.0000,0.0000,24.4600,0.0000,0.0000,0.0000,65.2800,0.0000,0.0000,0.0000,21.4600,0.0000 +002831.SZ,0.0000,0.0000,0.0000,18.1300,0.0000,0.0000,0.0000,10.9700,0.0000,0.0000,0.0000,13.7700,0.0000,0.0000,0.0000,10.7900,0.0000,0.0000,0.0000,11.1400,0.0000 +601339.SH,0.0000,0.0000,0.0000,39.6200,0.0000,0.0000,0.0000,28.2600,0.0000,0.0000,0.0000,42.4400,0.0000,0.0000,0.0000,47.7800,0.0000,0.0000,0.0000,33.5800,0.0000 +688619.SH,0.0000,0.0000,0.0000,37.5800,0.0000,0.0000,0.0000,27.0100,0.0000,0.0000,0.0000,23.2500,0.0000,0.0000,0.0000,22.8400,0.0000,0.0000,0.0000,26.8800,0.0000 +600231.SH,0.0000,0.0000,0.0000,47.0500,0.0000,0.0000,0.0000,48.3800,0.0000,0.0000,0.0000,49.0900,0.0000,0.0000,0.0000,50.3700,0.0000,0.0000,0.0000,48.1600,0.0000 +000766.SZ,0.0000,0.0000,0.0000,35.8800,0.0000,0.0000,0.0000,38.7500,0.0000,0.0000,0.0000,39.2800,0.0000,0.0000,0.0000,34.1300,0.0000,0.0000,0.0000,30.1300,0.0000 +688519.SH,0.0000,0.0000,0.0000,40.1500,0.0000,0.0000,0.0000,41.3200,0.0000,0.0000,0.0000,42.3900,0.0000,0.0000,0.0000,42.7000,0.0000,0.0000,0.0000,47.4100,0.0000 +603976.SH,0.0000,0.0000,0.0000,56.7900,0.0000,0.0000,0.0000,54.0100,0.0000,0.0000,0.0000,52.1800,0.0000,0.0000,0.0000,55.7600,0.0000,0.0000,0.0000,45.7200,0.0000 +605028.SH,0.0000,0.0000,0.0000,53.7100,0.0000,0.0000,0.0000,30.6700,0.0000,0.0000,0.0000,52.5900,0.0000,0.0000,0.0000,47.8100,0.0000,0.0000,0.0000,33.4800,0.0000 +002263.SZ,0.0000,0.0000,0.0000,66.5800,0.0000,0.0000,0.0000,63.2800,0.0000,0.0000,0.0000,64.4400,0.0000,0.0000,0.0000,56.5900,0.0000,0.0000,0.0000,55.9000,0.0000 +600372.SH,0.0000,0.0000,0.0000,11.1100,0.0000,0.0000,0.0000,19.2000,0.0000,0.0000,0.0000,18.4700,0.0000,0.0000,0.0000,26.3900,0.0000,0.0000,0.0000,6.8600,0.0000 +002706.SZ,0.0000,0.0000,0.0000,20.5800,0.0000,0.0000,0.0000,16.7800,0.0000,0.0000,0.0000,18.9400,0.0000,0.0000,0.0000,17.7900,0.0000,0.0000,0.0000,18.9400,0.0000 +002673.SZ,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +300501.SZ,0.0000,0.0000,0.0000,32.2600,0.0000,0.0000,0.0000,27.5000,0.0000,0.0000,0.0000,25.0300,0.0000,0.0000,0.0000,31.4800,0.0000,0.0000,0.0000,31.4300,0.0000 +003013.SZ,0.0000,0.0000,0.0000,23.0000,0.0000,0.0000,0.0000,26.0900,0.0000,0.0000,0.0000,22.9200,0.0000,0.0000,0.0000,20.7800,0.0000,0.0000,0.0000,22.4600,0.0000 +688347.SH,0.0000,0.0000,0.0000,45.0800,0.0000,0.0000,0.0000,38.5000,0.0000,0.0000,0.0000,35.3100,0.0000,0.0000,0.0000,32.1700,0.0000,0.0000,0.0000,29.3500,0.0000 +603068.SH,0.0000,0.0000,0.0000,71.1500,0.0000,0.0000,0.0000,76.5900,0.0000,0.0000,0.0000,83.6600,0.0000,0.0000,0.0000,82.7900,0.0000,0.0000,0.0000,81.9000,0.0000 +603515.SH,0.0000,0.0000,0.0000,15.8500,0.0000,0.0000,0.0000,13.7800,0.0000,0.0000,0.0000,9.5500,0.0000,0.0000,0.0000,10.1600,0.0000,0.0000,0.0000,11.2500,0.0000 +688588.SH,0.0000,0.0000,0.0000,26.3100,0.0000,0.0000,0.0000,29.8800,0.0000,0.0000,0.0000,30.9800,0.0000,0.0000,0.0000,26.2800,0.0000,0.0000,0.0000,43.8200,0.0000 +002668.SZ,0.0000,0.0000,0.0000,25.1400,0.0000,0.0000,0.0000,29.4500,0.0000,0.0000,0.0000,22.6100,0.0000,0.0000,0.0000,12.8200,0.0000,0.0000,0.0000,17.4800,0.0000 +600657.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,40.2700,0.0000,0.0000,0.0000,32.4300,0.0000,0.0000,0.0000,16.3500,0.0000,0.0000,0.0000,40.2700,0.0000 +000951.SZ,0.0000,0.0000,0.0000,67.2300,0.0000,0.0000,0.0000,53.5100,0.0000,0.0000,0.0000,58.4500,0.0000,0.0000,0.0000,63.7400,0.0000,0.0000,0.0000,59.2100,0.0000 +000735.SZ,0.0000,0.0000,0.0000,46.2700,0.0000,0.0000,0.0000,35.2500,0.0000,0.0000,0.0000,37.6200,0.0000,0.0000,0.0000,25.7900,0.0000,0.0000,0.0000,46.3400,0.0000 +600099.SH,0.0000,0.0000,0.0000,17.7000,0.0000,0.0000,0.0000,18.0600,0.0000,0.0000,0.0000,11.3700,0.0000,0.0000,0.0000,13.2900,0.0000,0.0000,0.0000,12.9400,0.0000 +600189.SH,0.0000,0.0000,0.0000,23.9500,0.0000,0.0000,0.0000,24.8900,0.0000,0.0000,0.0000,9.5200,0.0000,0.0000,0.0000,21.6900,0.0000,0.0000,0.0000,20.5500,0.0000 +600903.SH,0.0000,0.0000,0.0000,72.8700,0.0000,0.0000,0.0000,70.5200,0.0000,0.0000,0.0000,73.2900,0.0000,0.0000,0.0000,69.2200,0.0000,0.0000,0.0000,69.3100,0.0000 +300725.SZ,0.0000,0.0000,0.0000,59.6700,0.0000,0.0000,0.0000,32.3600,0.0000,0.0000,0.0000,17.3200,0.0000,0.0000,0.0000,15.5200,0.0000,0.0000,0.0000,21.2100,0.0000 +301130.SZ,0.0000,0.0000,0.0000,48.6900,0.0000,50.6100,0.0000,41.5000,0.0000,0.0000,0.0000,44.8900,0.0000,0.0000,0.0000,56.9900,0.0000,0.0000,0.0000,62.7400,0.0000 +603345.SH,0.0000,0.0000,0.0000,18.3800,0.0000,0.0000,0.0000,15.1600,0.0000,0.0000,0.0000,11.9400,0.0000,0.0000,0.0000,11.3000,0.0000,0.0000,0.0000,12.2800,0.0000 +603303.SH,0.0000,0.0000,0.0000,19.9700,0.0000,0.0000,0.0000,21.7300,0.0000,0.0000,0.0000,28.2200,0.0000,0.0000,0.0000,30.5900,0.0000,0.0000,0.0000,25.9000,0.0000 +300020.SZ,0.0000,0.0000,0.0000,10.4500,0.0000,0.0000,0.0000,12.3700,0.0000,0.0000,0.0000,8.2800,0.0000,0.0000,0.0000,10.9000,0.0000,0.0000,0.0000,30.2400,0.0000 +300908.SZ,0.0000,0.0000,0.0000,31.6000,0.0000,0.0000,0.0000,35.5600,0.0000,0.0000,0.0000,26.0700,0.0000,0.0000,0.0000,30.2000,0.0000,0.0000,0.0000,29.0900,0.0000 +601163.SH,0.0000,0.0000,0.0000,31.2800,0.0000,0.0000,0.0000,30.9000,0.0000,0.0000,0.0000,29.7600,0.0000,0.0000,0.0000,28.8300,0.0000,0.0000,0.0000,26.7300,0.0000 +002661.SZ,0.0000,0.0000,0.0000,17.3800,0.0000,0.0000,0.0000,15.4800,0.0000,0.0000,0.0000,23.7100,0.0000,0.0000,0.0000,19.6900,0.0000,0.0000,0.0000,21.2600,0.0000 +600588.SH,0.0000,0.0000,0.0000,7.8000,0.0000,0.0000,0.0000,4.4000,0.0000,0.0000,0.0000,3.6300,0.0000,0.0000,0.0000,4.1300,0.0000,0.0000,0.0000,3.2700,0.0000 +601728.SH,0.0000,0.0000,0.0000,38.3900,0.0000,0.0000,0.0000,39.8600,0.0000,0.0000,0.0000,44.6100,0.0000,0.0000,0.0000,55.0400,0.0000,0.0000,0.0000,56.9900,0.0000 +600801.SH,0.0000,0.0000,0.0000,15.3000,0.0000,0.0000,0.0000,19.2000,0.0000,0.0000,0.0000,15.8000,0.0000,0.0000,0.0000,12.2000,0.0000,0.0000,0.0000,9.1000,0.0000 +002457.SZ,0.0000,0.0000,0.0000,32.2600,0.0000,0.0000,0.0000,42.7300,0.0000,0.0000,0.0000,46.4700,0.0000,0.0000,0.0000,28.7000,0.0000,0.0000,0.0000,21.3100,0.0000 +600508.SH,0.0000,0.0000,0.0000,36.9700,0.0000,0.0000,0.0000,37.2600,0.0000,0.0000,0.0000,40.3000,0.0000,0.0000,0.0000,37.2900,0.0000,0.0000,0.0000,36.3900,0.0000 +603661.SH,0.0000,0.0000,0.0000,11.0600,0.0000,0.0000,0.0000,8.4100,0.0000,0.0000,0.0000,5.5200,0.0000,0.0000,0.0000,7.3500,0.0000,0.0000,0.0000,10.1800,0.0000 +600460.SH,0.0000,0.0000,0.0000,19.6000,0.0000,0.0000,0.0000,32.3400,0.0000,0.0000,0.0000,46.0800,0.0000,0.0000,0.0000,43.0900,0.0000,0.0000,0.0000,40.0200,0.0000 +601007.SH,0.0000,0.0000,0.0000,53.6900,0.0000,0.0000,0.0000,69.5900,0.0000,0.0000,0.0000,66.5000,0.0000,0.0000,0.0000,64.2700,0.0000,0.0000,0.0000,73.3300,0.0000 +002487.SZ,0.0000,0.0000,0.0000,65.4400,0.0000,0.0000,0.0000,56.5600,0.0000,0.0000,0.0000,58.0300,0.0000,0.0000,0.0000,52.0300,0.0000,0.0000,0.0000,55.0700,0.0000 +002327.SZ,0.0000,0.0000,0.0000,22.6300,0.0000,0.0000,0.0000,26.2000,0.0000,0.0000,0.0000,27.7700,0.0000,0.0000,0.0000,24.3800,0.0000,0.0000,0.0000,27.2000,0.0000 +600975.SH,0.0000,0.0000,0.0000,32.9000,0.0000,0.0000,0.0000,15.8900,0.0000,0.0000,0.0000,29.3600,0.0000,0.0000,0.0000,25.6600,0.0000,0.0000,0.0000,16.8000,0.0000 +603081.SH,0.0000,0.0000,0.0000,17.1900,0.0000,0.0000,0.0000,17.2000,0.0000,0.0000,0.0000,17.4200,0.0000,0.0000,0.0000,17.8100,0.0000,0.0000,0.0000,16.8500,0.0000 +000031.SZ,0.0000,0.0000,0.0000,48.7000,0.0000,0.0000,0.0000,39.5100,0.0000,0.0000,0.0000,31.1000,0.0000,0.0000,0.0000,23.7500,0.0000,0.0000,0.0000,20.9200,0.0000 +000589.SZ,0.0000,0.0000,0.0000,29.2900,0.0000,0.0000,0.0000,39.6600,0.0000,0.0000,0.0000,33.4200,0.0000,0.0000,0.0000,28.3200,0.0000,0.0000,0.0000,31.4000,0.0000 +601555.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +002318.SZ,0.0000,0.0000,0.0000,44.2000,0.0000,0.0000,0.0000,27.8900,0.0000,0.0000,0.0000,41.0800,0.0000,0.0000,0.0000,46.5500,0.0000,0.0000,0.0000,47.3900,0.0000 +600368.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +603162.SH,0.0000,0.0000,0.0000,37.8800,0.0000,0.0000,0.0000,36.9600,0.0000,0.0000,0.0000,28.3800,0.0000,0.0000,0.0000,10.4000,0.0000,0.0000,0.0000,25.8400,0.0000 +688787.SH,0.0000,0.0000,0.0000,77.2500,0.0000,0.0000,0.0000,75.9400,0.0000,0.0000,0.0000,56.8800,0.0000,0.0000,0.0000,32.8400,0.0000,0.0000,0.0000,36.6700,0.0000 +600882.SH,0.0000,0.0000,0.0000,48.4500,0.0000,0.0000,0.0000,43.8800,0.0000,0.0000,0.0000,58.2800,0.0000,0.0000,0.0000,39.4900,0.0000,0.0000,0.0000,44.2100,0.0000 +003017.SZ,0.0000,0.0000,0.0000,44.0500,0.0000,0.0000,0.0000,57.2300,0.0000,0.0000,0.0000,67.1900,0.0000,0.0000,0.0000,57.7800,0.0000,0.0000,0.0000,51.7900,0.0000 +002380.SZ,0.0000,0.0000,0.0000,10.1100,0.0000,0.0000,0.0000,10.4300,0.0000,0.0000,0.0000,10.1500,0.0000,0.0000,0.0000,10.2800,0.0000,0.0000,0.0000,7.8600,0.0000 +688297.SH,0.0000,0.0000,0.0000,90.2600,0.0000,0.0000,0.0000,79.9300,0.0000,0.0000,0.0000,78.7400,0.0000,0.0000,0.0000,76.3600,0.0000,0.0000,0.0000,71.6900,0.0000 +688057.SH,0.0000,0.0000,0.0000,53.7200,0.0000,0.0000,0.0000,52.1000,0.0000,0.0000,0.0000,34.9200,0.0000,0.0000,0.0000,26.9600,0.0000,0.0000,0.0000,38.4600,0.0000 +688030.SH,0.0000,0.0000,0.0000,69.4300,0.0000,0.0000,0.0000,50.2900,0.0000,0.0000,0.0000,51.4900,0.0000,0.0000,0.0000,44.4600,0.0000,0.0000,0.0000,47.6500,0.0000 +688005.SH,0.0000,0.0000,0.0000,64.9400,0.0000,0.0000,0.0000,44.0700,0.0000,0.0000,0.0000,53.1400,0.0000,0.0000,0.0000,60.5900,0.0000,0.0000,0.0000,62.5600,0.0000 +002895.SZ,0.0000,0.0000,0.0000,38.7000,0.0000,0.0000,0.0000,23.9100,0.0000,0.0000,0.0000,15.4800,0.0000,0.0000,0.0000,20.5500,0.0000,0.0000,0.0000,31.6300,0.0000 +600071.SH,0.0000,0.0000,0.0000,16.7500,0.0000,0.0000,0.0000,17.0800,0.0000,0.0000,0.0000,19.1400,0.0000,0.0000,0.0000,15.8200,0.0000,0.0000,0.0000,16.3800,0.0000 +003816.SZ,0.0000,0.0000,0.0000,63.8300,0.0000,0.0000,0.0000,46.4100,0.0000,0.0000,0.0000,52.7200,0.0000,0.0000,0.0000,49.6500,0.0000,0.0000,0.0000,51.2000,0.0000 +002140.SZ,0.0000,0.0000,0.0000,21.8200,0.0000,0.0000,0.0000,16.4800,0.0000,0.0000,0.0000,16.6000,0.0000,0.0000,0.0000,23.0800,0.0000,0.0000,0.0000,13.6600,0.0000 +600309.SH,0.0000,0.0000,0.0000,18.8900,0.0000,0.0000,0.0000,18.7600,0.0000,0.0000,0.0000,19.7600,0.0000,0.0000,0.0000,13.5100,0.0000,0.0000,0.0000,14.5400,0.0000 +600006.SH,0.0000,0.0000,0.0000,27.7600,0.0000,0.0000,0.0000,24.8400,0.0000,0.0000,0.0000,26.2700,0.0000,0.0000,0.0000,33.3000,0.0000,0.0000,0.0000,30.6900,0.0000 +001400.SZ,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,30.1800,0.0000,0.0000,0.0000,29.2700,0.0000,0.0000,0.0000,37.2300,0.0000 +600084.SH,0.0000,0.0000,0.0000,34.8300,0.0000,0.0000,0.0000,36.5100,0.0000,0.0000,0.0000,40.9000,0.0000,0.0000,0.0000,44.4700,0.0000,0.0000,0.0000,51.0800,0.0000 +001338.SZ,0.0000,0.0000,0.0000,73.1500,0.0000,0.0000,0.0000,66.6400,0.0000,71.6800,0.0000,64.3900,0.0000,0.0000,0.0000,76.1200,0.0000,0.0000,0.0000,51.3500,0.0000 +600023.SH,0.0000,0.0000,0.0000,32.2100,0.0000,0.0000,0.0000,24.8800,0.0000,0.0000,0.0000,33.3500,0.0000,0.0000,0.0000,33.0200,0.0000,0.0000,0.0000,36.0400,0.0000 +000625.SZ,0.0000,0.0000,0.0000,14.5600,0.0000,0.0000,0.0000,15.1800,0.0000,0.0000,0.0000,17.8500,0.0000,0.0000,0.0000,18.6000,0.0000,0.0000,0.0000,19.8000,0.0000 +000679.SZ,0.0000,0.0000,0.0000,52.9700,0.0000,0.0000,0.0000,57.4300,0.0000,0.0000,0.0000,52.6300,0.0000,54.1600,0.0000,53.2400,0.0000,54.4200,0.0000,59.1000,0.0000 +300986.SZ,0.0000,0.0000,0.0000,27.0700,0.0000,0.0000,0.0000,37.3000,0.0000,0.0000,0.0000,31.4400,0.0000,0.0000,0.0000,39.8900,0.0000,0.0000,0.0000,36.8900,0.0000 +601038.SH,0.0000,0.0000,0.0000,20.1000,0.0000,0.0000,0.0000,28.5200,0.0000,0.0000,0.0000,21.9200,0.0000,0.0000,0.0000,19.8800,0.0000,0.0000,0.0000,17.8800,0.0000 +603755.SH,0.0000,0.0000,0.0000,15.1700,0.0000,0.0000,0.0000,14.9900,0.0000,0.0000,0.0000,15.2700,0.0000,0.0000,0.0000,16.1900,0.0000,0.0000,0.0000,16.1300,0.0000 +000519.SZ,0.0000,0.0000,0.0000,37.7200,0.0000,0.0000,0.0000,44.4700,0.0000,0.0000,0.0000,39.1000,0.0000,0.0000,0.0000,50.9900,0.0000,0.0000,0.0000,47.5300,0.0000 +600901.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +600668.SH,0.0000,0.0000,0.0000,12.4300,0.0000,0.0000,0.0000,13.7500,0.0000,0.0000,0.0000,14.7900,0.0000,0.0000,0.0000,18.7800,0.0000,0.0000,0.0000,17.2600,0.0000 +601921.SH,0.0000,0.0000,0.0000,16.6000,0.0000,0.0000,0.0000,12.0500,0.0000,0.0000,0.0000,12.4100,0.0000,0.0000,0.0000,12.0500,0.0000,0.0000,0.0000,11.7400,0.0000 +688411.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,78.4500,0.0000,0.0000,0.0000,86.9000,0.0000,0.0000,0.0000,81.0500,0.0000,74.2800,0.0000,66.6600,0.0000 +600616.SH,0.0000,0.0000,0.0000,31.2800,0.0000,0.0000,0.0000,38.7000,0.0000,0.0000,0.0000,42.8000,0.0000,0.0000,0.0000,32.2500,0.0000,0.0000,0.0000,42.0700,0.0000 +603687.SH,0.0000,0.0000,0.0000,65.8100,0.0000,0.0000,0.0000,69.2700,0.0000,0.0000,0.0000,56.6100,0.0000,0.0000,0.0000,45.3000,0.0000,0.0000,0.0000,40.1000,0.0000 +000715.SZ,0.0000,0.0000,0.0000,66.1900,0.0000,0.0000,0.0000,66.6700,0.0000,0.0000,0.0000,64.3900,0.0000,0.0000,0.0000,68.4300,0.0000,0.0000,0.0000,68.4400,0.0000 +603868.SH,0.0000,0.0000,0.0000,50.8500,0.0000,0.0000,0.0000,43.9900,0.0000,0.0000,0.0000,42.5100,0.0000,0.0000,0.0000,37.1100,0.0000,0.0000,0.0000,37.0000,0.0000 +000721.SZ,0.0000,0.0000,0.0000,70.8000,0.0000,0.0000,0.0000,61.6200,0.0000,0.0000,0.0000,70.1700,0.0000,0.0000,0.0000,48.6900,0.0000,0.0000,0.0000,59.1000,0.0000 +688311.SH,0.0000,0.0000,0.0000,46.0600,0.0000,0.0000,0.0000,28.7900,0.0000,0.0000,0.0000,28.6600,0.0000,0.0000,0.0000,29.4600,0.0000,0.0000,0.0000,34.5100,0.0000 +600089.SH,0.0000,0.0000,0.0000,9.0200,0.0000,0.0000,0.0000,9.6600,0.0000,0.0000,0.0000,8.7400,0.0000,0.0000,0.0000,10.5100,0.0000,0.0000,0.0000,13.4600,0.0000 +300932.SZ,0.0000,0.0000,0.0000,30.5200,0.0000,0.0000,0.0000,27.5100,0.0000,0.0000,0.0000,29.8400,0.0000,0.0000,0.0000,33.4400,0.0000,0.0000,0.0000,31.6700,0.0000 +301408.SZ,0.0000,0.0000,0.0000,42.4000,0.0000,0.0000,0.0000,47.1000,0.0000,50.2200,0.0000,40.1900,0.0000,0.0000,0.0000,40.8600,0.0000,0.0000,0.0000,43.0000,0.0000 +002461.SZ,0.0000,0.0000,0.0000,34.2700,0.0000,0.0000,0.0000,34.2000,0.0000,0.0000,0.0000,34.8500,0.0000,0.0000,0.0000,33.1100,0.0000,0.0000,0.0000,35.2000,0.0000 +603110.SH,0.0000,0.0000,0.0000,34.4900,0.0000,0.0000,0.0000,39.7500,0.0000,0.0000,0.0000,37.4400,0.0000,0.0000,0.0000,4.0500,0.0000,0.0000,0.0000,40.7300,0.0000 +002226.SZ,0.0000,0.0000,0.0000,15.7300,0.0000,0.0000,0.0000,15.7200,0.0000,0.0000,0.0000,34.7600,0.0000,0.0000,0.0000,24.8500,0.0000,0.0000,0.0000,29.6000,0.0000 +002557.SZ,0.0000,0.0000,0.0000,12.0500,0.0000,0.0000,0.0000,10.6800,0.0000,0.0000,0.0000,11.8400,0.0000,0.0000,0.0000,10.0600,0.0000,0.0000,0.0000,11.6900,0.0000 +000937.SZ,0.0000,0.0000,0.0000,36.8900,0.0000,0.0000,0.0000,45.1900,0.0000,0.0000,0.0000,46.8900,0.0000,0.0000,0.0000,28.0400,0.0000,0.0000,0.0000,13.7000,0.0000 +001219.SZ,0.0000,0.0000,0.0000,49.8900,0.0000,0.0000,0.0000,37.7800,0.0000,0.0000,0.0000,41.3400,0.0000,0.0000,0.0000,21.3100,0.0000,0.0000,0.0000,41.6000,0.0000 +300485.SZ,0.0000,0.0000,0.0000,44.1900,0.0000,0.0000,0.0000,76.5000,0.0000,0.0000,0.0000,65.7500,0.0000,0.0000,0.0000,59.9800,0.0000,0.0000,0.0000,80.3900,0.0000 +300802.SZ,0.0000,0.0000,0.0000,17.2700,0.0000,0.0000,0.0000,20.7600,0.0000,0.0000,0.0000,20.6400,0.0000,0.0000,0.0000,16.6500,0.0000,0.0000,0.0000,18.7300,0.0000 +603848.SH,0.0000,0.0000,0.0000,41.8900,0.0000,0.0000,0.0000,46.1400,0.0000,0.0000,0.0000,42.1900,0.0000,0.0000,0.0000,47.0200,0.0000,0.0000,0.0000,54.0200,0.0000 +000698.SZ,0.0000,0.0000,0.0000,60.1100,0.0000,0.0000,0.0000,58.1500,0.0000,0.0000,0.0000,18.2000,0.0000,0.0000,0.0000,40.3300,0.0000,0.0000,0.0000,50.7500,0.0000 +600063.SH,0.0000,0.0000,0.0000,26.7600,0.0000,0.0000,0.0000,23.9700,0.0000,0.0000,0.0000,23.9700,0.0000,0.0000,0.0000,15.3800,0.0000,0.0000,0.0000,11.3800,0.0000 +002466.SZ,0.0000,0.0000,0.0000,28.0500,0.0000,0.0000,0.0000,25.1900,0.0000,0.0000,0.0000,21.3400,0.0000,0.0000,0.0000,16.5700,0.0000,0.0000,0.0000,23.9100,0.0000 +000564.SZ,0.0000,0.0000,0.0000,15.7300,0.0000,0.0000,0.0000,22.6300,0.0000,0.0000,0.0000,25.2800,0.0000,0.0000,0.0000,20.4700,0.0000,0.0000,0.0000,20.7800,0.0000 +002859.SZ,0.0000,0.0000,0.0000,59.4800,0.0000,0.0000,0.0000,53.8100,0.0000,0.0000,0.0000,55.1500,0.0000,0.0000,0.0000,43.4900,0.0000,0.0000,0.0000,46.2000,0.0000 +300301.SZ,0.0000,0.0000,0.0000,25.3900,0.0000,0.0000,0.0000,19.3400,0.0000,0.0000,0.0000,19.4300,0.0000,0.0000,0.0000,28.4200,0.0000,0.0000,0.0000,29.2300,0.0000 +605338.SH,0.0000,0.0000,0.0000,27.2100,0.0000,0.0000,0.0000,23.8800,0.0000,0.0000,0.0000,20.4100,0.0000,0.0000,0.0000,9.3200,0.0000,0.0000,0.0000,18.6900,0.0000 +002662.SZ,0.0000,0.0000,0.0000,32.1600,0.0000,0.0000,0.0000,28.2000,0.0000,0.0000,0.0000,28.2000,0.0000,0.0000,0.0000,22.8900,0.0000,0.0000,0.0000,17.7800,0.0000 +688209.SH,0.0000,0.0000,0.0000,90.0000,0.0000,88.9500,0.0000,0.0000,0.0000,0.0000,0.0000,81.5400,0.0000,0.0000,0.0000,83.2300,0.0000,0.0000,0.0000,78.8800,0.0000 +600711.SH,0.0000,0.0000,0.0000,15.5600,0.0000,0.0000,0.0000,12.8700,0.0000,0.0000,0.0000,25.7000,0.0000,0.0000,0.0000,19.7800,0.0000,0.0000,0.0000,20.7800,0.0000 +688317.SH,0.0000,0.0000,0.0000,81.2800,0.0000,0.0000,0.0000,77.0300,0.0000,0.0000,0.0000,54.6500,0.0000,0.0000,0.0000,41.0900,0.0000,0.0000,0.0000,24.2000,0.0000 +600917.SH,0.0000,0.0000,0.0000,79.0900,0.0000,0.0000,0.0000,83.1900,0.0000,0.0000,0.0000,71.6300,0.0000,0.0000,0.0000,71.9100,0.0000,0.0000,0.0000,72.7900,0.0000 +000930.SZ,0.0000,0.0000,0.0000,40.8400,0.0000,0.0000,0.0000,36.7700,0.0000,0.0000,0.0000,16.4500,0.0000,0.0000,0.0000,20.4200,0.0000,0.0000,0.0000,24.2400,0.0000 +600628.SH,0.0000,0.0000,0.0000,37.0000,0.0000,0.0000,0.0000,42.4600,0.0000,0.0000,0.0000,39.7900,0.0000,0.0000,0.0000,43.9000,0.0000,0.0000,0.0000,40.1800,0.0000 +603556.SH,0.0000,0.0000,0.0000,20.0700,0.0000,0.0000,0.0000,15.8000,0.0000,0.0000,0.0000,18.7400,0.0000,0.0000,0.0000,19.1700,0.0000,0.0000,0.0000,17.3400,0.0000 +600038.SH,0.0000,0.0000,0.0000,26.2400,0.0000,0.0000,0.0000,29.4100,0.0000,0.0000,0.0000,32.4900,0.0000,0.0000,0.0000,45.0000,0.0000,0.0000,0.0000,18.8900,0.0000 +600838.SH,0.0000,0.0000,0.0000,73.5000,0.0000,0.0000,0.0000,76.0700,0.0000,0.0000,0.0000,64.1700,0.0000,0.0000,0.0000,41.6000,0.0000,0.0000,0.0000,59.9600,0.0000 +603231.SH,0.0000,0.0000,0.0000,42.3400,0.0000,0.0000,0.0000,36.2800,0.0000,0.0000,0.0000,29.0700,0.0000,38.5500,0.0000,30.2600,0.0000,0.0000,0.0000,32.3600,0.0000 +000036.SZ,0.0000,0.0000,0.0000,62.6500,0.0000,0.0000,0.0000,57.6500,0.0000,0.0000,0.0000,55.9200,0.0000,0.0000,0.0000,34.2300,0.0000,0.0000,0.0000,81.7700,0.0000 +000524.SZ,0.0000,0.0000,0.0000,10.9000,0.0000,0.0000,0.0000,13.6800,0.0000,0.0000,0.0000,18.1700,0.0000,0.0000,0.0000,11.4200,0.0000,0.0000,0.0000,9.8300,0.0000 +002561.SZ,0.0000,0.0000,0.0000,18.2000,0.0000,0.0000,0.0000,16.1500,0.0000,0.0000,0.0000,20.9000,0.0000,0.0000,0.0000,21.2700,0.0000,0.0000,0.0000,21.9200,0.0000 +600821.SH,0.0000,0.0000,0.0000,77.0000,0.0000,0.0000,0.0000,64.0000,0.0000,0.0000,0.0000,46.4700,0.0000,0.0000,0.0000,27.7100,0.0000,0.0000,0.0000,14.5400,0.0000 +603595.SH,0.0000,0.0000,0.0000,27.2300,0.0000,0.0000,0.0000,30.3900,0.0000,0.0000,0.0000,28.9200,0.0000,0.0000,0.0000,26.1200,0.0000,0.0000,0.0000,15.8500,0.0000 +688625.SH,0.0000,0.0000,0.0000,46.0400,0.0000,0.0000,0.0000,41.0000,0.0000,0.0000,0.0000,48.1400,0.0000,0.0000,0.0000,30.8100,0.0000,0.0000,0.0000,28.9600,0.0000 +688223.SH,0.0000,0.0000,0.0000,23.8400,0.0000,32.3700,0.0000,35.5200,0.0000,0.0000,0.0000,35.0700,0.0000,0.0000,0.0000,28.2700,0.0000,0.0000,0.0000,24.8900,0.0000 +600916.SH,0.0000,0.0000,0.0000,98.4900,0.0000,0.0000,0.0000,94.4200,0.0000,0.0000,0.0000,78.4300,0.0000,0.0000,0.0000,80.6600,0.0000,0.0000,0.0000,77.3800,0.0000 +600871.SH,0.0000,0.0000,0.0000,22.1000,0.0000,0.0000,0.0000,25.0000,0.0000,0.0000,0.0000,26.8000,0.0000,0.0000,0.0000,29.2000,0.0000,0.0000,0.0000,24.8000,0.0000 +300146.SZ,0.0000,0.0000,0.0000,25.5000,0.0000,0.0000,0.0000,30.1100,0.0000,0.0000,0.0000,29.8100,0.0000,0.0000,0.0000,33.3600,0.0000,0.0000,0.0000,34.2500,0.0000 +300294.SZ,0.0000,0.0000,0.0000,56.7300,0.0000,0.0000,0.0000,41.9700,0.0000,0.0000,0.0000,52.5700,0.0000,0.0000,0.0000,53.0400,0.0000,0.0000,0.0000,29.5100,0.0000 +601881.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +300395.SZ,0.0000,0.0000,0.0000,23.4300,0.0000,0.0000,0.0000,27.2900,0.0000,0.0000,0.0000,27.1200,0.0000,0.0000,0.0000,25.2700,0.0000,0.0000,0.0000,27.3900,0.0000 +688099.SH,0.0000,0.0000,0.0000,96.3100,0.0000,0.0000,0.0000,83.4600,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,84.8100,0.0000,0.0000,0.0000,87.2800,0.0000 +688553.SH,0.0000,0.0000,0.0000,66.3700,0.0000,0.0000,0.0000,45.9300,0.0000,0.0000,0.0000,39.3800,0.0000,0.0000,0.0000,31.1800,0.0000,0.0000,0.0000,30.8700,0.0000 +600743.SH,0.0000,0.0000,0.0000,28.1300,0.0000,0.0000,0.0000,24.5900,0.0000,0.0000,0.0000,20.8300,0.0000,0.0000,0.0000,31.5100,0.0000,0.0000,0.0000,15.3200,0.0000 +603122.SH,0.0000,0.0000,0.0000,28.3200,0.0000,24.0700,0.0000,19.6300,0.0000,0.0000,0.0000,23.2700,0.0000,0.0000,0.0000,19.4600,0.0000,0.0000,0.0000,17.3700,0.0000 +688652.SH,0.0000,0.0000,0.0000,48.6600,0.0000,0.0000,0.0000,30.8700,0.0000,0.0000,0.0000,38.6300,0.0000,42.7300,0.0000,37.7200,0.0000,0.0000,0.0000,36.3100,0.0000 +000768.SZ,0.0000,0.0000,0.0000,83.1400,0.0000,0.0000,0.0000,74.1000,0.0000,0.0000,0.0000,75.9600,0.0000,0.0000,0.0000,77.8700,0.0000,0.0000,0.0000,75.5000,0.0000 +605368.SH,0.0000,0.0000,0.0000,93.7200,0.0000,0.0000,0.0000,93.7100,0.0000,0.0000,0.0000,80.4000,0.0000,0.0000,0.0000,87.1800,0.0000,0.0000,0.0000,95.8800,0.0000 +000883.SZ,0.0000,0.0000,0.0000,65.7300,0.0000,0.0000,0.0000,55.2700,0.0000,0.0000,0.0000,50.5300,0.0000,0.0000,0.0000,66.1700,0.0000,0.0000,0.0000,66.0800,0.0000 +600522.SH,0.0000,0.0000,0.0000,23.5700,0.0000,0.0000,0.0000,28.9100,0.0000,0.0000,0.0000,21.9900,0.0000,0.0000,0.0000,35.1700,0.0000,0.0000,0.0000,42.5600,0.0000 +600622.SH,0.0000,0.0000,0.0000,38.1900,0.0000,0.0000,0.0000,42.2200,0.0000,0.0000,0.0000,37.5700,0.0000,0.0000,0.0000,40.0600,0.0000,0.0000,0.0000,40.6900,0.0000 +002138.SZ,0.0000,0.0000,0.0000,22.1700,0.0000,0.0000,0.0000,23.0500,0.0000,0.0000,0.0000,26.9900,0.0000,0.0000,0.0000,25.3900,0.0000,0.0000,0.0000,23.8000,0.0000 +600569.SH,0.0000,0.0000,0.0000,34.5100,0.0000,0.0000,0.0000,27.9200,0.0000,0.0000,0.0000,46.6500,0.0000,0.0000,0.0000,35.8500,0.0000,0.0000,0.0000,39.3500,0.0000 +600425.SH,0.0000,0.0000,0.0000,16.7800,0.0000,0.0000,0.0000,19.3900,0.0000,0.0000,0.0000,23.4300,0.0000,0.0000,0.0000,18.8400,0.0000,0.0000,0.0000,23.1300,0.0000 +603208.SH,0.0000,0.0000,0.0000,20.5100,0.0000,0.0000,0.0000,17.8600,0.0000,0.0000,0.0000,16.4400,0.0000,0.0000,0.0000,15.0400,0.0000,0.0000,0.0000,13.6400,0.0000 +600683.SH,0.0000,0.0000,0.0000,47.7200,0.0000,0.0000,0.0000,100.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,47.9500,0.0000,0.0000,0.0000,51.2300,0.0000 +688166.SH,0.0000,0.0000,0.0000,45.2000,0.0000,0.0000,0.0000,40.3800,0.0000,0.0000,0.0000,35.8400,0.0000,0.0000,0.0000,42.0800,0.0000,0.0000,0.0000,36.2900,0.0000 +600479.SH,0.0000,0.0000,0.0000,27.8200,0.0000,0.0000,0.0000,18.9400,0.0000,0.0000,0.0000,14.5200,0.0000,0.0000,0.0000,18.1400,0.0000,0.0000,0.0000,17.6600,0.0000 +688310.SH,0.0000,0.0000,0.0000,32.7100,0.0000,0.0000,0.0000,32.0800,0.0000,0.0000,0.0000,33.0900,0.0000,0.0000,0.0000,24.1600,0.0000,0.0000,0.0000,25.9700,0.0000 +002588.SZ,0.0000,0.0000,0.0000,26.6100,0.0000,0.0000,0.0000,28.4100,0.0000,0.0000,0.0000,26.7500,0.0000,0.0000,0.0000,20.0400,0.0000,0.0000,0.0000,15.0400,0.0000 +000517.SZ,0.0000,0.0000,0.0000,69.8400,0.0000,0.0000,0.0000,56.0100,0.0000,0.0000,0.0000,12.8800,0.0000,0.0000,0.0000,9.3300,0.0000,0.0000,0.0000,13.2400,0.0000 +600817.SH,0.0000,0.0000,0.0000,21.2000,0.0000,0.0000,0.0000,22.6600,0.0000,0.0000,0.0000,27.2100,0.0000,0.0000,0.0000,28.7700,0.0000,0.0000,0.0000,33.6400,0.0000 +603655.SH,0.0000,0.0000,0.0000,42.6900,0.0000,0.0000,0.0000,49.5000,0.0000,0.0000,0.0000,48.2500,0.0000,0.0000,0.0000,55.2100,0.0000,0.0000,0.0000,51.1600,0.0000 +002983.SZ,0.0000,0.0000,0.0000,34.9100,0.0000,0.0000,0.0000,33.0300,0.0000,0.0000,0.0000,38.3500,0.0000,0.0000,0.0000,44.1800,0.0000,0.0000,0.0000,33.9300,0.0000 +603069.SH,0.0000,0.0000,0.0000,70.0000,0.0000,0.0000,0.0000,41.8700,0.0000,0.0000,0.0000,45.5200,0.0000,0.0000,0.0000,44.8000,0.0000,0.0000,0.0000,40.0000,0.0000 +603368.SH,0.0000,0.0000,0.0000,10.6000,0.0000,0.0000,0.0000,9.0800,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,7.1800,0.0000,0.0000,0.0000,8.0600,0.0000 +600150.SH,0.0000,0.0000,0.0000,57.8900,0.0000,0.0000,0.0000,36.4200,0.0000,0.0000,0.0000,35.7200,0.0000,0.0000,0.0000,54.4600,0.0000,0.0000,0.0000,52.1500,0.0000 +605277.SH,0.0000,0.0000,0.0000,71.8700,0.0000,0.0000,0.0000,64.1500,0.0000,0.0000,0.0000,56.0500,0.0000,0.0000,0.0000,54.6400,0.0000,0.0000,0.0000,56.2800,0.0000 +000417.SZ,0.0000,0.0000,0.0000,11.9500,0.0000,0.0000,0.0000,9.9300,0.0000,0.0000,0.0000,7.6300,0.0000,18.6700,0.0000,8.9100,0.0000,17.6200,0.0000,14.7600,0.0000 +603938.SH,0.0000,0.0000,0.0000,53.3800,0.0000,0.0000,0.0000,52.2300,0.0000,0.0000,0.0000,36.1300,0.0000,0.0000,0.0000,42.5200,0.0000,0.0000,0.0000,37.1800,0.0000 +600216.SH,0.0000,0.0000,0.0000,14.2900,0.0000,0.0000,0.0000,13.6600,0.0000,0.0000,0.0000,13.0200,0.0000,0.0000,0.0000,15.1800,0.0000,0.0000,0.0000,0.0000,0.0000 +000012.SZ,0.0000,0.0000,0.0000,16.2300,0.0000,0.0000,0.0000,19.1700,0.0000,0.0000,0.0000,19.4100,0.0000,0.0000,0.0000,22.0900,0.0000,0.0000,0.0000,24.8900,0.0000 +002697.SZ,0.0000,0.0000,0.0000,17.1100,0.0000,0.0000,0.0000,39.6200,0.0000,0.0000,0.0000,38.2900,0.0000,0.0000,0.0000,40.9500,0.0000,0.0000,0.0000,41.2400,0.0000 +601609.SH,0.0000,0.0000,0.0000,36.3400,0.0000,0.0000,0.0000,32.6100,0.0000,0.0000,0.0000,36.9200,0.0000,0.0000,0.0000,26.5800,0.0000,0.0000,0.0000,29.9400,0.0000 +002896.SZ,0.0000,0.0000,0.0000,24.1500,0.0000,0.0000,0.0000,22.5200,0.0000,0.0000,0.0000,23.8500,0.0000,0.0000,0.0000,24.0300,0.0000,0.0000,0.0000,23.0100,0.0000 +603299.SH,0.0000,0.0000,0.0000,10.9200,0.0000,0.0000,0.0000,11.8300,0.0000,0.0000,0.0000,53.6500,0.0000,0.0000,0.0000,46.4200,0.0000,0.0000,0.0000,48.0400,0.0000 +688563.SH,0.0000,0.0000,0.0000,41.8500,0.0000,0.0000,0.0000,44.7200,0.0000,0.0000,0.0000,47.8000,0.0000,0.0000,0.0000,33.5400,0.0000,0.0000,0.0000,43.2800,0.0000 +000725.SZ,0.0000,0.0000,0.0000,18.5000,0.0000,0.0000,0.0000,17.8900,0.0000,0.0000,0.0000,20.1600,0.0000,0.0000,0.0000,18.1100,0.0000,0.0000,0.0000,18.0500,0.0000 +002116.SZ,0.0000,0.0000,0.0000,11.2300,0.0000,0.0000,0.0000,15.6000,0.0000,0.0000,0.0000,7.7200,0.0000,0.0000,0.0000,8.4100,0.0000,0.0000,0.0000,6.3200,0.0000 +600653.SH,0.0000,0.0000,0.0000,94.3300,0.0000,0.0000,0.0000,97.8400,0.0000,0.0000,0.0000,99.8400,0.0000,0.0000,0.0000,97.4300,0.0000,0.0000,0.0000,91.9300,0.0000 +688455.SH,0.0000,0.0000,0.0000,22.0700,0.0000,0.0000,0.0000,21.4800,0.0000,0.0000,0.0000,18.0100,0.0000,0.0000,0.0000,21.1500,0.0000,0.0000,0.0000,17.7000,0.0000 +600123.SH,0.0000,0.0000,0.0000,23.1700,0.0000,0.0000,0.0000,23.7100,0.0000,0.0000,0.0000,39.4500,0.0000,0.0000,0.0000,38.4400,0.0000,0.0000,0.0000,36.6400,0.0000 +000798.SZ,0.0000,0.0000,0.0000,33.8400,0.0000,0.0000,0.0000,40.5600,0.0000,0.0000,0.0000,43.9200,0.0000,0.0000,0.0000,35.7300,0.0000,0.0000,0.0000,25.9100,0.0000 +688156.SH,0.0000,0.0000,0.0000,26.2800,0.0000,0.0000,0.0000,17.2900,0.0000,0.0000,0.0000,22.0700,0.0000,0.0000,0.0000,36.0200,0.0000,0.0000,0.0000,25.9900,0.0000 +002202.SZ,0.0000,0.0000,0.0000,39.1100,0.0000,0.0000,0.0000,30.6500,0.0000,0.0000,0.0000,35.4800,0.0000,0.0000,0.0000,31.5800,0.0000,0.0000,0.0000,32.9300,0.0000 +603998.SH,0.0000,0.0000,0.0000,35.9000,0.0000,0.0000,0.0000,25.7300,0.0000,0.0000,0.0000,33.1200,0.0000,0.0000,0.0000,25.3700,0.0000,0.0000,0.0000,27.8300,0.0000 +600623.SH,0.0000,0.0000,0.0000,13.7000,0.0000,0.0000,0.0000,22.9200,0.0000,0.0000,0.0000,27.4900,0.0000,0.0000,0.0000,27.6400,0.0000,0.0000,0.0000,26.5800,0.0000 +003031.SZ,0.0000,0.0000,0.0000,42.6900,0.0000,0.0000,0.0000,44.9700,0.0000,0.0000,0.0000,49.4200,0.0000,0.0000,0.0000,47.9500,0.0000,0.0000,0.0000,38.3300,0.0000 +688686.SH,0.0000,0.0000,0.0000,33.3100,0.0000,0.0000,0.0000,30.2400,0.0000,0.0000,0.0000,35.6200,0.0000,0.0000,0.0000,28.9100,0.0000,0.0000,0.0000,23.4600,0.0000 +002772.SZ,0.0000,0.0000,0.0000,21.7700,0.0000,0.0000,0.0000,13.7600,0.0000,0.0000,0.0000,12.5100,0.0000,0.0000,0.0000,12.0400,0.0000,0.0000,0.0000,13.0700,0.0000 +688271.SH,0.0000,0.0000,0.0000,20.7300,0.0000,0.0000,0.0000,21.7600,0.0000,0.0000,0.0000,15.0200,0.0000,0.0000,0.0000,7.2700,0.0000,0.0000,0.0000,16.9200,0.0000 +688425.SH,0.0000,0.0000,0.0000,21.5500,0.0000,0.0000,0.0000,19.1400,0.0000,0.0000,0.0000,20.2200,0.0000,0.0000,0.0000,22.5800,0.0000,0.0000,0.0000,15.2300,0.0000 +601777.SH,0.0000,0.0000,0.0000,21.8300,0.0000,0.0000,0.0000,21.2400,0.0000,0.0000,0.0000,61.3800,0.0000,0.0000,0.0000,57.1400,0.0000,0.0000,0.0000,35.1300,0.0000 +000932.SZ,0.0000,0.0000,0.0000,28.2500,0.0000,0.0000,0.0000,22.2900,0.0000,0.0000,0.0000,21.3900,0.0000,0.0000,0.0000,23.0400,0.0000,0.0000,0.0000,20.6300,0.0000 +601336.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +603107.SH,0.0000,0.0000,0.0000,43.2300,0.0000,0.0000,0.0000,42.7800,0.0000,0.0000,0.0000,40.5500,0.0000,37.8600,0.0000,38.6000,0.0000,0.0000,0.0000,33.5400,0.0000 +301331.SZ,0.0000,0.0000,0.0000,31.1900,0.0000,0.0000,0.0000,34.3000,0.0000,0.0000,0.0000,37.1700,0.0000,0.0000,0.0000,31.8700,0.0000,0.0000,0.0000,32.8700,0.0000 +301203.SZ,0.0000,0.0000,0.0000,31.6000,0.0000,0.0000,0.0000,32.9200,0.0000,34.3700,0.0000,14.0200,0.0000,0.0000,0.0000,22.9700,0.0000,0.0000,0.0000,34.7800,0.0000 +002589.SZ,0.0000,0.0000,0.0000,10.6200,0.0000,0.0000,0.0000,11.3600,0.0000,0.0000,0.0000,10.9300,0.0000,0.0000,0.0000,16.2400,0.0000,0.0000,0.0000,11.5300,0.0000 +000915.SZ,0.0000,0.0000,0.0000,17.6900,0.0000,0.0000,0.0000,7.7600,0.0000,0.0000,0.0000,54.4300,0.0000,0.0000,0.0000,37.1400,0.0000,0.0000,0.0000,38.9800,0.0000 +688389.SH,0.0000,0.0000,0.0000,12.0400,0.0000,0.0000,0.0000,19.7000,0.0000,0.0000,0.0000,16.1800,0.0000,0.0000,0.0000,14.0000,0.0000,0.0000,0.0000,16.8700,0.0000 +300877.SZ,0.0000,0.0000,0.0000,48.4300,0.0000,0.0000,0.0000,50.7900,0.0000,0.0000,0.0000,54.9200,0.0000,0.0000,0.0000,58.3000,0.0000,0.0000,0.0000,55.5500,0.0000 +600685.SH,0.0000,0.0000,0.0000,23.3400,0.0000,0.0000,0.0000,55.7500,0.0000,0.0000,0.0000,1.9200,0.0000,59.6600,0.0000,58.0600,0.0000,38.6600,0.0000,39.0900,0.0000 +600158.SH,0.0000,0.0000,0.0000,15.0400,0.0000,0.0000,0.0000,17.5500,0.0000,0.0000,0.0000,17.7200,0.0000,0.0000,0.0000,16.2100,0.0000,0.0000,0.0000,11.9100,0.0000 +603439.SH,0.0000,0.0000,0.0000,90.2300,0.0000,0.0000,0.0000,94.6100,0.0000,0.0000,0.0000,89.9200,0.0000,0.0000,0.0000,83.7600,0.0000,0.0000,0.0000,63.0900,0.0000 +603192.SH,0.0000,0.0000,0.0000,45.7700,0.0000,0.0000,0.0000,51.4600,0.0000,0.0000,0.0000,46.3200,0.0000,0.0000,0.0000,50.4500,0.0000,0.0000,0.0000,41.3100,0.0000 +002034.SZ,0.0000,0.0000,0.0000,22.1300,0.0000,0.0000,0.0000,15.8000,0.0000,0.0000,0.0000,28.2100,0.0000,0.0000,0.0000,22.2300,0.0000,0.0000,0.0000,20.0000,0.0000 +002541.SZ,0.0000,0.0000,0.0000,57.0500,0.0000,0.0000,0.0000,45.2000,0.0000,0.0000,0.0000,44.4200,0.0000,0.0000,0.0000,40.7300,0.0000,0.0000,0.0000,46.8200,0.0000 +002053.SZ,0.0000,0.0000,0.0000,38.6500,0.0000,0.0000,0.0000,36.4400,0.0000,0.0000,0.0000,43.1100,0.0000,0.0000,0.0000,36.3800,0.0000,0.0000,0.0000,61.1700,0.0000 +688100.SH,0.0000,0.0000,0.0000,42.2300,0.0000,0.0000,0.0000,40.0600,0.0000,0.0000,0.0000,36.0800,0.0000,0.0000,0.0000,29.4900,0.0000,0.0000,0.0000,24.9000,0.0000 +603815.SH,0.0000,0.0000,0.0000,15.5300,0.0000,0.0000,0.0000,16.4500,0.0000,0.0000,0.0000,12.0600,0.0000,0.0000,0.0000,10.7700,0.0000,0.0000,0.0000,15.7300,0.0000 +002783.SZ,0.0000,0.0000,0.0000,44.2000,0.0000,0.0000,0.0000,21.0100,0.0000,0.0000,0.0000,34.9400,0.0000,0.0000,0.0000,26.2200,0.0000,0.0000,0.0000,36.0000,0.0000 +603095.SH,0.0000,0.0000,0.0000,14.4900,0.0000,0.0000,0.0000,14.8900,0.0000,0.0000,0.0000,15.0000,0.0000,0.0000,0.0000,21.3800,0.0000,0.0000,0.0000,19.1200,0.0000 +605318.SH,0.0000,0.0000,0.0000,31.1700,0.0000,0.0000,0.0000,33.3300,0.0000,0.0000,0.0000,33.8900,0.0000,0.0000,0.0000,40.5800,0.0000,0.0000,0.0000,42.2300,0.0000 +000782.SZ,0.0000,0.0000,0.0000,72.2700,0.0000,0.0000,0.0000,82.1500,0.0000,0.0000,0.0000,62.0800,0.0000,0.0000,0.0000,80.1900,0.0000,0.0000,0.0000,89.4300,0.0000 +688739.SH,0.0000,0.0000,0.0000,34.0100,0.0000,0.0000,0.0000,59.0500,0.0000,0.0000,0.0000,35.2300,0.0000,0.0000,0.0000,32.1900,0.0000,0.0000,0.0000,58.0800,0.0000 +001213.SZ,0.0000,0.0000,0.0000,96.7300,0.0000,0.0000,0.0000,94.4900,0.0000,0.0000,0.0000,81.8400,0.0000,0.0000,0.0000,89.0400,0.0000,0.0000,0.0000,76.6700,0.0000 +600328.SH,0.0000,0.0000,0.0000,41.2900,0.0000,0.0000,0.0000,33.4300,0.0000,0.0000,0.0000,39.0500,0.0000,0.0000,0.0000,53.7400,0.0000,0.0000,0.0000,48.0200,0.0000 +002332.SZ,0.0000,0.0000,0.0000,30.6500,0.0000,0.0000,0.0000,28.6300,0.0000,0.0000,0.0000,27.1000,0.0000,0.0000,0.0000,28.0900,0.0000,0.0000,0.0000,30.4000,0.0000 +688230.SH,0.0000,0.0000,0.0000,66.6400,0.0000,69.5500,0.0000,65.6000,0.0000,0.0000,0.0000,60.9500,0.0000,0.0000,0.0000,57.2700,0.0000,0.0000,0.0000,51.5300,0.0000 +002004.SZ,0.0000,0.0000,0.0000,13.9300,0.0000,0.0000,0.0000,16.8300,0.0000,0.0000,0.0000,14.1800,0.0000,0.0000,0.0000,14.5000,0.0000,0.0000,0.0000,13.3500,0.0000 +688050.SH,0.0000,0.0000,0.0000,51.9000,0.0000,0.0000,0.0000,39.8800,0.0000,0.0000,0.0000,31.9100,0.0000,0.0000,0.0000,27.9200,0.0000,0.0000,0.0000,36.5700,0.0000 +600109.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +688120.SH,0.0000,0.0000,0.0000,37.7600,0.0000,0.0000,0.0000,28.6500,0.0000,0.0000,0.0000,23.9400,0.0000,0.0000,0.0000,17.7800,0.0000,0.0000,0.0000,22.6900,0.0000 +601808.SH,0.0000,0.0000,0.0000,20.0200,0.0000,0.0000,0.0000,19.6000,0.0000,0.0000,0.0000,22.5000,0.0000,0.0000,0.0000,11.4000,0.0000,0.0000,0.0000,19.1000,0.0000 +002385.SZ,0.0000,0.0000,0.0000,16.4000,0.0000,0.0000,0.0000,17.8000,0.0000,0.0000,0.0000,14.3700,0.0000,0.0000,0.0000,18.9600,0.0000,0.0000,0.0000,18.2400,0.0000 +300209.SZ,0.0000,0.0000,0.0000,8.5300,0.0000,0.0000,0.0000,9.6500,0.0000,0.0000,0.0000,7.0700,0.0000,19.5200,0.0000,7.4800,0.0000,0.0000,0.0000,9.0500,0.0000 +600918.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +300979.SZ,0.0000,17.0700,0.0000,0.0000,0.0000,0.0000,0.0000,20.0900,0.0000,0.0000,0.0000,23.4900,0.0000,0.0000,0.0000,23.4000,0.0000,0.0000,0.0000,18.0200,0.0000 +600879.SH,0.0000,0.0000,0.0000,13.3400,0.0000,0.0000,0.0000,11.6000,0.0000,0.0000,0.0000,13.6600,0.0000,0.0000,0.0000,11.6700,0.0000,0.0000,0.0000,16.2600,0.0000 +002091.SZ,0.0000,0.0000,0.0000,1.9500,0.0000,0.0000,0.0000,6.2800,0.0000,0.0000,0.0000,8.0900,0.0000,0.0000,0.0000,5.8100,0.0000,0.0000,0.0000,3.8200,0.0000 +834599.BJ,0.0000,0.0000,0.0000,51.8400,0.0000,0.0000,0.0000,51.3500,0.0000,0.0000,0.0000,49.9300,0.0000,0.0000,0.0000,48.0100,0.0000,0.0000,0.0000,45.0400,0.0000 +688070.SH,0.0000,0.0000,0.0000,31.7900,0.0000,0.0000,0.0000,43.1600,0.0000,0.0000,0.0000,39.4100,0.0000,0.0000,0.0000,28.7000,0.0000,0.0000,0.0000,31.3800,0.0000 +603893.SH,0.0000,0.0000,0.0000,76.3100,0.0000,0.0000,0.0000,75.9000,0.0000,0.0000,0.0000,75.7800,0.0000,0.0000,0.0000,72.2000,0.0000,0.0000,0.0000,69.4000,0.0000 +688182.SH,0.0000,0.0000,0.0000,50.0500,0.0000,28.8700,0.0000,37.7700,0.0000,0.0000,0.0000,38.7300,0.0000,0.0000,0.0000,46.9900,0.0000,0.0000,0.0000,49.4600,0.0000 +601228.SH,0.0000,0.0000,0.0000,35.7100,0.0000,0.0000,0.0000,30.2200,0.0000,0.0000,0.0000,21.4300,0.0000,0.0000,0.0000,17.4600,0.0000,0.0000,0.0000,17.4500,0.0000 +002737.SZ,0.0000,0.0000,0.0000,22.9200,0.0000,0.0000,0.0000,23.2200,0.0000,0.0000,0.0000,16.3300,0.0000,0.0000,0.0000,23.0500,0.0000,0.0000,0.0000,19.5200,0.0000 +600791.SH,0.0000,0.0000,0.0000,74.5100,0.0000,0.0000,0.0000,59.2000,0.0000,0.0000,0.0000,54.0000,0.0000,0.0000,0.0000,49.2000,0.0000,0.0000,0.0000,88.1700,0.0000 +300687.SZ,0.0000,0.0000,0.0000,26.5700,0.0000,0.0000,0.0000,31.7400,0.0000,0.0000,0.0000,22.7700,0.0000,0.0000,0.0000,26.1700,0.0000,0.0000,0.0000,34.4300,0.0000 +000720.SZ,0.0000,0.0000,0.0000,45.5800,0.0000,0.0000,0.0000,53.4000,0.0000,0.0000,0.0000,34.5400,0.0000,0.0000,0.0000,71.5300,0.0000,0.0000,0.0000,66.5900,0.0000 +600510.SH,0.0000,0.0000,0.0000,13.2800,0.0000,0.0000,0.0000,15.2000,0.0000,0.0000,0.0000,12.9900,0.0000,0.0000,0.0000,21.0800,0.0000,0.0000,0.0000,25.9500,0.0000 +300181.SZ,0.0000,0.0000,0.0000,33.5800,0.0000,0.0000,0.0000,34.8800,0.0000,0.0000,0.0000,31.9100,0.0000,0.0000,0.0000,32.5900,0.0000,0.0000,0.0000,25.2600,0.0000 +300900.SZ,0.0000,0.0000,0.0000,35.1600,0.0000,0.0000,0.0000,53.0700,0.0000,0.0000,0.0000,28.2600,0.0000,0.0000,0.0000,34.8800,0.0000,0.0000,0.0000,20.7300,0.0000 +603698.SH,0.0000,0.0000,0.0000,31.0300,0.0000,0.0000,0.0000,29.0000,0.0000,0.0000,0.0000,31.5500,0.0000,0.0000,0.0000,33.9900,0.0000,0.0000,0.0000,51.8900,0.0000 +688041.SH,0.0000,0.0000,0.0000,67.8300,0.0000,0.0000,0.0000,78.4100,0.0000,0.0000,0.0000,78.9500,0.0000,0.0000,0.0000,68.5600,0.0000,0.0000,0.0000,67.6400,0.0000 +301301.SZ,0.0000,0.0000,0.0000,56.0700,0.0000,0.0000,0.0000,59.9600,0.0000,45.2500,0.0000,55.3700,0.0000,0.0000,0.0000,47.8200,0.0000,0.0000,0.0000,43.9800,0.0000 +603217.SH,0.0000,0.0000,0.0000,43.7800,0.0000,0.0000,0.0000,49.7500,0.0000,0.0000,0.0000,53.9400,0.0000,0.0000,0.0000,53.4600,0.0000,0.0000,0.0000,53.2400,0.0000 +002228.SZ,0.0000,0.0000,0.0000,33.4800,0.0000,0.0000,0.0000,33.6100,0.0000,0.0000,0.0000,39.3200,0.0000,0.0000,0.0000,35.5900,0.0000,0.0000,0.0000,36.7000,0.0000 +688981.SH,0.0000,0.0000,0.0000,43.5000,0.0000,0.0000,0.0000,55.9000,0.0000,0.0000,0.0000,43.0000,0.0000,0.0000,0.0000,32.5000,0.0000,0.0000,0.0000,0.0000,0.0000 +600261.SH,0.0000,0.0000,0.0000,5.4300,0.0000,0.0000,0.0000,4.5400,0.0000,0.0000,0.0000,5.2800,0.0000,0.0000,0.0000,4.5100,0.0000,0.0000,0.0000,4.3300,0.0000 +002891.SZ,0.0000,0.0000,0.0000,20.8200,0.0000,0.0000,0.0000,26.9600,0.0000,0.0000,0.0000,28.7800,0.0000,0.0000,0.0000,24.7800,0.0000,0.0000,0.0000,24.6700,0.0000 +605208.SH,0.0000,0.0000,0.0000,42.3800,0.0000,0.0000,0.0000,9.9300,0.0000,0.0000,0.0000,34.1300,0.0000,0.0000,0.0000,23.7400,0.0000,0.0000,0.0000,37.3200,0.0000 +002833.SZ,0.0000,0.0000,0.0000,22.0400,0.0000,0.0000,0.0000,17.9100,0.0000,0.0000,0.0000,14.4900,0.0000,0.0000,0.0000,18.0900,0.0000,0.0000,0.0000,17.4400,0.0000 +601139.SH,0.0000,0.0000,0.0000,35.4800,0.0000,0.0000,0.0000,27.2400,0.0000,0.0000,0.0000,36.0100,0.0000,0.0000,0.0000,27.4000,0.0000,0.0000,0.0000,37.6900,0.0000 +600251.SH,0.0000,0.0000,0.0000,46.9400,0.0000,0.0000,0.0000,16.7400,0.0000,0.0000,0.0000,21.5900,0.0000,0.0000,0.0000,11.2500,0.0000,0.0000,0.0000,9.4900,0.0000 +000830.SZ,0.0000,0.0000,0.0000,17.8800,0.0000,0.0000,0.0000,23.6200,0.0000,0.0000,0.0000,22.3400,0.0000,0.0000,0.0000,30.1900,0.0000,0.0000,0.0000,32.7700,0.0000 +000728.SZ,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +002225.SZ,0.0000,0.0000,0.0000,12.4300,0.0000,0.0000,0.0000,15.5700,0.0000,0.0000,0.0000,18.0200,0.0000,0.0000,0.0000,16.4300,0.0000,0.0000,0.0000,12.8200,0.0000 +600380.SH,0.0000,0.0000,0.0000,18.9200,0.0000,0.0000,0.0000,20.5400,0.0000,0.0000,0.0000,17.2400,0.0000,0.0000,0.0000,16.9800,0.0000,0.0000,0.0000,20.8400,0.0000 +600313.SH,0.0000,0.0000,0.0000,50.0700,0.0000,0.0000,0.0000,44.2400,0.0000,0.0000,0.0000,52.8000,0.0000,0.0000,0.0000,81.7200,0.0000,0.0000,0.0000,68.5800,0.0000 +600905.SH,0.0000,0.0000,46.1100,0.0000,0.0000,0.0000,0.0000,64.6300,0.0000,0.0000,0.0000,81.1800,0.0000,0.0000,0.0000,56.3100,0.0000,0.0000,0.0000,64.5700,0.0000 +603018.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,6.3500,0.0000,0.0000,0.0000,13.8600,0.0000,0.0000,0.0000,4.0600,0.0000,0.0000,0.0000,7.9400,0.0000 +301043.SZ,0.0000,0.0000,0.0000,27.2200,0.0000,0.0000,0.0000,40.1600,0.0000,0.0000,0.0000,37.4300,0.0000,0.0000,0.0000,34.9900,0.0000,0.0000,0.0000,34.9200,0.0000 +000708.SZ,0.0000,0.0000,0.0000,23.8300,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,19.2000,0.0000,0.0000,0.0000,16.5500,0.0000,0.0000,0.0000,12.8700,0.0000 +605136.SH,0.0000,0.0000,0.0000,68.7100,0.0000,0.0000,0.0000,78.4800,0.0000,0.0000,0.0000,80.4500,0.0000,0.0000,0.0000,87.0000,0.0000,0.0000,0.0000,81.0000,0.0000 +000591.SZ,0.0000,0.0000,0.0000,47.2100,0.0000,0.0000,0.0000,31.5100,0.0000,0.0000,0.0000,28.4200,0.0000,0.0000,0.0000,34.6800,0.0000,0.0000,0.0000,40.9900,0.0000 +603599.SH,0.0000,0.0000,0.0000,23.4600,0.0000,0.0000,0.0000,23.6000,0.0000,0.0000,0.0000,27.6000,0.0000,0.0000,0.0000,27.2800,0.0000,0.0000,0.0000,36.5200,0.0000 +002852.SZ,0.0000,0.0000,0.0000,47.5700,0.0000,0.0000,0.0000,50.2300,0.0000,0.0000,0.0000,55.0000,0.0000,0.0000,0.0000,67.8000,0.0000,0.0000,0.0000,65.2900,0.0000 +603713.SH,0.0000,0.0000,0.0000,22.6000,0.0000,0.0000,0.0000,21.9000,0.0000,0.0000,0.0000,27.2700,0.0000,0.0000,0.0000,18.7300,0.0000,0.0000,0.0000,21.8600,0.0000 +300401.SZ,0.0000,0.0000,0.0000,57.4100,0.0000,0.0000,0.0000,40.4100,0.0000,0.0000,0.0000,50.7600,0.0000,0.0000,0.0000,33.0200,0.0000,0.0000,0.0000,39.1700,0.0000 +601677.SH,0.0000,0.0000,0.0000,32.2300,0.0000,0.0000,0.0000,26.5500,0.0000,0.0000,0.0000,33.6900,0.0000,0.0000,0.0000,47.1400,0.0000,0.0000,0.0000,38.7800,0.0000 +605358.SH,0.0000,0.0000,0.0000,18.1600,0.0000,0.0000,0.0000,20.1300,0.0000,0.0000,0.0000,18.6400,0.0000,0.0000,0.0000,18.2800,0.0000,0.0000,0.0000,21.7000,0.0000 +002025.SZ,0.0000,0.0000,0.0000,37.0600,0.0000,0.0000,0.0000,24.0700,0.0000,0.0000,0.0000,10.9000,0.0000,0.0000,0.0000,10.8600,0.0000,0.0000,0.0000,12.4800,0.0000 +000680.SZ,0.0000,0.0000,0.0000,19.4000,0.0000,0.0000,0.0000,23.0100,0.0000,0.0000,0.0000,25.0600,0.0000,0.0000,0.0000,38.1900,0.0000,0.0000,0.0000,34.3700,0.0000 +688538.SH,0.0000,0.0000,0.0000,55.5900,0.0000,0.0000,0.0000,43.9500,0.0000,0.0000,0.0000,36.1700,0.0000,0.0000,0.0000,28.2400,0.0000,0.0000,0.0000,31.3000,0.0000 +002508.SZ,0.0000,0.0000,0.0000,20.9600,0.0000,0.0000,0.0000,22.7200,0.0000,0.0000,0.0000,20.2200,0.0000,0.0000,0.0000,16.7900,0.0000,0.0000,0.0000,17.5800,0.0000 +688569.SH,0.0000,0.0000,0.0000,32.2600,0.0000,0.0000,0.0000,30.1000,0.0000,0.0000,0.0000,30.4900,0.0000,0.0000,0.0000,35.4100,0.0000,0.0000,0.0000,34.1000,0.0000 +603995.SH,0.0000,0.0000,0.0000,95.4700,0.0000,0.0000,0.0000,88.3900,0.0000,0.0000,0.0000,94.8800,0.0000,0.0000,0.0000,90.1200,0.0000,0.0000,0.0000,88.4300,0.0000 +300808.SZ,0.0000,0.0000,0.0000,27.3000,0.0000,0.0000,0.0000,26.5100,0.0000,0.0000,0.0000,29.8300,0.0000,0.0000,0.0000,26.7600,0.0000,0.0000,0.0000,24.9700,0.0000 +600984.SH,0.0000,0.0000,0.0000,36.7400,0.0000,0.0000,0.0000,33.4400,0.0000,0.0000,0.0000,19.3500,0.0000,0.0000,0.0000,44.2600,0.0000,0.0000,0.0000,29.7300,0.0000 +601868.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.4300,0.0000,0.0000,0.0000,5.1400,0.0000,0.0000,0.0000,4.5600,0.0000 +001205.SZ,0.0000,0.0000,0.0000,48.5000,0.0000,0.0000,0.0000,45.2400,0.0000,0.0000,0.0000,25.9300,0.0000,0.0000,0.0000,22.5700,0.0000,0.0000,0.0000,24.8200,0.0000 +601918.SH,0.0000,0.0000,0.0000,43.4500,0.0000,0.0000,0.0000,36.5600,0.0000,0.0000,0.0000,17.9700,0.0000,0.0000,0.0000,22.5000,0.0000,0.0000,0.0000,28.7500,0.0000 +603129.SH,0.0000,0.0000,0.0000,18.8600,0.0000,0.0000,0.0000,13.6300,0.0000,0.0000,0.0000,10.3600,0.0000,0.0000,0.0000,22.4200,0.0000,0.0000,0.0000,13.0300,0.0000 +603383.SH,0.0000,0.0000,0.0000,43.1700,0.0000,0.0000,0.0000,59.0000,0.0000,0.0000,0.0000,51.2600,0.0000,0.0000,0.0000,42.1000,0.0000,0.0000,0.0000,59.4500,0.0000 +601177.SH,0.0000,0.0000,0.0000,13.4400,0.0000,0.0000,0.0000,23.5500,0.0000,0.0000,0.0000,17.2600,0.0000,0.0000,0.0000,23.8700,0.0000,0.0000,0.0000,19.0000,0.0000 +600717.SH,0.0000,0.0000,0.0000,60.1700,0.0000,0.0000,0.0000,62.0800,0.0000,0.0000,0.0000,43.7700,0.0000,0.0000,0.0000,37.0900,0.0000,0.0000,0.0000,39.7300,0.0000 +002940.SZ,0.0000,0.0000,0.0000,59.3300,0.0000,0.0000,0.0000,57.2200,0.0000,0.0000,0.0000,56.6500,0.0000,0.0000,0.0000,62.8900,0.0000,0.0000,0.0000,65.4900,0.0000 +002096.SZ,0.0000,0.0000,0.0000,57.3400,0.0000,0.0000,0.0000,42.9700,0.0000,0.0000,0.0000,38.9900,0.0000,0.0000,0.0000,16.5200,0.0000,0.0000,0.0000,35.0200,0.0000 +688333.SH,0.0000,0.0000,0.0000,40.1000,0.0000,0.0000,0.0000,39.0700,0.0000,0.0000,0.0000,28.4400,0.0000,0.0000,0.0000,25.8100,0.0000,0.0000,0.0000,31.2100,0.0000 +001358.SZ,0.0000,0.0000,0.0000,71.4800,0.0000,0.0000,0.0000,76.0900,0.0000,0.0000,0.0000,78.8400,0.0000,77.8600,0.0000,71.3400,0.0000,0.0000,0.0000,59.9400,0.0000 +301339.SZ,0.0000,0.0000,0.0000,61.9500,0.0000,0.0000,0.0000,33.4000,0.0000,0.0000,0.0000,44.9400,0.0000,0.0000,0.0000,43.7100,0.0000,0.0000,0.0000,42.8800,0.0000 +688543.SH,0.0000,0.0000,0.0000,59.2100,0.0000,0.0000,0.0000,57.3400,0.0000,0.0000,0.0000,50.3700,0.0000,0.0000,0.0000,49.7400,0.0000,0.0000,0.0000,44.9700,0.0000 +688505.SH,0.0000,0.0000,0.0000,35.9700,0.0000,0.0000,0.0000,31.4000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,31.7100,0.0000,0.0000,0.0000,0.0000,0.0000 +300026.SZ,0.0000,0.0000,0.0000,7.4900,0.0000,0.0000,0.0000,12.7600,0.0000,0.0000,0.0000,17.6800,0.0000,0.0000,0.0000,26.6800,0.0000,0.0000,0.0000,16.8600,0.0000 +301606.SZ,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,35.5500,0.0000,0.0000,0.0000,30.1100,0.0000,0.0000,0.0000,24.1400,0.0000,0.0000,0.0000,22.9100,0.0000 +300439.SZ,0.0000,0.0000,0.0000,33.9100,0.0000,0.0000,0.0000,30.9100,0.0000,0.0000,0.0000,26.5400,0.0000,0.0000,0.0000,31.0400,0.0000,0.0000,0.0000,27.2900,0.0000 +000663.SZ,0.0000,0.0000,0.0000,21.1100,0.0000,0.0000,0.0000,29.2500,0.0000,0.0000,0.0000,33.5400,0.0000,0.0000,0.0000,53.8600,0.0000,0.0000,0.0000,31.3300,0.0000 +000026.SZ,0.0000,0.0000,0.0000,68.4900,0.0000,0.0000,0.0000,71.4300,0.0000,0.0000,0.0000,84.5200,0.0000,0.0000,0.0000,80.1900,0.0000,0.0000,0.0000,81.1800,0.0000 +002321.SZ,0.0000,0.0000,0.0000,11.4000,0.0000,0.0000,0.0000,15.1400,0.0000,0.0000,0.0000,10.8700,0.0000,0.0000,0.0000,22.6600,0.0000,0.0000,0.0000,28.2800,0.0000 +001227.SZ,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +300920.SZ,0.0000,0.0000,0.0000,81.2200,0.0000,0.0000,0.0000,80.4700,0.0000,0.0000,0.0000,66.1400,0.0000,0.0000,0.0000,64.3700,0.0000,0.0000,0.0000,56.5100,0.0000 +605090.SH,0.0000,0.0000,0.0000,43.3400,0.0000,0.0000,0.0000,51.8400,0.0000,0.0000,0.0000,49.4600,0.0000,0.0000,0.0000,40.7400,0.0000,0.0000,0.0000,47.6400,0.0000 +600814.SH,0.0000,0.0000,0.0000,37.3200,0.0000,0.0000,0.0000,44.0300,0.0000,0.0000,0.0000,47.2300,0.0000,0.0000,0.0000,44.2700,0.0000,0.0000,0.0000,39.8400,0.0000 +300851.SZ,0.0000,0.0000,0.0000,72.6300,0.0000,0.0000,0.0000,64.8500,0.0000,0.0000,0.0000,60.6700,0.0000,0.0000,0.0000,70.0600,0.0000,0.0000,0.0000,66.5900,0.0000 +600308.SH,0.0000,0.0000,0.0000,21.6000,0.0000,0.0000,0.0000,20.0100,0.0000,0.0000,0.0000,24.7000,0.0000,0.0000,0.0000,27.6100,0.0000,0.0000,0.0000,25.8400,0.0000 +600874.SH,0.0000,0.0000,0.0000,12.6600,0.0000,0.0000,0.0000,24.0600,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,18.5600,0.0000,0.0000,0.0000,17.4300,0.0000 +002624.SZ,0.0000,0.0000,0.0000,48.8500,0.0000,0.0000,0.0000,36.0600,0.0000,0.0000,0.0000,32.1800,0.0000,0.0000,0.0000,35.0200,0.0000,0.0000,0.0000,27.8200,0.0000 +300271.SZ,0.0000,0.0000,0.0000,16.6600,0.0000,0.0000,0.0000,10.7200,0.0000,0.0000,0.0000,8.5000,0.0000,0.0000,0.0000,6.7000,0.0000,0.0000,0.0000,13.4100,0.0000 +601377.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +002060.SZ,0.0000,0.0000,0.0000,28.3900,0.0000,0.0000,0.0000,16.9700,0.0000,0.0000,0.0000,41.6600,0.0000,0.0000,0.0000,14.5000,0.0000,0.0000,0.0000,2.4300,0.0000 +603136.SH,0.0000,0.0000,0.0000,16.8700,0.0000,0.0000,0.0000,27.7000,0.0000,0.0000,0.0000,35.4600,0.0000,0.0000,0.0000,27.9300,0.0000,0.0000,0.0000,35.7000,0.0000 +001267.SZ,0.0000,0.0000,0.0000,17.2000,0.0000,0.0000,0.0000,20.6200,0.0000,0.0000,0.0000,20.1300,0.0000,0.0000,0.0000,22.6700,0.0000,0.0000,0.0000,29.7400,0.0000 +002043.SZ,0.0000,0.0000,0.0000,14.2900,0.0000,0.0000,0.0000,18.8800,0.0000,0.0000,0.0000,23.9800,0.0000,0.0000,0.0000,23.9200,0.0000,0.0000,0.0000,26.8100,0.0000 +603959.SH,0.0000,0.0000,0.0000,31.8500,0.0000,0.0000,0.0000,33.5800,0.0000,0.0000,0.0000,21.3600,0.0000,0.0000,0.0000,29.1700,0.0000,0.0000,0.0000,40.3000,0.0000 +002098.SZ,0.0000,0.0000,0.0000,17.3300,0.0000,0.0000,0.0000,16.6400,0.0000,0.0000,0.0000,22.3100,0.0000,0.0000,0.0000,18.5000,0.0000,0.0000,0.0000,22.4000,0.0000 +603601.SH,0.0000,0.0000,0.0000,19.5100,0.0000,0.0000,0.0000,33.4100,0.0000,0.0000,0.0000,27.5400,0.0000,0.0000,0.0000,20.0700,0.0000,0.0000,0.0000,30.8400,0.0000 +600104.SH,0.0000,0.0000,0.0000,55.9000,0.0000,0.0000,0.0000,50.3900,0.0000,0.0000,0.0000,51.1800,0.0000,0.0000,0.0000,45.8200,0.0000,0.0000,0.0000,36.3700,0.0000 +688228.SH,0.0000,0.0000,0.0000,31.7300,0.0000,0.0000,0.0000,31.8300,0.0000,0.0000,0.0000,26.6700,0.0000,0.0000,0.0000,25.5700,0.0000,0.0000,0.0000,31.4500,0.0000 +301127.SZ,0.0000,0.0000,0.0000,33.6500,0.0000,37.8800,0.0000,28.2200,0.0000,0.0000,0.0000,55.7400,0.0000,0.0000,0.0000,31.1600,0.0000,0.0000,0.0000,47.3800,0.0000 +002555.SZ,0.0000,0.0000,0.0000,36.1200,0.0000,0.0000,0.0000,49.1800,0.0000,0.0000,0.0000,62.1000,0.0000,0.0000,0.0000,69.2400,0.0000,0.0000,0.0000,73.2200,0.0000 +600266.SH,0.0000,0.0000,0.0000,53.8800,0.0000,0.0000,0.0000,59.2100,0.0000,0.0000,0.0000,27.6100,0.0000,0.0000,0.0000,46.9200,0.0000,0.0000,0.0000,48.7000,0.0000 +688076.SH,0.0000,0.0000,0.0000,30.4700,0.0000,0.0000,0.0000,23.2900,0.0000,0.0000,0.0000,24.7300,0.0000,0.0000,0.0000,22.1000,0.0000,0.0000,0.0000,18.6700,0.0000 +000069.SZ,0.0000,0.0000,0.0000,4.7300,0.0000,0.0000,0.0000,10.5800,0.0000,0.0000,0.0000,18.0800,0.0000,0.0000,0.0000,27.8400,0.0000,0.0000,0.0000,23.0900,0.0000 +601168.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,32.0000,0.0000,0.0000,0.0000,26.0000,0.0000,0.0000,0.0000,24.0000,0.0000,0.0000,0.0000,24.0000,0.0000 +001914.SZ,0.0000,0.0000,0.0000,14.5600,0.0000,0.0000,0.0000,13.6000,0.0000,0.0000,0.0000,16.0800,0.0000,0.0000,0.0000,11.4300,0.0000,0.0000,0.0000,15.6000,0.0000 +600262.SH,0.0000,0.0000,0.0000,44.0500,0.0000,0.0000,0.0000,34.1200,0.0000,0.0000,0.0000,36.8900,0.0000,0.0000,0.0000,38.1500,0.0000,0.0000,0.0000,35.4400,0.0000 +603075.SH,0.0000,0.0000,0.0000,27.9900,0.0000,0.0000,0.0000,20.2900,0.0000,0.0000,0.0000,19.9900,0.0000,0.0000,0.0000,23.0900,0.0000,0.0000,0.0000,23.2800,0.0000 +002566.SZ,0.0000,0.0000,0.0000,22.0800,0.0000,0.0000,0.0000,25.3700,0.0000,0.0000,0.0000,33.8900,0.0000,0.0000,0.0000,29.3500,0.0000,0.0000,0.0000,32.4300,0.0000 +000848.SZ,0.0000,0.0000,0.0000,42.3400,0.0000,0.0000,0.0000,35.3300,0.0000,0.0000,0.0000,34.3100,0.0000,0.0000,0.0000,34.9500,0.0000,0.0000,0.0000,38.5400,0.0000 +603056.SH,0.0000,0.0000,0.0000,23.4400,0.0000,0.0000,0.0000,19.1100,0.0000,0.0000,0.0000,23.8600,0.0000,0.0000,0.0000,20.5800,0.0000,0.0000,0.0000,13.0200,0.0000 +000166.SZ,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +600376.SH,0.0000,0.0000,0.0000,9.8400,0.0000,0.0000,0.0000,21.6500,0.0000,0.0000,0.0000,28.5500,0.0000,0.0000,0.0000,28.5500,0.0000,0.0000,0.0000,26.6200,0.0000 +002768.SZ,0.0000,0.0000,0.0000,39.5600,0.0000,0.0000,0.0000,36.1700,0.0000,0.0000,0.0000,42.4900,0.0000,0.0000,0.0000,35.3000,0.0000,0.0000,0.0000,35.4800,0.0000 +600170.SH,0.0000,0.0000,0.0000,4.4400,0.0000,0.0000,0.0000,2.3300,0.0000,0.0000,0.0000,2.5200,0.0000,0.0000,0.0000,2.1400,0.0000,0.0000,0.0000,2.3300,0.0000 +920002.BJ,0.0000,0.0000,0.0000,62.4200,0.0000,0.0000,0.0000,63.8200,0.0000,0.0000,0.0000,61.1400,0.0000,63.9000,0.0000,65.3700,0.0000,0.0000,0.0000,64.2600,0.0000 +301073.SZ,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,45.3700,0.0000,0.0000,0.0000,35.3100,0.0000,0.0000,0.0000,28.7800,0.0000,0.0000,0.0000,20.0500,0.0000 +300498.SZ,0.0000,0.0000,0.0000,30.1900,0.0000,0.0000,0.0000,34.0100,0.0000,0.0000,0.0000,31.2600,0.0000,0.0000,0.0000,32.4400,0.0000,0.0000,0.0000,31.8200,0.0000 +302132.SZ,0.0000,0.0000,0.0000,18.7400,0.0000,0.0000,0.0000,8.4600,0.0000,0.0000,0.0000,11.4600,0.0000,0.0000,0.0000,9.3800,0.0000,0.0000,0.0000,10.0000,0.0000 +000028.SZ,0.0000,0.0000,0.0000,12.2600,0.0000,0.0000,0.0000,11.2400,0.0000,0.0000,0.0000,5.7100,0.0000,0.0000,0.0000,6.7500,0.0000,0.0000,0.0000,7.0700,0.0000 +600351.SH,0.0000,0.0000,0.0000,16.2600,0.0000,0.0000,0.0000,12.2800,0.0000,0.0000,0.0000,15.6800,0.0000,0.0000,0.0000,11.4600,0.0000,0.0000,0.0000,18.9200,0.0000 +603033.SH,0.0000,0.0000,0.0000,31.7300,0.0000,0.0000,0.0000,37.9400,0.0000,0.0000,0.0000,39.5200,0.0000,0.0000,0.0000,45.3900,0.0000,0.0000,0.0000,41.0500,0.0000 +600219.SH,0.0000,0.0000,0.0000,33.5700,0.0000,0.0000,0.0000,44.1300,0.0000,0.0000,0.0000,38.2200,0.0000,0.0000,0.0000,32.1000,0.0000,0.0000,0.0000,33.9400,0.0000 +300167.SZ,0.0000,0.0000,0.0000,57.6500,0.0000,0.0000,0.0000,37.2000,0.0000,0.0000,0.0000,40.6200,0.0000,0.0000,0.0000,62.5600,0.0000,0.0000,0.0000,81.6500,0.0000 +600252.SH,0.0000,0.0000,0.0000,30.4800,0.0000,0.0000,0.0000,23.2200,0.0000,0.0000,0.0000,11.0900,0.0000,0.0000,0.0000,24.7800,0.0000,0.0000,0.0000,35.1400,0.0000 +603235.SH,0.0000,0.0000,0.0000,34.0400,0.0000,0.0000,0.0000,26.2100,0.0000,0.0000,0.0000,28.5800,0.0000,0.0000,0.0000,33.4300,0.0000,0.0000,0.0000,28.2200,0.0000 +603801.SH,0.0000,0.0000,0.0000,23.0300,0.0000,0.0000,0.0000,20.3100,0.0000,0.0000,0.0000,17.4800,0.0000,0.0000,0.0000,17.2200,0.0000,0.0000,0.0000,16.8700,0.0000 +300187.SZ,0.0000,0.0000,0.0000,40.9400,0.0000,0.0000,0.0000,24.3200,0.0000,0.0000,0.0000,15.8300,0.0000,0.0000,0.0000,23.9900,0.0000,0.0000,0.0000,13.6400,0.0000 +600745.SH,0.0000,0.0000,0.0000,29.2300,0.0000,0.0000,0.0000,22.6300,0.0000,0.0000,0.0000,33.6200,0.0000,0.0000,0.0000,37.8800,0.0000,0.0000,0.0000,47.3400,0.0000 +688373.SH,0.0000,0.0000,0.0000,54.3000,0.0000,0.0000,0.0000,50.3300,0.0000,0.0000,0.0000,54.5400,0.0000,0.0000,0.0000,68.0600,0.0000,0.0000,0.0000,50.5600,0.0000 +000719.SZ,0.0000,0.0000,0.0000,11.3700,0.0000,0.0000,0.0000,13.2100,0.0000,0.0000,0.0000,12.9600,0.0000,0.0000,0.0000,18.0800,0.0000,0.0000,0.0000,16.8600,0.0000 +002211.SZ,0.0000,0.0000,0.0000,68.7100,0.0000,0.0000,0.0000,52.9000,0.0000,0.0000,0.0000,63.8900,0.0000,0.0000,0.0000,68.3500,0.0000,0.0000,0.0000,71.4100,0.0000 +300147.SZ,0.0000,0.0000,0.0000,11.0200,0.0000,0.0000,0.0000,11.5400,0.0000,0.0000,0.0000,9.1100,0.0000,0.0000,0.0000,9.4600,0.0000,0.0000,0.0000,6.6500,0.0000 +600352.SH,0.0000,0.0000,0.0000,10.6100,0.0000,0.0000,0.0000,12.1700,0.0000,0.0000,0.0000,13.9900,0.0000,0.0000,0.0000,15.3400,0.0000,0.0000,0.0000,16.5800,0.0000 +603223.SH,0.0000,0.0000,0.0000,58.1300,0.0000,0.0000,0.0000,62.3600,0.0000,0.0000,0.0000,41.0500,0.0000,0.0000,0.0000,30.7600,0.0000,0.0000,0.0000,31.8000,0.0000 +002233.SZ,0.0000,0.0000,0.0000,30.5900,0.0000,0.0000,0.0000,32.6000,0.0000,0.0000,0.0000,43.7600,0.0000,0.0000,0.0000,31.5000,0.0000,0.0000,0.0000,31.3900,0.0000 +002546.SZ,0.0000,0.0000,0.0000,28.7500,0.0000,0.0000,0.0000,30.4100,0.0000,0.0000,0.0000,22.2900,0.0000,0.0000,0.0000,21.2300,0.0000,0.0000,0.0000,17.2700,0.0000 +605081.SH,0.0000,0.0000,0.0000,40.3100,0.0000,0.0000,0.0000,46.0800,0.0000,0.0000,0.0000,31.2100,0.0000,0.0000,0.0000,23.1300,0.0000,0.0000,0.0000,78.8500,0.0000 +600929.SH,0.0000,0.0000,0.0000,23.6100,0.0000,0.0000,0.0000,26.1100,0.0000,0.0000,0.0000,35.9200,0.0000,0.0000,0.0000,28.5300,0.0000,0.0000,0.0000,25.7700,0.0000 +600755.SH,0.0000,0.0000,0.0000,12.5900,0.0000,0.0000,0.0000,9.0400,0.0000,0.0000,0.0000,12.3200,0.0000,0.0000,0.0000,9.4400,0.0000,0.0000,0.0000,10.0200,0.0000 +688370.SH,0.0000,0.0000,0.0000,36.0600,0.0000,0.0000,0.0000,37.2000,0.0000,0.0000,0.0000,29.5000,0.0000,0.0000,0.0000,18.6700,0.0000,0.0000,0.0000,23.7000,0.0000 +688322.SH,0.0000,0.0000,0.0000,29.1800,0.0000,0.0000,0.0000,13.2600,0.0000,0.0000,0.0000,24.7200,0.0000,0.0000,0.0000,21.9000,0.0000,0.0000,0.0000,17.5300,0.0000 +600325.SH,0.0000,0.0000,0.0000,35.1700,0.0000,0.0000,0.0000,27.7900,0.0000,0.0000,0.0000,27.1900,0.0000,0.0000,0.0000,33.3200,0.0000,0.0000,0.0000,21.4700,0.0000 +600999.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +301396.SZ,0.0000,0.0000,0.0000,16.5800,0.0000,0.0000,0.0000,13.5700,0.0000,21.5500,0.0000,14.2500,0.0000,0.0000,0.0000,27.6300,0.0000,0.0000,0.0000,51.9100,0.0000 +000686.SZ,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +002100.SZ,0.0000,0.0000,0.0000,5.0600,0.0000,0.0000,0.0000,7.5100,0.0000,0.0000,0.0000,4.9600,0.0000,0.0000,0.0000,5.6100,0.0000,0.0000,0.0000,4.5800,0.0000 +002695.SZ,0.0000,0.0000,0.0000,12.1200,0.0000,0.0000,0.0000,19.3500,0.0000,0.0000,0.0000,21.3900,0.0000,0.0000,0.0000,15.3400,0.0000,0.0000,0.0000,14.1600,0.0000 +000828.SZ,0.0000,0.0000,0.0000,88.5500,0.0000,0.0000,0.0000,94.4300,0.0000,0.0000,0.0000,93.2400,0.0000,0.0000,0.0000,88.1900,0.0000,0.0000,0.0000,65.2900,0.0000 +603658.SH,0.0000,0.0000,0.0000,36.0000,0.0000,0.0000,0.0000,31.8000,0.0000,0.0000,0.0000,22.8000,0.0000,0.0000,0.0000,23.1400,0.0000,0.0000,0.0000,22.6800,0.0000 +600098.SH,0.0000,0.0000,0.0000,30.1800,0.0000,0.0000,0.0000,34.0100,0.0000,0.0000,0.0000,21.5700,0.0000,0.0000,0.0000,21.6200,0.0000,0.0000,0.0000,24.4500,0.0000 +600356.SH,0.0000,0.0000,0.0000,43.1800,0.0000,0.0000,0.0000,43.1300,0.0000,0.0000,0.0000,23.5400,0.0000,0.0000,0.0000,42.4900,0.0000,0.0000,0.0000,41.1700,0.0000 +600420.SH,0.0000,0.0000,0.0000,17.9000,0.0000,0.0000,0.0000,28.3400,0.0000,0.0000,0.0000,31.1600,0.0000,0.0000,0.0000,25.8800,0.0000,0.0000,0.0000,24.6800,0.0000 +002222.SZ,0.0000,0.0000,0.0000,31.9000,0.0000,0.0000,0.0000,28.7500,0.0000,0.0000,0.0000,27.0600,0.0000,0.0000,0.0000,28.6200,0.0000,0.0000,0.0000,24.5200,0.0000 +603079.SH,0.0000,0.0000,0.0000,21.0600,0.0000,0.0000,0.0000,15.0800,0.0000,0.0000,0.0000,13.8100,0.0000,0.0000,0.0000,27.3900,0.0000,0.0000,0.0000,36.2900,0.0000 +603313.SH,0.0000,0.0000,0.0000,14.4300,0.0000,0.0000,0.0000,16.5800,0.0000,0.0000,0.0000,17.4400,0.0000,0.0000,0.0000,20.7100,0.0000,0.0000,0.0000,18.8300,0.0000 +002186.SZ,0.0000,0.0000,0.0000,13.7300,0.0000,0.0000,0.0000,12.6500,0.0000,0.0000,0.0000,10.5300,0.0000,0.0000,0.0000,14.6200,0.0000,0.0000,0.0000,17.1300,0.0000 +002035.SZ,0.0000,0.0000,0.0000,15.5900,0.0000,0.0000,0.0000,20.6200,0.0000,0.0000,0.0000,25.5000,0.0000,0.0000,0.0000,24.2500,0.0000,0.0000,0.0000,27.5700,0.0000 +688017.SH,0.0000,0.0000,0.0000,28.5300,0.0000,0.0000,0.0000,44.0000,0.0000,0.0000,0.0000,38.3900,0.0000,0.0000,0.0000,36.3500,0.0000,0.0000,0.0000,20.0300,0.0000 +600406.SH,0.0000,0.0000,0.0000,17.8100,0.0000,0.0000,0.0000,15.4000,0.0000,0.0000,0.0000,10.5200,0.0000,0.0000,0.0000,10.7400,0.0000,0.0000,0.0000,9.2300,0.0000 +603444.SH,0.0000,0.0000,0.0000,14.7500,0.0000,0.0000,0.0000,61.9500,0.0000,0.0000,0.0000,58.2400,0.0000,0.0000,0.0000,49.4300,0.0000,0.0000,0.0000,44.0900,0.0000 +600720.SH,0.0000,0.0000,0.0000,21.6900,0.0000,0.0000,0.0000,18.4000,0.0000,0.0000,0.0000,13.3400,0.0000,0.0000,0.0000,11.9500,0.0000,0.0000,0.0000,13.1800,0.0000 +688155.SH,0.0000,0.0000,0.0000,15.9900,0.0000,0.0000,0.0000,11.9300,0.0000,0.0000,0.0000,33.4000,0.0000,0.0000,0.0000,52.8900,0.0000,0.0000,0.0000,43.0700,0.0000 +002524.SZ,0.0000,0.0000,0.0000,47.8200,0.0000,0.0000,0.0000,53.7300,0.0000,0.0000,0.0000,39.0800,0.0000,0.0000,0.0000,34.8800,0.0000,0.0000,0.0000,26.1800,0.0000 +600858.SH,0.0000,0.0000,0.0000,29.9400,0.0000,0.0000,0.0000,32.8300,0.0000,0.0000,0.0000,34.0300,0.0000,0.0000,0.0000,31.9800,0.0000,0.0000,0.0000,37.5400,0.0000 +002595.SZ,0.0000,0.0000,0.0000,31.7800,0.0000,0.0000,0.0000,28.1200,0.0000,0.0000,0.0000,37.6100,0.0000,0.0000,0.0000,29.8100,0.0000,0.0000,0.0000,29.0300,0.0000 +002511.SZ,0.0000,0.0000,0.0000,50.4000,0.0000,0.0000,0.0000,46.6000,0.0000,0.0000,0.0000,53.8100,0.0000,0.0000,0.0000,50.0900,0.0000,0.0000,0.0000,54.8700,0.0000 +600127.SH,0.0000,0.0000,0.0000,19.8800,0.0000,0.0000,0.0000,23.9700,0.0000,0.0000,0.0000,71.9800,0.0000,0.0000,0.0000,23.0200,0.0000,0.0000,0.0000,22.3100,0.0000 +301188.SZ,0.0000,0.0000,0.0000,52.9600,0.0000,46.1200,0.0000,43.6400,0.0000,0.0000,0.0000,48.2400,0.0000,0.0000,0.0000,51.9200,0.0000,0.0000,0.0000,45.0700,0.0000 +603790.SH,0.0000,0.0000,0.0000,36.2200,0.0000,0.0000,0.0000,32.4300,0.0000,0.0000,0.0000,22.0700,0.0000,0.0000,0.0000,42.5500,0.0000,0.0000,0.0000,36.6200,0.0000 +688590.SH,0.0000,0.0000,0.0000,23.3200,0.0000,0.0000,0.0000,35.6900,0.0000,0.0000,0.0000,57.4100,0.0000,0.0000,0.0000,26.4100,0.0000,0.0000,0.0000,39.2000,0.0000 +603737.SH,0.0000,0.0000,0.0000,19.2200,0.0000,0.0000,0.0000,23.0900,0.0000,0.0000,0.0000,22.7700,0.0000,0.0000,0.0000,20.0700,0.0000,0.0000,0.0000,22.7800,0.0000 +601518.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +002242.SZ,0.0000,0.0000,0.0000,29.1200,0.0000,0.0000,0.0000,31.6900,0.0000,0.0000,0.0000,34.2700,0.0000,0.0000,0.0000,36.9900,0.0000,0.0000,0.0000,34.2400,0.0000 +000419.SZ,0.0000,0.0000,0.0000,40.0500,0.0000,37.6000,0.0000,35.7600,0.0000,33.9800,0.0000,31.0200,0.0000,31.8600,0.0000,31.3600,0.0000,36.9600,0.0000,51.7500,0.0000 +000889.SZ,0.0000,0.0000,0.0000,20.8900,0.0000,0.0000,0.0000,20.2200,0.0000,0.0000,0.0000,21.4900,0.0000,0.0000,0.0000,21.1400,0.0000,0.0000,0.0000,32.8600,0.0000 +688332.SH,0.0000,0.0000,0.0000,90.6500,0.0000,0.0000,0.0000,85.7900,0.0000,0.0000,0.0000,90.7800,0.0000,0.0000,0.0000,88.6700,0.0000,0.0000,0.0000,79.2900,0.0000 +601066.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +603301.SH,0.0000,0.0000,0.0000,28.6800,0.0000,0.0000,0.0000,12.8200,0.0000,0.0000,0.0000,16.7200,0.0000,0.0000,0.0000,12.6300,0.0000,0.0000,0.0000,18.3400,0.0000 +600703.SH,0.0000,0.0000,0.0000,34.7100,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,23.9800,0.0000,0.0000,0.0000,33.3000,0.0000,0.0000,0.0000,38.5800,0.0000 +600019.SH,0.0000,0.0000,0.0000,42.6000,0.0000,0.0000,0.0000,44.4000,0.0000,0.0000,0.0000,29.3000,0.0000,0.0000,0.0000,40.2000,0.0000,0.0000,0.0000,36.2000,0.0000 +002275.SZ,0.0000,0.0000,0.0000,29.6800,0.0000,0.0000,0.0000,19.8600,0.0000,0.0000,0.0000,23.9100,0.0000,0.0000,0.0000,16.9400,0.0000,0.0000,0.0000,24.9200,0.0000 +300492.SZ,0.0000,0.0000,0.0000,29.0900,0.0000,0.0000,0.0000,36.2300,0.0000,0.0000,0.0000,38.8400,0.0000,0.0000,0.0000,41.4400,0.0000,0.0000,0.0000,16.1100,0.0000 +600088.SH,0.0000,0.0000,0.0000,67.1000,0.0000,0.0000,0.0000,53.6300,0.0000,0.0000,0.0000,54.0400,0.0000,0.0000,0.0000,36.4400,0.0000,0.0000,0.0000,34.4200,0.0000 +603039.SH,0.0000,0.0000,0.0000,47.9600,0.0000,0.0000,0.0000,49.4100,0.0000,0.0000,0.0000,56.4200,0.0000,0.0000,0.0000,56.3700,0.0000,0.0000,0.0000,53.5900,0.0000 +600859.SH,0.0000,0.0000,0.0000,12.4000,0.0000,0.0000,0.0000,10.1000,0.0000,0.0000,0.0000,14.3300,0.0000,0.0000,0.0000,15.1800,0.0000,0.0000,0.0000,13.5000,0.0000 +000402.SZ,0.0000,0.0000,0.0000,37.0200,0.0000,0.0000,0.0000,27.6100,0.0000,0.0000,0.0000,40.2100,0.0000,0.0000,0.0000,35.7100,0.0000,0.0000,0.0000,43.8500,0.0000 +002190.SZ,0.0000,0.0000,0.0000,42.6000,0.0000,0.0000,0.0000,42.7300,0.0000,0.0000,0.0000,45.7000,0.0000,0.0000,0.0000,51.5900,0.0000,0.0000,0.0000,52.3300,0.0000 +600075.SH,0.0000,0.0000,0.0000,49.1900,0.0000,0.0000,0.0000,34.3400,0.0000,0.0000,0.0000,28.0400,0.0000,0.0000,0.0000,34.4700,0.0000,0.0000,0.0000,32.3000,0.0000 +601390.SH,0.0000,0.0000,0.0000,0.6400,0.0000,0.0000,0.0000,1.6100,0.0000,0.0000,0.0000,0.2100,0.0000,0.0000,0.0000,0.3100,0.0000,0.0000,0.0000,1.8100,0.0000 +600941.SH,0.0000,0.0000,0.0000,37.0200,0.0000,33.0200,0.0000,36.0000,0.0000,0.0000,0.0000,31.0000,0.0000,0.0000,0.0000,34.0000,0.0000,0.0000,0.0000,31.0000,0.0000 +688247.SH,0.0000,0.0000,0.0000,69.3500,0.0000,0.0000,0.0000,58.1600,0.0000,0.0000,0.0000,55.3700,0.0000,0.0000,0.0000,68.6400,0.0000,0.0000,0.0000,72.5300,0.0000 +002761.SZ,0.0000,0.0000,0.0000,10.5500,0.0000,0.0000,0.0000,9.5400,0.0000,0.0000,0.0000,9.9400,0.0000,0.0000,0.0000,6.4400,0.0000,0.0000,0.0000,6.9800,0.0000 +605255.SH,0.0000,0.0000,0.0000,33.8000,0.0000,0.0000,0.0000,26.9700,0.0000,0.0000,0.0000,31.8200,0.0000,0.0000,0.0000,25.7000,0.0000,0.0000,0.0000,29.0600,0.0000 +688060.SH,0.0000,0.0000,0.0000,48.8700,0.0000,0.0000,0.0000,47.7100,0.0000,0.0000,0.0000,42.8200,0.0000,0.0000,0.0000,43.6800,0.0000,0.0000,0.0000,39.7800,0.0000 +600751.SH,0.0000,0.0000,0.0000,51.1900,0.0000,0.0000,0.0000,50.0100,0.0000,0.0000,0.0000,67.7600,0.0000,0.0000,0.0000,70.4900,0.0000,0.0000,0.0000,59.2800,0.0000 +001216.SZ,0.0000,0.0000,0.0000,29.8400,0.0000,0.0000,0.0000,28.0800,0.0000,0.0000,0.0000,28.9400,0.0000,0.0000,0.0000,34.5600,0.0000,0.0000,0.0000,31.4100,0.0000 +603061.SH,0.0000,0.0000,0.0000,31.6600,0.0000,0.0000,0.0000,27.8200,0.0000,55.4800,0.0000,46.4400,0.0000,0.0000,0.0000,50.0400,0.0000,0.0000,0.0000,46.5500,0.0000 +605366.SH,0.0000,0.0000,0.0000,43.9900,0.0000,0.0000,0.0000,27.0800,0.0000,0.0000,0.0000,30.2800,0.0000,0.0000,0.0000,25.1100,0.0000,0.0000,0.0000,28.4400,0.0000 +603073.SH,0.0000,0.0000,0.0000,54.1400,0.0000,0.0000,0.0000,44.8000,0.0000,54.7100,0.0000,56.3500,0.0000,0.0000,0.0000,53.0800,0.0000,0.0000,0.0000,52.0700,0.0000 +603022.SH,0.0000,0.0000,0.0000,17.3900,0.0000,0.0000,0.0000,17.5900,0.0000,0.0000,0.0000,12.8100,0.0000,0.0000,0.0000,19.4800,0.0000,0.0000,0.0000,17.4400,0.0000 +601330.SH,0.0000,0.0000,0.0000,12.7400,0.0000,0.0000,0.0000,31.4000,0.0000,0.0000,0.0000,25.4100,0.0000,0.0000,0.0000,25.0800,0.0000,0.0000,0.0000,9.4500,0.0000 +002798.SZ,0.0000,0.0000,0.0000,18.4900,0.0000,0.0000,0.0000,13.7800,0.0000,0.0000,0.0000,14.6000,0.0000,0.0000,0.0000,14.1900,0.0000,0.0000,0.0000,15.7500,0.0000 +003035.SZ,0.0000,0.0000,0.0000,42.0100,0.0000,0.0000,0.0000,30.7900,0.0000,0.0000,0.0000,34.0800,0.0000,0.0000,0.0000,40.6600,0.0000,0.0000,0.0000,34.3700,0.0000 +301296.SZ,0.0000,0.0000,0.0000,77.0700,0.0000,0.0000,0.0000,78.2500,0.0000,0.0000,0.0000,76.1200,0.0000,0.0000,0.0000,76.7400,0.0000,0.0000,0.0000,74.6600,0.0000 +603230.SH,0.0000,0.0000,0.0000,32.0300,0.0000,24.9100,0.0000,15.2800,0.0000,0.0000,0.0000,23.7700,0.0000,0.0000,0.0000,13.5100,0.0000,0.0000,0.0000,25.9900,0.0000 +603611.SH,0.0000,0.0000,0.0000,13.0500,0.0000,0.0000,0.0000,13.0300,0.0000,0.0000,0.0000,9.7400,0.0000,0.0000,0.0000,10.2000,0.0000,0.0000,0.0000,10.3000,0.0000 +600233.SH,0.0000,0.0000,0.0000,6.5600,0.0000,0.0000,0.0000,5.5300,0.0000,0.0000,0.0000,4.6500,0.0000,0.0000,0.0000,5.1100,0.0000,0.0000,0.0000,8.2700,0.0000 +002732.SZ,0.0000,0.0000,0.0000,33.7900,0.0000,0.0000,0.0000,37.2000,0.0000,0.0000,0.0000,33.1200,0.0000,0.0000,0.0000,39.4400,0.0000,0.0000,0.0000,38.4500,0.0000 +601688.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +002932.SZ,0.0000,0.0000,0.0000,41.0600,0.0000,0.0000,0.0000,48.3600,0.0000,0.0000,0.0000,53.3500,0.0000,0.0000,0.0000,20.2100,0.0000,0.0000,0.0000,29.0100,0.0000 +000911.SZ,0.0000,0.0000,0.0000,10.2900,0.0000,0.0000,0.0000,2.9900,0.0000,0.0000,0.0000,32.9400,0.0000,0.0000,0.0000,8.7800,0.0000,0.0000,0.0000,7.3100,0.0000 +000800.SZ,0.0000,0.0000,0.0000,28.2900,0.0000,0.0000,0.0000,17.9500,0.0000,0.0000,0.0000,14.0700,0.0000,0.0000,0.0000,28.7300,0.0000,0.0000,0.0000,24.6200,0.0000 +000672.SZ,0.0000,0.0000,0.0000,34.9400,0.0000,0.0000,0.0000,40.3800,0.0000,0.0000,0.0000,23.9200,0.0000,0.0000,0.0000,17.0000,0.0000,0.0000,0.0000,20.9800,0.0000 +601800.SH,0.0000,0.0000,0.0000,0.6000,0.0000,0.0000,0.0000,17.0000,0.0000,0.0000,0.0000,6.1000,0.0000,0.0000,0.0000,5.7000,0.0000,0.0000,0.0000,3.4100,0.0000 +300111.SZ,0.0000,0.0000,0.0000,67.7100,0.0000,0.0000,0.0000,64.3600,0.0000,0.0000,0.0000,69.0800,0.0000,0.0000,0.0000,71.6600,0.0000,0.0000,0.0000,69.3400,0.0000 +001872.SZ,0.0000,0.0000,0.0000,17.0200,0.0000,0.0000,0.0000,12.4400,0.0000,0.0000,0.0000,10.6400,0.0000,0.0000,0.0000,12.3300,0.0000,0.0000,0.0000,9.8500,0.0000 +301571.SZ,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,73.7500,0.0000,0.0000,0.0000,80.3400,0.0000,0.0000,0.0000,83.1300,0.0000,0.0000,0.0000,72.2400,0.0000 +601828.SH,0.0000,0.0000,0.0000,11.0800,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,7.7600,0.0000,0.0000,0.0000,25.0900,0.0000,0.0000,0.0000,30.6200,0.0000 +600358.SH,0.0000,0.0000,0.0000,69.4400,0.0000,0.0000,0.0000,64.0400,0.0000,0.0000,0.0000,61.2000,0.0000,0.0000,0.0000,82.2200,0.0000,0.0000,0.0000,71.5200,0.0000 +603869.SH,0.0000,0.0000,0.0000,26.6000,0.0000,0.0000,0.0000,23.2300,0.0000,0.0000,0.0000,30.6300,0.0000,0.0000,0.0000,28.7800,0.0000,0.0000,0.0000,41.1800,0.0000 +603551.SH,0.0000,0.0000,0.0000,25.7500,0.0000,0.0000,0.0000,26.2500,0.0000,0.0000,0.0000,21.8700,0.0000,0.0000,0.0000,28.8300,0.0000,0.0000,0.0000,28.1400,0.0000 +000426.SZ,0.0000,0.0000,0.0000,55.0500,0.0000,0.0000,0.0000,51.5900,0.0000,0.0000,0.0000,64.1800,0.0000,0.0000,0.0000,61.2700,0.0000,0.0000,0.0000,63.5500,0.0000 +002608.SZ,0.0000,0.0000,0.0000,47.3700,0.0000,0.0000,0.0000,41.0600,0.0000,0.0000,0.0000,35.2600,0.0000,0.0000,0.0000,42.2400,0.0000,0.0000,0.0000,52.4400,0.0000 +601880.SH,0.0000,0.0000,0.0000,6.0000,0.0000,0.0000,0.0000,4.0000,0.0000,0.0000,0.0000,9.0000,0.0000,0.0000,0.0000,9.0000,0.0000,0.0000,0.0000,9.0000,0.0000 +688190.SH,0.0000,0.0000,0.0000,51.3300,0.0000,56.2400,0.0000,53.4200,0.0000,0.0000,0.0000,51.5400,0.0000,0.0000,0.0000,57.1400,0.0000,0.0000,0.0000,54.1200,0.0000 +300838.SZ,0.0000,0.0000,0.0000,17.3700,0.0000,0.0000,0.0000,16.9300,0.0000,0.0000,0.0000,19.1800,0.0000,0.0000,0.0000,16.0100,0.0000,0.0000,0.0000,13.6700,0.0000 +001286.SZ,0.0000,0.0000,0.0000,38.6700,0.0000,0.0000,0.0000,34.8800,0.0000,38.0200,0.0000,0.0000,0.0000,0.0000,0.0000,39.0700,0.0000,0.0000,0.0000,33.5700,0.0000 +600795.SH,0.0000,0.0000,0.0000,32.7600,0.0000,0.0000,0.0000,48.2000,0.0000,0.0000,0.0000,44.6000,0.0000,0.0000,0.0000,54.7500,0.0000,0.0000,0.0000,47.0000,0.0000 +000978.SZ,0.0000,0.0000,0.0000,26.7100,0.0000,0.0000,0.0000,22.0800,0.0000,0.0000,0.0000,56.4700,0.0000,0.0000,0.0000,28.6000,0.0000,0.0000,0.0000,30.3000,0.0000 +600706.SH,0.0000,0.0000,0.0000,10.0300,0.0000,0.0000,0.0000,9.0100,0.0000,0.0000,0.0000,11.1500,0.0000,0.0000,0.0000,6.0800,0.0000,0.0000,0.0000,5.3500,0.0000 +300650.SZ,0.0000,0.0000,0.0000,75.2800,0.0000,0.0000,0.0000,84.1400,0.0000,0.0000,0.0000,81.6200,0.0000,0.0000,0.0000,77.4300,0.0000,0.0000,0.0000,73.9200,0.0000 +603216.SH,0.0000,0.0000,0.0000,27.0100,0.0000,23.8200,0.0000,21.9800,0.0000,0.0000,0.0000,21.1000,0.0000,0.0000,0.0000,19.9200,0.0000,0.0000,0.0000,25.7600,0.0000 +600020.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +600812.SH,0.0000,0.0000,0.0000,17.0300,0.0000,0.0000,0.0000,23.4700,0.0000,0.0000,0.0000,13.3500,0.0000,0.0000,0.0000,17.7900,0.0000,0.0000,0.0000,18.9600,0.0000 +600004.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,7.5900,0.0000,0.0000,0.0000,8.5000,0.0000,0.0000,0.0000,9.7500,0.0000,0.0000,0.0000,16.2600,0.0000 +000088.SZ,0.0000,0.0000,0.0000,37.3400,0.0000,0.0000,0.0000,32.1500,0.0000,0.0000,0.0000,34.3900,0.0000,0.0000,0.0000,30.9700,0.0000,0.0000,0.0000,33.5300,0.0000 +002293.SZ,0.0000,0.0000,0.0000,28.7000,0.0000,0.0000,0.0000,22.3000,0.0000,0.0000,0.0000,19.3300,0.0000,0.0000,0.0000,20.8700,0.0000,0.0000,0.0000,23.1000,0.0000 +600535.SH,0.0000,0.0000,0.0000,5.5800,0.0000,0.0000,0.0000,17.5300,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,19.6800,0.0000,0.0000,0.0000,25.6100,0.0000 +601061.SH,0.0000,0.0000,0.0000,31.8700,0.0000,0.0000,0.0000,31.1900,0.0000,33.9600,0.0000,0.0000,0.0000,0.0000,0.0000,24.5400,0.0000,0.0000,0.0000,24.7400,0.0000 +601985.SH,0.0000,0.0000,0.0000,38.3500,0.0000,0.0000,0.0000,64.2000,0.0000,0.0000,0.0000,40.9700,0.0000,0.0000,0.0000,41.7900,0.0000,0.0000,0.0000,48.9700,0.0000 +600502.SH,0.0000,0.0000,0.0000,10.6800,0.0000,0.0000,0.0000,12.3000,0.0000,0.0000,0.0000,10.9300,0.0000,0.0000,0.0000,9.3200,0.0000,0.0000,0.0000,5.8100,0.0000 +002840.SZ,0.0000,0.0000,0.0000,10.8100,0.0000,0.0000,0.0000,17.8800,0.0000,0.0000,0.0000,13.0300,0.0000,0.0000,0.0000,14.1700,0.0000,0.0000,0.0000,21.0100,0.0000 +601598.SH,0.0000,0.0000,0.0000,19.3400,0.0000,0.0000,0.0000,24.4300,0.0000,0.0000,0.0000,40.2900,0.0000,0.0000,0.0000,15.2700,0.0000,0.0000,0.0000,12.5500,0.0000 +300472.SZ,0.0000,0.0000,0.0000,26.6800,0.0000,0.0000,0.0000,29.5700,0.0000,0.0000,0.0000,23.5500,0.0000,0.0000,0.0000,51.8100,0.0000,0.0000,0.0000,31.5800,0.0000 +002352.SZ,0.0000,0.0000,0.0000,9.8400,0.0000,0.0000,0.0000,12.3700,0.0000,0.0000,0.0000,13.5400,0.0000,0.0000,0.0000,22.0000,0.0000,0.0000,0.0000,19.4900,0.0000 +601200.SH,0.0000,0.0000,0.0000,16.9200,0.0000,0.0000,0.0000,21.3900,0.0000,0.0000,0.0000,26.5100,0.0000,0.0000,0.0000,34.5200,0.0000,0.0000,0.0000,24.6900,0.0000 +688660.SH,0.0000,0.0000,0.0000,32.4300,0.0000,0.0000,0.0000,30.2100,0.0000,0.0000,0.0000,39.0200,0.0000,0.0000,0.0000,34.2500,0.0000,0.0000,0.0000,32.8700,0.0000 +000501.SZ,0.0000,0.0000,0.0000,16.5300,0.0000,0.0000,0.0000,23.3700,0.0000,0.0000,0.0000,24.2600,0.0000,0.0000,0.0000,29.3700,0.0000,0.0000,0.0000,35.2500,0.0000 +000428.SZ,0.0000,0.0000,0.0000,19.2300,0.0000,0.0000,0.0000,33.9500,0.0000,0.0000,0.0000,19.8600,0.0000,0.0000,0.0000,13.3500,0.0000,0.0000,0.0000,17.6800,0.0000 +002644.SZ,0.0000,0.0000,0.0000,14.4200,0.0000,0.0000,0.0000,23.6200,0.0000,0.0000,0.0000,39.5000,0.0000,0.0000,0.0000,14.8800,0.0000,0.0000,0.0000,12.7400,0.0000 +601186.SH,0.0000,0.0000,0.0000,0.8500,0.0000,0.0000,0.0000,0.7000,0.0000,0.0000,0.0000,0.5300,0.0000,0.0000,0.0000,0.4300,0.0000,0.0000,0.0000,0.6400,0.0000 +600600.SH,0.0000,0.0000,0.0000,13.0500,0.0000,0.0000,0.0000,15.5100,0.0000,0.0000,0.0000,18.6600,0.0000,0.0000,0.0000,18.3300,0.0000,0.0000,0.0000,20.1800,0.0000 +600846.SH,0.0000,0.0000,0.0000,29.9600,0.0000,0.0000,0.0000,5.3700,0.0000,0.0000,0.0000,7.0800,0.0000,0.0000,0.0000,49.0500,0.0000,0.0000,0.0000,8.4100,0.0000 +603053.SH,0.0000,0.0000,0.0000,75.9100,0.0000,0.0000,0.0000,84.0200,0.0000,0.0000,0.0000,79.3900,0.0000,0.0000,0.0000,81.9600,0.0000,0.0000,0.0000,77.2700,0.0000 +601326.SH,0.0000,0.0000,0.0000,24.7500,0.0000,0.0000,0.0000,30.8000,0.0000,0.0000,0.0000,43.2500,0.0000,0.0000,0.0000,12.3500,0.0000,0.0000,0.0000,66.5900,0.0000 +600161.SH,0.0000,0.0000,0.0000,11.7300,0.0000,0.0000,0.0000,11.2800,0.0000,0.0000,0.0000,6.6500,0.0000,0.0000,0.0000,12.2500,0.0000,0.0000,0.0000,6.4800,0.0000 +600151.SH,0.0000,0.0000,0.0000,13.3600,0.0000,0.0000,0.0000,17.5400,0.0000,0.0000,0.0000,19.1700,0.0000,0.0000,0.0000,32.1300,0.0000,0.0000,0.0000,16.3400,0.0000 +000950.SZ,0.0000,0.0000,0.0000,13.2800,0.0000,0.0000,0.0000,11.8800,0.0000,0.0000,0.0000,10.5700,0.0000,0.0000,0.0000,9.8700,0.0000,0.0000,0.0000,9.6700,0.0000 +000983.SZ,0.0000,0.0000,0.0000,45.9500,0.0000,0.0000,0.0000,63.6500,0.0000,0.0000,0.0000,41.6400,0.0000,0.0000,0.0000,60.8200,0.0000,0.0000,0.0000,69.4800,0.0000 +300935.SZ,0.0000,0.0000,0.0000,97.5700,0.0000,0.0000,0.0000,92.3400,0.0000,0.0000,0.0000,71.6500,0.0000,0.0000,0.0000,84.4400,0.0000,0.0000,0.0000,75.3600,0.0000 +603317.SH,0.0000,0.0000,0.0000,34.6700,0.0000,0.0000,0.0000,32.2800,0.0000,0.0000,0.0000,43.2900,0.0000,0.0000,0.0000,38.2400,0.0000,0.0000,0.0000,33.8900,0.0000 +603668.SH,0.0000,0.0000,0.0000,35.2500,0.0000,0.0000,0.0000,33.6300,0.0000,0.0000,0.0000,37.3400,0.0000,0.0000,0.0000,39.9200,0.0000,0.0000,0.0000,40.3600,0.0000 +601952.SH,0.0000,0.0000,0.0000,25.4500,0.0000,0.0000,0.0000,15.1400,0.0000,0.0000,0.0000,12.1900,0.0000,0.0000,0.0000,14.5000,0.0000,0.0000,0.0000,13.3200,0.0000 +002788.SZ,0.0000,0.0000,0.0000,10.0400,0.0000,0.0000,0.0000,10.1900,0.0000,0.0000,0.0000,8.3300,0.0000,0.0000,0.0000,8.8300,0.0000,0.0000,0.0000,8.0000,0.0000 +000912.SZ,0.0000,0.0000,0.0000,27.9800,0.0000,0.0000,0.0000,18.9500,0.0000,0.0000,0.0000,35.7000,0.0000,0.0000,0.0000,51.5400,0.0000,0.0000,0.0000,40.3100,0.0000 +688698.SH,0.0000,0.0000,0.0000,26.7400,0.0000,0.0000,0.0000,23.9300,0.0000,0.0000,0.0000,27.5700,0.0000,0.0000,0.0000,20.1000,0.0000,0.0000,0.0000,16.6200,0.0000 +002567.SZ,0.0000,0.0000,0.0000,6.2700,0.0000,0.0000,0.0000,10.4000,0.0000,0.0000,0.0000,12.3000,0.0000,0.0000,0.0000,11.8400,0.0000,0.0000,0.0000,13.4700,0.0000 +600995.SH,0.0000,0.0000,0.0000,77.2700,0.0000,0.0000,0.0000,83.6100,0.0000,0.0000,0.0000,65.9100,0.0000,0.0000,0.0000,59.5200,0.0000,0.0000,0.0000,61.6300,0.0000 +300251.SZ,0.0000,0.0000,0.0000,54.7500,0.0000,0.0000,0.0000,46.8200,0.0000,0.0000,0.0000,26.1800,0.0000,0.0000,0.0000,29.2700,0.0000,0.0000,0.0000,35.4200,0.0000 +605268.SH,0.0000,0.0000,0.0000,33.8200,0.0000,0.0000,0.0000,31.5500,0.0000,0.0000,0.0000,28.9600,0.0000,0.0000,0.0000,19.9000,0.0000,0.0000,0.0000,23.0500,0.0000 +301193.SZ,0.0000,0.0000,0.0000,35.3800,0.0000,32.0200,0.0000,33.2800,0.0000,0.0000,0.0000,35.2400,0.0000,0.0000,0.0000,30.4000,0.0000,0.0000,0.0000,33.7100,0.0000 +300345.SZ,0.0000,0.0000,0.0000,34.9300,0.0000,0.0000,0.0000,45.3700,0.0000,0.0000,0.0000,36.0300,0.0000,0.0000,0.0000,39.9700,0.0000,0.0000,0.0000,48.2600,0.0000 +000858.SZ,0.0000,0.0000,0.0000,21.7800,0.0000,0.0000,0.0000,29.1800,0.0000,0.0000,0.0000,22.2200,0.0000,0.0000,0.0000,16.5700,0.0000,0.0000,0.0000,20.1800,0.0000 +002007.SZ,0.0000,0.0000,0.0000,17.8000,0.0000,0.0000,0.0000,15.0700,0.0000,0.0000,0.0000,20.4200,0.0000,0.0000,0.0000,15.3800,0.0000,0.0000,0.0000,16.1000,0.0000 +000544.SZ,0.0000,0.0000,0.0000,35.4300,0.0000,0.0000,0.0000,45.9200,0.0000,0.0000,0.0000,42.8700,0.0000,0.0000,0.0000,33.5600,0.0000,0.0000,0.0000,33.1100,0.0000 +601065.SH,0.0000,0.0000,0.0000,62.7600,0.0000,0.0000,0.0000,70.6800,0.0000,72.7700,0.0000,69.9900,0.0000,0.0000,0.0000,50.0800,0.0000,0.0000,0.0000,50.9600,0.0000 +600959.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,7.1900,0.0000,0.0000,0.0000,9.6500,0.0000,0.0000,0.0000,9.4700,0.0000,0.0000,0.0000,7.8100,0.0000 +301055.SZ,0.0000,0.0000,0.0000,48.3300,0.0000,0.0000,0.0000,31.0500,0.0000,0.0000,0.0000,32.4600,0.0000,0.0000,0.0000,23.3900,0.0000,0.0000,0.0000,38.9300,0.0000 +688279.SH,0.0000,0.0000,0.0000,88.1900,0.0000,84.6900,0.0000,0.0000,0.0000,0.0000,0.0000,89.3400,0.0000,0.0000,0.0000,86.9400,0.0000,0.0000,0.0000,80.3900,0.0000 +600976.SH,0.0000,0.0000,0.0000,31.8700,0.0000,0.0000,0.0000,38.9200,0.0000,0.0000,0.0000,35.3500,0.0000,0.0000,0.0000,24.9800,0.0000,0.0000,0.0000,19.8900,0.0000 +603031.SH,0.0000,0.0000,0.0000,11.2300,0.0000,0.0000,0.0000,10.5000,0.0000,0.0000,0.0000,31.6200,0.0000,0.0000,0.0000,40.7900,0.0000,0.0000,0.0000,40.5400,0.0000 +002458.SZ,0.0000,0.0000,0.0000,27.1800,0.0000,0.0000,0.0000,28.9000,0.0000,0.0000,0.0000,29.3300,0.0000,0.0000,0.0000,28.4700,0.0000,0.0000,0.0000,17.1300,0.0000 +002153.SZ,0.0000,0.0000,0.0000,50.0500,0.0000,0.0000,0.0000,46.8900,0.0000,0.0000,0.0000,39.0000,0.0000,0.0000,0.0000,27.7800,0.0000,0.0000,0.0000,39.1500,0.0000 +600230.SH,0.0000,0.0000,0.0000,42.0900,0.0000,0.0000,0.0000,47.8100,0.0000,0.0000,0.0000,68.4600,0.0000,0.0000,0.0000,65.7200,0.0000,0.0000,0.0000,72.4600,0.0000 +603719.SH,0.0000,0.0000,0.0000,18.4100,0.0000,0.0000,0.0000,20.2000,0.0000,0.0000,0.0000,17.0400,0.0000,0.0000,0.0000,17.9200,0.0000,0.0000,0.0000,21.9700,0.0000 +002059.SZ,0.0000,0.0000,0.0000,22.3400,0.0000,0.0000,0.0000,19.4300,0.0000,0.0000,0.0000,28.3800,0.0000,0.0000,0.0000,16.7600,0.0000,0.0000,0.0000,16.2400,0.0000 +603008.SH,0.0000,0.0000,0.0000,8.2000,0.0000,0.0000,0.0000,9.4800,0.0000,0.0000,0.0000,10.3400,0.0000,0.0000,0.0000,9.5800,0.0000,0.0000,0.0000,10.1200,0.0000 +000685.SZ,0.0000,0.0000,0.0000,20.5800,0.0000,0.0000,0.0000,22.8300,0.0000,0.0000,0.0000,30.5800,0.0000,0.0000,0.0000,18.3800,0.0000,0.0000,0.0000,20.1000,0.0000 +000525.SZ,0.0000,0.0000,0.0000,22.9000,0.0000,0.0000,0.0000,19.4300,0.0000,0.0000,0.0000,27.2800,0.0000,0.0000,0.0000,32.0800,0.0000,0.0000,0.0000,26.3100,0.0000 +301276.SZ,0.0000,0.0000,0.0000,50.5900,0.0000,0.0000,0.0000,63.0300,0.0000,0.0000,0.0000,18.7900,0.0000,0.0000,0.0000,19.1800,0.0000,0.0000,0.0000,20.3900,0.0000 +000537.SZ,0.0000,0.0000,0.0000,44.9100,0.0000,0.0000,0.0000,12.7700,0.0000,0.0000,0.0000,73.5800,0.0000,0.0000,0.0000,97.9700,0.0000,0.0000,0.0000,94.8600,0.0000 +000333.SZ,0.0000,0.0000,0.0000,5.1400,0.0000,0.0000,0.0000,6.2600,0.0000,0.0000,0.0000,6.3600,0.0000,0.0000,0.0000,6.1900,0.0000,0.0000,0.0000,7.7800,0.0000 +603993.SH,0.0000,0.0000,0.0000,9.3300,0.0000,0.0000,0.0000,11.6400,0.0000,0.0000,0.0000,11.3000,0.0000,0.0000,0.0000,11.6200,0.0000,0.0000,0.0000,11.3400,0.0000 +688330.SH,0.0000,0.0000,0.0000,72.2400,0.0000,0.0000,0.0000,63.2300,0.0000,0.0000,0.0000,42.6900,0.0000,0.0000,0.0000,74.7300,0.0000,0.0000,0.0000,73.5800,0.0000 +600684.SH,0.0000,0.0000,0.0000,78.0000,0.0000,0.0000,0.0000,93.7300,0.0000,0.0000,0.0000,97.3800,0.0000,0.0000,0.0000,44.9400,0.0000,0.0000,0.0000,31.8400,0.0000 +000059.SZ,0.0000,0.0000,0.0000,93.9400,0.0000,0.0000,0.0000,90.6100,0.0000,0.0000,0.0000,93.5000,0.0000,0.0000,0.0000,94.9500,0.0000,0.0000,0.0000,97.2800,0.0000 +002870.SZ,0.0000,0.0000,0.0000,19.1900,0.0000,0.0000,0.0000,16.8200,0.0000,0.0000,0.0000,23.9700,0.0000,0.0000,0.0000,26.3000,0.0000,0.0000,0.0000,18.6600,0.0000 +600971.SH,0.0000,0.0000,0.0000,15.4500,0.0000,0.0000,0.0000,25.0000,0.0000,0.0000,0.0000,16.0200,0.0000,0.0000,0.0000,21.0900,0.0000,0.0000,0.0000,29.1400,0.0000 +600583.SH,0.0000,0.0000,0.0000,18.3600,0.0000,0.0000,0.0000,23.2300,0.0000,0.0000,0.0000,20.9200,0.0000,0.0000,0.0000,16.2800,0.0000,0.0000,0.0000,16.2600,0.0000 +603987.SH,0.0000,0.0000,0.0000,16.8800,0.0000,0.0000,0.0000,18.0600,0.0000,0.0000,0.0000,19.1000,0.0000,0.0000,0.0000,20.4500,0.0000,0.0000,0.0000,15.7500,0.0000 +601018.SH,0.0000,0.0000,0.0000,68.5100,0.0000,0.0000,0.0000,34.0600,0.0000,0.0000,0.0000,50.1900,0.0000,0.0000,0.0000,32.7400,0.0000,0.0000,0.0000,27.1700,0.0000 +603568.SH,0.0000,0.0000,0.0000,48.4100,0.0000,0.0000,0.0000,40.2300,0.0000,0.0000,0.0000,35.7700,0.0000,0.0000,0.0000,31.3300,0.0000,0.0000,0.0000,43.3900,0.0000 +002481.SZ,0.0000,0.0000,0.0000,53.4000,0.0000,0.0000,0.0000,34.5000,0.0000,0.0000,0.0000,68.8000,0.0000,0.0000,0.0000,57.5900,0.0000,0.0000,0.0000,31.9700,0.0000 +600279.SH,0.0000,0.0000,0.0000,47.8400,0.0000,0.0000,0.0000,48.1100,0.0000,0.0000,0.0000,41.1000,0.0000,0.0000,0.0000,36.6600,0.0000,0.0000,0.0000,22.2800,0.0000 +603193.SH,0.0000,0.0000,0.0000,34.2000,0.0000,0.0000,0.0000,30.1700,0.0000,0.0000,0.0000,26.2000,0.0000,0.0000,0.0000,25.3500,0.0000,0.0000,0.0000,21.5200,0.0000 +000090.SZ,0.0000,0.0000,0.0000,6.9100,0.0000,0.0000,0.0000,6.3600,0.0000,0.0000,0.0000,7.7500,0.0000,0.0000,0.0000,9.1400,0.0000,0.0000,0.0000,10.8100,0.0000 +688249.SH,0.0000,0.0000,0.0000,53.5800,0.0000,0.0000,0.0000,47.3500,0.0000,0.0000,0.0000,45.6500,0.0000,0.0000,0.0000,70.3000,0.0000,0.0000,0.0000,38.7500,0.0000 +000650.SZ,0.0000,0.0000,0.0000,18.8400,0.0000,0.0000,0.0000,17.9600,0.0000,0.0000,0.0000,23.7700,0.0000,0.0000,0.0000,20.2100,0.0000,0.0000,0.0000,20.1400,0.0000 +600064.SH,0.0000,0.0000,0.0000,49.5400,0.0000,0.0000,0.0000,43.8600,0.0000,0.0000,0.0000,51.7800,0.0000,0.0000,0.0000,39.4100,0.0000,0.0000,0.0000,26.5200,0.0000 +600018.SH,0.0000,0.0000,0.0000,52.0000,0.0000,0.0000,0.0000,30.0000,0.0000,0.0000,0.0000,50.4000,0.0000,0.0000,0.0000,39.1000,0.0000,0.0000,0.0000,62.2000,0.0000 +688090.SH,0.0000,0.0000,0.0000,34.2700,0.0000,0.0000,0.0000,32.6700,0.0000,0.0000,0.0000,35.6300,0.0000,0.0000,0.0000,24.1600,0.0000,0.0000,0.0000,25.4400,0.0000 +000610.SZ,0.0000,0.0000,0.0000,37.6300,0.0000,0.0000,0.0000,36.4300,0.0000,0.0000,0.0000,32.3400,0.0000,0.0000,0.0000,7.7500,0.0000,0.0000,0.0000,14.7000,0.0000 +001238.SZ,0.0000,0.0000,0.0000,45.8500,0.0000,0.0000,0.0000,46.8200,0.0000,0.0000,0.0000,50.2000,0.0000,0.0000,0.0000,57.8900,0.0000,0.0000,0.0000,62.0000,0.0000 +600873.SH,0.0000,0.0000,0.0000,18.9800,0.0000,0.0000,0.0000,12.2100,0.0000,0.0000,0.0000,10.5200,0.0000,0.0000,0.0000,10.3300,0.0000,0.0000,0.0000,9.8600,0.0000 +002142.SZ,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +003001.SZ,0.0000,0.0000,0.0000,15.9300,0.0000,0.0000,0.0000,15.9100,0.0000,0.0000,0.0000,10.5100,0.0000,0.0000,0.0000,14.1000,0.0000,0.0000,0.0000,15.0500,0.0000 +300789.SZ,0.0000,0.0000,0.0000,23.9200,0.0000,0.0000,0.0000,21.9600,0.0000,0.0000,0.0000,27.3200,0.0000,0.0000,0.0000,19.3400,0.0000,0.0000,0.0000,18.3300,0.0000 +000923.SZ,0.0000,0.0000,0.0000,30.5300,0.0000,0.0000,0.0000,87.3700,0.0000,0.0000,0.0000,60.2300,0.0000,0.0000,0.0000,49.9200,0.0000,0.0000,0.0000,56.1700,0.0000 +603666.SH,0.0000,0.0000,0.0000,27.3700,0.0000,0.0000,0.0000,19.5600,0.0000,0.0000,0.0000,34.0600,0.0000,0.0000,0.0000,25.1400,0.0000,0.0000,0.0000,36.7700,0.0000 +002936.SZ,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +000711.SZ,0.0000,0.0000,0.0000,17.3400,0.0000,0.0000,0.0000,29.7200,0.0000,0.0000,0.0000,26.2900,0.0000,0.0000,0.0000,44.1600,0.0000,0.0000,0.0000,73.4500,0.0000 +600211.SH,0.0000,0.0000,0.0000,67.7000,0.0000,0.0000,0.0000,45.1000,0.0000,0.0000,0.0000,58.0500,0.0000,0.0000,0.0000,36.1900,0.0000,0.0000,0.0000,67.9900,0.0000 +002024.SZ,0.0000,0.0000,0.0000,36.0100,0.0000,0.0000,0.0000,35.6000,0.0000,0.0000,0.0000,40.2100,0.0000,51.9200,0.0000,31.4500,0.0000,0.0000,0.0000,28.6600,0.0000 +002637.SZ,0.0000,0.0000,0.0000,27.0300,0.0000,0.0000,0.0000,29.9400,0.0000,0.0000,0.0000,33.3000,0.0000,0.0000,0.0000,30.8900,0.0000,0.0000,0.0000,31.7200,0.0000 +300957.SZ,0.0000,0.0000,0.0000,36.9800,0.0000,0.0000,0.0000,54.2500,0.0000,0.0000,0.0000,50.5100,0.0000,44.3600,0.0000,49.9700,0.0000,36.2900,0.0000,42.0500,0.0000 +600710.SH,0.0000,0.0000,0.0000,7.2600,0.0000,0.0000,0.0000,7.7300,0.0000,0.0000,0.0000,7.9500,0.0000,0.0000,0.0000,6.3100,0.0000,0.0000,0.0000,9.2400,0.0000 +600960.SH,0.0000,0.0000,0.0000,36.0800,0.0000,0.0000,0.0000,40.1800,0.0000,0.0000,0.0000,37.2000,0.0000,0.0000,0.0000,32.4500,0.0000,0.0000,0.0000,37.5400,0.0000 +603886.SH,0.0000,0.0000,0.0000,29.2200,0.0000,0.0000,0.0000,26.8200,0.0000,0.0000,0.0000,26.6100,0.0000,0.0000,0.0000,23.5800,0.0000,0.0000,0.0000,29.0800,0.0000 +000796.SZ,0.0000,0.0000,0.0000,23.5500,0.0000,0.0000,0.0000,12.5500,0.0000,0.0000,0.0000,9.6700,0.0000,0.0000,0.0000,14.4400,0.0000,0.0000,0.0000,16.1900,0.0000 +002061.SZ,0.0000,0.0000,0.0000,29.6000,0.0000,0.0000,0.0000,43.0900,0.0000,0.0000,0.0000,44.4300,0.0000,0.0000,0.0000,47.7400,0.0000,0.0000,0.0000,15.1100,0.0000 +301148.SZ,0.0000,0.0000,0.0000,29.8600,0.0000,19.0100,0.0000,16.5500,0.0000,0.0000,0.0000,13.1600,0.0000,0.0000,0.0000,21.6900,0.0000,0.0000,0.0000,23.7400,0.0000 +688459.SH,0.0000,0.0000,0.0000,25.6500,0.0000,0.0000,0.0000,19.6300,0.0000,0.0000,0.0000,21.7500,0.0000,0.0000,0.0000,19.3500,0.0000,0.0000,0.0000,19.5100,0.0000 +688531.SH,0.0000,0.0000,0.0000,42.4100,0.0000,0.0000,0.0000,44.7600,0.0000,40.1100,0.0000,0.0000,0.0000,0.0000,0.0000,35.5800,0.0000,0.0000,0.0000,32.2600,0.0000 +002203.SZ,0.0000,0.0000,0.0000,28.4500,0.0000,0.0000,0.0000,31.8700,0.0000,0.0000,0.0000,30.7400,0.0000,0.0000,0.0000,35.9600,0.0000,0.0000,0.0000,25.0700,0.0000 +688185.SH,0.0000,0.0000,0.0000,30.5000,0.0000,0.0000,0.0000,32.5700,0.0000,0.0000,0.0000,20.8600,0.0000,0.0000,0.0000,33.4400,0.0000,0.0000,0.0000,41.1800,0.0000 +300922.SZ,0.0000,0.0000,0.0000,41.8700,0.0000,0.0000,0.0000,43.9400,0.0000,0.0000,0.0000,50.3800,0.0000,0.0000,0.0000,65.2300,0.0000,0.0000,0.0000,69.2200,0.0000 +002307.SZ,0.0000,0.0000,0.0000,15.9000,0.0000,0.0000,0.0000,6.2500,0.0000,0.0000,0.0000,7.0700,0.0000,0.0000,0.0000,8.1400,0.0000,0.0000,0.0000,13.7300,0.0000 +688256.SH,0.0000,0.0000,0.0000,60.7200,0.0000,0.0000,0.0000,54.3700,0.0000,0.0000,0.0000,57.9300,0.0000,0.0000,0.0000,45.0500,0.0000,0.0000,0.0000,58.0400,0.0000 +688399.SH,0.0000,0.0000,0.0000,45.8500,0.0000,0.0000,0.0000,51.1300,0.0000,0.0000,0.0000,46.5100,0.0000,0.0000,0.0000,39.0700,0.0000,0.0000,0.0000,34.6600,0.0000 +688592.SH,0.0000,0.0000,0.0000,42.2400,0.0000,0.0000,0.0000,37.8400,0.0000,0.0000,0.0000,32.8500,0.0000,0.0000,0.0000,23.2500,0.0000,0.0000,0.0000,20.2100,0.0000 +603309.SH,0.0000,0.0000,0.0000,27.8300,0.0000,0.0000,0.0000,34.4200,0.0000,0.0000,0.0000,31.9700,0.0000,0.0000,0.0000,27.8900,0.0000,0.0000,0.0000,28.3200,0.0000 +002039.SZ,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,61.4700,0.0000,0.0000,0.0000,12.9900,0.0000,0.0000,0.0000,37.8500,0.0000 +300426.SZ,0.0000,0.0000,0.0000,46.2200,0.0000,0.0000,0.0000,65.5400,0.0000,0.0000,0.0000,44.2600,0.0000,0.0000,0.0000,33.6800,0.0000,0.0000,0.0000,61.8100,0.0000 +600782.SH,0.0000,0.0000,0.0000,50.8700,0.0000,0.0000,0.0000,16.6500,0.0000,0.0000,0.0000,18.8600,0.0000,0.0000,0.0000,23.8900,0.0000,0.0000,0.0000,26.1500,0.0000 +600863.SH,0.0000,0.0000,0.0000,47.9000,0.0000,0.0000,0.0000,42.0800,0.0000,0.0000,0.0000,42.1800,0.0000,0.0000,0.0000,61.1200,0.0000,0.0000,0.0000,59.5100,0.0000 +000623.SZ,0.0000,0.0000,0.0000,18.2200,0.0000,0.0000,0.0000,19.1700,0.0000,0.0000,0.0000,23.8300,0.0000,0.0000,0.0000,17.0900,0.0000,0.0000,0.0000,22.1600,0.0000 +000792.SZ,0.0000,0.0000,0.0000,25.2000,0.0000,0.0000,0.0000,35.2400,0.0000,0.0000,0.0000,38.3800,0.0000,0.0000,0.0000,38.5900,0.0000,0.0000,0.0000,55.2000,0.0000 +600488.SH,0.0000,0.0000,0.0000,39.5200,0.0000,0.0000,0.0000,42.5300,0.0000,0.0000,0.0000,37.7700,0.0000,0.0000,0.0000,24.2700,0.0000,0.0000,0.0000,26.3900,0.0000 +000752.SZ,0.0000,0.0000,0.0000,81.7200,0.0000,0.0000,0.0000,82.1200,0.0000,0.0000,0.0000,75.6000,0.0000,0.0000,0.0000,60.1800,0.0000,0.0000,0.0000,58.9000,0.0000 +000999.SZ,0.0000,0.0000,0.0000,7.2500,0.0000,0.0000,0.0000,5.6800,0.0000,0.0000,0.0000,7.1600,0.0000,0.0000,0.0000,6.6200,0.0000,0.0000,0.0000,7.9600,0.0000 +600056.SH,0.0000,0.0000,0.0000,6.3600,0.0000,0.0000,0.0000,13.0000,0.0000,0.0000,0.0000,12.1900,0.0000,0.0000,0.0000,22.0400,0.0000,0.0000,0.0000,9.3600,0.0000 +605339.SH,0.0000,0.0000,0.0000,72.0300,0.0000,0.0000,0.0000,55.9700,0.0000,0.0000,0.0000,59.6100,0.0000,0.0000,0.0000,56.9800,0.0000,0.0000,0.0000,58.1800,0.0000 +002221.SZ,0.0000,0.0000,0.0000,55.7100,0.0000,0.0000,0.0000,63.4300,0.0000,0.0000,0.0000,72.6200,0.0000,0.0000,0.0000,63.7700,0.0000,0.0000,0.0000,64.2400,0.0000 +301413.SZ,0.0000,0.0000,0.0000,27.2700,0.0000,0.0000,0.0000,25.0800,0.0000,0.0000,0.0000,31.6700,0.0000,29.6200,0.0000,28.2900,0.0000,0.0000,0.0000,28.1300,0.0000 +600639.SH,0.0000,0.0000,0.0000,53.6300,0.0000,0.0000,0.0000,22.0600,0.0000,0.0000,0.0000,7.9100,0.0000,0.0000,0.0000,7.1600,0.0000,0.0000,0.0000,5.3500,0.0000 +003012.SZ,0.0000,0.0000,0.0000,13.3100,0.0000,0.0000,0.0000,14.6000,0.0000,0.0000,0.0000,17.2000,0.0000,0.0000,0.0000,18.2600,0.0000,0.0000,0.0000,18.1800,0.0000 +600582.SH,0.0000,0.0000,0.0000,10.3100,0.0000,0.0000,0.0000,10.0600,0.0000,0.0000,0.0000,6.2000,0.0000,0.0000,0.0000,3.6200,0.0000,0.0000,0.0000,3.2500,0.0000 +601965.SH,0.0000,0.0000,0.0000,50.3100,0.0000,0.0000,0.0000,37.2400,0.0000,0.0000,0.0000,10.2300,0.0000,0.0000,0.0000,28.1500,0.0000,0.0000,0.0000,3.2100,0.0000 +600284.SH,0.0000,0.0000,0.0000,11.4000,0.0000,0.0000,0.0000,9.1300,0.0000,0.0000,0.0000,12.0600,0.0000,0.0000,0.0000,10.0500,0.0000,0.0000,0.0000,8.6200,0.0000 +603727.SH,0.0000,0.0000,0.0000,19.5900,0.0000,0.0000,0.0000,16.6100,0.0000,0.0000,0.0000,18.6900,0.0000,0.0000,0.0000,16.0500,0.0000,0.0000,0.0000,15.2900,0.0000 +002014.SZ,0.0000,0.0000,0.0000,22.6300,0.0000,0.0000,0.0000,20.9400,0.0000,0.0000,0.0000,27.6300,0.0000,0.0000,0.0000,28.2900,0.0000,0.0000,0.0000,31.1200,0.0000 +600009.SH,0.0000,0.0000,0.0000,46.2600,0.0000,0.0000,0.0000,50.2400,0.0000,0.0000,0.0000,46.8900,0.0000,0.0000,0.0000,54.2700,0.0000,0.0000,0.0000,51.8800,0.0000 +688221.SH,0.0000,0.0000,0.0000,20.0900,0.0000,0.0000,0.0000,53.8200,0.0000,0.0000,0.0000,43.6100,0.0000,0.0000,0.0000,48.5000,0.0000,0.0000,0.0000,68.7500,0.0000 +000973.SZ,0.0000,0.0000,0.0000,21.7100,0.0000,0.0000,0.0000,20.4700,0.0000,0.0000,0.0000,21.1100,0.0000,0.0000,0.0000,27.4400,0.0000,0.0000,0.0000,28.6700,0.0000 +600557.SH,0.0000,0.0000,0.0000,45.9100,0.0000,0.0000,0.0000,39.8500,0.0000,0.0000,0.0000,32.9600,0.0000,0.0000,0.0000,39.3100,0.0000,0.0000,0.0000,38.7000,0.0000 +301004.SZ,0.0000,0.0000,0.0000,33.3300,0.0000,0.0000,0.0000,41.8000,0.0000,0.0000,0.0000,35.6700,0.0000,0.0000,0.0000,40.9500,0.0000,0.0000,0.0000,44.8900,0.0000 +601699.SH,0.0000,0.0000,0.0000,20.2900,0.0000,0.0000,0.0000,16.6000,0.0000,0.0000,0.0000,13.9500,0.0000,0.0000,0.0000,26.7100,0.0000,0.0000,0.0000,20.9300,0.0000 +600572.SH,0.0000,0.0000,0.0000,18.4800,0.0000,0.0000,0.0000,16.7900,0.0000,0.0000,0.0000,11.9800,0.0000,0.0000,0.0000,14.5000,0.0000,0.0000,0.0000,9.4600,0.0000 +688472.SH,0.0000,0.0000,0.0000,30.0100,0.0000,0.0000,0.0000,37.2700,0.0000,0.0000,0.0000,35.6000,0.0000,0.0000,0.0000,20.3600,0.0000,0.0000,0.0000,37.2200,0.0000 +000001.SZ,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +600348.SH,0.0000,0.0000,0.0000,43.9200,0.0000,0.0000,0.0000,34.7800,0.0000,0.0000,0.0000,43.3200,0.0000,0.0000,0.0000,57.3700,0.0000,0.0000,0.0000,48.8800,0.0000 +603195.SH,0.0000,0.0000,0.0000,22.5000,0.0000,0.0000,0.0000,22.2300,0.0000,0.0000,0.0000,22.1400,0.0000,0.0000,0.0000,12.2000,0.0000,0.0000,0.0000,17.0000,0.0000 +688798.SH,0.0000,0.0000,0.0000,92.1200,0.0000,0.0000,0.0000,86.9700,0.0000,0.0000,0.0000,85.9400,0.0000,0.0000,0.0000,83.6900,0.0000,0.0000,0.0000,88.5200,0.0000 +688200.SH,0.0000,0.0000,0.0000,32.3900,0.0000,0.0000,0.0000,31.5700,0.0000,0.0000,0.0000,35.5700,0.0000,0.0000,0.0000,33.1000,0.0000,0.0000,0.0000,24.6000,0.0000 +600573.SH,0.0000,0.0000,0.0000,24.8000,0.0000,0.0000,0.0000,21.6600,0.0000,0.0000,0.0000,23.8200,0.0000,0.0000,0.0000,25.0300,0.0000,0.0000,0.0000,25.9200,0.0000 +603833.SH,0.0000,0.0000,0.0000,13.8200,0.0000,0.0000,0.0000,17.0600,0.0000,0.0000,0.0000,16.0200,0.0000,0.0000,0.0000,13.0100,0.0000,0.0000,0.0000,14.6300,0.0000 +000776.SZ,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +300600.SZ,0.0000,0.0000,0.0000,82.3000,0.0000,0.0000,0.0000,19.8900,0.0000,0.0000,0.0000,17.4000,0.0000,0.0000,0.0000,12.6900,0.0000,0.0000,0.0000,24.0700,0.0000 +002252.SZ,0.0000,0.0000,0.0000,13.4600,0.0000,0.0000,0.0000,58.5300,0.0000,0.0000,0.0000,63.7100,0.0000,0.0000,0.0000,72.1000,0.0000,0.0000,0.0000,68.6700,0.0000 +002603.SZ,0.0000,0.0000,0.0000,21.6900,0.0000,0.0000,0.0000,18.9300,0.0000,0.0000,0.0000,14.7000,0.0000,0.0000,0.0000,17.0900,0.0000,0.0000,0.0000,22.9500,0.0000 +300614.SZ,0.0000,0.0000,0.0000,19.7800,0.0000,0.0000,0.0000,23.0200,0.0000,0.0000,0.0000,22.5200,0.0000,0.0000,0.0000,16.3800,0.0000,0.0000,0.0000,23.9500,0.0000 +600395.SH,0.0000,0.0000,0.0000,20.7300,0.0000,0.0000,0.0000,33.0500,0.0000,0.0000,0.0000,33.2800,0.0000,0.0000,0.0000,32.3000,0.0000,0.0000,0.0000,47.4700,0.0000 +600329.SH,0.0000,0.0000,0.0000,14.9900,0.0000,0.0000,0.0000,17.2600,0.0000,0.0000,0.0000,19.9100,0.0000,0.0000,0.0000,19.0100,0.0000,0.0000,0.0000,27.4200,0.0000 +600184.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,28.8400,0.0000,0.0000,0.0000,19.5700,0.0000,0.0000,0.0000,21.1500,0.0000,0.0000,0.0000,17.8000,0.0000 +301096.SZ,0.0000,0.0000,0.0000,45.5700,0.0000,30.7200,0.0000,24.3400,0.0000,0.0000,0.0000,24.1100,0.0000,0.0000,0.0000,26.0200,0.0000,0.0000,0.0000,17.8100,0.0000 +000430.SZ,0.0000,0.0000,0.0000,52.9900,0.0000,0.0000,0.0000,44.4600,0.0000,0.0000,0.0000,52.7100,0.0000,0.0000,0.0000,87.8000,0.0000,0.0000,0.0000,62.3200,0.0000 +600326.SH,0.0000,0.0000,0.0000,30.4200,0.0000,0.0000,0.0000,14.4600,0.0000,0.0000,0.0000,19.9700,0.0000,0.0000,0.0000,20.6300,0.0000,0.0000,0.0000,15.8900,0.0000 +002425.SZ,0.0000,0.0000,0.0000,35.3600,0.0000,0.0000,0.0000,39.1800,0.0000,0.0000,0.0000,47.4900,0.0000,0.0000,0.0000,45.4300,0.0000,0.0000,0.0000,53.0300,0.0000 +601766.SH,0.0000,0.0000,0.0000,6.4600,0.0000,0.0000,0.0000,6.5400,0.0000,0.0000,0.0000,6.4700,0.0000,4.6400,0.0000,7.0500,0.0000,0.0000,0.0000,6.8800,0.0000 +002677.SZ,0.0000,0.0000,0.0000,50.5800,0.0000,0.0000,0.0000,46.9700,0.0000,0.0000,0.0000,47.5700,0.0000,0.0000,0.0000,52.8500,0.0000,0.0000,0.0000,46.7500,0.0000 +600869.SH,0.0000,0.0000,0.0000,28.3900,0.0000,0.0000,0.0000,28.7400,0.0000,0.0000,0.0000,35.2800,0.0000,0.0000,0.0000,42.0100,0.0000,0.0000,0.0000,39.8900,0.0000 +603102.SH,0.0000,0.0000,0.0000,21.4400,0.0000,19.8900,0.0000,16.8400,0.0000,0.0000,0.0000,20.2900,0.0000,0.0000,0.0000,22.0000,0.0000,0.0000,0.0000,19.4200,0.0000 +600546.SH,0.0000,0.0000,0.0000,25.9100,0.0000,0.0000,0.0000,21.5300,0.0000,0.0000,0.0000,20.1500,0.0000,0.0000,0.0000,15.2200,0.0000,0.0000,0.0000,14.4900,0.0000 +600037.SH,0.0000,0.0000,0.0000,40.7400,0.0000,0.0000,0.0000,37.0500,0.0000,0.0000,0.0000,28.9800,0.0000,0.0000,0.0000,23.3000,0.0000,0.0000,0.0000,18.7200,0.0000 +601669.SH,0.0000,0.0000,0.0000,38.5000,0.0000,0.0000,0.0000,23.1600,0.0000,0.0000,0.0000,14.7500,0.0000,0.0000,0.0000,12.2300,0.0000,0.0000,0.0000,8.3400,0.0000 +002890.SZ,0.0000,0.0000,0.0000,19.3600,0.0000,0.0000,0.0000,23.5500,0.0000,0.0000,0.0000,22.3100,0.0000,0.0000,0.0000,21.3100,0.0000,0.0000,0.0000,23.4400,0.0000 +600587.SH,0.0000,0.0000,0.0000,37.3400,0.0000,0.0000,0.0000,23.5700,0.0000,0.0000,0.0000,22.7100,0.0000,0.0000,0.0000,23.5500,0.0000,0.0000,0.0000,19.3000,0.0000 +600138.SH,0.0000,0.0000,0.0000,55.5300,0.0000,0.0000,0.0000,40.9900,0.0000,0.0000,0.0000,48.2200,0.0000,0.0000,0.0000,34.3700,0.0000,0.0000,0.0000,33.6000,0.0000 +601512.SH,0.0000,0.0000,0.0000,75.6700,0.0000,0.0000,0.0000,51.2200,0.0000,0.0000,0.0000,41.6500,0.0000,0.0000,0.0000,9.0400,0.0000,0.0000,0.0000,49.6900,0.0000 +300770.SZ,0.0000,0.0000,0.0000,41.8300,0.0000,0.0000,0.0000,43.9400,0.0000,0.0000,0.0000,42.1100,0.0000,0.0000,0.0000,46.8900,0.0000,0.0000,0.0000,54.7700,0.0000 +601702.SH,0.0000,0.0000,0.0000,54.9900,0.0000,0.0000,0.0000,33.3900,0.0000,0.0000,0.0000,49.8300,0.0000,0.0000,0.0000,42.9000,0.0000,0.0000,0.0000,53.4200,0.0000 +002262.SZ,0.0000,0.0000,0.0000,21.8400,0.0000,0.0000,0.0000,25.1700,0.0000,0.0000,0.0000,24.3800,0.0000,0.0000,0.0000,24.6800,0.0000,0.0000,0.0000,19.3100,0.0000 +002516.SZ,0.0000,0.0000,0.0000,23.0400,0.0000,0.0000,0.0000,22.4900,0.0000,0.0000,0.0000,21.9600,0.0000,0.0000,0.0000,23.7300,0.0000,0.0000,0.0000,20.4000,0.0000 +600956.SH,0.0000,0.0000,0.0000,57.9800,0.0000,0.0000,0.0000,63.5400,0.0000,0.0000,0.0000,69.9500,0.0000,0.0000,0.0000,68.4000,0.0000,0.0000,0.0000,62.7900,0.0000 +600925.SH,0.0000,0.0000,0.0000,37.8400,0.0000,0.0000,0.0000,27.1000,0.0000,40.0200,0.0000,0.0000,0.0000,0.0000,0.0000,29.6800,0.0000,0.0000,0.0000,27.7200,0.0000 +000995.SZ,0.0000,0.0000,0.0000,48.1000,0.0000,0.0000,0.0000,53.3800,0.0000,0.0000,0.0000,67.9600,0.0000,0.0000,0.0000,57.2600,0.0000,0.0000,0.0000,46.5900,0.0000 +002309.SZ,0.0000,0.0000,0.0000,31.1500,0.0000,0.0000,0.0000,29.6200,0.0000,0.0000,0.0000,30.6500,0.0000,0.0000,0.0000,46.2800,0.0000,0.0000,0.0000,33.9900,0.0000 +301087.SZ,0.0000,0.0000,0.0000,18.2300,0.0000,0.0000,0.0000,20.2700,0.0000,0.0000,0.0000,27.9200,0.0000,0.0000,0.0000,23.9600,0.0000,0.0000,0.0000,26.5400,0.0000 +600894.SH,0.0000,0.0000,0.0000,13.2600,0.0000,0.0000,0.0000,10.8200,0.0000,0.0000,0.0000,13.2700,0.0000,0.0000,0.0000,12.0500,0.0000,0.0000,0.0000,13.7400,0.0000 +600638.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,60.4100,0.0000,0.0000,0.0000,40.7000,0.0000,0.0000,0.0000,31.5600,0.0000,0.0000,0.0000,39.3800,0.0000 +688513.SH,0.0000,0.0000,0.0000,35.1300,0.0000,0.0000,0.0000,30.7900,0.0000,0.0000,0.0000,38.5800,0.0000,0.0000,0.0000,26.1600,0.0000,0.0000,0.0000,20.4300,0.0000 +301283.SZ,0.0000,0.0000,0.0000,55.5100,0.0000,0.0000,0.0000,54.9200,0.0000,0.0000,0.0000,62.3400,0.0000,0.0000,0.0000,62.1500,0.0000,0.0000,0.0000,61.1100,0.0000 +605183.SH,0.0000,0.0000,0.0000,34.1200,0.0000,0.0000,0.0000,29.1000,0.0000,0.0000,0.0000,27.2200,0.0000,0.0000,0.0000,12.1200,0.0000,0.0000,0.0000,31.8400,0.0000 +603199.SH,0.0000,0.0000,0.0000,25.4700,0.0000,0.0000,0.0000,27.2400,0.0000,0.0000,0.0000,26.5600,0.0000,0.0000,0.0000,30.1300,0.0000,0.0000,0.0000,33.8100,0.0000 +002592.SZ,0.0000,0.0000,0.0000,52.1000,0.0000,0.0000,0.0000,49.6800,0.0000,0.0000,0.0000,47.1100,0.0000,0.0000,0.0000,46.7900,0.0000,0.0000,0.0000,44.2700,0.0000 +600486.SH,0.0000,0.0000,0.0000,22.3300,0.0000,0.0000,0.0000,34.0200,0.0000,0.0000,0.0000,27.2400,0.0000,0.0000,0.0000,24.6700,0.0000,0.0000,0.0000,25.0100,0.0000 +600208.SH,0.0000,0.0000,0.0000,36.1000,0.0000,0.0000,0.0000,34.9400,0.0000,0.0000,0.0000,30.0600,0.0000,0.0000,0.0000,32.4900,0.0000,0.0000,0.0000,46.2700,0.0000 +300373.SZ,0.0000,0.0000,0.0000,22.4400,0.0000,0.0000,0.0000,30.3100,0.0000,0.0000,0.0000,34.3400,0.0000,0.0000,0.0000,26.4300,0.0000,0.0000,0.0000,28.2500,0.0000 +000011.SZ,0.0000,0.0000,0.0000,50.0600,0.0000,0.0000,0.0000,27.8300,0.0000,0.0000,0.0000,33.5000,0.0000,0.0000,0.0000,61.7900,0.0000,0.0000,0.0000,22.3000,0.0000 +600085.SH,0.0000,0.0000,0.0000,13.0600,0.0000,0.0000,0.0000,12.5900,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,14.1700,0.0000,0.0000,0.0000,14.8300,0.0000 +600648.SH,0.0000,0.0000,0.0000,25.9100,0.0000,0.0000,0.0000,20.9300,0.0000,0.0000,0.0000,28.0900,0.0000,0.0000,0.0000,41.7800,0.0000,0.0000,0.0000,36.4100,0.0000 +601668.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,0.0000,0.0000,0.0000,1.8000,0.0000,0.0000,0.0000,2.7000,0.0000 +300661.SZ,0.0000,0.0000,0.0000,98.0500,0.0000,0.0000,0.0000,93.1100,0.0000,0.0000,0.0000,88.4200,0.0000,0.0000,0.0000,90.2700,0.0000,0.0000,0.0000,89.0400,0.0000 +601107.SH,0.0000,0.0000,0.0000,33.0000,0.0000,0.0000,0.0000,38.3100,0.0000,0.0000,0.0000,58.0000,0.0000,0.0000,0.0000,67.0000,0.0000,0.0000,0.0000,78.0000,0.0000 +301387.SZ,0.0000,0.0000,0.0000,24.5700,0.0000,0.0000,0.0000,29.5600,0.0000,32.3600,0.0000,0.0000,0.0000,0.0000,0.0000,24.6500,0.0000,0.0000,0.0000,24.2500,0.0000 +002430.SZ,0.0000,0.0000,0.0000,27.3900,0.0000,0.0000,0.0000,18.6600,0.0000,0.0000,0.0000,27.2300,0.0000,0.0000,0.0000,26.0600,0.0000,0.0000,0.0000,23.9900,0.0000 +600323.SH,0.0000,0.0000,0.0000,59.3600,0.0000,0.0000,0.0000,32.4400,0.0000,0.0000,0.0000,59.2600,0.0000,0.0000,0.0000,77.0800,0.0000,0.0000,0.0000,65.1500,0.0000 +600267.SH,0.0000,0.0000,0.0000,36.1300,0.0000,0.0000,0.0000,19.7600,0.0000,0.0000,0.0000,18.8700,0.0000,0.0000,0.0000,24.2900,0.0000,0.0000,0.0000,17.0900,0.0000 +600365.SH,0.0000,0.0000,0.0000,72.0500,0.0000,0.0000,0.0000,62.3700,0.0000,0.0000,0.0000,70.0500,0.0000,0.0000,0.0000,77.8700,0.0000,0.0000,0.0000,78.3100,0.0000 +688566.SH,0.0000,0.0000,0.0000,48.5500,0.0000,0.0000,0.0000,45.0900,0.0000,0.0000,0.0000,51.8000,0.0000,0.0000,0.0000,53.5600,0.0000,0.0000,0.0000,54.6900,0.0000 +601333.SH,0.0000,0.0000,0.0000,21.5500,0.0000,0.0000,0.0000,20.1000,0.0000,0.0000,0.0000,20.5600,0.0000,0.0000,0.0000,73.0000,0.0000,0.0000,0.0000,63.0800,0.0000 +600059.SH,0.0000,0.0000,0.0000,49.1600,0.0000,0.0000,0.0000,40.6500,0.0000,0.0000,0.0000,34.3700,0.0000,0.0000,0.0000,33.7500,0.0000,0.0000,0.0000,36.3200,0.0000 +603811.SH,0.0000,0.0000,0.0000,33.9600,0.0000,0.0000,0.0000,39.4100,0.0000,0.0000,0.0000,36.5800,0.0000,0.0000,0.0000,35.8700,0.0000,0.0000,0.0000,42.0400,0.0000 +688012.SH,0.0000,0.0000,0.0000,29.3200,0.0000,0.0000,0.0000,30.7500,0.0000,0.0000,0.0000,33.2900,0.0000,0.0000,0.0000,26.2700,0.0000,0.0000,0.0000,28.4000,0.0000 +601665.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +600422.SH,0.0000,0.0000,0.0000,25.7100,0.0000,0.0000,0.0000,22.1400,0.0000,0.0000,0.0000,16.0900,0.0000,0.0000,0.0000,18.7600,0.0000,0.0000,0.0000,23.5300,0.0000 +600742.SH,0.0000,0.0000,0.0000,18.7500,0.0000,0.0000,0.0000,16.9200,0.0000,0.0000,0.0000,18.7300,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,17.4500,0.0000 +002597.SZ,0.0000,0.0000,0.0000,28.9100,0.0000,0.0000,0.0000,25.9900,0.0000,0.0000,0.0000,30.4200,0.0000,0.0000,0.0000,20.3600,0.0000,0.0000,0.0000,20.3400,0.0000 +000513.SZ,0.0000,0.0000,0.0000,27.3600,0.0000,0.0000,0.0000,29.1000,0.0000,0.0000,0.0000,26.3600,0.0000,0.0000,0.0000,26.0600,0.0000,0.0000,0.0000,32.1500,0.0000 +688039.SH,0.0000,0.0000,0.0000,36.7500,0.0000,0.0000,0.0000,40.3200,0.0000,0.0000,0.0000,47.4100,0.0000,0.0000,0.0000,62.9500,0.0000,0.0000,0.0000,44.3700,0.0000 +600737.SH,0.0000,0.0000,0.0000,22.1700,0.0000,0.0000,0.0000,29.2300,0.0000,0.0000,0.0000,16.3200,0.0000,0.0000,0.0000,42.3000,0.0000,0.0000,0.0000,36.8300,0.0000 +001326.SZ,0.0000,0.0000,0.0000,38.5700,0.0000,0.0000,0.0000,30.3900,0.0000,0.0000,0.0000,30.0200,0.0000,30.1000,0.0000,30.3800,0.0000,0.0000,0.0000,30.4100,0.0000 +688606.SH,0.0000,0.0000,0.0000,32.8500,0.0000,0.0000,0.0000,26.9400,0.0000,0.0000,0.0000,27.5300,0.0000,0.0000,0.0000,29.2400,0.0000,0.0000,0.0000,19.6700,0.0000 +300889.SZ,0.0000,0.0000,0.0000,25.7800,0.0000,0.0000,0.0000,18.2600,0.0000,0.0000,0.0000,17.3600,0.0000,0.0000,0.0000,17.2600,0.0000,0.0000,0.0000,14.4200,0.0000 +601019.SH,0.0000,0.0000,0.0000,15.3400,0.0000,0.0000,0.0000,10.8000,0.0000,0.0000,0.0000,13.2200,0.0000,0.0000,0.0000,12.5500,0.0000,0.0000,0.0000,13.5500,0.0000 +002379.SZ,0.0000,0.0000,0.0000,87.8700,0.0000,0.0000,0.0000,77.9600,0.0000,0.0000,0.0000,84.5000,0.0000,0.0000,0.0000,87.4500,0.0000,0.0000,0.0000,88.6800,0.0000 +600827.SH,0.0000,0.0000,0.0000,8.3600,0.0000,0.0000,0.0000,8.4300,0.0000,0.0000,0.0000,9.3100,0.0000,0.0000,0.0000,10.9300,0.0000,0.0000,0.0000,13.0900,0.0000 +002507.SZ,0.0000,0.0000,0.0000,23.7400,0.0000,0.0000,0.0000,24.6800,0.0000,0.0000,0.0000,24.7400,0.0000,0.0000,0.0000,25.5700,0.0000,0.0000,0.0000,23.6700,0.0000 +603979.SH,0.0000,0.0000,0.0000,24.9600,0.0000,0.0000,0.0000,24.2600,0.0000,0.0000,0.0000,14.1000,0.0000,0.0000,0.0000,20.1600,0.0000,0.0000,0.0000,21.9300,0.0000 +002946.SZ,0.0000,0.0000,0.0000,24.7000,0.0000,0.0000,0.0000,21.4300,0.0000,0.0000,0.0000,25.1500,0.0000,0.0000,0.0000,23.0700,0.0000,0.0000,0.0000,23.2100,0.0000 +002743.SZ,0.0000,0.0000,0.0000,29.3400,0.0000,0.0000,0.0000,42.1300,0.0000,0.0000,0.0000,26.7900,0.0000,0.0000,0.0000,25.9700,0.0000,0.0000,0.0000,17.1600,0.0000 +601801.SH,0.0000,0.0000,0.0000,46.6600,0.0000,0.0000,0.0000,32.0200,0.0000,0.0000,0.0000,38.1000,0.0000,0.0000,0.0000,33.5400,0.0000,0.0000,0.0000,63.6000,0.0000 +600754.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,10.4500,0.0000,0.0000,0.0000,15.0600,0.0000,0.0000,0.0000,12.1000,0.0000,0.0000,0.0000,18.7800,0.0000 +000002.SZ,0.0000,0.0000,0.0000,2.1500,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +603393.SH,0.0000,0.0000,0.0000,51.8600,0.0000,0.0000,0.0000,67.1500,0.0000,0.0000,0.0000,53.2200,0.0000,0.0000,0.0000,42.1300,0.0000,0.0000,0.0000,60.0400,0.0000 +002120.SZ,0.0000,0.0000,0.0000,6.2300,0.0000,0.0000,0.0000,16.5300,0.0000,0.0000,0.0000,13.3600,0.0000,0.0000,0.0000,9.0400,0.0000,0.0000,0.0000,8.2800,0.0000 +300124.SZ,0.0000,0.0000,0.0000,14.1300,0.0000,15.1900,0.0000,14.0400,0.0000,14.1100,0.0000,14.4100,0.0000,0.0000,0.0000,15.1300,0.0000,0.0000,0.0000,15.9500,0.0000 +603733.SH,0.0000,0.0000,0.0000,35.3800,0.0000,0.0000,0.0000,38.0000,0.0000,0.0000,0.0000,36.7800,0.0000,0.0000,0.0000,40.0300,0.0000,0.0000,0.0000,32.3600,0.0000 +002304.SZ,0.0000,0.0000,0.0000,20.4700,0.0000,0.0000,0.0000,23.4100,0.0000,0.0000,0.0000,17.5300,0.0000,0.0000,0.0000,16.4000,0.0000,0.0000,0.0000,18.6100,0.0000 +002907.SZ,0.0000,0.0000,0.0000,47.4700,0.0000,0.0000,0.0000,38.6900,0.0000,0.0000,0.0000,18.5300,0.0000,0.0000,0.0000,24.5700,0.0000,0.0000,0.0000,24.8300,0.0000 +002915.SZ,0.0000,0.0000,0.0000,20.4500,0.0000,0.0000,0.0000,30.3300,0.0000,0.0000,0.0000,27.2500,0.0000,0.0000,0.0000,0.0028,0.0000,0.0000,0.0000,32.7400,0.0000 +002468.SZ,0.0000,0.0000,0.0000,8.9100,0.0000,0.0000,0.0000,7.9600,0.0000,0.0000,0.0000,10.5300,0.0000,0.0000,0.0000,8.3300,0.0000,0.0000,0.0000,7.4200,0.0000 +002887.SZ,0.0000,0.0000,0.0000,12.1600,0.0000,0.0000,0.0000,12.3600,0.0000,0.0000,0.0000,12.5300,0.0000,0.0000,0.0000,19.5700,0.0000,0.0000,0.0000,20.2000,0.0000 +605305.SH,0.0000,0.0000,0.0000,28.7000,0.0000,0.0000,0.0000,34.5000,0.0000,0.0000,0.0000,37.0700,0.0000,0.0000,0.0000,35.5100,0.0000,0.0000,0.0000,33.7100,0.0000 +603187.SH,0.0000,0.0000,0.0000,25.8300,0.0000,0.0000,0.0000,26.6600,0.0000,0.0000,0.0000,27.6200,0.0000,0.0000,0.0000,29.3900,0.0000,0.0000,0.0000,27.4500,0.0000 +001323.SZ,0.0000,0.0000,0.0000,26.3400,0.0000,0.0000,0.0000,18.8300,0.0000,0.0000,0.0000,15.2200,0.0000,0.0000,0.0000,13.5300,0.0000,0.0000,0.0000,11.2900,0.0000 +300760.SZ,0.0000,0.0000,0.0000,11.8800,0.0000,0.0000,0.0000,10.2800,0.0000,0.0000,0.0000,8.6400,0.0000,0.0000,0.0000,6.4500,0.0000,0.0000,0.0000,5.6100,0.0000 +603678.SH,0.0000,0.0000,0.0000,89.5300,0.0000,0.0000,0.0000,77.8100,0.0000,0.0000,0.0000,79.3500,0.0000,0.0000,0.0000,79.9100,0.0000,0.0000,0.0000,77.7500,0.0000 +002432.SZ,0.0000,0.0000,0.0000,20.5900,0.0000,0.0000,0.0000,35.9900,0.0000,0.0000,0.0000,57.9300,0.0000,0.0000,0.0000,41.8300,0.0000,0.0000,0.0000,43.5800,0.0000 +000558.SZ,0.0000,0.0000,0.0000,71.8300,0.0000,0.0000,0.0000,68.5800,0.0000,0.0000,0.0000,37.2200,0.0000,0.0000,0.0000,27.5000,0.0000,0.0000,0.0000,50.7400,0.0000 +601888.SH,0.0000,0.0000,0.0000,58.7700,0.0000,0.0000,0.0000,60.0100,0.0000,0.0000,0.0000,62.7100,0.0000,0.0000,0.0000,44.2200,0.0000,0.0000,0.0000,47.6000,0.0000 +688196.SH,0.0000,0.0000,0.0000,17.3300,0.0000,0.0000,0.0000,13.6600,0.0000,0.0000,0.0000,15.1800,0.0000,0.0000,0.0000,17.6100,0.0000,0.0000,0.0000,11.0100,0.0000 +601000.SH,0.0000,0.0000,0.0000,13.4400,0.0000,0.0000,0.0000,12.6800,0.0000,0.0000,0.0000,10.7800,0.0000,0.0000,0.0000,12.0700,0.0000,0.0000,0.0000,15.3900,0.0000 +601568.SH,0.0000,0.0000,0.0000,46.2200,0.0000,0.0000,0.0000,45.7800,0.0000,0.0000,0.0000,55.2500,0.0000,0.0000,0.0000,60.0100,0.0000,0.0000,0.0000,57.5300,0.0000 +601827.SH,0.0000,0.0000,0.0000,17.1300,0.0000,0.0000,0.0000,13.9200,0.0000,0.0000,0.0000,17.1500,0.0000,0.0000,0.0000,14.8900,0.0000,0.0000,0.0000,9.6700,0.0000 +603609.SH,0.0000,0.0000,0.0000,19.7800,0.0000,0.0000,0.0000,14.4500,0.0000,0.0000,0.0000,14.9600,0.0000,0.0000,0.0000,16.1700,0.0000,0.0000,0.0000,19.0200,0.0000 +600141.SH,0.0000,0.0000,0.0000,28.4000,0.0000,0.0000,0.0000,12.9500,0.0000,0.0000,0.0000,22.1400,0.0000,0.0000,0.0000,21.0200,0.0000,0.0000,0.0000,4.2200,0.0000 +603689.SH,0.0000,0.0000,0.0000,96.5400,0.0000,0.0000,0.0000,91.9200,0.0000,0.0000,0.0000,84.5200,0.0000,0.0000,0.0000,77.2700,0.0000,0.0000,0.0000,88.0700,0.0000 +601211.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +603026.SH,0.0000,0.0000,0.0000,26.9800,0.0000,0.0000,0.0000,21.5800,0.0000,0.0000,0.0000,27.7100,0.0000,0.0000,0.0000,35.5000,0.0000,0.0000,0.0000,28.1500,0.0000 +688091.SH,0.0000,0.0000,0.0000,36.9600,0.0000,0.0000,0.0000,69.9400,0.0000,0.0000,0.0000,79.5600,0.0000,0.0000,0.0000,59.5500,0.0000,0.0000,0.0000,58.4500,0.0000 +603508.SH,0.0000,0.0000,0.0000,26.2700,0.0000,0.0000,0.0000,25.7000,0.0000,0.0000,0.0000,27.2200,0.0000,0.0000,0.0000,21.5100,0.0000,0.0000,0.0000,19.1700,0.0000 +301379.SZ,0.0000,0.0000,0.0000,22.0800,0.0000,0.0000,0.0000,28.2400,0.0000,0.0000,0.0000,22.1300,0.0000,0.0000,0.0000,22.8200,0.0000,0.0000,0.0000,24.8700,0.0000 +600148.SH,0.0000,0.0000,0.0000,27.0300,0.0000,0.0000,0.0000,25.5700,0.0000,0.0000,0.0000,23.3500,0.0000,0.0000,0.0000,23.2600,0.0000,0.0000,0.0000,24.1500,0.0000 +600507.SH,0.0000,0.0000,0.0000,36.5400,0.0000,0.0000,0.0000,34.7500,0.0000,0.0000,0.0000,38.5100,0.0000,0.0000,0.0000,29.6800,0.0000,0.0000,0.0000,27.5100,0.0000 +600215.SH,0.0000,0.0000,0.0000,69.3600,0.0000,0.0000,0.0000,10.5800,0.0000,0.0000,0.0000,25.6600,0.0000,0.0000,0.0000,12.3100,0.0000,0.0000,0.0000,10.1100,0.0000 +600519.SH,0.0000,0.0000,0.0000,49.7700,0.0000,0.0000,0.0000,43.3300,0.0000,0.0000,0.0000,35.3300,0.0000,0.0000,0.0000,36.4500,0.0000,0.0000,0.0000,35.4300,0.0000 +600897.SH,0.0000,0.0000,0.0000,45.3900,0.0000,0.0000,0.0000,47.0300,0.0000,0.0000,0.0000,47.4500,0.0000,0.0000,0.0000,18.5500,0.0000,0.0000,0.0000,15.1300,0.0000 +601225.SH,0.0000,0.0000,0.0000,30.4200,0.0000,0.0000,0.0000,40.4000,0.0000,0.0000,0.0000,1.4500,0.0000,0.0000,0.0000,43.4300,0.0000,0.0000,0.0000,37.8200,0.0000 +688137.SH,0.0000,0.0000,0.0000,43.5400,0.0000,0.0000,0.0000,33.5700,0.0000,0.0000,0.0000,19.6000,0.0000,0.0000,0.0000,20.7700,0.0000,0.0000,0.0000,61.9100,0.0000 +300407.SZ,0.0000,0.0000,0.0000,13.0800,0.0000,0.0000,0.0000,13.7800,0.0000,0.0000,0.0000,13.2600,0.0000,0.0000,0.0000,11.5600,0.0000,0.0000,0.0000,9.6100,0.0000 +688009.SH,0.0000,0.0000,0.0000,8.0900,0.0000,0.0000,0.0000,6.7100,0.0000,0.0000,0.0000,4.7500,0.0000,0.0000,0.0000,4.4600,0.0000,0.0000,0.0000,3.5700,0.0000 +600977.SH,0.0000,0.0000,0.0000,22.6900,0.0000,0.0000,0.0000,27.6400,0.0000,0.0000,0.0000,26.9300,0.0000,0.0000,0.0000,29.9600,0.0000,0.0000,0.0000,42.6500,0.0000 +002585.SZ,0.0000,0.0000,0.0000,67.0400,0.0000,0.0000,0.0000,74.9900,0.0000,0.0000,0.0000,82.0900,0.0000,0.0000,0.0000,83.7500,0.0000,0.0000,0.0000,76.9200,0.0000 +603726.SH,0.0000,0.0000,0.0000,39.6300,0.0000,0.0000,0.0000,47.2100,0.0000,0.0000,0.0000,44.7400,0.0000,0.0000,0.0000,43.5900,0.0000,0.0000,0.0000,42.1100,0.0000 +300132.SZ,0.0000,0.0000,0.0000,14.0800,0.0000,0.0000,0.0000,16.9400,0.0000,0.0000,0.0000,19.7800,0.0000,0.0000,0.0000,17.2900,0.0000,0.0000,0.0000,16.7200,0.0000 +600566.SH,0.0000,0.0000,0.0000,21.2800,0.0000,0.0000,0.0000,24.1100,0.0000,0.0000,0.0000,26.7100,0.0000,0.0000,0.0000,33.1800,0.0000,0.0000,0.0000,32.5100,0.0000 +688691.SH,0.0000,0.0000,0.0000,84.9300,0.0000,0.0000,0.0000,86.3900,0.0000,0.0000,0.0000,91.8000,0.0000,88.6700,0.0000,0.0000,0.0000,0.0000,0.0000,82.0200,0.0000 +000683.SZ,0.0000,0.0000,0.0000,35.3700,0.0000,0.0000,0.0000,39.7700,0.0000,0.0000,0.0000,24.3900,0.0000,0.0000,0.0000,25.0800,0.0000,0.0000,0.0000,26.8900,0.0000 +600908.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +600749.SH,0.0000,0.0000,0.0000,30.0000,0.0000,0.0000,0.0000,7.0000,0.0000,0.0000,0.0000,17.0000,0.0000,0.0000,0.0000,29.3200,0.0000,0.0000,0.0000,30.0000,0.0000 +600350.SH,0.0000,0.0000,0.0000,21.5300,0.0000,0.0000,0.0000,42.2700,0.0000,0.0000,0.0000,38.6600,0.0000,0.0000,0.0000,32.4300,0.0000,0.0000,0.0000,33.1700,0.0000 +601222.SH,0.0000,0.0000,0.0000,27.6000,0.0000,0.0000,0.0000,28.1800,0.0000,0.0000,0.0000,34.7500,0.0000,0.0000,0.0000,21.3200,0.0000,0.0000,0.0000,24.9600,0.0000 +600655.SH,0.0000,0.0000,0.0000,39.4500,0.0000,0.0000,0.0000,44.0300,0.0000,0.0000,0.0000,41.3800,0.0000,0.0000,0.0000,39.4000,0.0000,0.0000,0.0000,47.7100,0.0000 +601318.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +600997.SH,0.0000,0.0000,0.0000,54.2800,0.0000,0.0000,0.0000,45.7400,0.0000,0.0000,0.0000,60.4000,0.0000,0.0000,0.0000,64.2700,0.0000,0.0000,0.0000,59.6400,0.0000 +601187.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +603121.SH,0.0000,0.0000,0.0000,32.7800,0.0000,0.0000,0.0000,32.5600,0.0000,0.0000,0.0000,26.0700,0.0000,0.0000,0.0000,19.7100,0.0000,0.0000,0.0000,26.6400,0.0000 +002404.SZ,0.0000,0.0000,0.0000,14.9100,0.0000,0.0000,0.0000,12.4800,0.0000,0.0000,0.0000,13.0600,0.0000,0.0000,0.0000,13.7300,0.0000,0.0000,0.0000,11.6600,0.0000 +688500.SH,0.0000,0.0000,0.0000,25.3100,0.0000,0.0000,0.0000,15.6700,0.0000,0.0000,0.0000,21.9400,0.0000,0.0000,0.0000,23.3700,0.0000,0.0000,0.0000,26.6400,0.0000 +600236.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,36.5100,0.0000,0.0000,0.0000,42.0200,0.0000,0.0000,0.0000,24.0000,0.0000,0.0000,0.0000,26.4200,0.0000 +603071.SH,0.0000,0.0000,0.0000,37.0200,0.0000,26.2000,0.0000,20.3900,0.0000,0.0000,0.0000,17.7600,0.0000,0.0000,0.0000,13.7000,0.0000,0.0000,0.0000,14.7000,0.0000 +000726.SZ,0.0000,0.0000,0.0000,14.1800,0.0000,0.0000,0.0000,23.9500,0.0000,0.0000,0.0000,17.8700,0.0000,0.0000,0.0000,15.7900,0.0000,0.0000,0.0000,14.7400,0.0000 +600234.SH,0.0000,0.0000,0.0000,45.6600,0.0000,0.0000,0.0000,48.0400,0.0000,0.0000,0.0000,53.8700,0.0000,0.0000,0.0000,77.9700,0.0000,0.0000,0.0000,33.3500,0.0000 +603810.SH,0.0000,0.0000,0.0000,18.6500,0.0000,0.0000,0.0000,12.1800,0.0000,0.0000,0.0000,20.3800,0.0000,0.0000,0.0000,20.4400,0.0000,0.0000,0.0000,22.0400,0.0000 +002078.SZ,0.0000,0.0000,0.0000,20.7200,0.0000,0.0000,0.0000,17.9100,0.0000,0.0000,0.0000,20.2500,0.0000,0.0000,0.0000,17.4800,0.0000,0.0000,0.0000,14.0900,0.0000 +002274.SZ,0.0000,0.0000,0.0000,48.6700,0.0000,0.0000,0.0000,64.2300,0.0000,0.0000,0.0000,50.1800,0.0000,0.0000,0.0000,51.1800,0.0000,0.0000,0.0000,61.9800,0.0000 +688382.SH,0.0000,0.0000,0.0000,71.6700,0.0000,0.0000,0.0000,64.2900,0.0000,0.0000,0.0000,38.5800,0.0000,0.0000,0.0000,33.5700,0.0000,0.0000,0.0000,59.8900,0.0000 +601088.SH,0.0000,0.0000,0.0000,17.5000,0.0000,0.0000,0.0000,16.8000,0.0000,0.0000,0.0000,16.6000,0.0000,0.0000,0.0000,15.9000,0.0000,0.0000,0.0000,22.1000,0.0000 +000534.SZ,0.0000,0.0000,0.0000,14.9600,0.0000,0.0000,0.0000,28.0500,0.0000,0.0000,0.0000,34.4400,0.0000,0.0000,0.0000,43.6000,0.0000,0.0000,0.0000,49.7400,0.0000 +601877.SH,0.0000,0.0000,0.0000,9.7900,0.0000,0.0000,0.0000,15.4800,0.0000,0.0000,0.0000,22.2300,0.0000,0.0000,0.0000,29.8400,0.0000,0.0000,0.0000,10.2600,0.0000 +600223.SH,0.0000,0.0000,0.0000,19.9600,0.0000,0.0000,0.0000,28.4800,0.0000,0.0000,0.0000,28.4300,0.0000,0.0000,0.0000,16.8000,0.0000,0.0000,0.0000,19.7100,0.0000 +603043.SH,0.0000,0.0000,0.0000,21.9800,0.0000,0.0000,0.0000,18.3400,0.0000,0.0000,0.0000,15.6200,0.0000,0.0000,0.0000,16.1900,0.0000,0.0000,0.0000,16.5100,0.0000 +300868.SZ,0.0000,0.0000,0.0000,29.7200,0.0000,0.0000,0.0000,27.1900,0.0000,0.0000,0.0000,22.9100,0.0000,0.0000,0.0000,25.5500,0.0000,0.0000,0.0000,26.7500,0.0000 +002714.SZ,0.0000,0.0000,0.0000,34.8700,0.0000,0.0000,0.0000,31.4700,0.0000,0.0000,0.0000,16.3400,0.0000,0.0000,0.0000,13.0400,0.0000,0.0000,0.0000,14.6000,0.0000 +601089.SH,0.0000,0.0000,0.0000,21.0500,0.0000,0.0000,0.0000,19.0000,0.0000,0.0000,0.0000,14.5400,0.0000,0.0000,0.0000,16.2800,0.0000,0.0000,0.0000,16.4100,0.0000 +600809.SH,0.0000,0.0000,0.0000,32.6800,0.0000,0.0000,0.0000,30.7800,0.0000,0.0000,0.0000,26.4200,0.0000,0.0000,0.0000,37.0000,0.0000,0.0000,0.0000,24.5100,0.0000 +001979.SZ,0.0000,0.0000,0.0000,7.0800,0.0000,0.0000,0.0000,5.3900,0.0000,0.0000,0.0000,13.7400,0.0000,0.0000,0.0000,5.2300,0.0000,0.0000,0.0000,10.9300,0.0000 +603310.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,63.9500,0.0000,0.0000,0.0000,71.3600,0.0000,0.0000,0.0000,75.3200,0.0000,0.0000,0.0000,35.3100,0.0000 +600295.SH,0.0000,0.0000,0.0000,30.6100,0.0000,0.0000,0.0000,37.3600,0.0000,0.0000,0.0000,44.7200,0.0000,0.0000,0.0000,42.0300,0.0000,0.0000,0.0000,43.4600,0.0000 +600663.SH,0.0000,0.0000,0.0000,31.4400,0.0000,0.0000,0.0000,48.9500,0.0000,0.0000,0.0000,31.5300,0.0000,0.0000,0.0000,42.4500,0.0000,0.0000,0.0000,34.6500,0.0000 +600153.SH,0.0000,0.0000,0.0000,4.9700,0.0000,0.0000,0.0000,4.4700,0.0000,0.0000,0.0000,5.2800,0.0000,0.0000,0.0000,6.7800,0.0000,0.0000,0.0000,8.5200,0.0000 +605296.SH,0.0000,0.0000,0.0000,32.8300,0.0000,0.0000,0.0000,45.7700,0.0000,0.0000,0.0000,36.3000,0.0000,0.0000,0.0000,41.8300,0.0000,0.0000,0.0000,27.9800,0.0000 +605155.SH,0.0000,0.0000,0.0000,42.4500,0.0000,0.0000,0.0000,40.4800,0.0000,0.0000,0.0000,33.9600,0.0000,0.0000,0.0000,30.5300,0.0000,0.0000,0.0000,32.6300,0.0000 +600548.SH,0.0000,0.0000,0.0000,29.4100,0.0000,0.0000,0.0000,40.0400,0.0000,0.0000,0.0000,23.8800,0.0000,32.2100,0.0000,26.0500,0.0000,0.0000,0.0000,40.3800,0.0000 +002399.SZ,0.0000,0.0000,0.0000,24.0400,0.0000,0.0000,0.0000,21.5100,0.0000,0.0000,0.0000,20.7200,0.0000,0.0000,0.0000,20.3600,0.0000,0.0000,0.0000,34.8500,0.0000 +002216.SZ,0.0000,0.0000,0.0000,11.5900,0.0000,0.0000,0.0000,11.2700,0.0000,0.0000,0.0000,15.0400,0.0000,0.0000,0.0000,16.6200,0.0000,0.0000,0.0000,15.9800,0.0000 +300669.SZ,0.0000,0.0000,0.0000,47.4000,0.0000,0.0000,0.0000,47.2900,0.0000,0.0000,0.0000,48.1500,0.0000,0.0000,0.0000,46.9200,0.0000,0.0000,0.0000,46.8300,0.0000 +688319.SH,0.0000,0.0000,0.0000,41.5300,0.0000,0.0000,0.0000,25.4600,0.0000,0.0000,0.0000,33.7800,0.0000,0.0000,0.0000,25.1400,0.0000,0.0000,0.0000,29.6500,0.0000 +300750.SZ,0.0000,0.0000,0.0000,18.8600,0.0000,0.0000,0.0000,15.4200,0.0000,0.0000,0.0000,21.2600,0.0000,0.0000,0.0000,20.2600,0.0000,0.0000,0.0000,16.3300,0.0000 +600062.SH,0.0000,0.0000,0.0000,16.7900,0.0000,0.0000,0.0000,21.6500,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,14.4900,0.0000,0.0000,0.0000,14.4900,0.0000 +600426.SH,0.0000,0.0000,0.0000,40.6800,0.0000,0.0000,0.0000,33.4100,0.0000,0.0000,0.0000,27.7300,0.0000,0.0000,0.0000,20.0400,0.0000,0.0000,0.0000,37.3000,0.0000 +603922.SH,0.0000,0.0000,0.0000,61.7400,0.0000,0.0000,0.0000,56.7700,0.0000,0.0000,0.0000,68.5700,0.0000,0.0000,0.0000,45.2200,0.0000,0.0000,0.0000,50.3800,0.0000 +001277.SZ,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,29.9600,0.0000,0.0000,0.0000,25.1300,0.0000,0.0000,0.0000,28.3600,0.0000,0.0000,0.0000,23.5500,0.0000 +301231.SZ,0.0000,0.0000,0.0000,83.7800,0.0000,0.0000,0.0000,79.8000,0.0000,0.0000,0.0000,78.3900,0.0000,0.0000,0.0000,69.0300,0.0000,0.0000,0.0000,64.5500,0.0000 +000596.SZ,0.0000,0.0000,0.0000,28.2900,0.0000,0.0000,0.0000,29.5500,0.0000,0.0000,0.0000,23.5400,0.0000,0.0000,0.0000,19.4000,0.0000,0.0000,0.0000,20.3400,0.0000 +002773.SZ,0.0000,0.0000,0.0000,32.0100,0.0000,0.0000,0.0000,26.2500,0.0000,0.0000,0.0000,24.9300,0.0000,0.0000,0.0000,21.9900,0.0000,0.0000,0.0000,13.5000,0.0000 +605389.SH,0.0000,0.0000,0.0000,33.9400,0.0000,0.0000,0.0000,36.5800,0.0000,0.0000,0.0000,25.9200,0.0000,0.0000,0.0000,24.8000,0.0000,0.0000,0.0000,23.4700,0.0000 +600132.SH,0.0000,0.0000,0.0000,18.9000,0.0000,0.0000,0.0000,20.5100,0.0000,0.0000,0.0000,11.9500,0.0000,0.0000,0.0000,14.0200,0.0000,0.0000,0.0000,12.6300,0.0000 +002683.SZ,0.0000,0.0000,0.0000,15.3300,0.0000,0.0000,0.0000,19.1100,0.0000,0.0000,0.0000,15.4000,0.0000,0.0000,0.0000,15.0000,0.0000,0.0000,0.0000,20.4000,0.0000 +688615.SH,0.0000,0.0000,0.0000,33.4600,37.6900,0.0000,0.0000,34.6000,0.0000,0.0000,0.0000,41.2900,0.0000,0.0000,0.0000,30.5700,0.0000,0.0000,0.0000,41.4900,0.0000 +000718.SZ,0.0000,0.0000,0.0000,16.6700,0.0000,0.0000,0.0000,25.2500,0.0000,0.0000,0.0000,41.6200,0.0000,0.0000,0.0000,51.3400,0.0000,0.0000,0.0000,40.7600,0.0000 +600287.SH,0.0000,0.0000,0.0000,46.6200,0.0000,0.0000,0.0000,22.1400,0.0000,0.0000,0.0000,31.3400,0.0000,0.0000,0.0000,41.1800,0.0000,0.0000,0.0000,26.0000,0.0000 +300108.SZ,0.0000,0.0000,0.0000,26.7500,0.0000,0.0000,0.0000,24.5700,0.0000,0.0000,0.0000,28.3000,0.0000,0.0000,0.0000,25.4100,0.0000,0.0000,0.0000,37.7200,0.0000 +000729.SZ,0.0000,0.0000,0.0000,5.1200,0.0000,0.0000,0.0000,17.7800,0.0000,0.0000,0.0000,10.1900,0.0000,0.0000,0.0000,13.1900,0.0000,0.0000,0.0000,14.0000,0.0000 +300536.SZ,0.0000,0.0000,0.0000,35.0100,0.0000,0.0000,0.0000,61.9200,0.0000,0.0000,0.0000,52.3400,0.0000,0.0000,0.0000,63.1200,0.0000,0.0000,0.0000,83.9600,0.0000 +603858.SH,0.0000,0.0000,0.0000,39.8200,0.0000,0.0000,0.0000,37.3400,0.0000,0.0000,0.0000,34.2600,0.0000,0.0000,0.0000,35.9600,0.0000,0.0000,0.0000,29.4100,0.0000 +300338.SZ,0.0000,0.0000,0.0000,26.4800,0.0000,0.0000,0.0000,46.9500,0.0000,0.0000,0.0000,48.4400,0.0000,0.0000,0.0000,38.9000,0.0000,0.0000,0.0000,37.8800,0.0000 +603879.SH,0.0000,0.0000,0.0000,56.4800,0.0000,0.0000,0.0000,60.8900,0.0000,0.0000,0.0000,73.1300,0.0000,0.0000,0.0000,66.6200,0.0000,0.0000,0.0000,66.5900,0.0000 +688506.SH,0.0000,0.0000,0.0000,25.4800,0.0000,0.0000,0.0000,40.1000,0.0000,22.6100,0.0000,54.4500,0.0000,0.0000,0.0000,51.3900,0.0000,0.0000,0.0000,51.4200,0.0000 +300507.SZ,0.0000,0.0000,0.0000,31.6700,0.0000,0.0000,0.0000,34.9800,0.0000,0.0000,0.0000,33.6100,0.0000,0.0000,0.0000,32.7400,0.0000,0.0000,0.0000,30.0700,0.0000 +600248.SH,0.0000,0.0000,0.0000,7.0100,0.0000,0.0000,0.0000,19.6700,0.0000,0.0000,0.0000,4.6700,0.0000,0.0000,0.0000,7.9100,0.0000,0.0000,0.0000,4.9700,0.0000 +000885.SZ,0.0000,0.0000,0.0000,34.2400,0.0000,0.0000,0.0000,31.3900,0.0000,0.0000,0.0000,14.7000,0.0000,0.0000,0.0000,17.1300,0.0000,0.0000,0.0000,16.1700,0.0000 +601028.SH,0.0000,0.0000,0.0000,50.9900,0.0000,0.0000,0.0000,55.8600,0.0000,0.0000,0.0000,71.4400,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +300280.SZ,0.0000,0.0000,0.0000,86.4300,0.0000,0.0000,0.0000,73.6700,0.0000,0.0000,0.0000,64.3300,0.0000,0.0000,0.0000,95.7600,0.0000,0.0000,0.0000,0.0000,0.0000 +000401.SZ,0.0000,0.0000,0.0000,29.3700,0.0000,0.0000,0.0000,36.6900,0.0000,0.0000,0.0000,32.2400,0.0000,0.0000,0.0000,31.9300,0.0000,0.0000,0.0000,0.0000,0.0000 +600808.SH,0.0000,0.0000,0.0000,23.9000,0.0000,0.0000,0.0000,35.2000,0.0000,0.0000,0.0000,23.0000,0.0000,0.0000,0.0000,29.0000,0.0000,0.0000,0.0000,20.0000,0.0000 +002336.SZ,0.0000,0.0000,0.0000,17.0200,0.0000,0.0000,0.0000,15.9400,0.0000,0.0000,0.0000,17.0600,0.0000,0.0000,0.0000,22.3400,0.0000,0.0000,0.0000,39.6700,0.0000 +600804.SH,0.0000,0.0000,0.0000,8.4900,0.0000,0.0000,0.0000,13.1300,0.0000,0.0000,0.0000,13.5200,0.0000,0.0000,0.0000,13.4300,0.0000,0.0000,0.0000,8.2100,0.0000 +603977.SH,0.0000,0.0000,0.0000,24.0900,0.0000,0.0000,0.0000,25.9200,0.0000,0.0000,0.0000,29.8000,0.0000,0.0000,0.0000,30.3400,0.0000,0.0000,0.0000,20.6000,0.0000 +603377.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,73.9700,0.0000,0.0000,0.0000,45.7600,0.0000,0.0000,0.0000,48.5700,0.0000,0.0000,0.0000,53.4500,0.0000 +002198.SZ,0.0000,0.0000,0.0000,30.9100,0.0000,0.0000,0.0000,32.6000,0.0000,0.0000,0.0000,39.8400,0.0000,0.0000,0.0000,44.5000,0.0000,0.0000,0.0000,48.9000,0.0000 +000910.SZ,0.0000,0.0000,0.0000,8.3000,0.0000,0.0000,0.0000,7.3400,0.0000,0.0000,0.0000,6.8800,0.0000,0.0000,0.0000,8.3500,0.0000,0.0000,0.0000,10.2100,0.0000 +603367.SH,0.0000,0.0000,0.0000,24.4600,0.0000,0.0000,0.0000,23.1500,0.0000,0.0000,0.0000,23.6900,0.0000,0.0000,0.0000,17.6800,0.0000,0.0000,0.0000,16.9300,0.0000 +300144.SZ,0.0000,0.0000,0.0000,34.7300,0.0000,0.0000,0.0000,20.5400,0.0000,0.0000,0.0000,11.8700,0.0000,0.0000,0.0000,17.4500,0.0000,0.0000,0.0000,10.5800,0.0000 +600777.SH,0.0000,0.0000,0.0000,14.9300,0.0000,0.0000,0.0000,32.1100,0.0000,0.0000,0.0000,26.0000,0.0000,0.0000,0.0000,25.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +002750.SZ,0.0000,0.0000,0.0000,53.2500,0.0000,0.0000,0.0000,44.2400,0.0000,0.0000,0.0000,36.7600,0.0000,0.0000,0.0000,38.8500,0.0000,0.0000,0.0000,22.7500,0.0000 +601515.SH,0.0000,0.0000,0.0000,18.1500,0.0000,0.0000,0.0000,19.6400,0.0000,0.0000,0.0000,17.8400,0.0000,0.0000,0.0000,19.3900,0.0000,0.0000,0.0000,19.3100,0.0000 +000584.SZ,0.0000,0.0000,0.0000,16.2000,0.0000,0.0000,0.0000,15.8500,0.0000,0.0000,0.0000,11.3100,0.0000,0.0000,0.0000,14.7600,0.0000,0.0000,0.0000,21.4000,0.0000 +002128.SZ,0.0000,0.0000,0.0000,26.3100,0.0000,0.0000,0.0000,35.2900,0.0000,0.0000,0.0000,41.8800,0.0000,0.0000,0.0000,46.7300,0.0000,0.0000,0.0000,46.7200,0.0000 +000605.SZ,0.0000,0.0000,0.0000,43.1700,0.0000,0.0000,0.0000,51.8100,0.0000,0.0000,0.0000,61.1900,0.0000,0.0000,0.0000,67.2900,0.0000,0.0000,0.0000,65.9700,0.0000 +688536.SH,0.0000,0.0000,0.0000,96.7300,0.0000,0.0000,0.0000,92.8300,0.0000,0.0000,0.0000,88.2700,0.0000,0.0000,0.0000,86.9400,0.0000,0.0000,0.0000,78.6200,0.0000 +601233.SH,0.0000,0.0000,0.0000,58.8400,0.0000,0.0000,0.0000,40.4400,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,48.5400,0.0000,0.0000,0.0000,48.2200,0.0000 +603003.SH,0.0000,0.0000,0.0000,41.0800,0.0000,0.0000,0.0000,48.7200,0.0000,0.0000,0.0000,54.7300,0.0000,0.0000,0.0000,46.9100,0.0000,0.0000,0.0000,57.0100,0.0000 +301112.SZ,0.0000,0.0000,0.0000,30.0700,0.0000,0.0000,0.0000,27.6800,0.0000,0.0000,0.0000,26.3800,0.0000,0.0000,0.0000,28.0500,0.0000,0.0000,0.0000,26.3200,0.0000 +000622.SZ,0.0000,0.0000,0.0000,77.2300,0.0000,0.0000,0.0000,77.8200,0.0000,0.0000,0.0000,93.3000,0.0000,0.0000,0.0000,80.0800,0.0000,0.0000,0.0000,0.0000,0.0000 +600008.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.5700,0.0000,0.0000,0.0000,10.7400,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +300225.SZ,0.0000,0.0000,0.0000,19.6900,0.0000,0.0000,0.0000,28.0000,0.0000,0.0000,0.0000,31.1900,0.0000,0.0000,0.0000,28.8300,0.0000,0.0000,0.0000,0.0000,0.0000 +300185.SZ,0.0000,0.0000,0.0000,39.4800,0.0000,0.0000,0.0000,36.9000,0.0000,0.0000,0.0000,49.7400,0.0000,0.0000,0.0000,39.9000,0.0000,0.0000,0.0000,44.9800,0.0000 +000627.SZ,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +001289.SZ,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,27.8700,0.0000,0.0000,0.0000,21.9400,0.0000,0.0000,0.0000,9.6500,0.0000,0.0000,0.0000,29.7200,0.0000 +600387.SH,0.0000,0.0000,0.0000,48.5400,0.0000,0.0000,0.0000,35.7300,0.0000,0.0000,0.0000,0.0037,0.0000,0.0000,0.0000,59.3200,0.0000,0.0000,0.0000,63.6200,0.0000 +301223.SZ,0.0000,0.0000,0.0000,47.4100,0.0000,0.0000,0.0000,45.0000,0.0000,0.0000,0.0000,30.7400,0.0000,0.0000,0.0000,27.3400,0.0000,0.0000,0.0000,28.5100,0.0000 +688426.SH,0.0000,0.0000,0.0000,25.8000,0.0000,0.0000,0.0000,31.2000,0.0000,0.0000,0.0000,17.6200,0.0000,0.0000,0.0000,62.0300,0.0000,0.0000,0.0000,24.1200,0.0000 +002571.SZ,0.0000,0.0000,0.0000,27.2600,0.0000,0.0000,0.0000,40.0200,0.0000,0.0000,0.0000,24.1600,0.0000,30.4700,0.0000,34.0000,0.0000,0.0000,0.0000,48.4000,0.0000 +000877.SZ,0.0000,0.0000,0.0000,18.4700,0.0000,0.0000,0.0000,21.9100,0.0000,0.0000,0.0000,27.8700,0.0000,0.0000,0.0000,33.5600,0.0000,0.0000,0.0000,43.7000,0.0000 +600705.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +600177.SH,0.0000,0.0000,0.0000,9.7500,0.0000,0.0000,0.0000,14.7400,0.0000,0.0000,0.0000,15.2300,0.0000,0.0000,0.0000,16.8200,0.0000,0.0000,0.0000,19.5700,0.0000 +000989.SZ,0.0000,0.0000,0.0000,16.3800,0.0000,0.0000,0.0000,13.5400,0.0000,0.0000,0.0000,16.7500,0.0000,0.0000,0.0000,26.7200,0.0000,0.0000,0.0000,26.7700,0.0000 +601658.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +600073.SH,0.0000,0.0000,0.0000,17.7200,0.0000,0.0000,0.0000,5.4000,0.0000,0.0000,0.0000,7.6300,0.0000,0.0000,0.0000,3.5000,0.0000,0.0000,0.0000,4.0200,0.0000 +600688.SH,0.0000,0.0000,0.0000,59.5300,0.0000,0.0000,0.0000,69.0100,0.0000,0.0000,0.0000,74.2900,0.0000,0.0000,0.0000,77.7500,0.0000,0.0000,0.0000,83.6400,0.0000 +002165.SZ,0.0000,0.0000,0.0000,39.5200,0.0000,0.0000,0.0000,41.9600,0.0000,0.0000,0.0000,39.9600,0.0000,0.0000,0.0000,35.0700,0.0000,0.0000,0.0000,38.3200,0.0000 +600136.SH,0.0000,0.0000,0.0000,80.7200,0.0000,0.0000,0.0000,61.2900,0.0000,0.0000,0.0000,72.6000,0.0000,0.0000,0.0000,64.5300,0.0000,0.0000,0.0000,15.1500,0.0000 +600436.SH,0.0000,0.0000,0.0000,16.6200,0.0000,0.0000,0.0000,14.8300,0.0000,0.0000,0.0000,12.8600,0.0000,0.0000,0.0000,19.8800,0.0000,0.0000,0.0000,25.8700,0.0000 +600383.SH,0.0000,0.0000,0.0000,3.1900,0.0000,0.0000,0.0000,9.4100,0.0000,0.0000,0.0000,4.8200,0.0000,7.7300,0.0000,10.1400,0.0000,0.0000,0.0000,13.0000,0.0000 +301316.SZ,0.0000,0.0000,0.0000,29.3500,0.0000,0.0000,0.0000,16.9500,0.0000,0.0000,0.0000,15.1500,0.0000,0.0000,0.0000,44.9700,0.0000,0.0000,0.0000,27.2200,0.0000 +603279.SH,0.0000,0.0000,0.0000,37.1400,0.0000,0.0000,0.0000,36.3700,0.0000,0.0000,0.0000,35.7100,0.0000,0.0000,0.0000,37.6900,0.0000,0.0000,0.0000,30.8300,0.0000 +601860.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +600662.SH,0.0000,0.0000,0.0000,15.6000,0.0000,0.0000,0.0000,68.8700,0.0000,0.0000,0.0000,66.5500,0.0000,0.0000,0.0000,4.7600,0.0000,0.0000,0.0000,4.2800,0.0000 +000695.SZ,0.0000,0.0000,0.0000,44.2600,0.0000,0.0000,0.0000,32.0800,0.0000,0.0000,0.0000,26.7100,0.0000,0.0000,0.0000,72.6900,0.0000,0.0000,0.0000,64.6300,0.0000 +600521.SH,0.0000,0.0000,0.0000,10.7500,0.0000,0.0000,0.0000,9.1800,0.0000,0.0000,0.0000,11.7700,0.0000,0.0000,0.0000,13.4700,0.0000,0.0000,0.0000,12.3300,0.0000 +002828.SZ,0.0000,0.0000,0.0000,26.9900,0.0000,0.0000,0.0000,22.0300,0.0000,0.0000,0.0000,30.4100,0.0000,0.0000,0.0000,24.9600,0.0000,0.0000,0.0000,22.4700,0.0000 +688621.SH,0.0000,0.0000,0.0000,30.4100,0.0000,0.0000,0.0000,20.9600,0.0000,0.0000,0.0000,18.2000,0.0000,0.0000,0.0000,20.7900,0.0000,0.0000,0.0000,9.2300,0.0000 +300999.SZ,0.0000,0.0000,0.0000,30.5200,0.0000,0.0000,0.0000,32.3900,0.0000,0.0000,0.0000,35.2200,0.0000,0.0000,0.0000,33.0900,0.0000,0.0000,0.0000,0.0000,0.0000 +601968.SH,0.0000,0.0000,0.0000,51.4800,0.0000,0.0000,0.0000,40.7800,0.0000,0.0000,0.0000,47.6000,0.0000,0.0000,0.0000,50.8900,0.0000,0.0000,0.0000,63.7200,0.0000 +002550.SZ,0.0000,0.0000,0.0000,54.4700,0.0000,0.0000,0.0000,51.3900,0.0000,0.0000,0.0000,46.4000,0.0000,0.0000,0.0000,40.2100,0.0000,0.0000,0.0000,36.4400,0.0000 +600462.SH,0.0000,0.0000,0.0000,54.1300,0.0000,0.0000,0.0000,25.4000,0.0000,0.0000,0.0000,53.0300,0.0000,0.0000,0.0000,50.3200,0.0000,0.0000,0.0000,57.6400,0.0000 +300208.SZ,0.0000,0.0000,0.0000,58.2800,0.0000,0.0000,0.0000,47.1600,0.0000,0.0000,0.0000,70.3700,0.0000,0.0000,0.0000,72.4300,0.0000,0.0000,0.0000,96.1200,0.0000 +603608.SH,0.0000,0.0000,0.0000,15.7500,0.0000,0.0000,0.0000,13.7400,0.0000,0.0000,0.0000,19.9900,0.0000,0.0000,0.0000,25.7100,0.0000,0.0000,0.0000,27.1900,0.0000 +600642.SH,0.0000,0.0000,0.0000,45.0200,0.0000,0.0000,0.0000,36.3400,0.0000,0.0000,0.0000,35.2500,0.0000,0.0000,0.0000,48.0000,0.0000,0.0000,0.0000,45.2300,0.0000 +603391.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,32.8500,0.0000,0.0000,0.0000,29.3500,0.0000,0.0000,0.0000,29.2000,0.0000,0.0000,0.0000,28.0200,0.0000 +688392.SH,0.0000,0.0000,0.0000,27.5600,0.0000,0.0000,0.0000,40.3900,0.0000,0.0000,0.0000,31.2200,0.0000,0.0000,0.0000,18.1300,0.0000,0.0000,0.0000,15.7800,0.0000 +603895.SH,0.0000,0.0000,0.0000,15.6000,0.0000,0.0000,0.0000,11.5100,0.0000,0.0000,0.0000,10.9400,0.0000,0.0000,0.0000,16.9800,0.0000,0.0000,0.0000,20.7400,0.0000 +600803.SH,0.0000,0.0000,0.0000,16.5500,0.0000,0.0000,0.0000,14.5800,0.0000,0.0000,0.0000,30.9200,0.0000,0.0000,0.0000,31.0200,0.0000,0.0000,0.0000,35.0000,0.0000 +600674.SH,0.0000,0.0000,0.0000,18.8100,0.0000,0.0000,0.0000,35.8000,0.0000,0.0000,0.0000,42.8000,0.0000,0.0000,0.0000,47.3300,0.0000,0.0000,0.0000,37.2600,0.0000 +688658.SH,0.0000,0.0000,0.0000,51.3000,0.0000,0.0000,0.0000,32.5300,0.0000,0.0000,0.0000,32.7200,0.0000,0.0000,0.0000,29.8200,0.0000,0.0000,0.0000,45.0100,0.0000 +002353.SZ,0.0000,0.0000,0.0000,19.0200,0.0000,0.0000,0.0000,18.1500,0.0000,0.0000,0.0000,16.9100,0.0000,0.0000,0.0000,12.4600,0.0000,0.0000,0.0000,14.7500,0.0000 +600113.SH,0.0000,0.0000,0.0000,31.6800,0.0000,0.0000,0.0000,35.8100,0.0000,0.0000,0.0000,22.5500,0.0000,0.0000,0.0000,10.6300,0.0000,0.0000,0.0000,9.6900,0.0000 +002179.SZ,0.0000,0.0000,0.0000,12.5200,0.0000,0.0000,0.0000,12.2900,0.0000,0.0000,0.0000,12.1200,0.0000,0.0000,0.0000,12.7300,0.0000,0.0000,0.0000,11.0800,0.0000 +688233.SH,0.0000,0.0000,0.0000,66.0900,0.0000,0.0000,0.0000,69.2400,0.0000,0.0000,0.0000,36.4400,0.0000,0.0000,0.0000,29.2300,0.0000,0.0000,0.0000,34.6200,0.0000 +300807.SZ,0.0000,0.0000,0.0000,17.1700,0.0000,0.0000,0.0000,16.6000,0.0000,0.0000,0.0000,36.3400,0.0000,0.0000,0.0000,27.0700,0.0000,0.0000,0.0000,27.7100,0.0000 +688410.SH,0.0000,0.0000,0.0000,27.7400,0.0000,0.0000,0.0000,25.5600,0.0000,23.6300,0.0000,17.5700,0.0000,0.0000,0.0000,23.3700,0.0000,0.0000,0.0000,31.6400,0.0000 +688065.SH,0.0000,0.0000,0.0000,54.0800,0.0000,0.0000,0.0000,40.7900,0.0000,0.0000,0.0000,39.6600,0.0000,0.0000,0.0000,64.7500,0.0000,0.0000,0.0000,57.5900,0.0000 +300100.SZ,0.0000,0.0000,0.0000,17.7000,0.0000,0.0000,0.0000,14.0800,0.0000,0.0000,0.0000,12.0500,0.0000,0.0000,0.0000,11.2900,0.0000,0.0000,0.0000,14.1700,0.0000 +600096.SH,0.0000,0.0000,0.0000,28.2600,0.0000,0.0000,0.0000,26.7200,0.0000,0.0000,0.0000,28.4700,0.0000,0.0000,0.0000,28.7200,0.0000,0.0000,0.0000,27.7900,0.0000 +300973.SZ,0.0000,24.9800,0.0000,24.9400,0.0000,0.0000,0.0000,25.6300,0.0000,0.0000,0.0000,21.8500,0.0000,0.0000,0.0000,23.2500,0.0000,0.0000,0.0000,26.4300,0.0000 +605108.SH,0.0000,0.0000,0.0000,11.4100,0.0000,0.0000,0.0000,6.3500,0.0000,0.0000,0.0000,5.5100,0.0000,0.0000,0.0000,6.9600,0.0000,0.0000,0.0000,7.4200,0.0000 +300408.SZ,0.0000,0.0000,0.0000,18.0700,0.0000,0.0000,0.0000,20.4200,0.0000,0.0000,0.0000,24.5800,0.0000,0.0000,0.0000,22.1700,0.0000,0.0000,0.0000,25.9700,0.0000 +601009.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +600499.SH,0.0000,0.0000,0.0000,10.2000,0.0000,0.0000,0.0000,11.2100,0.0000,0.0000,0.0000,17.7700,0.0000,0.0000,0.0000,21.0800,0.0000,0.0000,0.0000,10.6800,0.0000 +600848.SH,0.0000,0.0000,0.0000,57.6000,0.0000,0.0000,0.0000,54.6500,0.0000,0.0000,0.0000,46.0700,0.0000,0.0000,0.0000,34.4800,0.0000,0.0000,0.0000,60.2700,0.0000 +603680.SH,0.0000,0.0000,0.0000,15.9300,0.0000,0.0000,0.0000,13.1300,0.0000,0.0000,0.0000,11.5100,0.0000,0.0000,0.0000,10.2000,0.0000,0.0000,0.0000,10.0300,0.0000 +601939.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +600332.SH,0.0000,0.0000,0.0000,8.7900,0.0000,0.0000,0.0000,12.8700,0.0000,0.0000,0.0000,8.5600,0.0000,0.0000,0.0000,12.9500,0.0000,0.0000,0.0000,15.5900,0.0000 +603518.SH,0.0000,0.0000,0.0000,18.0700,0.0000,0.0000,0.0000,16.0300,0.0000,0.0000,0.0000,15.2800,0.0000,0.0000,0.0000,17.8200,0.0000,0.0000,0.0000,13.9200,0.0000 +601825.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +601238.SH,0.0000,0.0000,0.0000,24.7400,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,16.4900,0.0000,0.0000,0.0000,12.1100,0.0000,0.0000,0.0000,9.8900,0.0000 +601298.SH,0.0000,0.0000,0.0000,6.2900,0.0000,0.0000,0.0000,7.9000,0.0000,0.0000,0.0000,9.9000,0.0000,0.0000,0.0000,12.5800,0.0000,0.0000,0.0000,22.2900,0.0000 +002951.SZ,0.0000,0.0000,0.0000,62.1700,0.0000,0.0000,0.0000,59.7500,0.0000,0.0000,0.0000,61.4500,0.0000,0.0000,0.0000,77.1200,0.0000,0.0000,0.0000,62.2100,0.0000 +688702.SH,0.0000,0.0000,0.0000,74.9800,0.0000,0.0000,0.0000,79.8900,0.0000,0.0000,0.0000,83.9300,0.0000,0.0000,0.0000,93.4700,0.0000,0.0000,0.0000,92.1300,0.0000 +603067.SH,0.0000,0.0000,0.0000,44.6300,0.0000,0.0000,0.0000,36.0800,0.0000,0.0000,0.0000,29.0100,0.0000,0.0000,0.0000,30.4400,0.0000,0.0000,0.0000,36.1700,0.0000 +600551.SH,0.0000,0.0000,0.0000,20.5000,0.0000,0.0000,0.0000,22.5100,0.0000,0.0000,0.0000,35.2500,0.0000,0.0000,0.0000,39.7100,0.0000,0.0000,0.0000,57.5500,0.0000 +002394.SZ,0.0000,0.0000,0.0000,20.8900,0.0000,0.0000,0.0000,27.5900,0.0000,0.0000,0.0000,22.9100,0.0000,0.0000,0.0000,17.6900,0.0000,0.0000,0.0000,11.7600,0.0000 +000807.SZ,0.0000,0.0000,0.0000,46.4000,0.0000,0.0000,0.0000,76.3800,0.0000,0.0000,0.0000,85.3900,0.0000,0.0000,0.0000,87.9800,0.0000,0.0000,0.0000,69.3700,0.0000 +601128.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +002727.SZ,0.0000,0.0000,0.0000,36.7200,0.0000,0.0000,0.0000,35.6100,0.0000,0.0000,0.0000,36.8200,0.0000,0.0000,0.0000,29.7900,0.0000,0.0000,0.0000,31.2600,0.0000 +600603.SH,0.0000,0.0000,0.0000,39.9300,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,39.3200,0.0000,0.0000,0.0000,36.7400,0.0000,0.0000,0.0000,49.3200,0.0000 +300593.SZ,0.0000,0.0000,0.0000,21.2100,0.0000,0.0000,0.0000,22.4600,0.0000,0.0000,0.0000,18.8500,0.0000,0.0000,0.0000,25.5900,0.0000,0.0000,0.0000,14.5500,0.0000 +600861.SH,0.0000,0.0000,0.0000,16.3400,0.0000,0.0000,0.0000,19.2400,0.0000,0.0000,0.0000,26.4000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,11.2800,0.0000 +600079.SH,0.0000,0.0000,0.0000,12.0300,0.0000,0.0000,0.0000,19.1700,0.0000,0.0000,0.0000,15.5500,0.0000,0.0000,0.0000,17.1000,0.0000,0.0000,0.0000,18.6900,0.0000 +688045.SH,0.0000,0.0000,0.0000,75.3700,0.0000,0.0000,0.0000,69.2400,0.0000,0.0000,0.0000,74.6200,0.0000,0.0000,0.0000,72.3700,0.0000,0.0000,0.0000,64.4800,0.0000 +002020.SZ,0.0000,0.0000,0.0000,28.0600,0.0000,0.0000,0.0000,20.1300,0.0000,0.0000,0.0000,25.1900,0.0000,0.0000,0.0000,18.5800,0.0000,0.0000,0.0000,16.7500,0.0000 +605298.SH,0.0000,0.0000,0.0000,31.2100,0.0000,0.0000,0.0000,26.6500,0.0000,0.0000,0.0000,27.7400,0.0000,0.0000,0.0000,26.2000,0.0000,0.0000,0.0000,21.0300,0.0000 +688386.SH,0.0000,0.0000,0.0000,17.4400,0.0000,0.0000,0.0000,16.5300,0.0000,0.0000,0.0000,16.4100,0.0000,0.0000,0.0000,24.0300,0.0000,0.0000,0.0000,22.8000,0.0000 +600872.SH,0.0000,0.0000,0.0000,19.9500,0.0000,0.0000,0.0000,25.9200,0.0000,0.0000,0.0000,21.8800,0.0000,0.0000,0.0000,25.4800,0.0000,0.0000,0.0000,25.1000,0.0000 +601997.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +301186.SZ,0.0000,0.0000,0.0000,25.4100,0.0000,30.3700,0.0000,25.2800,0.0000,0.0000,0.0000,26.3800,0.0000,0.0000,0.0000,22.4000,0.0000,0.0000,0.0000,23.6600,0.0000 +002088.SZ,0.0000,0.0000,0.0000,24.1000,0.0000,0.0000,0.0000,20.1200,0.0000,0.0000,0.0000,26.5400,0.0000,0.0000,0.0000,31.1500,0.0000,0.0000,0.0000,26.1800,0.0000 +301235.SZ,0.0000,0.0000,0.0000,14.5000,0.0000,8.6000,0.0000,35.0500,0.0000,0.0000,0.0000,34.3200,0.0000,0.0000,0.0000,31.0100,0.0000,0.0000,0.0000,26.1600,0.0000 +688307.SH,0.0000,0.0000,0.0000,64.0500,0.0000,0.0000,0.0000,60.4000,0.0000,59.9100,0.0000,40.3400,0.0000,0.0000,0.0000,42.1400,0.0000,0.0000,0.0000,41.1600,0.0000 +688692.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,85.5600,0.0000,0.0000,0.0000,90.8900,0.0000,0.0000,0.0000,55.3400,0.0000,0.0000,0.0000,75.8900,0.0000 +300896.SZ,0.0000,0.0000,0.0000,73.6800,0.0000,0.0000,0.0000,72.3600,0.0000,0.0000,0.0000,80.4800,0.0000,0.0000,0.0000,76.1200,0.0000,0.0000,0.0000,69.5100,0.0000 +601127.SH,0.0000,0.0000,0.0000,18.8600,0.0000,0.0000,0.0000,12.3400,0.0000,0.0000,0.0000,31.0500,0.0000,0.0000,0.0000,33.2100,0.0000,0.0000,0.0000,52.7700,0.0000 +601528.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +688372.SH,0.0000,0.0000,0.0000,55.0700,0.0000,0.0000,0.0000,49.8300,0.0000,0.0000,0.0000,69.4600,0.0000,0.0000,0.0000,75.2500,0.0000,0.0000,0.0000,65.9700,0.0000 +600887.SH,0.0000,0.0000,0.0000,25.4600,0.0000,0.0000,0.0000,26.5300,0.0000,0.0000,0.0000,26.5100,0.0000,0.0000,0.0000,29.5500,0.0000,0.0000,0.0000,40.0300,0.0000 +000651.SZ,0.0000,0.0000,0.0000,32.2800,0.0000,0.0000,0.0000,35.0700,0.0000,0.0000,0.0000,24.4300,0.0000,0.0000,0.0000,28.1500,0.0000,0.0000,0.0000,25.9400,0.0000 +600276.SH,0.0000,0.0000,0.0000,26.2100,0.0000,0.0000,0.0000,28.6600,0.0000,0.0000,0.0000,25.7800,0.0000,0.0000,0.0000,29.2000,0.0000,0.0000,0.0000,27.9600,0.0000 +603637.SH,0.0000,0.0000,0.0000,37.5200,0.0000,0.0000,0.0000,44.1400,0.0000,0.0000,0.0000,61.2900,0.0000,0.0000,0.0000,45.4400,0.0000,0.0000,0.0000,28.7200,0.0000 +605376.SH,0.0000,0.0000,0.0000,61.2100,0.0000,0.0000,0.0000,58.4700,0.0000,0.0000,0.0000,73.7600,0.0000,0.0000,0.0000,72.9500,0.0000,0.0000,0.0000,77.3100,0.0000 +603809.SH,0.0000,0.0000,0.0000,51.3600,0.0000,0.0000,0.0000,31.2800,0.0000,0.0000,0.0000,28.9700,0.0000,0.0000,0.0000,30.5400,0.0000,0.0000,0.0000,27.9300,0.0000 +600660.SH,0.0000,0.0000,0.0000,12.7100,0.0000,0.0000,0.0000,13.9500,0.0000,0.0000,0.0000,16.8400,0.0000,0.0000,0.0000,16.2300,0.0000,0.0000,0.0000,14.3500,0.0000 +300175.SZ,0.0000,0.0000,0.0000,15.2900,0.0000,0.0000,0.0000,19.3200,0.0000,0.0000,0.0000,20.8400,0.0000,0.0000,0.0000,24.8400,0.0000,0.0000,0.0000,28.4700,0.0000 +603091.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,52.3300,0.0000,0.0000,0.0000,52.3700,0.0000,0.0000,0.0000,48.0800,0.0000,0.0000,0.0000,53.2600,0.0000 +601158.SH,0.0000,0.0000,0.0000,18.8700,0.0000,0.0000,0.0000,20.8400,0.0000,0.0000,0.0000,39.5100,0.0000,0.0000,0.0000,33.5500,0.0000,0.0000,0.0000,37.1300,0.0000 +688010.SH,0.0000,0.0000,0.0000,26.5100,0.0000,0.0000,0.0000,30.0500,0.0000,0.0000,0.0000,33.6800,0.0000,0.0000,0.0000,32.5400,0.0000,0.0000,0.0000,26.5500,0.0000 +600741.SH,0.0000,0.0000,0.0000,8.5500,0.0000,0.0000,0.0000,7.5900,0.0000,0.0000,0.0000,7.6500,0.0000,0.0000,0.0000,8.7800,0.0000,0.0000,0.0000,7.8400,0.0000 +002818.SZ,0.0000,0.0000,0.0000,36.5200,0.0000,0.0000,0.0000,44.2200,0.0000,0.0000,0.0000,52.6700,0.0000,0.0000,0.0000,31.4900,0.0000,0.0000,0.0000,48.3400,0.0000 +600035.SH,0.0000,0.0000,0.0000,38.2400,0.0000,0.0000,0.0000,24.5800,0.0000,0.0000,0.0000,26.7700,0.0000,0.0000,0.0000,33.4200,0.0000,0.0000,0.0000,21.2200,0.0000 +688656.SH,0.0000,0.0000,0.0000,54.5900,0.0000,0.0000,0.0000,68.4600,0.0000,0.0000,0.0000,59.6600,0.0000,0.0000,0.0000,39.1200,0.0000,0.0000,0.0000,55.4300,0.0000 +002839.SZ,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +000933.SZ,0.0000,0.0000,0.0000,30.7700,0.0000,0.0000,0.0000,26.8800,0.0000,0.0000,0.0000,42.3900,0.0000,0.0000,0.0000,35.4800,0.0000,0.0000,0.0000,44.2100,0.0000 +300989.SZ,0.0000,0.0000,0.0000,12.9300,0.0000,0.0000,0.0000,12.9900,0.0000,0.0000,0.0000,13.2400,0.0000,0.0000,0.0000,10.9900,0.0000,0.0000,0.0000,14.5400,0.0000 +600048.SH,0.0000,0.0000,0.0000,10.9300,0.0000,0.0000,0.0000,10.3100,0.0000,0.0000,0.0000,4.9900,0.0000,0.0000,0.0000,5.7200,0.0000,0.0000,0.0000,3.7400,0.0000 +688176.SH,0.0000,0.0000,0.0000,60.0400,0.0000,50.7400,0.0000,43.7800,0.0000,0.0000,0.0000,54.5500,0.0000,0.0000,0.0000,38.2200,0.0000,0.0000,0.0000,26.2000,0.0000 +688520.SH,0.0000,0.0000,0.0000,36.2700,0.0000,0.0000,0.0000,36.4200,0.0000,0.0000,0.0000,27.1100,0.0000,0.0000,0.0000,18.7800,0.0000,0.0000,0.0000,15.6700,0.0000 +600016.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +600585.SH,0.0000,0.0000,0.0000,35.3600,0.0000,0.0000,0.0000,35.5000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +688220.SH,0.0000,0.0000,0.0000,80.4200,0.0000,79.2300,0.0000,68.8500,0.0000,0.0000,0.0000,74.3800,0.0000,0.0000,0.0000,79.5000,0.0000,0.0000,0.0000,77.5800,0.0000 +603699.SH,0.0000,0.0000,0.0000,13.9600,0.0000,0.0000,0.0000,14.9200,0.0000,0.0000,0.0000,15.5900,0.0000,0.0000,0.0000,15.0200,0.0000,0.0000,0.0000,13.3300,0.0000 +601818.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +603363.SH,0.0000,0.0000,0.0000,16.7800,0.0000,0.0000,0.0000,16.6900,0.0000,0.0000,0.0000,14.5000,0.0000,0.0000,0.0000,11.8400,0.0000,0.0000,0.0000,13.4900,0.0000 +600605.SH,0.0000,0.0000,0.0000,98.2700,0.0000,0.0000,0.0000,89.6000,0.0000,0.0000,0.0000,59.7300,0.0000,0.0000,0.0000,45.3200,0.0000,0.0000,0.0000,38.3400,0.0000 +601607.SH,0.0000,0.0000,0.0000,8.2400,0.0000,0.0000,0.0000,5.3300,0.0000,0.0000,0.0000,8.3400,0.0000,0.0000,0.0000,10.4200,0.0000,0.0000,0.0000,10.2600,0.0000 +600928.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +688062.SH,0.0000,0.0000,0.0000,45.4700,0.0000,43.1500,0.0000,28.3700,0.0000,0.0000,0.0000,34.6600,0.0000,0.0000,0.0000,22.5700,0.0000,0.0000,0.0000,25.2900,0.0000 +002778.SZ,0.0000,0.0000,0.0000,43.3700,0.0000,0.0000,0.0000,28.5000,0.0000,0.0000,0.0000,24.1500,0.0000,0.0000,0.0000,25.3200,0.0000,0.0000,0.0000,30.1400,0.0000 +600331.SH,0.0000,0.0000,0.0000,29.5400,0.0000,0.0000,0.0000,21.6500,0.0000,0.0000,0.0000,21.0700,0.0000,0.0000,0.0000,20.0100,0.0000,0.0000,0.0000,26.9300,0.0000 +600066.SH,0.0000,0.0000,0.0000,26.7900,0.0000,0.0000,0.0000,21.6400,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,22.6700,0.0000,0.0000,0.0000,20.9700,0.0000 +300832.SZ,0.0000,0.0000,0.0000,25.7700,0.0000,0.0000,0.0000,26.9400,0.0000,0.0000,0.0000,26.3700,0.0000,0.0000,0.0000,24.6900,0.0000,0.0000,0.0000,24.5400,0.0000 +688613.SH,0.0000,0.0000,0.0000,97.2000,0.0000,0.0000,0.0000,81.3800,0.0000,0.0000,0.0000,83.6000,0.0000,0.0000,0.0000,74.5500,0.0000,0.0000,0.0000,71.3400,0.0000 +603119.SH,0.0000,0.0000,0.0000,44.6600,0.0000,0.0000,0.0000,35.2900,0.0000,0.0000,0.0000,40.0700,0.0000,0.0000,0.0000,30.6400,0.0000,0.0000,0.0000,27.6100,0.0000 +600360.SH,0.0000,0.0000,0.0000,59.5500,0.0000,0.0000,0.0000,56.0500,0.0000,0.0000,0.0000,50.6800,0.0000,0.0000,0.0000,42.9100,0.0000,0.0000,0.0000,39.4200,0.0000 +300910.SZ,0.0000,0.0000,0.0000,29.9700,0.0000,0.0000,0.0000,24.7900,0.0000,0.0000,0.0000,24.8100,0.0000,0.0000,0.0000,30.9600,0.0000,0.0000,0.0000,34.6400,0.0000 +300740.SZ,0.0000,0.0000,0.0000,51.2300,0.0000,0.0000,0.0000,65.6900,0.0000,0.0000,0.0000,73.4300,0.0000,0.0000,0.0000,68.3500,0.0000,0.0000,0.0000,69.3600,0.0000 +600228.SH,0.0000,0.0000,0.0000,89.1000,0.0000,0.0000,0.0000,50.8500,0.0000,0.0000,0.0000,26.0400,0.0000,0.0000,0.0000,31.4200,0.0000,0.0000,0.0000,33.0200,0.0000 +603288.SH,0.0000,0.0000,0.0000,21.5200,0.0000,0.0000,0.0000,20.5400,0.0000,0.0000,0.0000,23.7500,0.0000,0.0000,0.0000,17.2800,0.0000,0.0000,0.0000,19.4400,0.0000 +000703.SZ,0.0000,0.0000,0.0000,31.0900,0.0000,0.0000,0.0000,24.7300,0.0000,0.0000,0.0000,29.8800,0.0000,0.0000,0.0000,37.3200,0.0000,0.0000,0.0000,38.9400,0.0000 +601916.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +301029.SZ,0.0000,0.0000,0.0000,16.5500,0.0000,0.0000,0.0000,17.3100,0.0000,0.0000,0.0000,16.0900,0.0000,0.0000,0.0000,13.6000,0.0000,0.0000,0.0000,12.2300,0.0000 +603889.SH,0.0000,0.0000,0.0000,38.6200,0.0000,0.0000,0.0000,31.1100,0.0000,0.0000,0.0000,29.9400,0.0000,0.0000,0.0000,29.3300,0.0000,0.0000,0.0000,35.1900,0.0000 +688150.SH,0.0000,0.0000,0.0000,44.8000,0.0000,55.1900,0.0000,56.9300,0.0000,0.0000,0.0000,50.6700,0.0000,0.0000,0.0000,43.7900,0.0000,0.0000,0.0000,47.9000,0.0000 +600926.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +600028.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +920106.BJ,0.0000,0.0000,0.0000,65.2200,0.0000,0.0000,0.0000,76.5700,0.0000,0.0000,0.0000,59.7600,0.0000,0.0000,0.0000,52.4400,0.0000,62.4900,0.0000,62.6300,0.0000 +002739.SZ,0.0000,0.0000,0.0000,19.2100,0.0000,0.0000,0.0000,29.0800,0.0000,0.0000,0.0000,25.1000,0.0000,0.0000,0.0000,35.9300,0.0000,0.0000,0.0000,41.8900,0.0000 +688326.SH,0.0000,0.0000,0.0000,36.5600,0.0000,32.3800,0.0000,0.0000,0.0000,0.0000,0.0000,24.6200,0.0000,0.0000,0.0000,34.2200,0.0000,0.0000,0.0000,23.1000,0.0000 +688550.SH,0.0000,0.0000,0.0000,34.3100,0.0000,0.0000,0.0000,36.8000,0.0000,0.0000,0.0000,35.7900,0.0000,0.0000,0.0000,34.2800,0.0000,0.0000,0.0000,26.1100,0.0000 +300861.SZ,0.0000,0.0000,0.0000,35.3000,0.0000,0.0000,0.0000,56.7800,0.0000,0.0000,0.0000,54.0200,0.0000,0.0000,0.0000,60.9100,0.0000,0.0000,0.0000,54.7700,0.0000 +603786.SH,0.0000,0.0000,0.0000,37.2500,0.0000,0.0000,0.0000,38.6400,0.0000,0.0000,0.0000,36.0000,0.0000,0.0000,0.0000,33.0000,0.0000,0.0000,0.0000,36.0000,0.0000 +002287.SZ,0.0000,0.0000,0.0000,45.2400,0.0000,0.0000,0.0000,48.3500,0.0000,0.0000,0.0000,45.2900,0.0000,0.0000,0.0000,36.4200,0.0000,0.0000,0.0000,32.7400,0.0000 +688081.SH,0.0000,0.0000,0.0000,43.2000,0.0000,0.0000,0.0000,53.2900,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,36.1700,0.0000,0.0000,0.0000,29.0900,0.0000 +002214.SZ,0.0000,0.0000,0.0000,35.5400,0.0000,0.0000,0.0000,31.2400,0.0000,0.0000,0.0000,35.3400,0.0000,0.0000,0.0000,20.9500,0.0000,0.0000,0.0000,22.1400,0.0000 +600305.SH,0.0000,0.0000,0.0000,19.3100,0.0000,0.0000,0.0000,20.1200,0.0000,0.0000,0.0000,29.2200,0.0000,0.0000,0.0000,35.0100,0.0000,0.0000,0.0000,31.1100,0.0000 +000701.SZ,0.0000,0.0000,0.0000,21.2100,0.0000,0.0000,0.0000,20.1700,0.0000,0.0000,0.0000,22.8600,0.0000,0.0000,0.0000,20.6800,0.0000,0.0000,0.0000,17.7000,0.0000 +601857.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +300662.SZ,0.0000,0.0000,0.0000,9.7600,0.0000,0.0000,0.0000,20.5200,0.0000,0.0000,0.0000,26.4200,0.0000,0.0000,0.0000,21.6700,0.0000,0.0000,0.0000,25.8200,0.0000 +003008.SZ,0.0000,0.0000,0.0000,68.3300,0.0000,0.0000,0.0000,45.4500,0.0000,0.0000,0.0000,54.2400,0.0000,0.0000,0.0000,53.9000,0.0000,0.0000,0.0000,46.3900,0.0000 +601229.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +688363.SH,0.0000,0.0000,0.0000,17.1700,0.0000,0.0000,0.0000,18.9900,0.0000,0.0000,0.0000,25.4500,0.0000,0.0000,0.0000,22.2600,0.0000,0.0000,0.0000,17.4300,0.0000 +002538.SZ,0.0000,0.0000,0.0000,19.6900,0.0000,0.0000,0.0000,30.1300,0.0000,0.0000,0.0000,30.2200,0.0000,0.0000,0.0000,30.4000,0.0000,0.0000,0.0000,37.8800,0.0000 +600269.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +000423.SZ,0.0000,0.0000,0.0000,20.7300,0.0000,0.0000,0.0000,25.7300,0.0000,0.0000,0.0000,30.1300,0.0000,0.0000,0.0000,29.1900,0.0000,0.0000,0.0000,30.0200,0.0000 +605151.SH,0.0000,0.0000,0.0000,23.5200,0.0000,0.0000,0.0000,26.8200,0.0000,0.0000,0.0000,21.4800,0.0000,0.0000,0.0000,18.5900,0.0000,0.0000,0.0000,13.8700,0.0000 +600529.SH,0.0000,0.0000,0.0000,19.5900,0.0000,0.0000,0.0000,22.0800,0.0000,0.0000,0.0000,30.5200,0.0000,0.0000,0.0000,30.5400,0.0000,0.0000,0.0000,25.4600,0.0000 +601838.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +688480.SH,0.0000,0.0000,0.0000,26.8500,0.0000,0.0000,0.0000,18.7600,0.0000,27.5000,0.0000,19.7700,0.0000,0.0000,0.0000,22.1600,0.0000,0.0000,0.0000,16.0300,0.0000 +000893.SZ,0.0000,0.0000,0.0000,92.7100,0.0000,0.0000,0.0000,38.8900,0.0000,0.0000,0.0000,21.0900,0.0000,0.0000,0.0000,27.6700,0.0000,0.0000,0.0000,21.8100,0.0000 +000598.SZ,0.0000,0.0000,0.0000,34.3700,0.0000,0.0000,0.0000,31.4000,0.0000,0.0000,0.0000,31.3900,0.0000,0.0000,0.0000,35.7400,0.0000,0.0000,0.0000,29.1400,0.0000 +601398.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +002948.SZ,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +300119.SZ,0.0000,0.0000,0.0000,15.6000,0.0000,0.0000,0.0000,14.8300,0.0000,0.0000,0.0000,18.5900,0.0000,0.0000,0.0000,16.1800,0.0000,0.0000,0.0000,30.1400,0.0000 +002033.SZ,0.0000,0.0000,0.0000,6.5300,0.0000,0.0000,0.0000,8.6100,0.0000,0.0000,0.0000,16.3700,0.0000,0.0000,0.0000,6.9400,0.0000,0.0000,0.0000,5.5200,0.0000 +603009.SH,0.0000,0.0000,0.0000,40.8700,0.0000,0.0000,0.0000,52.1100,0.0000,0.0000,0.0000,40.6700,0.0000,0.0000,0.0000,40.0600,0.0000,0.0000,0.0000,31.2800,0.0000 +000963.SZ,0.0000,0.0000,0.0000,10.6600,0.0000,0.0000,0.0000,12.0900,0.0000,0.0000,0.0000,11.8700,0.0000,0.0000,0.0000,13.6400,0.0000,0.0000,0.0000,15.7400,0.0000 +600273.SH,0.0000,0.0000,0.0000,48.5700,0.0000,0.0000,0.0000,48.1600,0.0000,0.0000,0.0000,52.4500,0.0000,0.0000,0.0000,36.7200,0.0000,0.0000,0.0000,35.8500,0.0000 +603392.SH,0.0000,0.0000,0.0000,18.0800,0.0000,0.0000,0.0000,20.5900,0.0000,0.0000,0.0000,22.3700,0.0000,0.0000,0.0000,15.6900,0.0000,0.0000,0.0000,17.3900,0.0000 +001313.SZ,0.0000,0.0000,0.0000,11.4000,0.0000,16.0500,0.0000,11.4000,0.0000,0.0000,0.0000,14.6300,0.0000,0.0000,0.0000,13.7500,0.0000,0.0000,0.0000,16.3200,0.0000 +002310.SZ,0.0000,0.0000,0.0000,7.8600,0.0000,0.0000,0.0000,6.4800,0.0000,0.0000,0.0000,5.0200,0.0000,0.0000,0.0000,6.2000,0.0000,0.0000,0.0000,19.5400,0.0000 +600938.SH,0.0000,0.0000,0.0000,59.0500,0.0000,51.7400,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +301080.SZ,0.0000,0.0000,0.0000,30.8900,0.0000,0.0000,0.0000,12.7000,0.0000,0.0000,0.0000,15.4200,0.0000,0.0000,0.0000,32.2400,0.0000,0.0000,0.0000,24.4100,0.0000 +002850.SZ,0.0000,0.0000,0.0000,47.8300,0.0000,0.0000,0.0000,51.6800,0.0000,0.0000,0.0000,47.3100,0.0000,0.0000,0.0000,43.9800,0.0000,0.0000,0.0000,47.1600,0.0000 +688278.SH,0.0000,0.0000,0.0000,4.9000,0.0000,0.0000,0.0000,3.9600,0.0000,0.0000,0.0000,2.9600,0.0000,0.0000,0.0000,8.6600,0.0000,0.0000,0.0000,6.3800,0.0000 +301220.SZ,0.0000,0.0000,0.0000,28.1700,0.0000,0.0000,0.0000,23.5300,0.0000,0.0000,0.0000,33.3400,0.0000,0.0000,0.0000,35.2200,0.0000,0.0000,0.0000,12.9000,0.0000 +003010.SZ,0.0000,0.0000,0.0000,67.7800,0.0000,0.0000,0.0000,67.5300,0.0000,0.0000,0.0000,70.9900,0.0000,57.1700,0.0000,52.6400,0.0000,56.5700,0.0000,52.8900,0.0000 +603267.SH,0.0000,0.0000,0.0000,84.9200,0.0000,0.0000,0.0000,77.6000,0.0000,0.0000,0.0000,77.5400,0.0000,0.0000,0.0000,75.2500,0.0000,0.0000,0.0000,71.0000,0.0000 +605507.SH,0.0000,0.0000,0.0000,47.4400,0.0000,0.0000,0.0000,48.9600,0.0000,0.0000,0.0000,51.4600,0.0000,0.0000,0.0000,50.9300,0.0000,0.0000,0.0000,45.5700,0.0000 +688593.SH,0.0000,0.0000,0.0000,81.1600,0.0000,0.0000,0.0000,90.9500,0.0000,0.0000,0.0000,96.1200,0.0000,0.0000,0.0000,91.1000,0.0000,0.0000,0.0000,75.7400,0.0000 +601101.SH,0.0000,0.0000,0.0000,28.7500,0.0000,0.0000,0.0000,22.3900,0.0000,0.0000,0.0000,41.0700,0.0000,0.0000,0.0000,20.5400,0.0000,0.0000,0.0000,10.9600,0.0000 +603159.SH,0.0000,0.0000,0.0000,20.6500,0.0000,0.0000,0.0000,18.8200,0.0000,0.0000,0.0000,20.2100,0.0000,0.0000,0.0000,20.2500,0.0000,0.0000,0.0000,17.6700,0.0000 +601577.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +603225.SH,0.0000,0.0000,0.0000,30.5900,0.0000,0.0000,0.0000,34.5800,0.0000,0.0000,0.0000,49.8700,0.0000,0.0000,0.0000,44.4300,0.0000,0.0000,0.0000,41.2300,0.0000 +688213.SH,0.0000,0.0000,0.0000,92.1100,0.0000,0.0000,85.8900,0.0000,0.0000,0.0000,0.0000,86.9900,0.0000,0.0000,0.0000,81.3100,0.0000,0.0000,0.0000,89.3300,0.0000 +300791.SZ,0.0000,0.0000,0.0000,14.7400,0.0000,0.0000,0.0000,14.9800,0.0000,0.0000,0.0000,15.5500,0.0000,0.0000,0.0000,12.4000,0.0000,0.0000,0.0000,13.7100,0.0000 +002956.SZ,0.0000,0.0000,0.0000,56.7000,0.0000,0.0000,0.0000,46.8700,0.0000,0.0000,0.0000,52.8700,0.0000,0.0000,0.0000,43.4900,0.0000,0.0000,0.0000,42.2400,0.0000 +002001.SZ,0.0000,0.0000,0.0000,10.8000,0.0000,0.0000,0.0000,11.4700,0.0000,0.0000,0.0000,9.8100,0.0000,0.0000,0.0000,13.8600,0.0000,0.0000,0.0000,16.6500,0.0000 +688180.SH,0.0000,0.0000,0.0000,34.4500,0.0000,0.0000,0.0000,46.5100,0.0000,0.0000,0.0000,24.8900,0.0000,0.0000,0.0000,27.3500,0.0000,0.0000,0.0000,18.7600,0.0000 +003019.SZ,0.0000,0.0000,0.0000,47.4500,0.0000,0.0000,0.0000,39.1200,0.0000,0.0000,0.0000,40.5200,0.0000,0.0000,0.0000,37.8900,0.0000,0.0000,0.0000,35.1900,0.0000 +003000.SZ,0.0000,0.0000,0.0000,57.6700,0.0000,0.0000,0.0000,37.3400,0.0000,0.0000,0.0000,39.7100,0.0000,0.0000,0.0000,34.6200,0.0000,0.0000,0.0000,33.1900,0.0000 +002861.SZ,0.0000,0.0000,0.0000,29.0000,0.0000,0.0000,0.0000,31.8900,0.0000,0.0000,0.0000,31.4100,0.0000,0.0000,0.0000,35.2500,0.0000,0.0000,0.0000,23.9800,0.0000 +000972.SZ,0.0000,0.0000,0.0000,94.3400,0.0000,0.0000,0.0000,28.2300,0.0000,0.0000,0.0000,36.4600,0.0000,0.0000,0.0000,16.0000,0.0000,0.0000,0.0000,15.0000,0.0000 +600025.SH,0.0000,0.0000,0.0000,63.2100,0.0000,0.0000,0.0000,18.9600,0.0000,0.0000,0.0000,68.2900,0.0000,0.0000,0.0000,70.1100,0.0000,0.0000,0.0000,61.2300,0.0000 +605003.SH,0.0000,0.0000,0.0000,31.2900,0.0000,0.0000,0.0000,35.3100,0.0000,0.0000,0.0000,29.9400,0.0000,0.0000,0.0000,35.9000,0.0000,0.0000,0.0000,30.2000,0.0000 +300715.SZ,0.0000,0.0000,0.0000,25.4200,0.0000,0.0000,0.0000,29.0300,0.0000,0.0000,0.0000,29.0400,0.0000,0.0000,0.0000,26.2200,0.0000,0.0000,0.0000,36.9400,0.0000 +000638.SZ,0.0000,0.0000,0.0000,28.7900,0.0000,0.0000,0.0000,13.8900,0.0000,0.0000,0.0000,35.0500,0.0000,0.0000,0.0000,69.5200,0.0000,0.0000,0.0000,20.5300,0.0000 +000869.SZ,0.0000,0.0000,0.0000,25.5700,0.0000,0.0000,0.0000,24.0800,0.0000,0.0000,0.0000,25.9900,0.0000,0.0000,0.0000,27.7300,0.0000,0.0000,0.0000,28.7400,0.0000 +601166.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +600820.SH,0.0000,0.0000,0.0000,9.9400,0.0000,0.0000,0.0000,13.2400,0.0000,0.0000,0.0000,14.3100,0.0000,0.0000,0.0000,15.2200,0.0000,0.0000,0.0000,14.0300,0.0000 +000888.SZ,0.0000,0.0000,0.0000,5.7400,0.0000,0.0000,0.0000,4.7500,0.0000,0.0000,0.0000,7.6000,0.0000,0.0000,0.0000,5.9600,0.0000,0.0000,0.0000,4.2800,0.0000 +603326.SH,0.0000,0.0000,0.0000,21.7200,0.0000,0.0000,0.0000,27.0000,0.0000,0.0000,0.0000,36.2000,0.0000,0.0000,0.0000,26.0900,0.0000,0.0000,0.0000,25.5300,0.0000 +600939.SH,0.0000,0.0000,0.0000,4.6300,0.0000,0.0000,0.0000,4.6700,0.0000,0.0000,0.0000,3.7200,0.0000,0.0000,0.0000,5.0300,0.0000,0.0000,0.0000,5.4100,0.0000 +601816.SH,0.0000,0.0000,0.0000,99.8300,0.0000,0.0000,0.0000,98.4900,0.0000,0.0000,0.0000,70.7900,0.0000,0.0000,0.0000,75.0100,0.0000,0.0000,0.0000,75.8900,0.0000 +300466.SZ,0.0000,0.0000,0.0000,9.2900,0.0000,0.0000,0.0000,15.1000,0.0000,0.0000,0.0000,8.4300,0.0000,0.0000,0.0000,17.5500,0.0000,0.0000,0.0000,12.8800,0.0000 +601988.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +688002.SH,0.0000,0.0000,0.0000,28.4900,0.0000,0.0000,0.0000,31.5300,0.0000,0.0000,0.0000,31.5200,0.0000,0.0000,0.0000,25.0400,0.0000,0.0000,0.0000,25.8100,0.0000 +688075.SH,0.0000,0.0000,0.0000,51.2600,0.0000,45.5400,0.0000,43.6300,0.0000,0.0000,0.0000,30.7100,0.0000,0.0000,0.0000,27.1500,0.0000,0.0000,0.0000,25.2500,0.0000 +002675.SZ,0.0000,0.0000,0.0000,70.9500,0.0000,0.0000,0.0000,55.3300,0.0000,0.0000,0.0000,38.9000,0.0000,0.0000,0.0000,44.3600,0.0000,0.0000,0.0000,31.2900,0.0000 +601288.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +301392.SZ,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,40.5800,0.0000,0.0000,0.0000,29.3400,0.0000,0.0000,0.0000,32.1200,0.0000,0.0000,0.0000,40.8700,0.0000 +688188.SH,0.0000,0.0000,0.0000,37.9700,0.0000,0.0000,0.0000,31.5200,0.0000,0.0000,0.0000,46.5800,0.0000,0.0000,0.0000,36.7100,0.0000,0.0000,0.0000,28.9400,0.0000 +688617.SH,0.0000,0.0000,0.0000,59.1200,0.0000,0.0000,0.0000,53.4900,0.0000,0.0000,0.0000,34.6500,0.0000,0.0000,0.0000,25.2400,0.0000,0.0000,0.0000,28.0700,0.0000 +600595.SH,0.0000,0.0000,0.0000,43.3900,0.0000,0.0000,0.0000,35.7900,0.0000,0.0000,0.0000,33.0600,0.0000,0.0000,0.0000,45.4200,0.0000,0.0000,0.0000,48.4800,0.0000 +600968.SH,0.0000,0.0000,0.0000,29.5000,0.0000,0.0000,0.0000,36.5000,0.0000,0.0000,0.0000,42.1400,0.0000,0.0000,0.0000,38.1200,0.0000,0.0000,0.0000,38.7700,0.0000 +600418.SH,0.0000,0.0000,0.0000,17.1100,0.0000,0.0000,0.0000,16.9400,0.0000,0.0000,0.0000,16.7400,0.0000,0.0000,0.0000,13.3900,0.0000,0.0000,0.0000,14.1700,0.0000 +603939.SH,0.0000,0.0000,0.0000,37.6100,0.0000,0.0000,0.0000,39.1300,0.0000,0.0000,0.0000,43.7400,0.0000,0.0000,0.0000,43.1200,0.0000,0.0000,0.0000,45.2300,0.0000 +000793.SZ,0.0000,0.0000,0.0000,36.2000,0.0000,0.0000,0.0000,57.0300,0.0000,0.0000,0.0000,67.0300,0.0000,0.0000,0.0000,56.4300,0.0000,0.0000,0.0000,69.5200,0.0000 +000968.SZ,0.0000,0.0000,0.0000,39.4800,0.0000,0.0000,0.0000,27.8900,0.0000,0.0000,0.0000,18.1200,0.0000,0.0000,0.0000,21.7000,0.0000,0.0000,0.0000,32.0900,0.0000 +601328.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +002299.SZ,0.0000,0.0000,0.0000,49.5300,0.0000,0.0000,0.0000,35.6900,0.0000,0.0000,0.0000,30.0200,0.0000,0.0000,0.0000,29.5600,0.0000,0.0000,0.0000,24.3400,0.0000 +601169.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +688235.SH,0.0000,0.0000,0.0000,45.3100,0.0000,32.9600,0.0000,29.3700,0.0000,0.0000,0.0000,23.9000,0.0000,0.0000,0.0000,26.4500,0.0000,0.0000,0.0000,30.1100,0.0000 +002736.SZ,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +000538.SZ,0.0000,0.0000,0.0000,10.0700,0.0000,0.0000,0.0000,9.9900,0.0000,0.0000,0.0000,9.2000,0.0000,0.0000,0.0000,8.2500,0.0000,0.0000,0.0000,7.3000,0.0000 +600415.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +600055.SH,0.0000,0.0000,0.0000,36.7600,0.0000,0.0000,0.0000,36.1300,0.0000,0.0000,0.0000,31.4400,0.0000,0.0000,0.0000,29.2700,0.0000,0.0000,0.0000,31.3900,0.0000 +600509.SH,0.0000,0.0000,0.0000,30.1300,0.0000,0.0000,0.0000,39.6300,0.0000,0.0000,0.0000,37.3600,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,32.9500,0.0000 +000895.SZ,0.0000,0.0000,0.0000,25.2100,0.0000,0.0000,0.0000,21.5500,0.0000,0.0000,0.0000,20.1500,0.0000,0.0000,0.0000,20.0100,0.0000,0.0000,0.0000,25.1500,0.0000 +300723.SZ,0.0000,0.0000,0.0000,51.4200,0.0000,0.0000,0.0000,50.3600,0.0000,0.0000,0.0000,45.4000,0.0000,0.0000,0.0000,45.5300,0.0000,0.0000,0.0000,39.5300,0.0000 +002028.SZ,0.0000,0.0000,0.0000,6.2700,0.0000,0.0000,0.0000,7.1900,0.0000,0.0000,0.0000,8.3300,0.0000,0.0000,0.0000,6.5500,0.0000,0.0000,0.0000,11.6400,0.0000 +600649.SH,0.0000,0.0000,0.0000,59.8000,0.0000,0.0000,0.0000,82.6200,0.0000,0.0000,0.0000,62.8800,0.0000,0.0000,0.0000,65.1000,0.0000,0.0000,0.0000,83.3700,0.0000 +301002.SZ,0.0000,0.0000,0.0000,20.5900,0.0000,0.0000,0.0000,20.2500,0.0000,0.0000,0.0000,20.5100,0.0000,0.0000,0.0000,22.7200,0.0000,0.0000,0.0000,19.0500,0.0000 +601811.SH,0.0000,0.0000,0.0000,12.3300,0.0000,0.0000,0.0000,16.3700,0.0000,0.0000,0.0000,14.2200,0.0000,0.0000,0.0000,15.2500,0.0000,0.0000,0.0000,15.9800,0.0000 +301160.SZ,0.0000,0.0000,0.0000,74.0400,0.0000,0.0000,0.0000,78.4600,0.0000,0.0000,0.0000,79.7200,0.0000,0.0000,0.0000,80.9900,0.0000,0.0000,0.0000,81.9600,0.0000 +600708.SH,0.0000,0.0000,0.0000,19.5700,0.0000,0.0000,0.0000,16.1200,0.0000,0.0000,0.0000,18.4200,0.0000,0.0000,0.0000,32.3400,0.0000,0.0000,0.0000,27.9100,0.0000 +002627.SZ,0.0000,0.0000,0.0000,77.6300,0.0000,0.0000,0.0000,71.4300,0.0000,0.0000,0.0000,73.3100,0.0000,0.0000,0.0000,65.7400,0.0000,0.0000,0.0000,13.2400,0.0000 +600793.SH,0.0000,0.0000,0.0000,43.2300,0.0000,0.0000,0.0000,31.9600,0.0000,0.0000,0.0000,42.0300,0.0000,0.0000,0.0000,48.2300,0.0000,0.0000,0.0000,33.9500,0.0000 +001965.SZ,0.0000,0.0000,0.0000,18.9800,0.0000,0.0000,0.0000,4.3100,0.0000,0.0000,0.0000,7.2200,0.0000,0.0000,0.0000,4.1400,0.0000,0.0000,0.0000,84.0000,0.0000 +002807.SZ,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +603605.SH,0.0000,0.0000,0.0000,19.6500,0.0000,0.0000,0.0000,23.2500,0.0000,0.0000,0.0000,20.5700,0.0000,0.0000,0.0000,22.3100,0.0000,0.0000,0.0000,24.0500,0.0000 +002958.SZ,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +600015.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +601116.SH,0.0000,0.0000,0.0000,10.5000,0.0000,0.0000,0.0000,9.1600,0.0000,0.0000,0.0000,8.9200,0.0000,0.0000,0.0000,9.5700,0.0000,0.0000,0.0000,10.3100,0.0000 +601998.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +601098.SH,0.0000,0.0000,0.0000,13.4200,0.0000,0.0000,0.0000,12.8700,0.0000,0.0000,0.0000,15.0500,0.0000,0.0000,0.0000,12.7000,0.0000,0.0000,0.0000,12.2400,0.0000 +601898.SH,0.0000,0.0000,0.0000,9.5000,0.0000,0.0000,0.0000,13.2000,0.0000,0.0000,0.0000,12.4000,0.0000,0.0000,0.0000,11.9000,0.0000,0.0000,0.0000,15.2000,0.0000 +600886.SH,0.0000,0.0000,0.0000,40.7500,0.0000,0.0000,0.0000,38.0800,0.0000,0.0000,0.0000,22.0500,0.0000,0.0000,0.0000,35.9700,0.0000,0.0000,0.0000,28.7100,0.0000 +605377.SH,0.0000,0.0000,0.0000,61.2100,0.0000,0.0000,0.0000,81.1700,0.0000,0.0000,0.0000,79.3500,0.0000,0.0000,0.0000,67.8800,0.0000,0.0000,0.0000,75.8800,0.0000 +688198.SH,0.0000,0.0000,0.0000,56.4400,0.0000,0.0000,0.0000,45.3600,0.0000,0.0000,0.0000,56.0300,0.0000,0.0000,0.0000,45.4700,0.0000,0.0000,0.0000,50.3900,0.0000 +600060.SH,0.0000,0.0000,0.0000,39.0900,0.0000,0.0000,0.0000,45.7200,0.0000,0.0000,0.0000,44.4600,0.0000,0.0000,0.0000,53.3900,0.0000,0.0000,0.0000,57.4800,0.0000 +832982.BJ,0.0000,0.0000,0.0000,41.6100,0.0000,0.0000,0.0000,35.0700,0.0000,50.3300,0.0000,49.2000,0.0000,0.0000,0.0000,35.5800,0.0000,0.0000,0.0000,34.1700,0.0000 +000733.SZ,0.0000,0.0000,0.0000,21.2300,0.0000,0.0000,0.0000,20.0400,0.0000,0.0000,0.0000,17.4000,0.0000,0.0000,0.0000,15.2300,0.0000,0.0000,0.0000,16.5400,0.0000 +300866.SZ,0.0000,0.0000,0.0000,44.4400,0.0000,0.0000,0.0000,37.3100,0.0000,0.0000,0.0000,28.4900,0.0000,0.0000,0.0000,33.6900,0.0000,0.0000,0.0000,33.7900,0.0000 +003041.SZ,0.0000,12.8900,0.0000,51.9600,0.0000,0.0000,0.0000,52.9900,0.0000,0.0000,0.0000,49.5700,0.0000,0.0000,0.0000,50.9700,0.0000,0.0000,0.0000,56.0800,0.0000 +601117.SH,0.0000,0.0000,0.0000,4.7300,0.0000,0.0000,0.0000,9.7000,0.0000,0.0000,0.0000,6.8900,0.0000,0.0000,0.0000,5.4200,0.0000,0.0000,0.0000,6.9700,0.0000 +600900.SH,0.0000,0.0000,0.0000,20.5600,0.0000,0.0000,0.0000,25.0900,0.0000,0.0000,0.0000,34.3100,0.0000,0.0000,0.0000,34.5300,0.0000,0.0000,0.0000,44.1600,0.0000 +688488.SH,0.0000,0.0000,0.0000,51.7700,0.0000,0.0000,0.0000,51.5000,0.0000,0.0000,0.0000,30.3800,0.0000,0.0000,0.0000,34.1400,0.0000,0.0000,0.0000,31.2500,0.0000 +000753.SZ,0.0000,0.0000,0.0000,70.1400,0.0000,0.0000,0.0000,65.8100,0.0000,0.0000,0.0000,51.3600,0.0000,0.0000,0.0000,34.7500,0.0000,0.0000,0.0000,38.8400,0.0000 +601567.SH,0.0000,0.0000,0.0000,14.6000,0.0000,0.0000,0.0000,15.5100,0.0000,0.0000,0.0000,15.2300,0.0000,0.0000,0.0000,14.8100,0.0000,0.0000,0.0000,14.1600,0.0000 +002159.SZ,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,27.0300,0.0000,0.0000,0.0000,16.2500,0.0000 +002707.SZ,0.0000,0.0000,0.0000,11.2700,0.0000,0.0000,0.0000,7.1000,0.0000,0.0000,0.0000,5.1400,0.0000,0.0000,0.0000,16.0000,0.0000,0.0000,0.0000,18.5700,0.0000 +605056.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,4.8800,0.0000,0.0000,0.0000,4.9100,0.0000,0.0000,0.0000,4.9000,0.0000,0.0000,0.0000,2.9800,0.0000 +688336.SH,0.0000,0.0000,0.0000,38.4900,0.0000,0.0000,0.0000,46.6000,0.0000,0.0000,0.0000,40.5600,0.0000,0.0000,0.0000,41.7900,0.0000,0.0000,0.0000,45.6300,0.0000 +000595.SZ,0.0000,0.0000,0.0000,16.1400,0.0000,0.0000,0.0000,14.0000,0.0000,0.0000,0.0000,38.2700,0.0000,0.0000,0.0000,38.7100,0.0000,0.0000,0.0000,46.8200,0.0000 +605319.SH,0.0000,0.0000,0.0000,27.0300,0.0000,0.0000,0.0000,29.9300,0.0000,0.0000,0.0000,27.2500,0.0000,0.0000,0.0000,27.0100,0.0000,0.0000,0.0000,26.8000,0.0000 +002314.SZ,0.0000,0.0000,0.0000,16.9200,0.0000,0.0000,0.0000,21.9700,0.0000,0.0000,0.0000,30.4300,0.0000,0.0000,0.0000,30.2600,0.0000,0.0000,0.0000,28.8900,0.0000 +600892.SH,0.0000,0.0000,0.0000,88.1200,0.0000,0.0000,0.0000,72.1500,0.0000,0.0000,0.0000,70.2500,0.0000,0.0000,0.0000,69.3700,0.0000,0.0000,0.0000,63.2200,0.0000 +600007.SH,0.0000,0.0000,0.0000,12.6000,0.0000,0.0000,0.0000,13.9000,0.0000,0.0000,0.0000,16.1000,0.0000,0.0000,0.0000,12.9000,0.0000,0.0000,0.0000,9.5000,0.0000 +601928.SH,0.0000,0.0000,0.0000,8.3000,0.0000,0.0000,0.0000,9.4700,0.0000,0.0000,0.0000,11.3700,0.0000,0.0000,0.0000,11.5100,0.0000,0.0000,0.0000,11.5700,0.0000 +601579.SH,0.0000,0.0000,0.0000,23.1700,0.0000,0.0000,0.0000,17.4400,0.0000,0.0000,0.0000,21.3100,0.0000,0.0000,0.0000,24.5800,0.0000,0.0000,0.0000,24.1100,0.0000 +688526.SH,0.0000,0.0000,0.0000,47.7600,0.0000,0.0000,0.0000,41.3900,0.0000,0.0000,0.0000,48.2500,0.0000,0.0000,0.0000,26.6500,0.0000,0.0000,0.0000,38.3400,0.0000 +000608.SZ,0.0000,0.0000,0.0000,33.9900,0.0000,0.0000,0.0000,30.1600,0.0000,0.0000,0.0000,42.4400,0.0000,0.0000,0.0000,54.8100,0.0000,0.0000,0.0000,73.8000,0.0000 +600419.SH,0.0000,0.0000,0.0000,20.1700,0.0000,0.0000,0.0000,18.1200,0.0000,0.0000,0.0000,18.5300,0.0000,0.0000,0.0000,20.4500,0.0000,0.0000,0.0000,27.4400,0.0000 +603226.SH,0.0000,0.0000,0.0000,46.2000,0.0000,0.0000,0.0000,48.8400,0.0000,0.0000,0.0000,60.7400,0.0000,0.0000,0.0000,52.5000,0.0000,0.0000,0.0000,58.7200,0.0000 +002422.SZ,0.0000,0.0000,0.0000,21.3500,0.0000,0.0000,0.0000,21.9100,0.0000,0.0000,0.0000,21.8400,0.0000,0.0000,0.0000,21.1600,0.0000,0.0000,0.0000,16.9600,0.0000 +603369.SH,0.0000,0.0000,0.0000,25.0000,0.0000,0.0000,0.0000,23.4200,0.0000,0.0000,0.0000,23.9000,0.0000,0.0000,0.0000,22.9100,0.0000,0.0000,0.0000,24.7700,0.0000 +600853.SH,0.0000,0.0000,0.0000,32.2400,0.0000,0.0000,0.0000,6.0600,0.0000,0.0000,0.0000,20.4700,0.0000,0.0000,0.0000,26.9400,0.0000,0.0000,0.0000,31.5300,0.0000 +002656.SZ,0.0000,0.0000,0.0000,40.7500,0.0000,0.0000,0.0000,43.0900,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,21.5900,0.0000,0.0000,0.0000,24.1000,0.0000 +600513.SH,0.0000,0.0000,0.0000,24.3500,0.0000,0.0000,0.0000,31.6800,0.0000,0.0000,0.0000,32.9000,0.0000,0.0000,0.0000,30.2300,0.0000,0.0000,0.0000,32.5300,0.0000 +600713.SH,0.0000,0.0000,0.0000,12.7600,0.0000,0.0000,0.0000,11.3300,0.0000,0.0000,0.0000,9.3300,0.0000,0.0000,0.0000,8.1800,0.0000,0.0000,0.0000,8.0400,0.0000 +603323.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +603057.SH,0.0000,0.0000,0.0000,27.4400,0.0000,0.0000,0.0000,24.2100,0.0000,0.0000,0.0000,21.6900,0.0000,0.0000,0.0000,27.6700,0.0000,0.0000,0.0000,30.2200,0.0000 +603559.SH,0.0000,0.0000,0.0000,35.2400,0.0000,0.0000,0.0000,32.6700,0.0000,0.0000,0.0000,35.0500,0.0000,0.0000,0.0000,26.9000,0.0000,0.0000,0.0000,24.1400,0.0000 +600576.SH,0.0000,0.0000,0.0000,44.6300,0.0000,0.0000,0.0000,56.1100,0.0000,0.0000,0.0000,43.6800,0.0000,0.0000,0.0000,32.4500,0.0000,0.0000,0.0000,33.1100,0.0000 +002653.SZ,0.0000,0.0000,0.0000,27.2700,0.0000,0.0000,0.0000,41.4900,0.0000,0.0000,0.0000,41.9200,0.0000,0.0000,0.0000,23.4000,0.0000,0.0000,0.0000,27.4600,0.0000 +688608.SH,0.0000,0.0000,0.0000,94.5800,0.0000,0.0000,0.0000,83.2600,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,78.4900,0.0000,0.0000,0.0000,81.9300,0.0000 +300630.SZ,0.0000,0.0000,0.0000,52.1200,0.0000,0.0000,0.0000,34.8800,0.0000,0.0000,0.0000,24.1700,0.0000,0.0000,0.0000,43.4800,0.0000,0.0000,0.0000,0.0000,0.0000 +688161.SH,0.0000,0.0000,0.0000,47.4100,0.0000,0.0000,0.0000,34.4000,0.0000,0.0000,0.0000,15.3600,0.0000,0.0000,0.0000,43.2300,0.0000,0.0000,0.0000,57.0400,0.0000 +600054.SH,0.0000,0.0000,0.0000,5.2700,0.0000,0.0000,0.0000,5.0100,0.0000,0.0000,0.0000,7.8000,0.0000,0.0000,0.0000,6.7600,0.0000,0.0000,0.0000,9.0800,0.0000 +600377.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,62.8400,0.0000,0.0000,0.0000,43.0000,0.0000,0.0000,0.0000,48.5300,0.0000,0.0000,0.0000,55.5900,0.0000 +603997.SH,0.0000,0.0000,0.0000,7.6400,0.0000,0.0000,0.0000,8.4000,0.0000,0.0000,0.0000,8.1400,0.0000,0.0000,0.0000,7.0100,0.0000,0.0000,0.0000,8.4500,0.0000 +600729.SH,0.0000,0.0000,0.0000,13.9000,0.0000,0.0000,0.0000,17.1300,0.0000,0.0000,0.0000,11.3700,0.0000,0.0000,0.0000,17.4200,0.0000,0.0000,0.0000,11.7700,0.0000 +600919.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +000029.SZ,0.0000,0.0000,0.0000,66.7800,0.0000,0.0000,0.0000,34.8100,0.0000,0.0000,0.0000,53.6300,0.0000,0.0000,0.0000,94.5200,0.0000,0.0000,0.0000,63.1300,0.0000 +603365.SH,0.0000,0.0000,0.0000,18.1500,0.0000,0.0000,0.0000,16.2700,0.0000,0.0000,0.0000,17.9700,0.0000,0.0000,0.0000,16.0400,0.0000,0.0000,0.0000,15.6800,0.0000 +300702.SZ,0.0000,0.0000,0.0000,22.5600,0.0000,0.0000,0.0000,16.8600,0.0000,0.0000,0.0000,13.2900,0.0000,0.0000,0.0000,12.0500,0.0000,0.0000,0.0000,12.0500,0.0000 +000042.SZ,0.0000,0.0000,0.0000,47.3000,0.0000,0.0000,0.0000,63.1800,0.0000,0.0000,0.0000,42.6200,0.0000,0.0000,0.0000,56.5100,0.0000,0.0000,0.0000,75.9500,0.0000 +600989.SH,0.0000,0.0000,0.0000,35.1200,0.0000,0.0000,0.0000,20.2000,0.0000,0.0000,0.0000,17.9300,0.0000,0.0000,0.0000,15.8300,0.0000,0.0000,0.0000,16.2700,0.0000 +600750.SH,0.0000,0.0000,0.0000,34.5600,0.0000,0.0000,0.0000,20.4900,0.0000,0.0000,0.0000,22.4100,0.0000,0.0000,0.0000,29.4400,0.0000,0.0000,0.0000,12.5300,0.0000 +603630.SH,0.0000,0.0000,0.0000,40.7700,0.0000,0.0000,0.0000,37.1900,0.0000,0.0000,0.0000,41.8600,0.0000,0.0000,0.0000,42.6300,0.0000,0.0000,0.0000,44.5300,0.0000 +688131.SH,0.0000,0.0000,0.0000,27.0700,0.0000,0.0000,0.0000,26.7000,0.0000,0.0000,0.0000,17.7400,0.0000,0.0000,0.0000,18.5300,0.0000,0.0000,0.0000,15.8800,0.0000 +600490.SH,0.0000,0.0000,0.0000,69.3300,0.0000,0.0000,0.0000,81.1900,0.0000,0.0000,0.0000,63.2500,0.0000,0.0000,0.0000,53.8400,0.0000,0.0000,0.0000,54.4100,0.0000 +688622.SH,0.0000,0.0000,0.0000,30.7000,0.0000,0.0000,0.0000,24.4200,0.0000,0.0000,0.0000,17.4200,0.0000,0.0000,0.0000,18.2300,0.0000,0.0000,0.0000,36.6500,0.0000 +688192.SH,0.0000,0.0000,0.0000,70.2200,0.0000,72.9800,0.0000,71.2900,0.0000,0.0000,0.0000,66.0700,0.0000,0.0000,0.0000,60.5400,0.0000,0.0000,0.0000,56.9600,0.0000 +600012.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +603883.SH,0.0000,0.0000,0.0000,21.9000,0.0000,0.0000,0.0000,11.5600,0.0000,0.0000,0.0000,13.1900,0.0000,0.0000,0.0000,11.4100,0.0000,0.0000,0.0000,13.7000,0.0000 +002244.SZ,0.0000,0.0000,0.0000,71.0400,0.0000,0.0000,0.0000,65.1400,0.0000,0.0000,0.0000,75.8100,0.0000,0.0000,0.0000,65.8200,0.0000,0.0000,0.0000,68.1400,0.0000 +603065.SH,0.0000,0.0000,0.0000,55.1500,0.0000,0.0000,0.0000,42.6600,0.0000,28.7500,0.0000,29.0700,0.0000,0.0000,0.0000,34.2600,0.0000,0.0000,0.0000,35.5100,0.0000 +000096.SZ,0.0000,0.0000,0.0000,68.3000,0.0000,0.0000,0.0000,79.1500,0.0000,0.0000,0.0000,89.1800,0.0000,0.0000,0.0000,82.5500,0.0000,0.0000,0.0000,82.5300,0.0000 +600116.SH,0.0000,0.0000,0.0000,36.7300,0.0000,0.0000,0.0000,41.2300,0.0000,0.0000,0.0000,39.5800,0.0000,0.0000,0.0000,38.2000,0.0000,0.0000,0.0000,40.7000,0.0000 +603156.SH,0.0000,0.0000,0.0000,62.0300,0.0000,0.0000,0.0000,61.9600,0.0000,0.0000,0.0000,59.7200,0.0000,0.0000,0.0000,63.8200,0.0000,0.0000,0.0000,69.6700,0.0000 +688578.SH,0.0000,0.0000,0.0000,37.0700,0.0000,0.0000,0.0000,67.0600,0.0000,0.0000,0.0000,43.3900,0.0000,0.0000,0.0000,40.6900,0.0000,0.0000,0.0000,38.0900,0.0000 +601155.SH,0.0000,0.0000,0.0000,8.2200,0.0000,0.0000,0.0000,8.0800,0.0000,0.0000,0.0000,9.4200,0.0000,0.0000,0.0000,7.9300,0.0000,0.0000,0.0000,10.1400,0.0000 +001225.SZ,0.0000,0.0000,0.0000,36.7800,0.0000,0.0000,0.0000,34.7800,0.0000,39.6200,0.0000,37.0900,0.0000,0.0000,0.0000,32.5100,0.0000,0.0000,0.0000,30.1300,0.0000 +000697.SZ,0.0000,0.0000,0.0000,14.5500,0.0000,0.0000,0.0000,53.5100,0.0000,0.0000,0.0000,25.0400,0.0000,0.0000,0.0000,30.3000,0.0000,0.0000,0.0000,26.8100,0.0000 +688331.SH,0.0000,0.0000,0.0000,43.3800,0.0000,42.8800,0.0000,0.0000,0.0000,0.0000,0.0000,18.9000,0.0000,0.0000,0.0000,15.4000,0.0000,0.0000,0.0000,22.5800,0.0000 +000921.SZ,0.0000,0.0000,0.0000,11.0500,0.0000,0.0000,0.0000,12.1300,0.0000,0.0000,0.0000,10.5700,0.0000,0.0000,0.0000,9.1800,0.0000,0.0000,0.0000,8.6900,0.0000 +002367.SZ,0.0000,0.0000,0.0000,13.1100,0.0000,0.0000,0.0000,15.5900,0.0000,0.0000,0.0000,15.7600,0.0000,0.0000,0.0000,12.7400,0.0000,0.0000,0.0000,13.4000,0.0000 +002032.SZ,0.0000,0.0000,0.0000,9.3700,0.0000,0.0000,0.0000,10.6200,0.0000,0.0000,0.0000,11.5200,0.0000,0.0000,0.0000,9.5900,0.0000,0.0000,0.0000,10.6400,0.0000 +002311.SZ,0.0000,0.0000,0.0000,11.9600,0.0000,0.0000,0.0000,12.6000,0.0000,0.0000,0.0000,10.9700,0.0000,0.0000,0.0000,15.4100,0.0000,0.0000,0.0000,12.4500,0.0000 +605499.SH,0.0000,0.0000,0.0000,47.7100,0.0000,0.0000,0.0000,35.3200,0.0000,0.0000,0.0000,31.5800,0.0000,0.0000,0.0000,37.8200,0.0000,0.0000,0.0000,36.2500,0.0000 +600165.SH,0.0000,0.0000,0.0000,31.8000,0.0000,0.0000,0.0000,67.5000,0.0000,0.0000,0.0000,22.3400,0.0000,0.0000,0.0000,47.7700,0.0000,0.0000,0.0000,36.1900,0.0000 +605009.SH,0.0000,0.0000,0.0000,38.1700,0.0000,0.0000,0.0000,40.9600,0.0000,0.0000,0.0000,37.4300,0.0000,0.0000,0.0000,36.8200,0.0000,0.0000,0.0000,29.7300,0.0000 +002253.SZ,0.0000,0.0000,0.0000,17.2900,0.0000,0.0000,0.0000,22.1700,0.0000,0.0000,0.0000,30.7600,0.0000,0.0000,0.0000,31.6900,0.0000,0.0000,0.0000,42.8400,0.0000 +600828.SH,0.0000,0.0000,0.0000,68.0800,0.0000,52.2900,0.0000,72.9100,0.0000,0.0000,0.0000,71.7900,0.0000,74.2900,0.0000,74.7300,0.0000,76.9900,0.0000,65.5100,0.0000 +600173.SH,0.0000,0.0000,0.0000,82.4800,0.0000,0.0000,0.0000,67.6300,0.0000,0.0000,0.0000,54.1700,0.0000,0.0000,0.0000,42.6200,0.0000,0.0000,0.0000,45.7200,0.0000 +000429.SZ,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +601963.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +688232.SH,0.0000,0.0000,0.0000,15.8600,0.0000,14.4300,0.0000,10.3100,0.0000,0.0000,0.0000,11.9400,0.0000,0.0000,0.0000,9.0600,0.0000,0.0000,0.0000,8.7300,0.0000 +688799.SH,0.0000,0.0000,0.0000,23.6200,0.0000,0.0000,0.0000,23.9900,0.0000,0.0000,0.0000,23.9100,0.0000,0.0000,0.0000,24.6500,0.0000,0.0000,0.0000,24.4400,0.0000 +603983.SH,0.0000,0.0000,0.0000,44.3500,0.0000,0.0000,0.0000,37.7700,0.0000,0.0000,0.0000,36.2800,0.0000,0.0000,0.0000,38.2400,0.0000,0.0000,0.0000,38.2100,0.0000 +300204.SZ,0.0000,0.0000,0.0000,50.9100,0.0000,0.0000,0.0000,45.0600,0.0000,0.0000,0.0000,42.8800,0.0000,0.0000,0.0000,46.9800,0.0000,0.0000,0.0000,60.1400,0.0000 +300965.SZ,0.0000,74.8900,0.0000,79.1300,0.0000,0.0000,0.0000,77.3900,0.0000,0.0000,0.0000,82.4700,0.0000,0.0000,0.0000,68.1300,0.0000,0.0000,0.0000,69.1400,0.0000 +600289.SH,0.0000,0.0000,0.0000,55.1200,0.0000,0.0000,0.0000,48.7300,0.0000,0.0000,0.0000,40.8500,0.0000,0.0000,0.0000,45.9600,0.0000,0.0000,0.0000,42.3000,0.0000 +601077.SH,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +000669.SZ,0.0000,0.0000,0.0000,77.9200,0.0000,0.0000,0.0000,75.1200,0.0000,0.0000,0.0000,55.8400,0.0000,0.0000,0.0000,91.5000,0.0000,0.0000,0.0000,79.7600,0.0000 +688428.SH,0.0000,0.0000,0.0000,34.6500,0.0000,0.0000,0.0000,47.2000,0.0000,0.0000,0.0000,42.0100,0.0000,0.0000,0.0000,27.2800,0.0000,0.0000,0.0000,22.3400,0.0000 +300682.SZ,0.0000,0.0000,0.0000,26.5800,0.0000,0.0000,0.0000,27.3800,0.0000,0.0000,0.0000,28.6400,0.0000,0.0000,0.0000,23.3300,0.0000,0.0000,0.0000,8.7800,0.0000 +300888.SZ,0.0000,0.0000,0.0000,23.5100,0.0000,0.0000,0.0000,19.9800,0.0000,0.0000,0.0000,22.5900,0.0000,0.0000,0.0000,21.5600,0.0000,0.0000,0.0000,20.9200,0.0000 +001331.SZ,0.0000,0.0000,0.0000,84.8300,0.0000,0.0000,0.0000,82.2400,0.0000,0.0000,0.0000,63.1400,0.0000,0.0000,0.0000,65.6900,0.0000,0.0000,0.0000,60.5100,0.0000 +002966.SZ,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +301228.SZ,0.0000,0.0000,0.0000,46.8900,0.0000,40.6400,0.0000,35.8000,0.0000,0.0000,0.0000,22.0300,0.0000,0.0000,0.0000,18.1300,0.0000,0.0000,0.0000,11.6500,0.0000 +600461.SH,0.0000,0.0000,0.0000,51.4400,0.0000,0.0000,0.0000,50.3500,0.0000,0.0000,0.0000,55.6800,0.0000,0.0000,0.0000,51.1200,0.0000,0.0000,0.0000,52.2300,0.0000 +002990.SZ,0.0000,0.0000,0.0000,20.5000,0.0000,0.0000,0.0000,19.8400,0.0000,0.0000,0.0000,21.5900,0.0000,0.0000,0.0000,31.3500,0.0000,0.0000,0.0000,22.6500,0.0000 +600998.SH,0.0000,0.0000,0.0000,10.5700,0.0000,0.0000,0.0000,10.0200,0.0000,0.0000,0.0000,8.8200,0.0000,0.0000,0.0000,9.6000,0.0000,0.0000,0.0000,0.0000,0.0000 +002847.SZ,0.0000,0.0000,0.0000,23.1700,0.0000,0.0000,0.0000,18.4700,0.0000,0.0000,0.0000,14.2000,0.0000,0.0000,0.0000,18.8800,0.0000,0.0000,0.0000,20.0000,0.0000 +430047.BJ,0.0000,0.0000,0.0000,35.3600,0.0000,0.0000,0.0000,48.2200,0.0000,0.0000,0.0000,51.6200,0.0000,0.0000,0.0000,53.0700,0.0000,0.0000,0.0000,40.8500,0.0000 +002217.SZ,0.0000,0.0000,0.0000,37.1000,0.0000,0.0000,0.0000,29.6500,0.0000,0.0000,0.0000,30.2400,0.0000,0.0000,0.0000,39.2400,0.0000,0.0000,0.0000,70.1400,0.0000 +688580.SH,0.0000,0.0000,0.0000,60.8400,0.0000,0.0000,0.0000,39.7600,0.0000,0.0000,0.0000,33.7200,0.0000,0.0000,0.0000,27.8200,0.0000,0.0000,0.0000,30.8100,0.0000 +301498.SZ,0.0000,0.0000,0.0000,28.5300,0.0000,0.0000,0.0000,24.1500,0.0000,0.0000,0.0000,21.2900,0.0000,0.0000,0.0000,15.9100,0.0000,0.0000,0.0000,18.0800,0.0000 +600398.SH,0.0000,0.0000,0.0000,16.4400,0.0000,0.0000,0.0000,19.7700,0.0000,0.0000,0.0000,14.3900,0.0000,0.0000,0.0000,13.6500,0.0000,0.0000,0.0000,22.2300,0.0000 +688136.SH,0.0000,0.0000,0.0000,63.5400,0.0000,0.0000,0.0000,59.2800,0.0000,0.0000,0.0000,63.3800,0.0000,0.0000,0.0000,61.5600,0.0000,0.0000,0.0000,45.2500,0.0000 +688388.SH,0.0000,0.0000,0.0000,90.4300,0.0000,0.0000,0.0000,88.1100,0.0000,0.0000,0.0000,54.6100,0.0000,0.0000,0.0000,47.6700,0.0000,0.0000,0.0000,57.8200,0.0000 +002586.SZ,0.0000,0.0000,0.0000,10.1300,0.0000,0.0000,0.0000,5.8100,0.0000,0.0000,0.0000,12.5300,0.0000,0.0000,0.0000,18.1000,0.0000,0.0000,0.0000,26.1300,0.0000 +002667.SZ,0.0000,0.0000,0.0000,66.9300,0.0000,0.0000,0.0000,32.6300,0.0000,0.0000,0.0000,22.9800,0.0000,0.0000,0.0000,53.3300,0.0000,0.0000,0.0000,58.8500,0.0000 +603590.SH,0.0000,0.0000,0.0000,84.7400,0.0000,0.0000,0.0000,73.0300,0.0000,0.0000,0.0000,93.6900,0.0000,0.0000,0.0000,86.8500,0.0000,0.0000,0.0000,91.0700,0.0000 +300469.SZ,0.0000,0.0000,0.0000,62.6500,0.0000,0.0000,0.0000,29.1100,0.0000,0.0000,0.0000,23.7300,0.0000,0.0000,0.0000,19.1000,0.0000,0.0000,0.0000,35.5900,0.0000 +688696.SH,0.0000,0.0000,0.0000,56.3100,0.0000,0.0000,0.0000,53.2700,0.0000,0.0000,0.0000,48.0400,0.0000,0.0000,0.0000,58.8700,0.0000,0.0000,0.0000,44.5800,0.0000 +300779.SZ,0.0000,0.0000,0.0000,49.0800,0.0000,0.0000,0.0000,50.7300,0.0000,0.0000,0.0000,35.5000,0.0000,0.0000,0.0000,51.2000,0.0000,0.0000,0.0000,46.0800,0.0000 +603233.SH,0.0000,0.0000,0.0000,35.8300,0.0000,0.0000,0.0000,37.0600,0.0000,0.0000,0.0000,38.3300,0.0000,0.0000,0.0000,34.5300,0.0000,0.0000,0.0000,37.5000,0.0000 +600889.SH,0.0000,0.0000,0.0000,54.1500,0.0000,0.0000,0.0000,31.7000,0.0000,0.0000,0.0000,60.2900,0.0000,0.0000,0.0000,65.8700,0.0000,0.0000,0.0000,0.0000,0.0000 +603565.SH,0.0000,0.0000,0.0000,11.7600,0.0000,0.0000,0.0000,12.5200,0.0000,0.0000,0.0000,14.8100,0.0000,0.0000,0.0000,13.6500,0.0000,0.0000,0.0000,10.4400,0.0000 +300765.SZ,0.0000,0.0000,0.0000,49.0000,0.0000,0.0000,0.0000,50.7600,0.0000,0.0000,0.0000,48.8100,0.0000,0.0000,0.0000,45.4600,0.0000,0.0000,0.0000,39.7900,0.0000 +002231.SZ,0.0000,0.0000,0.0000,42.3700,0.0000,0.0000,0.0000,33.8300,0.0000,0.0000,0.0000,36.6200,0.0000,0.0000,0.0000,65.9400,0.0000,0.0000,0.0000,67.2500,0.0000 +688068.SH,0.0000,0.0000,0.0000,32.7200,0.0000,0.0000,0.0000,22.4000,0.0000,0.0000,0.0000,17.9600,0.0000,0.0000,0.0000,19.2100,0.0000,0.0000,0.0000,27.5900,0.0000 +003003.SZ,0.0000,0.0000,0.0000,34.7500,0.0000,0.0000,0.0000,24.4500,0.0000,0.0000,0.0000,20.3900,0.0000,0.0000,0.0000,21.4800,0.0000,0.0000,0.0000,26.3300,0.0000 +688521.SH,0.0000,0.0000,0.0000,82.8700,0.0000,0.0000,0.0000,72.1900,0.0000,0.0000,0.0000,72.4200,0.0000,0.0000,0.0000,73.6000,0.0000,0.0000,0.0000,67.1900,0.0000 +002076.SZ,0.0000,0.0000,0.0000,41.2800,0.0000,0.0000,0.0000,19.7600,0.0000,0.0000,0.0000,14.0200,0.0000,0.0000,0.0000,16.4400,0.0000,0.0000,0.0000,12.2600,0.0000 +600190.SH,0.0000,0.0000,0.0000,69.1500,0.0000,0.0000,0.0000,31.4300,0.0000,0.0000,0.0000,28.2800,0.0000,0.0000,0.0000,28.8300,0.0000,0.0000,0.0000,19.4400,0.0000 +600355.SH,0.0000,0.0000,0.0000,52.8500,0.0000,0.0000,0.0000,45.9500,0.0000,0.0000,0.0000,63.4300,0.0000,0.0000,0.0000,62.9000,0.0000,0.0000,0.0000,60.0900,0.0000 +603789.SH,0.0000,0.0000,0.0000,22.9800,0.0000,0.0000,0.0000,25.2500,0.0000,0.0000,0.0000,21.1100,0.0000,0.0000,0.0000,51.5400,0.0000,0.0000,0.0000,18.0500,0.0000 +002693.SZ,0.0000,0.0000,0.0000,38.9200,0.0000,0.0000,0.0000,33.0000,0.0000,0.0000,0.0000,39.5900,0.0000,0.0000,0.0000,27.3800,0.0000,0.0000,0.0000,37.5600,0.0000 +600525.SH,0.0000,0.0000,0.0000,19.3300,0.0000,0.0000,0.0000,17.6200,0.0000,0.0000,0.0000,17.5800,0.0000,0.0000,0.0000,13.0200,0.0000,0.0000,0.0000,9.9200,0.0000 +002630.SZ,0.0000,0.0000,0.0000,19.8600,0.0000,0.0000,0.0000,31.6900,0.0000,0.0000,0.0000,47.8900,0.0000,0.0000,0.0000,63.1500,0.0000,0.0000,0.0000,63.2500,0.0000 +603398.SH,0.0000,0.0000,0.0000,36.6200,0.0000,0.0000,0.0000,31.6800,0.0000,0.0000,0.0000,35.1700,0.0000,0.0000,0.0000,42.9300,0.0000,0.0000,0.0000,39.3600,0.0000 +603828.SH,0.0000,0.0000,0.0000,11.8600,0.0000,0.0000,0.0000,7.3100,0.0000,0.0000,0.0000,6.4200,0.0000,0.0000,0.0000,9.4600,0.0000,0.0000,0.0000,10.5900,0.0000 +002052.SZ,0.0000,0.0000,0.0000,50.8100,0.0000,0.0000,0.0000,42.6500,0.0000,0.0000,0.0000,43.0900,0.0000,0.0000,0.0000,51.3400,0.0000,0.0000,0.0000,90.3000,0.0000 +603580.SH,0.0000,0.0000,0.0000,41.9300,0.0000,0.0000,0.0000,24.0000,0.0000,0.0000,0.0000,30.0000,0.0000,0.0000,0.0000,27.4800,0.0000,0.0000,0.0000,27.2000,0.0000 +600238.SH,0.0000,0.0000,0.0000,74.5700,0.0000,0.0000,0.0000,66.2100,0.0000,0.0000,0.0000,72.6400,0.0000,0.0000,0.0000,60.9100,0.0000,0.0000,0.0000,83.4700,0.0000 +605199.SH,0.0000,0.0000,0.0000,45.9200,0.0000,0.0000,0.0000,41.2600,0.0000,0.0000,0.0000,42.2500,0.0000,0.0000,0.0000,34.4200,0.0000,0.0000,0.0000,43.9500,0.0000 +600200.SH,0.0000,0.0000,0.0000,49.1000,0.0000,0.0000,0.0000,53.9000,0.0000,0.0000,0.0000,41.3900,0.0000,0.0000,0.0000,35.4000,0.0000,0.0000,0.0000,34.2300,0.0000 +603843.SH,0.0000,0.0000,0.0000,20.0500,0.0000,0.0000,0.0000,15.4800,0.0000,0.0000,0.0000,15.2000,0.0000,0.0000,0.0000,15.0400,0.0000,0.0000,0.0000,24.6800,0.0000 +603721.SH,0.0000,0.0000,0.0000,14.8600,0.0000,0.0000,0.0000,14.2100,0.0000,0.0000,0.0000,15.0900,0.0000,0.0000,0.0000,25.1200,0.0000,0.0000,0.0000,7.8100,0.0000 +003004.SZ,0.0000,0.0000,0.0000,39.3300,0.0000,0.0000,0.0000,32.7800,0.0000,0.0000,0.0000,27.8400,0.0000,0.0000,0.0000,22.7800,0.0000,0.0000,0.0000,39.0000,0.0000 +600265.SH,0.0000,0.0000,0.0000,96.5500,0.0000,0.0000,0.0000,16.7900,0.0000,0.0000,0.0000,42.2400,0.0000,0.0000,0.0000,28.5500,0.0000,0.0000,0.0000,29.8900,0.0000 +002717.SZ,0.0000,0.0000,0.0000,11.7900,0.0000,0.0000,0.0000,6.5200,0.0000,0.0000,0.0000,9.9200,0.0000,0.0000,0.0000,10.5500,0.0000,0.0000,0.0000,14.8200,0.0000 +000004.SZ,0.0000,0.0000,0.0000,44.4600,0.0000,0.0000,0.0000,52.4600,0.0000,0.0000,0.0000,51.4200,0.0000,0.0000,0.0000,47.4900,0.0000,0.0000,0.0000,38.6200,0.0000 +600599.SH,0.0000,0.0000,0.0000,45.4700,0.0000,0.0000,0.0000,32.4600,0.0000,0.0000,0.0000,31.6600,0.0000,0.0000,0.0000,34.4000,0.0000,0.0000,0.0000,26.7700,0.0000 +600107.SH,0.0000,0.0000,0.0000,15.0600,0.0000,0.0000,0.0000,21.6700,0.0000,0.0000,0.0000,17.1800,0.0000,0.0000,0.0000,25.5400,0.0000,0.0000,0.0000,21.6700,0.0000 +000518.SZ,0.0000,0.0000,0.0000,63.3700,0.0000,0.0000,0.0000,57.6800,0.0000,0.0000,0.0000,56.4800,0.0000,0.0000,0.0000,60.7200,0.0000,0.0000,0.0000,54.2900,0.0000 +002991.SZ,0.0000,0.0000,0.0000,32.9800,0.0000,0.0000,0.0000,33.5800,0.0000,0.0000,0.0000,33.3400,0.0000,0.0000,0.0000,27.3100,0.0000,0.0000,0.0000,33.4500,0.0000 +300972.SZ,0.0000,35.8600,0.0000,36.6300,0.0000,0.0000,0.0000,35.6900,0.0000,0.0000,0.0000,28.3100,0.0000,0.0000,0.0000,14.7600,0.0000,0.0000,0.0000,7.7400,0.0000 +688282.SH,0.0000,0.0000,0.0000,79.5300,0.0000,81.1600,0.0000,0.0000,0.0000,0.0000,0.0000,75.7200,0.0000,0.0000,0.0000,37.1700,0.0000,0.0000,0.0000,57.9100,0.0000 +002755.SZ,0.0000,0.0000,0.0000,43.4200,0.0000,0.0000,0.0000,40.2600,0.0000,0.0000,0.0000,41.2900,0.0000,0.0000,0.0000,33.7500,0.0000,0.0000,0.0000,60.2700,0.0000 +603359.SH,0.0000,0.0000,0.0000,23.3800,0.0000,0.0000,0.0000,34.9000,0.0000,0.0000,0.0000,27.0900,0.0000,0.0000,0.0000,52.0500,0.0000,0.0000,0.0000,44.4900,0.0000 +601956.SH,0.0000,0.0000,0.0000,17.5000,0.0000,0.0000,0.0000,20.6900,0.0000,0.0000,0.0000,19.6600,0.0000,0.0000,0.0000,21.1900,0.0000,0.0000,0.0000,18.7900,0.0000 +300326.SZ,0.0000,0.0000,0.0000,45.1600,0.0000,0.0000,0.0000,32.7200,0.0000,0.0000,0.0000,40.1500,0.0000,0.0000,0.0000,37.3500,0.0000,0.0000,0.0000,41.7600,0.0000 +688266.SH,0.0000,0.0000,0.0000,33.5300,0.0000,0.0000,0.0000,26.1000,0.0000,0.0000,0.0000,23.4800,0.0000,0.0000,0.0000,28.0300,0.0000,0.0000,0.0000,32.3200,0.0000 +002251.SZ,0.0000,0.0000,0.0000,10.0700,0.0000,0.0000,0.0000,10.5000,0.0000,0.0000,0.0000,8.0200,0.0000,0.0000,0.0000,14.1700,0.0000,0.0000,0.0000,17.1800,0.0000 +002809.SZ,0.0000,0.0000,0.0000,66.3500,0.0000,0.0000,0.0000,67.6500,0.0000,0.0000,0.0000,69.7500,0.0000,0.0000,0.0000,72.2500,0.0000,0.0000,0.0000,68.5800,0.0000 +301209.SZ,0.0000,0.0000,0.0000,35.8500,0.0000,0.0000,0.0000,38.5700,0.0000,0.0000,0.0000,43.1700,0.0000,0.0000,0.0000,41.2600,0.0000,0.0000,0.0000,36.2700,0.0000 +835305.BJ,0.0000,0.0000,0.0000,53.2900,0.0000,0.0000,0.0000,30.2700,0.0000,0.0000,0.0000,27.4900,0.0000,0.0000,0.0000,29.5800,0.0000,0.0000,0.0000,56.8100,0.0000 +603822.SH,0.0000,0.0000,0.0000,28.6000,0.0000,0.0000,0.0000,32.4600,0.0000,0.0000,0.0000,37.1100,0.0000,0.0000,0.0000,26.7100,0.0000,0.0000,0.0000,40.9500,0.0000 +603696.SH,0.0000,0.0000,0.0000,49.4100,0.0000,0.0000,0.0000,59.8500,0.0000,0.0000,0.0000,72.0500,0.0000,0.0000,0.0000,73.3300,0.0000,0.0000,0.0000,74.4200,0.0000 +002365.SZ,0.0000,0.0000,0.0000,71.1600,0.0000,0.0000,0.0000,67.2800,0.0000,0.0000,0.0000,64.7900,0.0000,0.0000,0.0000,54.9600,0.0000,0.0000,0.0000,62.1600,0.0000 +300152.SZ,0.0000,0.0000,0.0000,25.2500,0.0000,0.0000,0.0000,33.0300,0.0000,0.0000,0.0000,20.4300,0.0000,0.0000,0.0000,23.5800,0.0000,0.0000,0.0000,25.0300,0.0000 +300344.SZ,0.0000,0.0000,0.0000,43.0100,0.0000,0.0000,0.0000,63.4100,0.0000,0.0000,0.0000,41.9400,0.0000,0.0000,0.0000,66.4000,0.0000,0.0000,0.0000,86.7400,0.0000 +688646.SH,0.0000,0.0000,0.0000,38.0700,0.0000,0.0000,0.0000,25.6600,0.0000,0.0000,0.0000,29.8000,0.0000,0.0000,0.0000,32.5400,0.0000,0.0000,0.0000,34.1500,0.0000 +688184.SH,0.0000,0.0000,0.0000,70.1700,0.0000,0.0000,0.0000,44.1100,0.0000,0.0000,0.0000,55.1500,0.0000,0.0000,0.0000,57.7600,0.0000,0.0000,0.0000,54.3200,0.0000 +839680.BJ,0.0000,0.0000,0.0000,89.2900,0.0000,0.0000,0.0000,68.3200,0.0000,0.0000,0.0000,84.9600,0.0000,0.0000,0.0000,70.0600,0.0000,0.0000,0.0000,95.8200,0.0000 diff --git a/src/quantitative_analysis/data/前五客户供应商的原始数据.xlsx b/src/quantitative_analysis/data/前五客户供应商的原始数据.xlsx new file mode 100644 index 0000000..09b949e Binary files /dev/null and b/src/quantitative_analysis/data/前五客户供应商的原始数据.xlsx differ diff --git a/src/quantitative_analysis/data/前五客户占比.csv b/src/quantitative_analysis/data/前五客户占比.csv new file mode 100644 index 0000000..a4baced --- /dev/null +++ b/src/quantitative_analysis/data/前五客户占比.csv @@ -0,0 +1,5412 @@ +stock_code,20200331,20200630,20200930,20201231,20210331,20210630,20210930,20211231,20220331,20220630,20220930,20221231,20230331,20230630,20230930,20231231,20240331,20240630,20240930,20241231,20250331 +832876.BJ,0.00,0.00,0.00,47.99,0.00,0.00,0.00,47.41,0.00,59.54,0.00,60.37,0.00,0.00,0.00,61.65,0.00,0.00,0.00,54.25,0.00 +873305.BJ,0.00,0.00,0.00,69.61,0.00,0.00,0.00,66.90,69.09,0.00,0.00,68.76,0.00,0.00,0.00,67.73,0.00,0.00,0.00,68.27,0.00 +688280.SH,0.00,0.00,0.00,61.26,0.00,0.00,0.00,56.84,0.00,0.00,0.00,55.86,0.00,0.00,0.00,69.36,0.00,0.00,0.00,72.19,0.00 +688609.SH,0.00,82.48,0.00,76.87,0.00,0.00,0.00,81.65,0.00,0.00,0.00,77.06,0.00,0.00,0.00,74.62,0.00,0.00,0.00,77.91,0.00 +300963.SZ,0.00,29.03,0.00,31.61,0.00,0.00,0.00,34.77,0.00,0.00,0.00,35.86,0.00,0.00,0.00,29.72,0.00,0.00,0.00,30.01,0.00 +301509.SZ,0.00,0.00,0.00,46.73,0.00,50.85,0.00,46.75,0.00,0.00,0.00,49.83,0.00,0.00,0.00,44.75,0.00,0.00,0.00,24.40,0.00 +300093.SZ,0.00,0.00,0.00,16.25,0.00,0.00,0.00,18.53,0.00,0.00,0.00,82.68,0.00,0.00,0.00,72.43,0.00,0.00,0.00,95.40,0.00 +300047.SZ,0.00,0.00,0.00,9.72,0.00,0.00,0.00,13.90,0.00,0.00,0.00,11.09,0.00,0.00,0.00,8.62,0.00,0.00,0.00,7.79,0.00 +300879.SZ,0.00,75.36,0.00,66.43,0.00,0.00,0.00,69.94,0.00,0.00,0.00,76.01,0.00,0.00,0.00,72.28,0.00,0.00,0.00,82.68,0.00 +301123.SZ,0.00,42.43,0.00,39.25,0.00,0.00,36.41,35.32,0.00,0.00,0.00,37.06,0.00,0.00,0.00,32.52,0.00,0.00,0.00,32.75,0.00 +300884.SZ,33.73,0.00,0.00,25.38,0.00,0.00,0.00,19.42,0.00,0.00,0.00,16.55,0.00,0.00,0.00,16.20,0.00,0.00,0.00,18.64,0.00 +300918.SZ,0.00,21.06,20.94,21.09,0.00,0.00,0.00,20.90,0.00,0.00,0.00,14.53,0.00,0.00,0.00,17.32,0.00,0.00,0.00,17.32,0.00 +688511.SH,0.00,94.26,0.00,89.72,0.00,0.00,0.00,88.02,0.00,0.00,0.00,62.29,0.00,0.00,0.00,88.64,0.00,0.00,0.00,83.50,0.00 +301082.SZ,0.00,70.88,0.00,63.86,0.00,0.00,0.00,53.20,0.00,0.00,0.00,64.54,0.00,0.00,0.00,55.52,0.00,0.00,0.00,58.08,0.00 +873726.BJ,0.00,0.00,0.00,85.37,0.00,0.00,0.00,81.42,82.23,0.00,0.00,80.83,0.00,0.00,0.00,78.22,0.00,0.00,0.00,56.44,0.00 +833751.BJ,0.00,31.75,0.00,30.13,0.00,0.00,0.00,35.61,0.00,41.45,0.00,27.51,0.00,0.00,0.00,32.89,0.00,0.00,0.00,34.18,0.00 +688077.SH,0.00,0.00,0.00,37.35,0.00,0.00,0.00,33.10,0.00,0.00,0.00,31.86,0.00,0.00,0.00,28.02,0.00,0.00,0.00,31.26,0.00 +835207.BJ,0.00,49.75,0.00,38.45,0.00,0.00,0.00,47.17,57.66,38.61,0.00,31.22,0.00,0.00,0.00,37.06,0.00,0.00,0.00,62.04,0.00 +688722.SH,0.00,45.46,0.00,31.44,0.00,0.00,0.00,17.04,0.00,0.00,0.00,21.44,0.00,0.00,0.00,23.02,0.00,0.00,0.00,34.32,0.00 +300984.SZ,0.00,93.06,0.00,92.73,0.00,0.00,0.00,93.09,0.00,0.00,0.00,92.80,0.00,0.00,0.00,92.85,0.00,0.00,0.00,89.49,0.00 +836961.BJ,0.00,0.00,0.00,35.78,0.00,0.00,0.00,27.85,0.00,0.00,0.00,23.10,0.00,31.37,0.00,26.72,0.00,0.00,0.00,29.53,0.00 +300870.SZ,0.00,0.00,0.00,55.48,0.00,0.00,0.00,53.02,0.00,0.00,0.00,45.73,0.00,0.00,0.00,36.81,0.00,0.00,0.00,37.62,0.00 +300421.SZ,0.00,0.00,0.00,20.64,0.00,0.00,0.00,47.27,0.00,0.00,0.00,53.48,0.00,0.00,0.00,53.83,0.00,0.00,0.00,56.06,0.00 +301310.SZ,0.00,0.00,0.00,33.04,0.00,35.14,0.00,29.75,0.00,32.90,0.00,32.49,0.00,0.00,0.00,34.42,0.00,0.00,0.00,31.02,0.00 +688183.SH,0.00,72.23,0.00,69.10,0.00,0.00,0.00,54.02,0.00,0.00,0.00,49.78,0.00,0.00,0.00,42.28,0.00,0.00,0.00,46.24,0.00 +300398.SZ,0.00,0.00,0.00,26.84,0.00,0.00,0.00,25.57,0.00,0.00,0.00,23.00,0.00,0.00,0.00,43.27,0.00,0.00,0.00,39.42,0.00 +301525.SZ,0.00,0.00,0.00,64.38,0.00,0.00,62.84,62.31,0.00,79.38,0.00,56.02,0.00,64.00,0.00,67.63,0.00,0.00,0.00,70.79,0.00 +301137.SZ,0.00,10.45,0.00,9.01,0.00,11.29,0.00,11.33,0.00,0.00,0.00,14.81,0.00,0.00,0.00,18.70,0.00,0.00,0.00,19.26,0.00 +300368.SZ,0.00,0.00,0.00,38.04,0.00,0.00,0.00,62.26,0.00,0.00,0.00,34.24,0.00,0.00,0.00,27.77,0.00,0.00,0.00,30.04,0.00 +870199.BJ,0.00,0.00,0.00,61.80,0.00,0.00,0.00,66.82,0.00,63.05,0.00,64.15,0.00,0.00,0.00,53.18,0.00,0.00,0.00,50.02,0.00 +871396.BJ,0.00,39.44,0.00,33.02,0.00,0.00,0.00,26.34,0.00,0.00,0.00,26.79,0.00,33.70,0.00,37.76,0.00,0.00,0.00,35.86,0.00 +301337.SZ,0.00,0.00,0.00,13.22,0.00,17.58,0.00,10.16,0.00,16.18,0.00,11.42,0.00,0.00,0.00,9.72,0.00,0.00,0.00,11.15,0.00 +300638.SZ,0.00,0.00,0.00,66.83,0.00,0.00,0.00,50.44,0.00,0.00,0.00,62.18,0.00,0.00,0.00,63.16,0.00,0.00,0.00,56.61,0.00 +836807.BJ,0.00,0.00,0.00,26.38,0.00,0.00,0.00,31.09,0.00,20.42,0.00,18.56,0.00,0.00,0.00,17.96,0.00,0.00,0.00,19.80,0.00 +688299.SH,0.00,0.00,0.00,35.52,0.00,0.00,0.00,40.05,0.00,0.00,0.00,42.60,0.00,0.00,0.00,43.48,0.00,0.00,0.00,44.34,0.00 +688719.SH,0.00,0.00,0.00,41.90,0.00,0.00,0.00,36.39,0.00,39.55,0.00,35.57,0.00,0.00,0.00,22.98,0.00,0.00,0.00,28.16,0.00 +300031.SZ,0.00,0.00,0.00,55.65,0.00,0.00,0.00,54.88,0.00,0.00,0.00,45.93,0.00,0.00,0.00,55.04,0.00,0.00,0.00,47.11,0.00 +300423.SZ,0.00,0.00,0.00,69.43,0.00,0.00,0.00,76.29,0.00,0.00,0.00,69.71,0.00,0.00,0.00,72.11,0.00,0.00,0.00,63.92,0.00 +300382.SZ,0.00,0.00,0.00,40.35,0.00,0.00,0.00,48.81,0.00,0.00,0.00,49.31,0.00,0.00,0.00,53.29,0.00,0.00,0.00,59.36,0.00 +300255.SZ,0.00,0.00,0.00,17.39,0.00,0.00,0.00,17.82,0.00,0.00,0.00,12.19,0.00,0.00,0.00,15.57,0.00,0.00,0.00,15.07,0.00 +831856.BJ,0.00,40.48,0.00,33.49,0.00,35.79,0.00,43.11,0.00,33.58,0.00,24.80,0.00,42.37,0.00,52.51,0.00,0.00,0.00,67.26,0.00 +300695.SZ,0.00,0.00,0.00,69.98,0.00,0.00,0.00,50.80,0.00,0.00,0.00,45.87,0.00,0.00,0.00,54.20,0.00,0.00,0.00,38.35,0.00 +300169.SZ,0.00,0.00,0.00,42.39,0.00,0.00,0.00,34.07,0.00,0.00,0.00,20.39,0.00,0.00,0.00,29.34,0.00,0.00,0.00,24.21,0.00 +300128.SZ,0.00,0.00,0.00,63.43,0.00,0.00,0.00,49.91,0.00,0.00,0.00,47.33,0.00,0.00,0.00,42.30,0.00,0.00,0.00,42.64,0.00 +688313.SH,0.00,0.00,0.00,34.21,0.00,0.00,0.00,23.59,0.00,0.00,0.00,33.14,0.00,0.00,0.00,32.72,0.00,0.00,0.00,28.49,0.00 +835184.BJ,0.00,14.67,0.00,11.15,0.00,0.00,0.00,22.41,0.00,0.00,0.00,11.51,0.00,0.00,0.00,15.12,0.00,0.00,0.00,11.56,0.00 +301225.SZ,0.00,0.00,0.00,51.96,0.00,50.38,0.00,53.52,0.00,53.64,0.00,55.08,0.00,0.00,0.00,60.28,0.00,0.00,0.00,59.46,0.00 +300044.SZ,0.00,0.00,0.00,63.09,0.00,0.00,0.00,67.08,0.00,0.00,0.00,41.73,0.00,0.00,0.00,66.64,0.00,0.00,0.00,84.34,0.00 +834407.BJ,0.00,20.25,0.00,11.95,0.00,0.00,0.00,13.80,0.00,22.16,0.00,16.54,0.00,0.00,0.00,12.19,0.00,0.00,0.00,22.27,0.00 +301259.SZ,0.00,74.90,0.00,58.68,0.00,74.28,0.00,33.43,0.00,0.00,0.00,72.64,0.00,0.00,0.00,55.87,0.00,0.00,0.00,53.55,0.00 +688583.SH,0.00,0.00,0.00,14.85,0.00,0.00,0.00,14.37,0.00,0.00,0.00,17.02,0.00,0.00,0.00,10.78,0.00,13.18,0.00,14.92,0.00 +688595.SH,41.19,41.94,0.00,38.05,0.00,0.00,0.00,37.90,0.00,0.00,0.00,39.84,0.00,0.00,0.00,40.27,0.00,0.00,0.00,36.23,0.00 +300366.SZ,0.00,0.00,0.00,29.63,0.00,0.00,0.00,42.27,0.00,0.00,0.00,49.64,0.00,0.00,0.00,35.91,0.00,0.00,0.00,45.41,0.00 +688159.SH,0.00,0.00,0.00,36.83,0.00,0.00,0.00,28.99,0.00,0.00,0.00,21.20,0.00,0.00,0.00,28.26,0.00,0.00,0.00,45.89,0.00 +301336.SZ,0.00,37.28,0.00,39.35,0.00,41.80,0.00,46.32,0.00,0.00,0.00,41.25,0.00,0.00,0.00,40.48,0.00,0.00,0.00,58.90,0.00 +300758.SZ,0.00,0.00,0.00,24.22,0.00,0.00,0.00,25.63,0.00,0.00,0.00,25.87,0.00,0.00,0.00,23.10,0.00,0.00,0.00,23.13,0.00 +600396.SH,0.00,0.00,0.00,88.41,0.00,0.00,0.00,59.90,0.00,0.00,0.00,88.75,0.00,0.00,0.00,96.31,0.00,0.00,0.00,79.19,0.00 +002490.SZ,0.00,0.00,0.00,39.16,0.00,0.00,0.00,29.77,0.00,0.00,0.00,39.81,0.00,0.00,0.00,44.55,0.00,0.00,0.00,45.56,0.00 +600303.SH,0.00,0.00,0.00,17.76,0.00,0.00,0.00,24.90,0.00,0.00,0.00,32.30,0.00,0.00,0.00,29.73,0.00,0.00,0.00,29.42,0.00 +600281.SH,0.00,0.00,0.00,74.65,0.00,0.00,0.00,72.24,0.00,0.00,0.00,60.34,0.00,0.00,0.00,48.39,0.00,0.00,0.00,58.17,0.00 +000677.SZ,0.00,0.00,0.00,45.63,0.00,0.00,0.00,52.03,0.00,0.00,0.00,47.38,0.00,0.00,0.00,50.69,0.00,0.00,0.00,53.11,0.00 +002471.SZ,0.00,0.00,0.00,14.96,0.00,0.00,0.00,16.03,0.00,0.00,0.00,18.04,0.00,0.00,0.00,26.54,0.00,0.00,0.00,21.39,0.00 +002195.SZ,0.00,0.00,0.00,49.63,0.00,0.00,0.00,50.49,0.00,0.00,0.00,43.77,0.00,0.00,0.00,44.19,0.00,0.00,0.00,46.22,0.00 +002672.SZ,0.00,0.00,0.00,11.81,0.00,0.00,0.00,14.59,0.00,0.00,0.00,21.58,0.00,0.00,0.00,36.02,0.00,0.00,0.00,23.73,0.00 +601908.SH,0.00,0.00,0.00,32.10,0.00,0.00,0.00,30.82,0.00,0.00,0.00,35.02,0.00,0.00,0.00,37.68,0.00,0.00,0.00,37.60,0.00 +002427.SZ,0.00,0.00,0.00,8.49,0.00,0.00,0.00,7.92,0.00,0.00,0.00,12.74,0.00,0.00,0.00,12.98,0.00,0.00,0.00,10.67,0.00 +600448.SH,0.00,0.00,0.00,51.57,0.00,0.00,0.00,42.67,0.00,0.00,0.00,49.50,0.00,0.00,0.00,45.57,0.00,0.00,0.00,36.41,0.00 +000565.SZ,0.00,0.00,0.00,45.93,0.00,0.00,0.00,48.67,0.00,0.00,0.00,47.44,0.00,0.00,0.00,42.62,0.00,0.00,0.00,41.14,0.00 +002440.SZ,0.00,0.00,0.00,11.89,0.00,0.00,0.00,11.24,0.00,0.00,0.00,14.67,0.00,0.00,0.00,15.55,0.00,0.00,0.00,16.13,0.00 +002355.SZ,0.00,0.00,0.00,55.68,0.00,0.00,0.00,54.90,0.00,0.00,0.00,53.13,0.00,0.00,0.00,63.52,0.00,0.00,0.00,60.96,0.00 +605228.SH,0.00,83.45,0.00,81.43,0.00,0.00,0.00,77.79,0.00,0.00,0.00,73.65,0.00,0.00,0.00,70.85,0.00,0.00,0.00,61.79,0.00 +603335.SH,0.00,0.00,0.00,4.91,0.00,0.00,0.00,19.62,0.00,0.00,0.00,27.03,0.00,0.00,0.00,27.15,0.00,0.00,0.00,20.93,0.00 +603168.SH,0.00,0.00,0.00,24.20,0.00,0.00,0.00,25.10,0.00,0.00,0.00,23.01,0.00,0.00,0.00,25.77,0.00,0.00,0.00,23.72,0.00 +603300.SH,0.00,0.00,0.00,31.97,0.00,0.00,0.00,24.37,0.00,0.00,0.00,19.51,0.00,0.00,0.00,13.21,0.00,0.00,0.00,12.32,0.00 +002255.SZ,0.00,0.00,0.00,14.52,0.00,0.00,0.00,24.14,0.00,0.00,0.00,22.40,0.00,0.00,0.00,24.93,0.00,0.00,0.00,29.52,0.00 +002860.SZ,0.00,0.00,0.00,64.52,0.00,0.00,0.00,56.17,0.00,0.00,0.00,69.78,0.00,0.00,0.00,76.78,0.00,0.00,0.00,65.23,0.00 +002272.SZ,0.00,0.00,0.00,34.62,0.00,0.00,0.00,37.56,0.00,0.00,0.00,33.67,0.00,0.00,0.00,38.47,0.00,0.00,0.00,35.30,0.00 +002106.SZ,0.00,0.00,0.00,86.30,0.00,0.00,0.00,86.66,0.00,0.00,0.00,85.41,0.00,0.00,0.00,85.89,0.00,0.00,0.00,87.01,0.00 +603610.SH,0.00,0.00,0.00,79.71,0.00,0.00,0.00,3.04,0.00,0.00,0.00,70.57,0.00,0.00,0.00,68.17,0.00,0.00,0.00,65.32,0.00 +600800.SH,0.00,0.00,0.00,76.85,0.00,0.00,0.00,87.12,0.00,0.00,0.00,66.41,0.00,0.00,0.00,82.96,0.00,0.00,0.00,73.61,0.00 +002576.SZ,0.00,0.00,0.00,48.36,0.00,0.00,0.00,42.13,0.00,0.00,0.00,46.55,0.00,0.00,0.00,41.05,0.00,0.00,0.00,46.41,0.00 +000948.SZ,0.00,0.00,0.00,38.65,0.00,0.00,0.00,33.49,0.00,0.00,0.00,36.06,0.00,0.00,0.00,28.31,0.00,0.00,0.00,30.05,0.00 +002544.SZ,0.00,0.00,0.00,23.37,0.00,0.00,0.00,11.16,0.00,0.00,0.00,12.40,0.00,0.00,0.00,14.09,0.00,0.00,0.00,14.66,0.00 +600392.SH,0.00,0.00,0.00,19.70,0.00,0.00,0.00,20.65,0.00,0.00,0.00,21.11,0.00,0.00,0.00,21.08,0.00,0.00,0.00,21.24,0.00 +605068.SH,0.00,88.61,86.56,86.17,0.00,0.00,0.00,50.36,0.00,0.00,0.00,84.00,0.00,0.00,0.00,68.55,0.00,0.00,0.00,55.73,0.00 +600774.SH,0.00,0.00,0.00,7.94,0.00,0.00,0.00,12.25,0.00,0.00,0.00,9.62,0.00,0.00,0.00,11.42,0.00,0.00,0.00,10.00,0.00 +600735.SH,0.00,0.00,0.00,37.25,0.00,0.00,0.00,5.65,0.00,0.00,0.00,7.08,0.00,0.00,0.00,28.12,0.00,0.00,0.00,35.00,0.00 +000158.SZ,0.00,0.00,0.00,28.29,0.00,0.00,0.00,25.99,0.00,0.00,0.00,27.79,0.00,0.00,0.00,32.10,0.00,0.00,0.00,26.14,0.00 +603270.SH,0.00,0.00,0.00,41.83,0.00,0.00,0.00,44.65,0.00,48.88,0.00,47.60,0.00,0.00,0.00,38.63,0.00,0.00,0.00,35.02,0.00 +605133.SH,0.00,87.01,86.00,85.71,0.00,0.00,0.00,86.94,0.00,0.00,0.00,80.27,0.00,0.00,0.00,80.53,0.00,0.00,0.00,83.65,0.00 +605288.SH,0.00,0.00,0.00,36.07,0.00,0.00,0.00,40.82,0.00,0.00,0.00,33.69,0.00,0.00,0.00,35.05,0.00,0.00,0.00,34.90,0.00 +001316.SZ,0.00,0.00,0.00,51.13,0.00,56.34,0.00,55.74,0.00,0.00,0.00,50.64,0.00,0.00,0.00,54.61,0.00,0.00,0.00,53.89,0.00 +600410.SH,0.00,0.00,0.00,14.63,0.00,0.00,0.00,17.35,0.00,0.00,0.00,25.09,0.00,0.00,0.00,21.83,0.00,0.00,0.00,17.92,0.00 +603758.SH,0.00,0.00,0.00,84.37,0.00,0.00,0.00,82.58,0.00,0.00,0.00,85.51,0.00,0.00,0.00,88.64,0.00,0.00,0.00,81.79,0.00 +603130.SH,0.00,0.00,0.00,21.23,0.00,22.39,0.00,20.37,0.00,20.65,0.00,17.22,0.00,0.00,0.00,18.17,0.00,0.00,0.00,19.76,0.00 +603286.SH,0.00,0.00,0.00,37.32,0.00,0.00,0.00,40.20,0.00,0.00,0.00,47.66,0.00,0.00,0.00,45.02,0.00,0.00,0.00,39.96,0.00 +603028.SH,0.00,0.00,0.00,39.75,0.00,0.00,0.00,39.41,0.00,0.00,0.00,39.40,0.00,0.00,0.00,32.92,0.00,0.00,0.00,27.23,0.00 +002730.SZ,0.00,0.00,0.00,6.84,0.00,0.00,0.00,9.08,0.00,0.00,0.00,10.65,0.00,0.00,0.00,9.50,0.00,0.00,0.00,8.45,0.00 +002549.SZ,0.00,0.00,0.00,42.23,0.00,0.00,0.00,38.42,0.00,0.00,0.00,44.48,0.00,0.00,0.00,42.22,0.00,0.00,0.00,44.55,0.00 +003033.SZ,0.00,17.72,0.00,15.02,0.00,0.00,0.00,13.02,0.00,0.00,0.00,9.75,0.00,0.00,0.00,9.70,0.00,0.00,0.00,10.26,0.00 +002639.SZ,0.00,0.00,0.00,13.30,0.00,0.00,0.00,16.28,0.00,0.00,0.00,22.35,0.00,0.00,0.00,19.65,0.00,0.00,0.00,28.22,0.00 +002790.SZ,0.00,0.00,0.00,21.47,0.00,0.00,0.00,32.23,0.00,0.00,0.00,38.35,0.00,0.00,0.00,30.50,0.00,0.00,0.00,21.23,0.00 +603109.SH,0.00,0.00,0.00,22.77,0.00,0.00,0.00,25.77,0.00,0.00,0.00,27.33,0.00,0.00,0.00,23.28,0.00,0.00,0.00,20.85,0.00 +603040.SH,0.00,0.00,0.00,60.50,0.00,0.00,0.00,45.98,0.00,0.00,0.00,52.94,0.00,0.00,0.00,44.60,0.00,0.00,0.00,44.96,0.00 +002122.SZ,0.00,0.00,0.00,31.01,0.00,0.00,0.00,25.29,0.00,0.00,0.00,28.58,0.00,0.00,0.00,25.95,0.00,0.00,0.00,22.79,0.00 +002364.SZ,0.00,0.00,0.00,23.45,0.00,0.00,0.00,27.55,0.00,0.00,0.00,12.42,0.00,0.00,0.00,12.48,0.00,0.00,0.00,14.08,0.00 +603086.SH,0.00,0.00,0.00,22.63,0.00,0.00,0.00,22.15,0.00,0.00,0.00,33.60,0.00,0.00,0.00,34.58,0.00,0.00,0.00,31.49,0.00 +002290.SZ,0.00,0.00,0.00,54.00,0.00,0.00,0.00,56.64,0.00,0.00,0.00,56.04,0.00,0.00,0.00,56.70,0.00,0.00,0.00,55.13,0.00 +603011.SH,0.00,0.00,0.00,14.87,0.00,0.00,0.00,12.23,0.00,0.00,0.00,10.65,0.00,0.00,0.00,17.97,0.00,0.00,0.00,17.98,0.00 +603072.SH,50.14,0.00,0.00,38.46,41.25,0.00,34.13,30.63,0.00,37.00,0.00,39.14,0.00,0.00,0.00,39.24,0.00,55.38,43.68,51.32,0.00 +603416.SH,0.00,0.00,0.00,24.39,0.00,0.00,0.00,22.87,0.00,0.00,0.00,27.12,0.00,0.00,0.00,24.03,0.00,0.00,0.00,22.39,0.00 +603533.SH,0.00,0.00,0.00,60.76,0.00,0.00,0.00,53.08,0.00,0.00,0.00,52.62,0.00,0.00,0.00,48.61,0.00,0.00,0.00,44.31,0.00 +603586.SH,0.00,0.00,0.00,22.41,0.00,0.00,0.00,30.29,0.00,0.00,0.00,28.04,0.00,0.00,0.00,39.29,0.00,0.00,0.00,37.68,0.00 +600259.SH,0.00,0.00,0.00,20.68,0.00,0.00,0.00,15.87,0.00,0.00,0.00,17.78,0.00,0.00,0.00,20.76,0.00,0.00,0.00,23.57,0.00 +605198.SH,0.00,0.00,0.00,33.69,0.00,0.00,0.00,34.85,0.00,0.00,0.00,34.37,0.00,0.00,0.00,34.74,0.00,0.00,0.00,33.96,0.00 +000062.SZ,0.00,0.00,0.00,25.20,0.00,0.00,0.00,20.30,0.00,0.00,0.00,25.85,0.00,0.00,0.00,23.62,0.00,0.00,0.00,26.21,0.00 +003038.SZ,0.00,43.99,0.00,41.38,0.00,0.00,0.00,60.11,0.00,0.00,0.00,56.24,0.00,0.00,0.00,60.97,0.00,0.00,0.00,61.02,0.00 +600775.SH,0.00,0.00,0.00,41.37,0.00,0.00,0.00,38.94,0.00,0.00,0.00,37.90,0.00,0.00,0.00,37.28,0.00,0.00,0.00,26.15,0.00 +002981.SZ,0.00,0.00,0.00,60.10,0.00,0.00,0.00,80.97,0.00,0.00,0.00,70.69,0.00,0.00,0.00,73.41,0.00,0.00,0.00,76.70,0.00 +603900.SH,0.00,0.00,0.00,5.06,0.00,0.00,0.00,5.14,0.00,0.00,0.00,7.89,0.00,0.00,0.00,13.42,0.00,0.00,0.00,11.46,0.00 +603316.SH,0.00,0.00,0.00,51.88,0.00,0.00,0.00,35.50,0.00,0.00,0.00,39.62,0.00,0.00,0.00,43.48,0.00,0.00,0.00,38.44,0.00 +603657.SH,0.00,0.00,0.00,45.08,0.00,0.00,0.00,35.88,0.00,0.00,0.00,69.73,0.00,0.00,0.00,62.75,0.00,0.00,0.00,60.78,0.00 +002664.SZ,0.00,0.00,0.00,31.09,0.00,0.00,0.00,24.09,0.00,0.00,0.00,25.93,0.00,0.00,0.00,37.50,0.00,0.00,0.00,41.97,0.00 +002514.SZ,0.00,0.00,0.00,47.26,0.00,0.00,0.00,44.42,0.00,0.00,0.00,42.99,0.00,0.00,0.00,35.39,0.00,0.00,0.00,44.40,0.00 +003036.SZ,0.00,17.37,0.00,16.59,0.00,0.00,0.00,14.72,0.00,0.00,0.00,8.81,0.00,0.00,0.00,13.23,0.00,0.00,0.00,11.87,0.00 +600592.SH,0.00,0.00,0.00,24.36,0.00,0.00,0.00,20.88,0.00,0.00,0.00,24.46,0.00,0.00,0.00,33.32,0.00,0.00,0.00,32.42,0.00 +001896.SZ,0.00,0.00,0.00,90.50,0.00,0.00,0.00,85.63,0.00,0.00,0.00,83.74,0.00,0.00,0.00,89.07,0.00,0.00,0.00,88.42,0.00 +603166.SH,0.00,0.00,0.00,47.49,0.00,0.00,0.00,49.72,0.00,0.00,0.00,52.06,0.00,0.00,0.00,56.24,0.00,0.00,0.00,56.30,0.00 +600053.SH,0.00,0.00,0.00,40.28,0.00,0.00,0.00,37.81,0.00,0.00,0.00,85.29,0.00,0.00,0.00,77.10,0.00,0.00,0.00,61.23,0.00 +600105.SH,0.00,0.00,0.00,17.81,0.00,0.00,0.00,12.87,0.00,0.00,0.00,23.63,0.00,0.00,0.00,51.99,0.00,0.00,0.00,32.43,0.00 +002462.SZ,0.00,0.00,0.00,5.69,0.00,0.00,0.00,6.49,0.00,0.00,0.00,5.24,0.00,0.00,0.00,6.83,0.00,0.00,0.00,6.40,0.00 +002094.SZ,0.00,0.00,0.00,39.05,0.00,0.00,0.00,23.85,0.00,0.00,0.00,18.48,0.00,0.00,0.00,20.97,0.00,0.00,0.00,35.88,0.00 +600203.SH,0.00,0.00,0.00,58.89,0.00,0.00,0.00,54.90,0.00,0.00,0.00,54.34,0.00,0.00,0.00,44.23,0.00,0.00,0.00,58.71,0.00 +002719.SZ,0.00,0.00,0.00,9.13,0.00,0.00,0.00,17.54,0.00,0.00,0.00,12.49,0.00,0.00,0.00,8.46,0.00,0.00,0.00,7.89,0.00 +002562.SZ,0.00,0.00,0.00,18.31,0.00,0.00,0.00,12.63,0.00,0.00,0.00,17.35,0.00,0.00,0.00,9.98,0.00,0.00,0.00,13.37,0.00 +600589.SH,0.00,0.00,0.00,39.92,0.00,0.00,0.00,44.23,0.00,0.00,0.00,58.24,0.00,0.00,0.00,75.40,0.00,0.00,0.00,81.82,0.00 +603169.SH,0.00,0.00,0.00,38.56,0.00,0.00,0.00,39.03,0.00,0.00,0.00,30.62,0.00,0.00,0.00,18.20,0.00,0.00,0.00,19.84,0.00 +600744.SH,0.00,0.00,0.00,90.97,0.00,0.00,0.00,91.96,0.00,0.00,0.00,92.48,0.00,0.00,0.00,98.14,0.00,0.00,0.00,97.90,0.00 +002482.SZ,0.00,0.00,0.00,53.18,0.00,0.00,0.00,46.68,0.00,0.00,0.00,40.41,0.00,0.00,0.00,45.06,0.00,0.00,0.00,52.57,0.00 +000632.SZ,0.00,0.00,0.00,20.20,0.00,0.00,0.00,18.94,0.00,0.00,0.00,24.27,0.00,0.00,0.00,20.88,0.00,0.00,0.00,17.48,0.00 +002512.SZ,0.00,0.00,0.00,39.27,0.00,0.00,0.00,33.49,0.00,0.00,0.00,41.79,0.00,0.00,0.00,43.52,0.00,0.00,0.00,31.45,0.00 +688737.SH,0.00,92.60,0.00,90.04,0.00,67.71,0.00,66.36,0.00,65.16,0.00,65.94,0.00,82.04,0.00,80.14,0.00,0.00,0.00,71.71,0.00 +600503.SH,0.00,0.00,0.00,5.61,0.00,0.00,0.00,6.12,0.00,0.00,0.00,56.40,0.00,0.00,0.00,34.30,0.00,0.00,0.00,23.78,0.00 +688335.SH,98.53,0.00,0.00,67.09,0.00,0.00,0.00,65.51,0.00,0.00,0.00,91.24,0.00,0.00,0.00,81.60,0.00,0.00,0.00,74.14,0.00 +000903.SZ,0.00,0.00,0.00,42.24,0.00,0.00,0.00,44.78,0.00,0.00,0.00,35.58,0.00,0.00,0.00,42.40,0.00,0.00,0.00,42.85,0.00 +603030.SH,0.00,0.00,0.00,55.03,0.00,0.00,0.00,34.43,0.00,0.00,0.00,22.36,0.00,0.00,0.00,26.81,0.00,0.00,0.00,24.04,0.00 +688611.SH,0.00,86.41,0.00,79.06,0.00,0.00,0.00,64.80,0.00,0.00,0.00,71.00,0.00,0.00,0.00,56.14,0.00,0.00,0.00,83.43,0.00 +301208.SZ,0.00,34.54,0.00,35.07,0.00,47.27,0.00,42.17,47.19,0.00,0.00,35.29,0.00,0.00,0.00,37.85,0.00,0.00,0.00,27.26,0.00 +300339.SZ,0.00,0.00,0.00,41.33,0.00,0.00,0.00,42.06,0.00,0.00,0.00,41.51,0.00,0.00,0.00,36.84,0.00,0.00,0.00,34.08,0.00 +688776.SH,0.00,85.29,0.00,69.59,0.00,0.00,0.00,64.38,0.00,0.00,0.00,53.96,0.00,0.00,0.00,51.50,0.00,0.00,0.00,63.84,0.00 +688244.SH,0.00,0.00,0.00,64.63,0.00,45.94,0.00,22.09,0.00,34.25,0.00,22.89,0.00,0.00,0.00,15.43,0.00,0.00,0.00,16.59,0.00 +688395.SH,0.00,24.83,0.00,25.82,0.00,0.00,0.00,35.94,0.00,0.00,0.00,27.30,0.00,0.00,0.00,26.51,0.00,0.00,0.00,19.03,0.00 +300233.SZ,0.00,0.00,0.00,23.58,0.00,0.00,0.00,16.81,0.00,0.00,0.00,18.40,0.00,0.00,0.00,21.07,0.00,0.00,0.00,20.93,0.00 +688345.SH,0.00,25.30,0.00,24.81,0.00,0.00,0.00,26.42,0.00,0.00,0.00,22.93,0.00,0.00,0.00,33.19,0.00,0.00,0.00,17.92,0.00 +300153.SZ,0.00,0.00,0.00,54.89,0.00,0.00,0.00,62.70,0.00,0.00,0.00,53.71,0.00,0.00,0.00,57.08,0.00,0.00,0.00,59.88,0.00 +300994.SZ,0.00,27.59,0.00,27.88,29.27,0.00,0.00,27.24,0.00,0.00,0.00,27.57,0.00,0.00,0.00,30.13,0.00,0.00,0.00,28.83,0.00 +688106.SH,0.00,0.00,0.00,12.83,0.00,0.00,0.00,6.55,0.00,0.00,0.00,6.60,0.00,0.00,0.00,11.01,0.00,0.00,0.00,10.32,0.00 +300533.SZ,0.00,0.00,0.00,69.11,0.00,0.00,0.00,76.41,0.00,0.00,0.00,89.49,0.00,0.00,0.00,93.38,0.00,0.00,0.00,84.81,0.00 +301117.SZ,0.00,96.28,0.00,74.53,0.00,93.49,0.00,78.62,0.00,0.00,0.00,64.58,0.00,0.00,0.00,62.47,0.00,0.00,0.00,60.37,0.00 +300952.SZ,0.00,45.95,0.00,44.84,0.00,0.00,0.00,39.22,0.00,0.00,0.00,0.36,0.00,0.00,0.00,34.06,0.00,0.00,0.00,42.20,0.00 +301007.SZ,0.00,53.93,0.00,55.58,0.00,0.00,0.00,56.91,0.00,0.00,0.00,39.68,0.00,0.00,0.00,56.00,0.00,0.00,0.00,48.23,0.00 +688071.SH,96.98,0.00,60.06,48.33,91.18,0.00,0.00,54.10,0.00,0.00,0.00,38.69,0.00,0.00,0.00,33.86,0.00,0.00,0.00,34.38,0.00 +300491.SZ,0.00,0.00,0.00,25.46,0.00,0.00,0.00,20.52,0.00,0.00,0.00,20.31,0.00,0.00,0.00,18.83,0.00,0.00,0.00,20.16,0.00 +301268.SZ,0.00,85.91,0.00,81.88,0.00,0.00,0.00,77.00,0.00,0.00,0.00,76.80,0.00,0.00,0.00,79.78,0.00,0.00,0.00,67.46,0.00 +603379.SH,0.00,0.00,0.00,18.88,0.00,0.00,0.00,26.50,0.00,0.00,0.00,26.01,0.00,0.00,0.00,24.85,0.00,0.00,0.00,23.06,0.00 +688225.SH,0.00,0.00,81.79,80.87,0.00,78.45,0.00,70.49,0.00,0.00,0.00,62.04,0.00,0.00,0.00,62.77,0.00,0.00,0.00,74.38,0.00 +300753.SZ,0.00,0.00,0.00,47.66,0.00,0.00,0.00,42.22,0.00,0.00,0.00,21.84,0.00,0.00,0.00,46.79,0.00,0.00,0.00,45.90,0.00 +832225.BJ,0.00,30.23,0.00,31.55,0.00,0.00,0.00,29.61,0.00,0.00,0.00,35.20,0.00,0.00,0.00,36.93,0.00,0.00,0.00,33.88,0.00 +600962.SH,0.00,0.00,0.00,27.64,0.00,0.00,0.00,22.13,0.00,0.00,0.00,28.56,0.00,0.00,0.00,25.72,0.00,0.00,0.00,27.87,0.00 +870656.BJ,0.00,0.00,0.00,41.27,0.00,0.00,0.00,53.74,0.00,0.00,0.00,64.90,0.00,63.42,59.57,57.49,0.00,51.57,0.00,43.84,0.00 +300217.SZ,0.00,0.00,0.00,53.27,0.00,0.00,0.00,50.71,0.00,0.00,0.00,38.14,0.00,0.00,0.00,46.11,0.00,0.00,0.00,51.45,0.00 +835174.BJ,0.00,52.01,0.00,52.68,0.00,0.00,0.00,48.91,0.00,0.00,0.00,52.57,0.00,0.00,0.00,47.00,0.00,0.00,0.00,44.67,0.00 +300022.SZ,0.00,0.00,0.00,8.27,0.00,0.00,0.00,5.11,0.00,0.00,0.00,3.76,0.00,0.00,0.00,5.06,0.00,0.00,0.00,5.99,0.00 +300403.SZ,0.00,0.00,0.00,62.17,0.00,0.00,0.00,64.61,0.00,0.00,0.00,64.22,0.00,0.00,0.00,66.47,0.00,0.00,0.00,66.31,0.00 +688178.SH,0.00,0.00,0.00,32.43,0.00,0.00,0.00,37.13,0.00,0.00,0.00,26.54,0.00,0.00,0.00,40.58,0.00,0.00,0.00,51.95,0.00 +300652.SZ,0.00,0.00,0.00,32.07,0.00,0.00,0.00,28.64,0.00,0.00,0.00,28.95,0.00,0.00,0.00,30.93,0.00,0.00,0.00,40.31,0.00 +300731.SZ,0.00,0.00,0.00,36.96,0.00,0.00,0.00,23.20,0.00,0.00,0.00,38.27,0.00,0.00,0.00,43.37,0.00,0.00,0.00,64.13,0.00 +688539.SH,0.00,0.00,0.00,69.92,0.00,0.00,0.00,74.71,0.00,65.80,0.00,0.00,0.00,0.00,0.00,67.80,0.00,70.31,0.00,68.11,0.00 +002229.SZ,0.00,0.00,0.00,44.65,0.00,0.00,0.00,55.05,0.00,0.00,0.00,55.33,0.00,0.00,0.00,56.00,0.00,0.00,0.00,53.35,0.00 +600366.SH,0.00,0.00,0.00,40.63,0.00,33.67,0.00,33.89,0.00,42.02,0.00,42.24,0.00,0.00,0.00,39.90,0.00,0.00,0.00,44.78,0.00 +300531.SZ,0.00,0.00,0.00,26.82,0.00,0.00,0.00,23.89,0.00,0.00,0.00,30.97,0.00,0.00,0.00,29.97,0.00,0.00,0.00,29.22,0.00 +600610.SH,0.00,0.00,0.00,19.87,0.00,0.00,0.00,18.74,0.00,0.00,0.00,17.31,0.00,0.00,0.00,19.12,0.00,0.00,0.00,19.79,0.00 +300830.SZ,0.00,0.00,0.00,65.01,0.00,0.00,0.00,67.16,0.00,0.00,0.00,64.08,0.00,0.00,0.00,62.09,0.00,0.00,0.00,62.62,0.00 +300835.SZ,0.00,0.00,0.00,35.92,0.00,0.00,0.00,30.93,0.00,0.00,0.00,33.42,0.00,0.00,0.00,30.71,0.00,0.00,0.00,27.47,0.00 +300476.SZ,0.00,0.00,0.00,25.12,0.00,0.00,0.00,22.88,0.00,0.00,0.00,23.76,0.00,0.00,0.00,21.57,0.00,0.00,0.00,20.03,0.00 +603897.SH,0.00,0.00,0.00,27.14,0.00,0.00,0.00,24.51,0.00,0.00,0.00,29.26,0.00,0.00,0.00,31.15,0.00,0.00,0.00,31.03,0.00 +873576.BJ,0.00,52.89,0.00,56.42,0.00,0.00,0.00,64.79,0.00,62.48,0.00,54.31,0.00,0.00,0.00,57.71,0.00,0.00,0.00,63.53,0.00 +300010.SZ,0.00,0.00,0.00,11.45,0.00,0.00,0.00,9.02,0.00,0.00,0.00,0.10,0.00,0.00,0.00,6.77,0.00,0.00,0.00,15.26,0.00 +300735.SZ,0.00,0.00,0.00,87.95,0.00,0.00,0.00,79.26,0.00,0.00,0.00,73.28,0.00,0.00,0.00,76.22,0.00,0.00,0.00,72.23,0.00 +300913.SZ,0.00,44.66,47.03,48.42,0.00,0.00,0.00,35.45,0.00,0.00,0.00,29.80,0.00,0.00,0.00,27.23,0.00,0.00,0.00,23.49,0.00 +002581.SZ,0.00,0.00,0.00,15.97,0.00,0.00,0.00,14.21,0.00,0.00,0.00,17.83,0.00,0.00,0.00,11.96,0.00,0.00,0.00,14.20,0.00 +430090.BJ,0.00,0.00,0.00,18.77,0.00,0.00,0.00,13.37,0.00,0.00,0.00,15.90,0.00,0.00,0.00,14.40,0.00,0.00,0.00,73.91,0.00 +300925.SZ,0.00,43.56,42.94,42.17,0.00,0.00,0.00,37.53,0.00,0.00,0.00,31.20,0.00,0.00,0.00,29.18,0.00,0.00,0.00,29.80,0.00 +688559.SH,0.00,46.26,0.00,41.15,0.00,0.00,0.00,64.33,0.00,0.00,0.00,82.00,0.00,0.00,0.00,61.29,0.00,0.00,0.00,42.18,0.00 +300437.SZ,0.00,0.00,0.00,18.96,0.00,0.00,0.00,15.52,0.00,0.00,0.00,17.00,0.00,0.00,0.00,14.91,0.00,0.00,0.00,12.78,0.00 +688212.SH,0.00,34.30,0.00,29.74,0.00,26.66,0.00,29.85,0.00,0.00,0.00,18.66,0.00,0.00,0.00,24.66,0.00,0.00,0.00,19.49,0.00 +603112.SH,0.00,43.70,0.00,50.31,0.00,44.56,0.00,39.84,0.00,39.87,0.00,39.86,0.00,43.55,0.00,44.61,0.00,0.00,0.00,45.84,0.00 +600353.SH,0.00,0.00,0.00,12.83,0.00,0.00,0.00,13.14,0.00,14.81,0.00,17.90,0.00,25.08,0.00,19.93,0.00,0.00,0.00,16.97,0.00 +603296.SH,0.00,0.00,0.00,72.21,0.00,0.00,0.00,68.52,0.00,64.69,0.00,65.43,0.00,0.00,0.00,64.60,0.00,0.00,0.00,56.73,0.00 +301486.SZ,0.00,0.00,0.00,78.39,0.00,75.40,0.00,82.49,0.00,79.88,0.00,81.15,83.04,0.00,0.00,70.72,0.00,0.00,0.00,50.54,0.00 +830896.BJ,0.00,0.00,0.00,55.88,0.00,0.00,0.00,57.53,0.00,65.10,63.17,61.54,0.00,0.00,0.00,60.31,0.00,0.00,0.00,65.29,0.00 +300938.SZ,0.00,10.85,0.00,9.68,0.00,0.00,0.00,7.93,0.00,0.00,0.00,7.23,0.00,0.00,0.00,5.88,0.00,0.00,0.00,5.97,0.00 +688206.SH,0.00,0.00,0.00,51.16,0.00,51.72,0.00,43.06,0.00,0.00,0.00,44.12,0.00,0.00,0.00,36.25,0.00,0.00,0.00,32.98,0.00 +600160.SH,0.00,0.00,0.00,10.20,0.00,0.00,0.00,13.00,0.00,0.00,0.00,11.63,0.00,0.00,0.00,11.68,0.00,0.00,0.00,11.51,0.00 +831834.BJ,0.00,0.00,0.00,12.81,0.00,17.12,0.00,14.43,0.00,0.00,0.00,11.29,0.00,0.00,0.00,10.56,0.00,0.00,0.00,10.49,0.00 +873132.BJ,0.00,0.00,0.00,74.74,0.00,0.00,0.00,74.46,0.00,0.00,0.00,76.93,67.82,60.41,0.00,67.47,0.00,0.00,0.00,64.73,0.00 +603890.SH,0.00,0.00,0.00,92.90,0.00,0.00,0.00,63.16,0.00,0.00,0.00,59.97,0.00,0.00,0.00,80.09,0.00,0.00,0.00,80.01,0.00 +871981.BJ,0.00,21.45,0.00,22.84,0.00,32.42,0.00,32.37,0.00,35.56,0.00,34.57,0.00,33.76,0.00,33.03,0.00,41.68,0.00,39.38,0.00 +600156.SH,0.00,0.00,0.00,50.83,0.00,0.00,0.00,52.65,0.00,0.00,0.00,63.50,0.00,0.00,0.00,37.41,0.00,0.00,0.00,55.25,0.00 +301358.SZ,0.00,0.00,0.00,93.45,99.06,96.68,0.00,95.36,0.00,83.83,80.79,93.49,0.00,0.00,0.00,96.12,0.00,0.00,0.00,81.36,0.00 +300049.SZ,0.00,0.00,0.00,11.94,0.00,0.00,0.00,12.12,0.00,0.00,0.00,14.36,0.00,0.00,0.00,11.51,0.00,0.00,0.00,14.45,0.00 +834058.BJ,0.00,53.67,0.00,63.45,0.00,65.08,0.00,66.11,61.60,68.16,65.82,64.99,73.19,72.93,0.00,73.01,0.00,73.15,0.00,67.70,0.00 +300748.SZ,0.00,0.00,0.00,64.00,0.00,0.00,0.00,56.93,0.00,0.00,0.00,47.89,0.00,0.00,0.00,46.54,0.00,0.00,0.00,47.89,0.00 +300960.SZ,0.00,56.68,0.00,68.42,0.00,0.00,0.00,72.44,0.00,0.00,0.00,70.64,0.00,0.00,0.00,67.75,0.00,0.00,0.00,79.86,0.00 +300542.SZ,0.00,0.00,0.00,52.46,0.00,0.00,0.00,42.76,0.00,0.00,0.00,50.27,0.00,0.00,0.00,63.39,0.00,0.00,0.00,59.07,0.00 +300127.SZ,0.00,0.00,0.00,52.76,0.00,0.00,0.00,36.74,0.00,0.00,0.00,38.07,0.00,0.00,0.00,37.68,0.00,0.00,0.00,33.06,0.00 +301321.SZ,0.00,0.00,0.00,95.58,0.00,94.44,0.00,93.28,0.00,0.00,0.00,89.53,0.00,0.00,0.00,85.05,0.00,0.00,0.00,85.34,0.00 +002463.SZ,0.00,0.00,0.00,62.46,0.00,0.00,0.00,52.72,0.00,0.00,0.00,48.21,0.00,0.00,0.00,47.87,0.00,0.00,0.00,49.78,0.00 +600246.SH,0.00,0.00,0.00,13.07,0.00,0.00,0.00,31.35,0.00,0.00,0.00,37.88,0.00,0.00,0.00,15.99,0.00,0.00,0.00,27.74,0.00 +831010.BJ,0.00,0.00,0.00,26.33,0.00,0.00,0.00,30.38,0.00,0.00,0.00,27.37,0.00,0.00,0.00,28.58,0.00,0.00,0.00,25.11,0.00 +688117.SH,0.00,28.11,0.00,19.81,24.03,0.00,0.00,24.65,0.00,0.00,0.00,28.23,0.00,0.00,0.00,22.87,0.00,0.00,0.00,32.48,0.00 +688509.SH,0.00,17.82,0.00,11.28,0.00,0.00,0.00,25.30,0.00,0.00,0.00,24.11,0.00,0.00,0.00,15.41,0.00,0.00,0.00,23.47,0.00 +000767.SZ,0.00,0.00,0.00,86.28,0.00,0.00,0.00,87.85,0.00,0.00,0.00,83.15,0.00,0.00,0.00,89.97,0.00,0.00,0.00,90.13,0.00 +300163.SZ,0.00,0.00,0.00,64.32,0.00,0.00,0.00,60.25,0.00,0.00,0.00,68.21,0.00,0.00,0.00,67.43,0.00,0.00,0.00,68.40,0.00 +300961.SZ,0.00,70.19,0.00,58.19,0.00,0.00,0.00,66.15,0.00,0.00,0.00,55.16,0.00,0.00,0.00,42.25,0.00,0.00,0.00,45.47,0.00 +300598.SZ,0.00,0.00,0.00,53.08,0.00,0.00,0.00,52.91,0.00,0.00,0.00,54.03,0.00,0.00,0.00,40.93,0.00,0.00,0.00,36.32,0.00 +688498.SH,0.00,0.00,0.00,58.52,0.00,58.87,0.00,57.24,0.00,61.77,0.00,57.14,0.00,0.00,0.00,55.90,0.00,0.00,0.00,59.05,0.00 +300377.SZ,0.00,0.00,0.00,19.84,0.00,0.00,0.00,15.72,0.00,0.00,0.00,31.40,0.00,0.00,0.00,35.06,0.00,0.00,0.00,36.39,0.00 +603881.SH,0.00,0.00,0.00,81.44,0.00,0.00,0.00,49.15,0.00,0.00,0.00,51.09,0.00,0.00,0.00,97.28,0.00,0.00,0.00,98.38,0.00 +300663.SZ,0.00,0.00,0.00,25.11,0.00,0.00,0.00,21.25,0.00,0.00,0.00,23.22,0.00,0.00,0.00,22.45,0.00,0.00,0.00,21.28,0.00 +300716.SZ,0.00,0.00,0.00,27.75,0.00,0.00,0.00,37.27,0.00,0.00,0.00,71.08,0.00,0.00,0.00,65.99,0.00,0.00,0.00,65.67,0.00 +833781.BJ,0.00,74.03,0.00,65.41,0.00,0.00,0.00,74.06,0.00,78.41,0.00,58.53,0.00,0.00,0.00,46.18,0.00,0.00,0.00,51.17,0.00 +605008.SH,0.00,0.00,0.00,62.41,0.00,0.00,0.00,71.21,0.00,0.00,0.00,41.19,0.00,0.00,0.00,44.80,0.00,0.00,0.00,32.62,0.00 +000969.SZ,0.00,0.00,0.00,20.76,0.00,0.00,0.00,16.61,0.00,0.00,0.00,10.30,0.00,0.00,0.00,10.27,0.00,0.00,0.00,10.09,0.00 +002378.SZ,0.00,0.00,0.00,27.92,0.00,0.00,0.00,23.95,0.00,0.00,0.00,23.83,0.00,0.00,0.00,23.78,0.00,0.00,0.00,25.26,0.00 +300721.SZ,0.00,0.00,0.00,27.89,0.00,0.00,0.00,29.84,0.00,0.00,0.00,28.96,0.00,0.00,0.00,25.33,0.00,0.00,0.00,22.68,0.00 +688205.SH,0.00,0.00,0.00,71.34,0.00,63.65,0.00,63.27,0.00,0.00,0.00,63.91,0.00,0.00,0.00,72.99,0.00,0.00,0.00,76.03,0.00 +836717.BJ,0.00,53.89,0.00,61.17,0.00,36.16,0.00,48.47,0.00,51.58,35.22,49.79,50.88,30.30,0.00,38.22,0.00,0.00,0.00,34.35,0.00 +301113.SZ,0.00,88.75,0.00,86.09,0.00,84.92,81.85,82.46,0.00,0.00,0.00,74.84,0.00,0.00,0.00,88.21,0.00,0.00,0.00,48.44,0.00 +301092.SZ,29.95,31.53,0.00,27.06,0.00,24.29,0.00,24.47,0.00,0.00,0.00,20.03,0.00,0.00,0.00,20.00,0.00,0.00,0.00,18.10,0.00 +603015.SH,0.00,0.00,0.00,40.62,0.00,0.00,0.00,40.97,0.00,0.00,0.00,36.68,0.00,0.00,0.00,37.59,0.00,0.00,0.00,42.69,0.00 +300065.SZ,0.00,0.00,0.00,35.40,0.00,0.00,0.00,33.55,0.00,0.00,0.00,59.80,0.00,0.00,0.00,64.56,0.00,0.00,0.00,27.40,0.00 +301270.SZ,0.00,36.34,0.00,30.16,0.00,30.44,0.00,25.35,0.00,0.00,0.00,24.99,0.00,0.00,0.00,20.55,0.00,0.00,0.00,22.12,0.00 +688679.SH,0.00,31.04,28.21,25.84,0.00,0.00,0.00,22.60,0.00,0.00,0.00,21.59,0.00,0.00,0.00,38.94,0.00,0.00,0.00,41.94,0.00 +688378.SH,0.00,0.00,0.00,93.40,0.00,0.00,0.00,95.94,0.00,0.00,0.00,96.31,0.00,0.00,0.00,85.52,0.00,0.00,0.00,81.23,0.00 +002115.SZ,0.00,0.00,0.00,11.28,0.00,0.00,0.00,9.65,0.00,0.00,0.00,11.70,0.00,0.00,0.00,24.88,0.00,0.00,0.00,21.11,0.00 +300693.SZ,0.00,0.00,0.00,14.90,0.00,0.00,0.00,14.75,0.00,0.00,0.00,13.22,0.00,0.00,0.00,19.26,0.00,0.00,0.00,11.20,0.00 +300824.SZ,26.20,0.00,0.00,26.94,0.00,0.00,0.00,27.18,0.00,0.00,0.00,22.43,0.00,0.00,0.00,28.35,0.00,0.00,0.00,32.89,0.00 +001380.SZ,0.00,0.00,0.00,60.71,0.00,0.00,0.00,56.04,0.00,59.50,0.00,64.39,0.00,0.00,0.00,66.92,0.00,0.00,0.00,68.30,0.00 +600658.SH,0.00,0.00,0.00,69.82,0.00,16.21,0.00,49.85,0.00,6.25,0.00,30.23,0.00,5.58,0.00,5.42,0.00,65.08,0.00,50.55,0.00 +301377.SZ,0.00,0.00,0.00,31.23,0.00,29.95,0.00,30.74,0.00,32.23,0.00,31.44,0.00,0.00,0.00,26.94,0.00,0.00,0.00,22.36,0.00 +002491.SZ,0.00,0.00,0.00,75.79,0.00,0.00,0.00,71.83,0.00,0.00,0.00,77.81,0.00,0.00,0.00,72.10,0.00,0.00,0.00,71.00,0.00 +603197.SH,0.00,0.00,0.00,32.12,0.00,0.00,0.00,30.03,0.00,0.00,0.00,28.22,0.00,0.00,0.00,32.88,0.00,0.00,0.00,33.55,0.00 +002928.SZ,0.00,0.00,0.00,6.31,0.00,0.00,0.00,6.03,0.00,0.00,0.00,7.01,0.00,0.00,0.00,7.98,0.00,0.00,0.00,8.83,0.00 +001337.SZ,0.00,0.00,0.00,85.90,100.00,0.00,91.94,87.40,0.00,100.00,0.00,100.00,0.00,0.00,0.00,82.99,0.00,0.00,0.00,73.52,0.00 +300002.SZ,0.00,0.00,0.00,83.47,0.00,0.00,0.00,83.90,0.00,0.00,0.00,75.42,0.00,0.00,0.00,67.05,0.00,0.00,0.00,58.01,0.00 +688201.SH,0.00,29.19,0.00,0.00,0.00,0.00,0.00,19.15,0.00,0.00,0.00,22.44,0.00,0.00,0.00,17.73,0.00,0.00,0.00,25.83,0.00 +300350.SZ,0.00,0.00,0.00,19.16,0.00,0.00,0.00,24.08,0.00,0.00,0.00,17.04,0.00,0.00,0.00,26.28,0.00,0.00,0.00,38.45,0.00 +300460.SZ,0.00,0.00,0.00,41.06,0.00,0.00,0.00,52.38,0.00,0.00,0.00,39.15,0.00,0.00,0.00,36.07,0.00,0.00,0.00,39.13,0.00 +300139.SZ,0.00,0.00,0.00,95.37,0.00,0.00,0.00,95.25,0.00,0.00,0.00,94.60,0.00,0.00,0.00,84.79,0.00,0.00,0.00,96.89,0.00 +600839.SH,0.00,0.00,0.00,22.53,0.00,20.45,0.00,19.90,0.00,19.64,0.00,19.05,0.00,20.55,0.00,18.08,0.00,21.81,0.00,19.52,0.00 +301141.SZ,0.00,0.00,0.00,39.58,0.00,44.91,0.00,44.47,0.00,48.95,0.00,0.00,0.00,0.00,0.00,31.59,0.00,0.00,0.00,40.89,0.00 +873706.BJ,90.22,0.00,39.00,51.69,0.00,0.00,0.00,36.34,0.00,0.00,0.00,50.73,0.00,54.31,0.00,51.90,0.00,0.00,0.00,38.32,0.00 +838971.BJ,0.00,0.00,0.00,46.81,0.00,0.00,0.00,57.37,52.40,46.13,0.00,39.39,0.00,0.00,0.00,50.13,0.00,0.00,0.00,45.78,0.00 +002929.SZ,0.00,0.00,0.00,32.43,0.00,0.00,0.00,29.27,0.00,0.00,0.00,25.71,0.00,0.00,0.00,65.19,0.00,0.00,0.00,61.91,0.00 +603063.SH,0.00,0.00,0.00,46.20,0.00,0.00,0.00,36.01,0.00,0.00,0.00,40.23,0.00,0.00,0.00,32.47,0.00,0.00,0.00,31.81,0.00 +603322.SH,0.00,0.00,0.00,66.48,0.00,0.00,0.00,82.33,0.00,0.00,0.00,86.08,0.00,0.00,0.00,79.06,0.00,0.00,0.00,86.51,0.00 +300644.SZ,0.00,0.00,0.00,12.08,0.00,0.00,0.00,14.60,0.00,0.00,0.00,12.79,0.00,0.00,0.00,15.07,0.00,0.00,0.00,13.02,0.00 +002735.SZ,0.00,0.00,0.00,56.54,0.00,0.00,0.00,55.98,0.00,0.00,0.00,53.87,0.00,0.00,0.00,46.64,0.00,0.00,0.00,45.37,0.00 +688171.SH,57.64,0.00,52.75,55.58,0.00,49.72,51.62,38.94,0.00,0.00,0.00,54.68,0.00,0.00,0.00,65.78,0.00,0.00,0.00,57.16,0.00 +300157.SZ,0.00,0.00,0.00,59.46,0.00,0.00,0.00,52.96,0.00,0.00,0.00,57.61,0.00,0.00,0.00,46.40,0.00,0.00,0.00,41.60,0.00 +871857.BJ,0.00,0.00,0.00,95.59,0.00,93.72,0.00,93.22,0.00,0.00,0.00,92.11,0.00,0.00,0.00,89.35,0.00,0.00,0.00,89.17,0.00 +688162.SH,0.00,63.55,0.00,50.57,0.00,50.89,0.00,39.82,0.00,0.00,0.00,41.03,0.00,0.00,0.00,47.14,0.00,0.00,0.00,50.59,0.00 +300245.SZ,0.00,0.00,0.00,45.16,0.00,0.00,0.00,43.90,0.00,0.00,0.00,50.51,0.00,0.00,0.00,35.00,0.00,0.00,0.00,46.34,0.00 +688270.SH,0.00,0.00,0.00,74.19,0.00,78.84,0.00,62.94,0.00,0.00,0.00,63.67,0.00,0.00,0.00,70.27,0.00,0.00,0.00,66.59,0.00 +831689.BJ,0.00,0.00,0.00,48.17,0.00,56.59,0.00,50.37,0.00,0.00,0.00,46.05,0.00,0.00,0.00,44.42,0.00,0.00,0.00,44.16,0.00 +300290.SZ,0.00,0.00,0.00,9.61,0.00,0.00,0.00,16.42,0.00,0.00,0.00,22.43,0.00,0.00,0.00,10.24,0.00,0.00,0.00,20.07,0.00 +301535.SZ,0.00,0.00,0.00,49.99,0.00,0.00,0.00,46.29,0.00,49.51,0.00,50.48,0.00,0.00,0.00,50.93,0.00,47.63,0.00,48.00,0.00 +002431.SZ,0.00,0.00,0.00,32.72,0.00,0.00,0.00,27.78,0.00,0.00,0.00,22.55,0.00,0.00,0.00,31.91,0.00,0.00,0.00,43.15,0.00 +600590.SH,0.00,0.00,0.00,18.33,0.00,0.00,0.00,24.17,0.00,0.00,0.00,22.13,0.00,0.00,0.00,21.98,0.00,0.00,0.00,30.21,0.00 +301187.SZ,69.19,0.00,66.84,70.14,0.00,71.49,0.00,0.00,0.00,0.00,0.00,69.79,0.00,0.00,0.00,62.40,0.00,0.00,0.00,57.23,0.00 +002193.SZ,0.00,0.00,0.00,46.75,0.00,0.00,0.00,24.35,0.00,0.00,0.00,46.81,0.00,0.00,0.00,38.68,0.00,0.00,0.00,42.93,0.00 +832978.BJ,0.00,0.00,0.00,39.30,0.00,0.00,0.00,42.09,0.00,47.49,0.00,49.73,0.00,0.00,0.00,51.77,0.00,0.00,0.00,55.26,0.00 +839371.BJ,0.00,0.00,0.00,24.50,0.00,0.00,0.00,24.67,0.00,20.80,0.00,16.28,0.00,0.00,0.00,16.71,0.00,0.00,0.00,13.63,0.00 +300798.SZ,0.00,0.00,0.00,17.67,0.00,0.00,0.00,23.45,0.00,0.00,0.00,26.07,0.00,0.00,0.00,24.26,0.00,0.00,0.00,24.41,0.00 +002006.SZ,0.00,0.00,0.00,30.21,0.00,0.00,0.00,44.82,0.00,0.00,0.00,66.00,0.00,0.00,0.00,41.95,0.00,0.00,0.00,44.17,0.00 +000510.SZ,0.00,0.00,0.00,12.72,0.00,0.00,0.00,16.77,0.00,0.00,0.00,19.45,0.00,0.00,0.00,20.44,0.00,0.00,0.00,20.36,0.00 +300224.SZ,0.00,0.00,0.00,49.90,0.00,0.00,0.00,48.11,0.00,0.00,0.00,55.11,0.00,0.00,0.00,42.36,0.00,0.00,0.00,37.39,0.00 +300130.SZ,0.00,0.00,0.00,7.43,0.00,0.00,0.00,7.53,0.00,0.00,0.00,10.43,0.00,0.00,0.00,17.62,0.00,0.00,0.00,19.59,0.00 +300570.SZ,0.00,0.00,0.00,77.57,0.00,0.00,0.00,75.06,0.00,0.00,0.00,81.21,0.00,0.00,0.00,79.27,0.00,0.00,0.00,83.03,0.00 +002851.SZ,0.00,0.00,0.00,23.53,0.00,0.00,0.00,16.92,0.00,0.00,0.00,18.11,0.00,0.00,0.00,21.44,0.00,0.00,0.00,19.78,0.00 +430300.BJ,0.00,0.00,0.00,69.34,0.00,67.92,0.00,62.08,0.00,57.02,0.00,50.37,0.00,40.30,0.00,42.81,0.00,49.19,0.00,47.11,0.00 +688003.SH,0.00,0.00,0.00,64.39,0.00,0.00,0.00,35.46,0.00,0.00,0.00,38.32,0.00,0.00,0.00,24.50,0.00,0.00,0.00,27.64,0.00 +301153.SZ,0.00,36.73,0.00,31.52,0.00,27.28,0.00,24.56,0.00,0.00,0.00,29.17,0.00,0.00,0.00,23.86,0.00,0.00,0.00,26.58,0.00 +002453.SZ,0.00,0.00,0.00,22.84,0.00,0.00,0.00,20.12,0.00,0.00,0.00,20.08,0.00,0.00,0.00,14.81,0.00,0.00,0.00,18.51,0.00 +601900.SH,0.00,0.00,0.00,32.82,0.00,0.00,0.00,30.45,0.00,0.00,0.00,23.87,0.00,0.00,0.00,21.57,0.00,0.00,0.00,21.50,0.00 +300468.SZ,0.00,0.00,0.00,78.59,0.00,0.00,0.00,77.52,0.00,0.00,0.00,79.88,0.00,0.00,0.00,82.43,0.00,0.00,0.00,87.92,0.00 +002988.SZ,0.00,0.00,0.00,19.82,0.00,0.00,0.00,21.04,0.00,0.00,0.00,19.58,0.00,0.00,0.00,20.09,0.00,0.00,0.00,24.12,0.00 +834765.BJ,0.00,0.00,0.00,94.34,0.00,0.00,0.00,94.44,0.00,0.00,0.00,94.78,0.00,0.00,0.00,93.61,0.00,0.00,0.00,90.68,0.00 +300281.SZ,0.00,0.00,0.00,18.90,0.00,0.00,0.00,13.73,0.00,0.00,0.00,16.00,0.00,0.00,0.00,14.88,0.00,0.00,0.00,15.31,0.00 +601083.SH,0.00,0.00,0.00,42.10,0.00,0.00,0.00,35.89,0.00,32.83,0.00,35.40,0.00,35.72,0.00,33.66,0.00,0.00,0.00,31.56,0.00 +301256.SZ,0.00,21.42,0.00,24.48,0.00,34.33,0.00,31.14,0.00,0.00,0.00,23.80,0.00,0.00,0.00,22.70,0.00,0.00,0.00,21.10,0.00 +600611.SH,0.00,0.00,0.00,2.85,0.00,0.00,0.00,4.36,0.00,0.00,0.00,4.49,0.00,0.00,0.00,3.11,0.00,0.00,0.00,5.16,0.00 +600468.SH,0.00,0.00,0.00,28.29,0.00,0.00,0.00,30.51,0.00,0.00,0.00,30.74,0.00,0.00,0.00,23.53,0.00,0.00,0.00,27.87,0.00 +301159.SZ,27.49,0.00,0.00,10.72,0.00,27.88,0.00,15.73,0.00,0.00,0.00,12.26,0.00,0.00,0.00,11.79,0.00,0.00,0.00,11.95,0.00 +430564.BJ,0.00,27.24,0.00,47.11,89.72,90.92,0.00,51.19,0.00,0.00,0.00,32.88,0.00,0.00,0.00,18.32,0.00,0.00,0.00,46.79,0.00 +300429.SZ,0.00,0.00,0.00,33.93,0.00,0.00,0.00,30.20,0.00,0.00,0.00,25.38,0.00,0.00,0.00,24.91,0.00,0.00,0.00,24.28,0.00 +301367.SZ,0.00,43.30,0.00,30.31,0.00,28.13,0.00,41.83,0.00,67.08,0.00,71.99,0.00,0.00,0.00,53.76,0.00,0.00,0.00,43.94,0.00 +832149.BJ,0.00,0.00,0.00,12.99,0.00,0.00,0.00,12.51,18.28,19.48,19.52,18.74,0.00,0.00,0.00,27.92,0.00,0.00,0.00,13.24,0.00 +605178.SH,0.00,0.00,0.00,53.22,0.00,0.00,0.00,53.08,0.00,0.00,0.00,68.15,0.00,0.00,0.00,55.92,0.00,0.00,0.00,53.29,0.00 +871245.BJ,0.00,0.00,0.00,40.69,0.00,43.57,42.73,41.66,0.00,42.88,0.00,39.23,0.00,42.13,0.00,37.54,0.00,0.00,0.00,40.86,0.00 +002925.SZ,0.00,0.00,0.00,76.62,0.00,0.00,0.00,74.62,0.00,0.00,0.00,63.24,0.00,0.00,0.00,48.53,0.00,0.00,0.00,43.82,0.00 +600206.SH,0.00,0.00,0.00,68.12,0.00,0.00,0.00,63.30,0.00,0.00,0.00,54.71,0.00,0.00,0.00,58.73,0.00,0.00,0.00,39.79,0.00 +605128.SH,0.00,0.00,0.00,71.40,0.00,0.00,0.00,70.76,0.00,0.00,0.00,71.19,0.00,0.00,0.00,87.62,0.00,0.00,0.00,83.14,0.00 +688793.SH,0.00,26.59,0.00,28.35,21.29,0.00,0.00,26.21,0.00,0.00,0.00,31.53,0.00,0.00,0.00,22.86,0.00,0.00,0.00,25.38,0.00 +300180.SZ,0.00,0.00,0.00,18.77,0.00,0.00,0.00,19.36,0.00,0.00,0.00,21.69,0.00,0.00,0.00,25.88,0.00,0.00,0.00,28.92,0.00 +300518.SZ,0.00,0.00,0.00,37.89,0.00,0.00,0.00,15.53,0.00,0.00,0.00,20.51,0.00,0.00,0.00,12.52,0.00,0.00,0.00,13.23,0.00 +300430.SZ,0.00,0.00,0.00,30.09,0.00,0.00,0.00,13.81,0.00,0.00,0.00,21.63,0.00,0.00,0.00,22.63,0.00,0.00,0.00,15.37,0.00 +000831.SZ,0.00,0.00,0.00,55.90,0.00,0.00,0.00,52.43,0.00,0.00,0.00,53.50,0.00,0.00,0.00,50.65,0.00,0.00,0.00,46.24,0.00 +000661.SZ,0.00,0.00,0.00,8.35,0.00,0.00,0.00,7.87,0.00,0.00,0.00,6.58,0.00,0.00,0.00,6.08,0.00,0.00,0.00,28.06,0.00 +300004.SZ,0.00,0.00,0.00,35.36,0.00,0.00,0.00,32.94,0.00,0.00,0.00,24.99,0.00,0.00,0.00,43.17,0.00,0.00,0.00,62.09,0.00 +603880.SH,0.00,0.00,0.00,50.08,0.00,0.00,0.00,52.21,0.00,0.00,0.00,54.11,0.00,0.00,0.00,52.22,0.00,0.00,0.00,47.72,0.00 +600363.SH,0.00,0.00,0.00,28.15,0.00,0.00,0.00,44.99,0.00,0.00,0.00,31.18,0.00,0.00,0.00,31.91,0.00,0.00,0.00,39.22,0.00 +002175.SZ,0.00,0.00,0.00,25.67,0.00,0.00,0.00,24.75,0.00,0.00,0.00,35.18,0.00,0.00,0.00,31.82,0.00,0.00,0.00,31.99,0.00 +300260.SZ,0.00,0.00,0.00,24.23,0.00,0.00,0.00,23.72,0.00,0.00,0.00,19.37,0.00,0.00,0.00,24.35,0.00,0.00,0.00,23.71,0.00 +872925.BJ,0.00,50.42,0.00,46.26,0.00,48.16,0.00,50.75,0.00,0.00,0.00,55.00,0.00,0.00,0.00,52.71,0.00,0.00,0.00,49.66,0.00 +300904.SZ,0.00,98.74,0.00,93.94,0.00,96.40,0.00,93.67,0.00,97.39,98.56,97.97,97.96,0.00,0.00,97.31,0.00,0.00,0.00,91.73,0.00 +300559.SZ,0.00,0.00,0.00,19.00,0.00,0.00,0.00,13.29,0.00,0.00,0.00,15.19,0.00,0.00,0.00,14.79,0.00,0.00,0.00,16.82,0.00 +832735.BJ,0.00,59.51,0.00,56.62,0.00,0.00,0.00,53.84,0.00,0.00,0.00,54.01,0.00,0.00,0.00,59.38,0.00,0.00,0.00,57.13,0.00 +601020.SH,0.00,0.00,0.00,48.05,0.00,0.00,0.00,94.61,0.00,0.00,0.00,99.72,0.00,0.00,0.00,95.68,0.00,0.00,0.00,91.51,0.00 +831167.BJ,0.00,0.00,0.00,58.34,0.00,0.00,60.22,60.94,0.00,0.00,0.00,56.14,0.00,0.00,0.00,64.54,0.00,0.00,0.00,72.17,0.00 +603836.SH,0.00,15.15,0.00,11.97,0.00,0.00,0.00,15.80,0.00,0.00,0.00,15.69,0.00,0.00,0.00,12.13,0.00,0.00,0.00,10.60,0.00 +002513.SZ,0.00,0.00,0.00,39.10,0.00,0.00,0.00,52.95,0.00,0.00,0.00,46.34,0.00,0.00,0.00,33.12,0.00,0.00,0.00,24.08,0.00 +301372.SZ,0.00,0.00,0.00,69.46,0.00,67.79,0.00,58.86,0.00,0.00,0.00,42.78,0.00,0.00,0.00,39.59,0.00,0.00,0.00,42.78,0.00 +300032.SZ,0.00,0.00,0.00,38.11,0.00,0.00,0.00,37.49,0.00,0.00,0.00,71.43,0.00,0.00,0.00,67.67,0.00,0.00,0.00,39.47,0.00 +002072.SZ,0.00,0.00,0.00,99.89,0.00,0.00,0.00,100.00,0.00,0.00,0.00,99.95,0.00,0.00,0.00,95.29,0.00,0.00,0.00,98.60,0.00 +688084.SH,0.00,0.00,0.00,94.16,0.00,96.47,0.00,92.85,0.00,91.03,0.00,75.43,0.00,0.00,0.00,74.92,0.00,0.00,0.00,67.39,0.00 +688577.SH,0.00,0.00,0.00,14.05,0.00,0.00,0.00,10.45,0.00,0.00,0.00,16.24,0.00,0.00,0.00,25.22,0.00,0.00,0.00,22.61,0.00 +003002.SZ,0.00,0.00,0.00,26.63,0.00,0.00,0.00,23.57,0.00,0.00,0.00,22.71,0.00,0.00,0.00,23.66,0.00,0.00,0.00,18.45,0.00 +300200.SZ,0.00,0.00,0.00,34.33,0.00,0.00,0.00,28.09,0.00,0.00,0.00,28.37,0.00,0.00,0.00,18.56,0.00,0.00,0.00,14.62,0.00 +002837.SZ,0.00,0.00,0.00,41.54,0.00,0.00,0.00,30.73,0.00,0.00,0.00,31.18,0.00,0.00,0.00,30.03,0.00,0.00,0.00,21.56,0.00 +300499.SZ,0.00,0.00,0.00,44.29,0.00,0.00,0.00,47.16,0.00,0.00,0.00,53.09,0.00,0.00,0.00,33.61,0.00,0.00,0.00,51.74,0.00 +000536.SZ,0.00,0.00,0.00,59.36,0.00,0.00,0.00,47.65,0.00,0.00,0.00,43.57,0.00,0.00,0.00,31.92,0.00,0.00,0.00,49.72,0.00 +002131.SZ,0.00,0.00,0.00,22.20,0.00,0.00,0.00,20.34,0.00,0.00,0.00,21.44,0.00,0.00,0.00,26.07,0.00,0.00,0.00,19.27,0.00 +000520.SZ,0.00,0.00,0.00,37.32,0.00,0.00,0.00,42.49,0.00,0.00,0.00,40.39,0.00,0.00,0.00,27.50,0.00,0.00,0.00,33.70,0.00 +002486.SZ,0.00,0.00,0.00,61.32,0.00,0.00,0.00,67.02,0.00,0.00,0.00,62.49,0.00,0.00,0.00,59.40,0.00,0.00,0.00,58.24,0.00 +605303.SH,0.00,69.20,0.00,51.98,0.00,0.00,0.00,30.16,0.00,0.00,0.00,10.46,0.00,0.00,0.00,55.26,0.00,0.00,0.00,70.74,0.00 +301277.SZ,0.00,0.00,0.00,68.34,0.00,71.57,0.00,62.09,0.00,69.55,0.00,64.20,0.00,0.00,0.00,67.21,0.00,0.00,0.00,62.14,0.00 +831175.BJ,0.00,0.00,0.00,12.04,0.00,0.00,0.00,21.23,0.00,38.28,0.00,42.45,0.00,20.41,0.00,24.25,0.00,0.00,0.00,13.69,0.00 +300278.SZ,0.00,0.00,0.00,45.25,0.00,0.00,0.00,60.49,0.00,0.00,0.00,56.29,0.00,0.00,0.00,56.95,0.00,0.00,0.00,68.73,0.00 +873169.BJ,0.00,0.00,0.00,57.34,69.16,61.95,0.00,56.88,0.00,0.00,0.00,56.20,0.00,0.00,0.00,53.72,0.00,0.00,0.00,50.70,0.00 +688287.SH,0.00,0.00,0.00,45.00,0.00,33.74,0.00,45.00,0.00,0.00,0.00,29.71,0.00,0.00,0.00,34.15,0.00,0.00,0.00,23.44,0.00 +688255.SH,0.00,27.35,0.00,31.28,0.00,34.15,0.00,30.98,0.00,0.00,0.00,27.17,0.00,0.00,0.00,27.66,0.00,0.00,0.00,33.16,0.00 +300465.SZ,0.00,0.00,0.00,54.92,0.00,0.00,0.00,67.45,0.00,0.00,0.00,54.38,0.00,50.47,0.00,50.98,0.00,52.02,0.00,52.28,0.00 +430198.BJ,0.00,0.00,0.00,35.27,0.00,0.00,0.00,45.90,0.00,0.00,0.00,32.70,0.00,0.00,0.00,60.89,0.00,0.00,0.00,71.40,0.00 +002703.SZ,0.00,0.00,0.00,60.17,0.00,0.00,0.00,53.32,0.00,0.00,0.00,56.77,0.00,0.00,0.00,60.19,0.00,0.00,0.00,66.01,0.00 +300738.SZ,0.00,0.00,0.00,55.45,0.00,0.00,0.00,51.84,0.00,0.00,0.00,53.41,0.00,0.00,0.00,55.59,0.00,0.00,0.00,56.45,0.00 +301063.SZ,0.00,35.93,48.85,49.63,0.00,51.59,0.00,46.02,0.00,0.00,0.00,30.36,0.00,0.00,0.00,51.89,0.00,0.00,0.00,55.59,0.00 +300541.SZ,0.00,0.00,0.00,74.97,0.00,0.00,0.00,61.48,0.00,0.00,0.00,39.47,0.00,0.00,0.00,41.84,0.00,0.00,0.00,36.18,0.00 +002103.SZ,0.00,0.00,0.00,47.74,0.00,62.60,0.00,56.97,0.00,27.68,0.00,50.65,0.00,50.14,0.00,59.43,0.00,54.37,0.00,60.52,0.00 +601360.SH,0.00,0.00,0.00,22.77,0.00,0.00,0.00,25.20,0.00,0.00,0.00,22.04,0.00,0.00,0.00,25.47,0.00,0.00,0.00,27.47,0.00 +002469.SZ,0.00,0.00,0.00,53.15,0.00,0.00,0.00,20.98,0.00,0.00,0.00,33.86,0.00,0.00,0.00,28.14,0.00,0.00,0.00,38.83,0.00 +871634.BJ,0.00,0.00,0.00,25.74,0.00,0.00,0.00,35.27,0.00,31.42,0.00,25.83,0.00,0.00,0.00,29.17,0.00,0.00,0.00,41.84,0.00 +600875.SH,0.00,0.00,0.00,10.97,0.00,0.00,0.00,12.00,0.00,0.00,0.00,11.98,0.00,0.00,0.00,24.15,0.00,0.00,0.00,15.49,0.00 +300548.SZ,0.00,0.00,0.00,86.10,0.00,0.00,0.00,82.49,0.00,0.00,0.00,88.83,0.00,0.00,0.00,66.62,0.00,0.00,0.00,61.61,0.00 +603344.SH,0.00,0.00,0.00,25.75,0.00,0.00,0.00,26.53,0.00,21.79,0.00,21.64,0.00,23.76,0.00,21.19,0.00,0.00,0.00,22.89,0.00 +301131.SZ,31.11,0.00,0.00,34.00,0.00,39.99,0.00,42.20,0.00,0.00,0.00,40.85,0.00,0.00,0.00,36.59,0.00,0.00,0.00,34.88,0.00 +688048.SH,0.00,0.00,0.00,78.90,0.00,82.27,0.00,0.00,0.00,0.00,0.00,65.48,0.00,0.00,0.00,49.28,0.00,0.00,0.00,53.44,0.00 +603912.SH,0.00,0.00,0.00,72.02,0.00,0.00,0.00,58.73,0.00,0.00,0.00,45.94,0.00,0.00,0.00,50.93,0.00,0.00,0.00,49.58,0.00 +300871.SZ,0.00,0.00,0.00,30.92,0.00,0.00,0.00,29.20,0.00,0.00,0.00,25.79,0.00,0.00,0.00,21.46,0.00,0.00,0.00,20.80,0.00 +838262.BJ,0.00,0.00,0.00,15.85,0.00,0.00,0.00,18.89,0.00,14.73,0.00,17.31,0.00,0.00,0.00,19.58,0.00,14.33,0.00,15.56,0.00 +000981.SZ,0.00,0.00,0.00,26.27,0.00,10.69,0.00,37.45,0.00,0.00,0.00,21.04,0.00,0.00,0.00,35.71,0.00,0.00,0.00,41.75,0.00 +000880.SZ,0.00,0.00,0.00,36.75,0.00,0.00,0.00,33.37,0.00,0.00,0.00,34.84,0.00,0.00,0.00,36.15,0.00,0.00,0.00,45.19,0.00 +300855.SZ,0.00,0.00,0.00,65.99,0.00,0.00,0.00,71.74,0.00,0.00,0.00,76.01,0.00,0.00,0.00,75.82,0.00,0.00,0.00,66.52,0.00 +300561.SZ,0.00,0.00,0.00,60.75,0.00,0.00,0.00,55.01,0.00,0.00,0.00,68.93,0.00,0.00,0.00,70.97,0.00,0.00,0.00,69.64,0.00 +300475.SZ,0.00,0.00,0.00,93.44,0.00,0.00,0.00,69.94,0.00,0.00,0.00,71.11,0.00,0.00,0.00,80.81,0.00,0.00,0.00,89.11,0.00 +688122.SH,0.00,0.00,0.00,67.38,0.00,0.00,0.00,69.37,0.00,0.00,0.00,65.44,0.00,0.00,0.00,59.38,0.00,0.00,0.00,62.70,0.00 +920819.BJ,0.00,0.00,0.00,29.57,0.00,0.00,0.00,21.25,0.00,0.00,0.00,33.60,0.00,0.00,0.00,28.39,0.00,0.00,0.00,26.25,0.00 +001339.SZ,0.00,0.00,0.00,50.21,0.00,45.14,0.00,49.23,47.69,0.00,0.00,50.81,0.00,0.00,0.00,58.06,0.00,0.00,0.00,54.25,0.00 +301307.SZ,0.00,0.00,0.00,64.13,0.00,66.35,0.00,64.21,0.00,69.15,0.00,67.25,0.00,0.00,0.00,64.79,0.00,0.00,0.00,58.62,0.00 +300854.SZ,0.00,40.43,0.00,31.98,0.00,0.00,0.00,31.44,0.00,0.00,0.00,48.49,0.00,0.00,0.00,53.21,0.00,0.00,0.00,38.12,0.00 +300214.SZ,0.00,0.00,0.00,27.06,0.00,0.00,0.00,19.26,0.00,0.00,0.00,19.94,0.00,0.00,0.00,16.99,0.00,0.00,0.00,15.52,0.00 +600558.SH,0.00,0.00,0.00,10.65,0.00,0.00,0.00,10.89,0.00,0.00,0.00,10.61,0.00,0.00,0.00,10.75,0.00,0.00,0.00,10.39,0.00 +688678.SH,0.00,43.10,0.00,39.47,0.00,0.00,0.00,39.65,0.00,0.00,0.00,46.14,0.00,0.00,0.00,44.98,0.00,0.00,0.00,51.61,0.00 +688685.SH,0.00,65.25,0.00,73.08,0.00,0.00,0.00,52.87,0.00,0.00,0.00,81.70,0.00,0.00,0.00,83.09,0.00,0.00,0.00,88.33,0.00 +002426.SZ,0.00,0.00,0.00,47.60,0.00,0.00,0.00,49.84,0.00,0.00,0.00,67.55,0.00,0.00,0.00,59.39,0.00,0.00,0.00,58.25,0.00 +300287.SZ,0.00,0.00,0.00,28.87,0.00,0.00,0.00,48.02,0.00,0.00,0.00,26.16,0.00,0.00,0.00,39.85,0.00,0.00,0.00,36.15,0.00 +001283.SZ,0.00,0.00,0.00,38.82,0.00,38.56,0.00,34.76,0.00,0.00,0.00,33.20,0.00,0.00,0.00,26.28,0.00,0.00,0.00,29.92,0.00 +603496.SH,0.00,0.00,0.00,39.65,0.00,0.00,0.00,55.87,0.00,0.00,0.00,52.34,0.00,0.00,0.00,58.90,0.00,0.00,0.00,70.53,0.00 +835508.BJ,0.00,0.00,0.00,91.43,0.00,0.00,0.00,92.29,0.00,0.00,0.00,76.50,0.00,0.00,0.00,71.11,0.00,0.00,0.00,87.99,0.00 +301178.SZ,0.00,33.91,0.00,32.99,0.00,28.36,0.00,34.47,0.00,0.00,0.00,27.60,0.00,0.00,0.00,29.24,0.00,0.00,0.00,26.66,0.00 +002366.SZ,0.00,0.00,0.00,56.45,0.00,0.00,0.00,57.54,0.00,0.00,0.00,71.53,0.00,0.00,0.00,73.29,0.00,0.00,0.00,61.59,0.00 +688772.SH,0.00,68.05,0.00,69.89,0.00,0.00,0.00,68.51,0.00,0.00,0.00,54.82,0.00,0.00,0.00,53.47,0.00,0.00,0.00,52.29,0.00 +002916.SZ,0.00,0.00,0.00,43.78,0.00,0.00,0.00,28.85,0.00,0.00,0.00,22.90,0.00,0.00,0.00,19.87,0.00,0.00,0.00,16.49,0.00 +300591.SZ,0.00,0.00,0.00,65.99,0.00,0.00,0.00,48.16,0.00,0.00,0.00,64.61,0.00,0.00,0.00,75.60,0.00,0.00,0.00,80.60,0.00 +300249.SZ,0.00,0.00,0.00,40.41,0.00,0.00,0.00,47.82,0.00,0.00,0.00,28.14,0.00,0.00,0.00,23.92,0.00,0.00,0.00,38.32,0.00 +000813.SZ,0.00,0.00,0.00,39.00,0.00,0.00,0.00,38.30,0.00,0.00,0.00,39.32,0.00,0.00,0.00,39.09,0.00,0.00,0.00,39.07,0.00 +837023.BJ,0.00,0.00,0.00,36.02,0.00,0.00,0.00,47.57,0.00,0.00,0.00,56.22,0.00,67.84,0.00,61.55,0.00,0.00,0.00,53.32,0.00 +300184.SZ,0.00,0.00,0.00,51.53,0.00,0.00,0.00,43.43,0.00,0.00,0.00,28.62,0.00,0.00,0.00,16.43,0.00,0.00,0.00,24.47,0.00 +301221.SZ,0.00,56.26,0.00,52.98,0.00,47.85,0.00,42.71,0.00,53.07,0.00,49.17,0.00,53.73,0.00,45.92,0.00,0.00,0.00,53.52,0.00 +832662.BJ,0.00,0.00,0.00,36.33,0.00,0.00,0.00,29.20,0.00,39.98,0.00,40.26,0.00,0.00,0.00,34.90,0.00,0.00,0.00,28.27,0.00 +600797.SH,0.00,0.00,0.00,13.56,0.00,0.00,0.00,6.78,0.00,0.00,0.00,1.68,0.00,0.00,0.00,15.70,0.00,0.00,0.00,17.84,0.00 +002227.SZ,0.00,0.00,0.00,13.08,0.00,0.00,0.00,15.23,0.00,0.00,0.00,7.15,0.00,0.00,0.00,11.15,0.00,0.00,0.00,18.79,0.00 +300827.SZ,0.00,0.00,0.00,24.27,0.00,0.00,0.00,21.52,0.00,0.00,0.00,35.73,0.00,0.00,0.00,27.37,0.00,0.00,0.00,29.28,0.00 +300487.SZ,0.00,0.00,0.00,30.69,0.00,0.00,0.00,23.01,0.00,0.00,0.00,26.95,0.00,0.00,0.00,28.77,0.00,0.00,0.00,18.08,0.00 +301139.SZ,0.00,91.32,0.00,89.74,0.00,88.04,0.00,90.31,0.00,0.00,0.00,87.53,0.00,0.00,0.00,91.46,0.00,0.00,0.00,81.44,0.00 +001255.SZ,0.00,0.00,0.00,80.18,0.00,66.10,0.00,65.93,0.00,0.00,0.00,49.99,0.00,0.00,0.00,43.28,0.00,0.00,0.00,43.23,0.00 +300050.SZ,0.00,0.00,0.00,24.33,0.00,0.00,0.00,30.17,0.00,0.00,0.00,27.55,0.00,0.00,0.00,47.05,0.00,0.00,0.00,57.70,0.00 +002553.SZ,0.00,0.00,0.00,17.06,0.00,0.00,0.00,14.68,0.00,0.00,0.00,15.78,0.00,0.00,0.00,30.22,0.00,0.00,0.00,30.37,0.00 +301501.SZ,0.00,0.00,0.00,23.90,0.00,0.00,0.00,25.86,0.00,34.32,0.00,36.23,0.00,0.00,0.00,38.93,0.00,40.20,0.00,41.27,0.00 +300379.SZ,0.00,0.00,0.00,38.29,0.00,0.00,0.00,32.59,0.00,0.00,0.00,50.91,0.00,0.00,0.00,43.95,0.00,0.00,0.00,48.92,0.00 +301232.SZ,63.81,54.41,0.00,50.65,0.00,49.28,0.00,49.54,0.00,48.22,0.00,45.38,42.20,0.00,0.00,50.86,0.00,0.00,0.00,53.48,0.00 +600728.SH,0.00,0.00,0.00,19.35,0.00,0.00,0.00,37.37,0.00,0.00,0.00,24.20,0.00,0.00,0.00,27.93,0.00,0.00,0.00,28.85,0.00 +002421.SZ,0.00,0.00,0.00,17.34,0.00,0.00,0.00,22.84,0.00,0.00,0.00,17.12,0.00,0.00,0.00,20.84,0.00,0.00,0.00,21.49,0.00 +001282.SZ,0.00,0.00,0.00,55.93,0.00,0.00,0.00,58.83,0.00,60.60,0.00,59.34,0.00,0.00,0.00,55.84,0.00,0.00,0.00,55.64,0.00 +300947.SZ,0.00,8.78,0.00,8.26,0.00,0.00,0.00,6.31,0.00,0.00,0.00,5.81,0.00,0.00,0.00,4.66,0.00,0.00,0.00,3.95,0.00 +301560.SZ,0.00,0.00,0.00,77.70,0.00,0.00,0.00,65.00,0.00,64.30,0.00,62.27,0.00,0.00,0.00,60.17,0.00,64.31,0.00,63.16,0.00 +300912.SZ,0.00,77.09,74.08,73.75,0.00,0.00,0.00,82.40,0.00,0.00,0.00,62.46,0.00,0.00,0.00,62.00,0.00,0.00,0.00,76.21,0.00 +870299.BJ,0.00,0.00,0.00,57.09,0.00,46.26,0.00,57.88,0.00,0.00,0.00,58.08,0.00,0.00,0.00,56.95,0.00,0.00,0.00,55.23,0.00 +300899.SZ,0.00,0.00,0.00,61.08,0.00,0.00,0.00,57.05,0.00,0.00,0.00,79.87,0.00,0.00,0.00,71.67,0.00,0.00,0.00,86.13,0.00 +600577.SH,0.00,0.00,0.00,16.11,0.00,0.00,0.00,13.34,0.00,0.00,0.00,12.53,0.00,0.00,0.00,14.00,0.00,0.00,0.00,11.64,0.00 +688023.SH,0.00,0.00,0.00,15.18,0.00,0.00,0.00,16.44,0.00,0.00,0.00,16.88,0.00,0.00,0.00,16.63,0.00,0.00,0.00,15.12,0.00 +688265.SH,0.00,35.64,0.00,29.92,0.00,24.78,0.00,23.79,0.00,0.00,0.00,23.11,0.00,0.00,0.00,20.27,0.00,0.00,0.00,20.82,0.00 +839273.BJ,0.00,0.00,0.00,15.81,0.00,0.00,0.00,17.19,0.00,19.30,17.41,16.83,0.00,0.00,0.00,13.24,0.00,0.00,0.00,18.75,0.00 +300909.SZ,0.00,88.62,0.00,87.83,0.00,0.00,0.00,83.11,0.00,0.00,0.00,70.20,0.00,0.00,0.00,48.77,0.00,0.00,0.00,38.82,0.00 +301013.SZ,95.08,0.00,76.34,74.08,0.00,0.00,0.00,59.86,0.00,0.00,0.00,68.07,0.00,0.00,0.00,53.47,0.00,0.00,0.00,59.16,0.00 +603626.SH,0.00,0.00,0.00,66.65,0.00,0.00,0.00,46.10,0.00,0.00,0.00,47.91,0.00,0.00,0.00,46.05,0.00,0.00,0.00,47.57,0.00 +002114.SZ,0.00,0.00,0.00,43.98,0.00,0.00,0.00,46.68,0.00,0.00,0.00,47.58,0.00,0.00,0.00,47.29,0.00,0.00,0.00,55.25,0.00 +002194.SZ,0.00,0.00,0.00,97.39,0.00,0.00,0.00,97.27,0.00,0.00,0.00,97.05,0.00,0.00,0.00,96.01,0.00,0.00,0.00,93.43,0.00 +300462.SZ,0.00,0.00,0.00,25.57,0.00,0.00,0.00,49.29,0.00,0.00,0.00,46.24,0.00,0.00,0.00,54.93,0.00,0.00,0.00,40.73,0.00 +600715.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,17.98,0.00,0.00,0.00,35.56,0.00,0.00,0.00,22.68,0.00,0.00,0.00,23.95,0.00 +835670.BJ,0.00,0.00,0.00,29.37,0.00,0.00,0.00,30.57,0.00,0.00,0.00,24.71,0.00,0.00,0.00,38.61,0.00,0.00,0.00,33.04,0.00 +300040.SZ,0.00,0.00,0.00,58.09,0.00,0.00,0.00,52.31,0.00,0.00,0.00,52.93,0.00,0.00,0.00,49.92,0.00,0.00,0.00,61.50,0.00 +600624.SH,0.00,0.00,0.00,38.09,0.00,0.00,0.00,33.40,0.00,0.00,0.00,38.09,0.00,0.00,0.00,41.60,0.00,0.00,0.00,41.06,0.00 +688768.SH,0.00,51.90,0.00,37.01,36.83,0.00,0.00,37.17,0.00,0.00,0.00,36.74,0.00,0.00,0.00,36.60,0.00,0.00,0.00,30.49,0.00 +688630.SH,0.00,45.99,0.00,40.69,0.00,0.00,0.00,23.42,0.00,0.00,0.00,28.02,0.00,0.00,0.00,23.49,0.00,0.00,0.00,30.24,0.00 +002591.SZ,0.00,0.00,0.00,27.13,0.00,0.00,0.00,21.63,0.00,0.00,0.00,34.92,0.00,0.00,0.00,34.11,0.00,0.00,0.00,39.01,0.00 +688379.SH,46.27,0.00,0.00,46.97,0.00,0.00,0.00,44.56,0.00,0.00,0.00,39.37,0.00,0.00,0.00,38.80,0.00,0.00,0.00,38.45,0.00 +002527.SZ,0.00,0.00,0.00,18.10,0.00,0.00,0.00,16.31,0.00,0.00,0.00,18.95,0.00,0.00,0.00,23.24,0.00,0.00,0.00,21.40,0.00 +002480.SZ,0.00,0.00,0.00,77.17,0.00,0.00,0.00,63.48,0.00,0.00,0.00,66.13,0.00,0.00,0.00,79.87,0.00,0.00,0.00,79.46,0.00 +688720.SH,0.00,0.00,0.00,47.24,0.00,0.00,0.00,52.98,57.67,0.00,0.00,54.27,0.00,48.66,0.00,49.62,0.00,0.00,0.00,47.42,0.00 +832171.BJ,0.00,63.37,0.00,54.65,0.00,46.67,0.00,35.90,0.00,0.00,0.00,63.93,0.00,0.00,0.00,27.16,0.00,0.00,0.00,49.19,0.00 +600969.SH,0.00,0.00,0.00,9.99,0.00,0.00,0.00,16.51,0.00,0.00,0.00,8.21,0.00,0.00,0.00,7.97,0.00,0.00,0.00,13.39,0.00 +001236.SZ,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +300352.SZ,0.00,0.00,0.00,11.66,0.00,0.00,0.00,20.05,0.00,0.00,0.00,11.59,0.00,0.00,0.00,11.71,0.00,0.00,0.00,9.47,0.00 +688021.SH,0.00,0.00,0.00,74.35,0.00,0.00,0.00,84.57,0.00,0.00,0.00,64.98,0.00,0.00,0.00,59.70,0.00,0.00,0.00,50.92,0.00 +688148.SH,0.00,93.18,0.00,80.40,78.78,0.00,0.00,83.51,0.00,0.00,0.00,92.95,0.00,0.00,0.00,86.24,0.00,0.00,0.00,68.30,0.00 +300545.SZ,0.00,0.00,0.00,73.34,0.00,0.00,0.00,75.30,0.00,0.00,0.00,69.65,0.00,0.00,0.00,52.01,0.00,0.00,0.00,73.75,0.00 +603051.SH,0.00,0.00,0.00,17.02,0.00,16.75,0.00,21.02,0.00,0.00,0.00,24.34,0.00,0.00,0.00,30.10,0.00,0.00,0.00,34.33,0.00 +300818.SZ,0.00,0.00,0.00,59.23,0.00,0.00,0.00,84.71,0.00,0.00,0.00,68.42,0.00,0.00,0.00,56.92,0.00,0.00,0.00,58.19,0.00 +300402.SZ,0.00,0.00,0.00,79.06,0.00,0.00,0.00,51.25,0.00,0.00,0.00,49.27,0.00,0.00,0.00,67.49,0.00,0.00,0.00,51.69,0.00 +301052.SZ,0.00,62.78,0.00,55.31,0.00,54.36,0.00,53.52,0.00,0.00,0.00,55.04,0.00,0.00,0.00,43.84,0.00,0.00,0.00,35.46,0.00 +000887.SZ,0.00,0.00,0.00,17.69,0.00,0.00,0.00,16.63,0.00,0.00,0.00,19.80,0.00,0.00,0.00,21.24,0.00,0.00,0.00,22.96,0.00 +301120.SZ,0.00,55.28,0.00,50.95,0.00,50.34,0.00,0.00,0.00,0.00,0.00,57.93,0.00,0.00,0.00,56.10,0.00,0.00,0.00,55.89,0.00 +600010.SH,0.00,0.00,0.00,18.69,0.00,0.00,0.00,18.19,0.00,0.00,0.00,25.77,0.00,0.00,0.00,29.80,0.00,0.00,0.00,28.22,0.00 +600545.SH,0.00,0.00,0.00,33.60,0.00,0.00,0.00,14.80,0.00,0.00,0.00,16.60,0.00,0.00,0.00,19.90,0.00,0.00,0.00,18.40,0.00 +688726.SH,0.00,0.00,0.00,100.00,0.00,0.00,0.00,99.99,0.00,0.00,0.00,98.66,0.00,97.91,0.00,93.24,0.00,84.02,0.00,76.17,0.00 +300229.SZ,0.00,0.00,0.00,10.95,0.00,0.00,0.00,20.36,0.00,0.00,0.00,13.89,0.00,0.00,0.00,9.48,0.00,0.00,0.00,17.21,0.00 +300248.SZ,0.00,0.00,0.00,6.31,0.00,0.00,0.00,4.93,0.00,0.00,0.00,5.53,0.00,0.00,0.00,7.91,0.00,0.00,0.00,4.13,0.00 +301128.SZ,0.00,90.69,91.59,91.46,0.00,84.90,0.00,84.27,0.00,0.00,0.00,81.85,0.00,0.00,0.00,69.06,0.00,0.00,0.00,72.23,0.00 +002570.SZ,0.00,0.00,0.00,23.36,0.00,6.97,0.00,20.22,0.00,0.00,0.00,19.96,0.00,0.00,0.00,24.12,0.00,24.51,0.00,28.23,0.00 +001301.SZ,0.00,0.00,0.00,71.27,0.00,74.24,0.00,76.56,0.00,82.18,0.00,79.10,0.00,0.00,0.00,79.98,0.00,0.00,0.00,87.52,0.00 +600126.SH,0.00,0.00,0.00,27.69,0.00,0.00,0.00,25.54,0.00,0.00,0.00,25.50,0.00,0.00,0.00,19.48,0.00,0.00,0.00,18.94,0.00 +838810.BJ,0.00,0.00,0.00,47.79,0.00,0.00,0.00,51.47,0.00,69.80,0.00,62.21,0.00,0.00,0.00,39.96,0.00,0.00,0.00,34.27,0.00 +300659.SZ,0.00,0.00,0.00,16.08,0.00,0.00,0.00,14.15,0.00,0.00,0.00,12.91,0.00,0.00,0.00,12.21,0.00,0.00,0.00,13.00,0.00 +301018.SZ,0.00,63.00,0.00,44.00,0.00,0.00,0.00,44.94,0.00,0.00,0.00,34.52,0.00,0.00,0.00,33.69,0.00,0.00,0.00,39.29,0.00 +833284.BJ,0.00,0.00,0.00,48.92,0.00,0.00,0.00,51.73,0.00,69.80,0.00,65.57,0.00,76.18,0.00,64.58,0.00,0.00,0.00,44.69,0.00 +002207.SZ,0.00,0.00,0.00,95.18,0.00,0.00,0.00,89.10,0.00,0.00,0.00,86.56,0.00,0.00,0.00,97.38,0.00,0.00,0.00,90.80,0.00 +603882.SH,0.00,0.00,0.00,2.46,0.00,0.00,0.00,8.70,0.00,0.00,0.00,13.50,0.00,0.00,0.00,3.90,0.00,0.00,0.00,4.94,0.00 +300895.SZ,0.00,0.00,0.00,43.57,0.00,0.00,0.00,34.12,0.00,0.00,0.00,47.43,0.00,0.00,0.00,19.43,0.00,0.00,0.00,21.96,0.00 +603088.SH,0.00,0.00,0.00,18.64,0.00,0.00,0.00,25.24,0.00,0.00,0.00,26.03,0.00,0.00,0.00,28.11,0.00,0.00,0.00,26.04,0.00 +000415.SZ,0.00,0.00,0.00,25.87,0.00,0.00,0.00,24.27,0.00,0.00,0.00,31.40,0.00,0.00,0.00,28.79,0.00,0.00,0.00,24.89,0.00 +920682.BJ,0.00,0.00,0.00,77.67,0.00,0.00,0.00,74.94,0.00,0.00,0.00,76.75,0.00,0.00,0.00,79.24,0.00,0.00,0.00,74.33,0.00 +688602.SH,0.00,0.00,0.00,55.97,0.00,0.00,0.00,56.43,0.00,60.57,0.00,54.83,0.00,0.00,0.00,52.05,0.00,0.00,0.00,53.42,0.00 +837821.BJ,0.00,0.00,0.00,94.54,0.00,92.13,91.88,92.86,92.79,92.66,0.00,93.97,0.00,94.30,0.00,91.91,0.00,90.66,0.00,88.61,0.00 +002155.SZ,0.00,0.00,0.00,90.18,0.00,0.00,0.00,89.24,0.00,0.00,0.00,89.50,0.00,0.00,0.00,91.11,0.00,0.00,0.00,90.28,0.00 +300842.SZ,0.00,0.00,0.00,61.53,0.00,0.00,0.00,61.91,0.00,0.00,0.00,56.56,0.00,0.00,0.00,55.78,0.00,0.00,0.00,59.24,0.00 +000712.SZ,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +001223.SZ,0.00,0.00,0.00,21.68,97.93,0.00,94.98,74.57,0.00,81.60,82.15,87.20,0.00,0.00,0.00,56.03,0.00,0.00,0.00,29.80,0.00 +603256.SH,0.00,0.00,0.00,39.36,0.00,0.00,0.00,33.66,0.00,0.00,0.00,33.45,0.00,0.00,0.00,30.42,0.00,0.00,0.00,57.17,0.00 +002261.SZ,0.00,0.00,0.00,27.98,0.00,0.00,0.00,41.11,0.00,0.00,0.00,40.89,0.00,0.00,0.00,51.47,0.00,0.00,0.00,72.75,0.00 +000727.SZ,0.00,0.00,0.00,26.23,0.00,0.00,0.00,26.99,0.00,0.00,0.00,26.46,0.00,0.00,0.00,25.08,0.00,0.00,0.00,27.49,0.00 +603038.SH,0.00,0.00,0.00,41.36,0.00,0.00,0.00,46.89,0.00,0.00,0.00,25.78,0.00,0.00,0.00,29.83,0.00,0.00,0.00,25.64,0.00 +301212.SZ,0.00,54.10,0.00,47.00,0.00,51.11,0.00,44.50,0.00,0.00,0.00,43.75,0.00,0.00,0.00,36.67,0.00,0.00,0.00,43.09,0.00 +301487.SZ,0.00,0.00,0.00,72.66,0.00,77.16,0.00,76.43,0.00,0.00,0.00,63.08,0.00,0.00,0.00,72.36,0.00,0.00,0.00,76.21,0.00 +600847.SH,0.00,0.00,0.00,20.56,0.00,0.00,0.00,20.52,0.00,0.00,0.00,19.37,0.00,0.00,0.00,21.64,0.00,0.00,0.00,17.85,0.00 +002806.SZ,0.00,0.00,0.00,34.89,0.00,0.00,0.00,32.17,0.00,0.00,0.00,45.51,0.00,0.00,0.00,42.69,0.00,0.00,0.00,39.66,0.00 +688458.SH,0.00,0.00,0.00,55.66,0.00,0.00,0.00,54.71,0.00,71.58,0.00,70.88,0.00,0.00,0.00,65.21,0.00,0.00,0.00,60.22,0.00 +002281.SZ,0.00,0.00,0.00,44.25,0.00,0.00,0.00,42.34,0.00,0.00,0.00,38.40,0.00,0.00,0.00,36.21,0.00,0.00,0.00,37.92,0.00 +300840.SZ,0.00,0.00,0.00,17.08,0.00,0.00,0.00,8.26,0.00,0.00,0.00,15.20,0.00,0.00,0.00,16.59,0.00,0.00,0.00,17.32,0.00 +002536.SZ,0.00,0.00,0.00,46.58,0.00,0.00,0.00,48.72,0.00,0.00,0.00,50.41,0.00,0.00,0.00,48.07,0.00,0.00,0.00,53.53,0.00 +300267.SZ,0.00,0.00,0.00,17.89,0.00,0.00,0.00,30.11,0.00,0.00,0.00,26.38,0.00,0.00,0.00,37.88,0.00,0.00,0.00,30.27,0.00 +300386.SZ,0.00,0.00,0.00,40.27,0.00,0.00,0.00,30.04,0.00,0.00,0.00,24.04,0.00,0.00,0.00,20.04,0.00,0.00,0.00,16.90,0.00 +688598.SH,0.00,0.00,0.00,76.81,0.00,0.00,0.00,64.79,0.00,0.00,0.00,45.52,0.00,0.00,0.00,47.59,0.00,0.00,0.00,63.82,0.00 +600114.SH,0.00,0.00,0.00,19.12,0.00,0.00,0.00,14.11,0.00,0.00,0.00,16.11,0.00,0.00,0.00,14.32,0.00,0.00,0.00,23.41,0.00 +688661.SH,0.00,66.66,0.00,0.00,0.00,0.00,0.00,73.77,0.00,0.00,0.00,55.31,0.00,0.00,0.00,44.57,0.00,0.00,0.00,53.34,0.00 +873570.BJ,0.00,92.26,0.00,87.37,0.00,80.30,0.00,90.44,0.00,87.40,0.00,87.94,91.02,92.24,88.02,86.91,0.00,0.00,0.00,77.07,0.00 +300230.SZ,0.00,0.00,0.00,29.42,0.00,0.00,0.00,30.11,0.00,0.00,0.00,40.70,0.00,0.00,0.00,35.88,0.00,0.00,0.00,38.91,0.00 +831370.BJ,0.00,0.00,0.00,28.41,0.00,0.00,0.00,29.96,0.00,0.00,0.00,23.88,0.00,0.00,0.00,22.78,0.00,0.00,0.00,26.82,0.00 +300555.SZ,0.00,0.00,0.00,55.86,0.00,0.00,0.00,52.00,0.00,0.00,0.00,52.82,0.00,0.00,0.00,60.37,0.00,0.00,0.00,66.05,0.00 +300411.SZ,0.00,0.00,0.00,21.06,0.00,0.00,0.00,24.66,0.00,0.00,0.00,29.33,0.00,0.00,0.00,24.96,0.00,0.00,0.00,39.79,0.00 +833427.BJ,0.00,35.55,0.00,22.06,0.00,0.00,0.00,21.61,0.00,0.00,0.00,31.03,0.00,0.00,0.00,16.19,0.00,0.00,0.00,20.02,0.00 +600336.SH,0.00,0.00,0.00,19.94,0.00,0.00,0.00,17.50,0.00,0.00,0.00,14.74,0.00,0.00,0.00,9.82,0.00,0.00,0.00,14.34,0.00 +688269.SH,0.00,29.28,25.64,22.62,33.43,0.00,0.00,29.90,0.00,0.00,0.00,36.01,0.00,0.00,0.00,32.73,0.00,0.00,0.00,23.30,0.00 +002575.SZ,0.00,0.00,0.00,60.36,0.00,0.00,0.00,51.40,0.00,0.00,0.00,85.15,0.00,0.00,0.00,69.21,0.00,0.00,0.00,90.61,0.00 +600110.SH,0.00,0.00,0.00,36.47,0.00,0.00,0.00,42.01,0.00,0.00,0.00,51.11,0.00,0.00,0.00,50.46,0.00,0.00,0.00,51.91,0.00 +834062.BJ,0.00,0.00,0.00,46.06,31.34,0.00,0.00,37.41,0.00,0.00,0.00,19.28,0.00,0.00,0.00,25.50,0.00,0.00,0.00,37.51,0.00 +002362.SZ,0.00,0.00,0.00,7.29,0.00,0.00,0.00,8.62,0.00,0.00,0.00,5.48,0.00,0.00,0.00,6.39,0.00,0.00,0.00,6.79,0.00 +301210.SZ,0.00,0.00,0.00,38.03,41.03,0.00,45.02,45.45,0.00,45.47,0.00,41.75,0.00,0.00,0.00,40.58,0.00,0.00,0.00,49.74,0.00 +837663.BJ,0.00,0.00,0.00,66.26,0.00,0.00,0.00,67.39,68.63,65.37,65.98,66.53,0.00,0.00,0.00,65.90,0.00,0.00,0.00,67.50,0.00 +688251.SH,0.00,0.00,0.00,37.02,0.00,55.68,0.00,38.85,0.00,0.00,0.00,43.26,0.00,0.00,0.00,40.20,0.00,0.00,0.00,44.85,0.00 +301528.SZ,0.00,0.00,0.00,20.08,0.00,14.82,0.00,19.41,0.00,17.49,0.00,17.86,0.00,0.00,0.00,13.89,0.00,0.00,0.00,17.88,0.00 +688004.SH,0.00,0.00,0.00,33.34,0.00,0.00,0.00,20.34,0.00,0.00,0.00,23.04,0.00,0.00,0.00,41.51,0.00,0.00,0.00,26.68,0.00 +301389.SZ,0.00,0.00,0.00,55.45,0.00,52.14,0.00,49.94,0.00,0.00,0.00,50.99,0.00,44.40,0.00,46.06,0.00,51.13,0.00,51.68,0.00 +300916.SZ,0.00,56.76,0.00,55.10,0.00,0.00,0.00,57.64,0.00,0.00,0.00,68.03,0.00,0.00,0.00,63.05,0.00,0.00,0.00,65.80,0.00 +835179.BJ,0.00,0.00,0.00,61.88,0.00,55.69,0.00,53.73,0.00,0.00,0.00,59.78,0.00,0.00,0.00,71.99,0.00,0.00,0.00,65.80,0.00 +870436.BJ,0.00,0.00,0.00,93.60,0.00,96.72,0.00,95.65,0.00,0.00,0.00,91.43,0.00,0.00,0.00,90.80,0.00,0.00,0.00,88.45,0.00 +600807.SH,0.00,0.00,0.00,86.53,0.00,0.00,0.00,54.73,0.00,0.00,0.00,51.55,0.00,0.00,0.00,35.37,0.00,0.00,0.00,49.71,0.00 +603306.SH,0.00,0.00,0.00,84.87,0.00,0.00,0.00,82.14,0.00,0.00,0.00,86.58,0.00,0.00,0.00,88.76,0.00,0.00,0.00,87.78,0.00 +600111.SH,0.00,0.00,0.00,17.54,0.00,0.00,0.00,12.55,0.00,0.00,0.00,21.63,0.00,0.00,0.00,22.26,0.00,0.00,0.00,25.94,0.00 +688671.SH,0.00,0.00,0.00,29.17,0.00,0.00,0.00,21.91,0.00,30.78,0.00,30.25,0.00,0.00,0.00,29.86,0.00,0.00,0.00,35.77,0.00 +300428.SZ,0.00,0.00,0.00,26.50,0.00,0.00,0.00,27.03,0.00,0.00,0.00,26.47,0.00,0.00,0.00,25.16,0.00,0.00,0.00,22.64,0.00 +837046.BJ,0.00,0.00,0.00,55.62,74.68,64.62,61.47,60.81,75.25,55.58,0.00,57.93,0.00,67.78,0.00,50.22,0.00,0.00,0.00,41.07,0.00 +002384.SZ,0.00,0.00,0.00,56.80,0.00,0.00,0.00,62.70,0.00,0.00,0.00,66.83,0.00,0.00,0.00,73.50,0.00,0.00,0.00,71.03,0.00 +301011.SZ,0.00,38.83,0.00,32.17,0.00,0.00,0.00,23.34,0.00,0.00,0.00,22.15,0.00,0.00,0.00,17.95,0.00,0.00,0.00,14.07,0.00 +002649.SZ,0.00,0.00,0.00,48.23,0.00,0.00,0.00,45.67,0.00,0.00,0.00,44.41,0.00,0.00,0.00,39.77,0.00,0.00,0.00,41.50,0.00 +300324.SZ,0.00,0.00,0.00,11.70,0.00,0.00,0.00,15.08,0.00,0.00,0.00,16.36,0.00,0.00,0.00,41.44,0.00,0.00,0.00,33.45,0.00 +300399.SZ,0.00,0.00,0.00,40.20,0.00,0.00,0.00,34.71,0.00,0.00,0.00,22.03,0.00,0.00,0.00,23.17,0.00,0.00,0.00,25.52,0.00 +605069.SH,0.00,0.00,0.00,77.18,0.00,77.74,0.00,72.10,0.00,0.00,0.00,90.28,0.00,0.00,0.00,123.40,0.00,0.00,0.00,93.54,0.00 +301322.SZ,0.00,0.00,0.00,54.01,0.00,67.48,0.00,68.37,0.00,73.63,0.00,72.24,0.00,0.00,0.00,58.19,0.00,0.00,0.00,39.54,0.00 +300786.SZ,0.00,0.00,0.00,13.85,0.00,0.00,0.00,21.18,0.00,0.00,0.00,14.27,0.00,0.00,0.00,12.89,0.00,0.00,0.00,23.84,0.00 +002819.SZ,0.00,0.00,0.00,8.11,0.00,0.00,0.00,12.65,0.00,0.00,0.00,21.00,0.00,0.00,0.00,7.65,0.00,0.00,0.00,8.75,0.00 +603990.SH,0.00,0.00,0.00,16.23,0.00,0.00,0.00,15.05,0.00,0.00,0.00,10.19,0.00,0.00,0.00,33.68,0.00,0.00,0.00,22.70,0.00 +300941.SZ,0.00,97.05,0.00,96.12,0.00,0.00,0.00,95.81,0.00,0.00,0.00,95.76,0.00,0.00,0.00,94.65,0.00,0.00,0.00,87.69,0.00 +300068.SZ,0.00,0.00,0.00,42.85,0.00,0.00,0.00,49.19,0.00,0.00,0.00,53.98,0.00,0.00,0.00,49.22,0.00,0.00,0.00,37.81,0.00 +600666.SH,0.00,0.00,0.00,68.76,0.00,0.00,0.00,64.06,0.00,0.00,0.00,82.16,0.00,0.00,0.00,75.35,0.00,0.00,0.00,61.76,0.00 +300703.SZ,0.00,0.00,0.00,27.01,0.00,0.00,0.00,25.74,0.00,0.00,0.00,23.73,0.00,0.00,0.00,23.96,0.00,0.00,0.00,21.11,0.00 +603429.SH,0.00,0.00,0.00,81.72,0.00,0.00,0.00,76.67,0.00,0.00,0.00,76.15,0.00,0.00,0.00,72.26,0.00,0.00,0.00,74.07,0.00 +300647.SZ,0.00,0.00,0.00,21.98,0.00,0.00,0.00,14.74,0.00,0.00,0.00,27.29,0.00,0.00,0.00,23.84,0.00,0.00,0.00,41.72,0.00 +000890.SZ,0.00,0.00,0.00,77.48,0.00,0.00,0.00,63.20,0.00,0.00,0.00,68.59,0.00,0.00,0.00,83.92,0.00,0.00,0.00,86.11,0.00 +603280.SH,0.00,49.53,0.00,46.76,0.00,0.00,0.00,57.16,0.00,60.34,0.00,31.64,0.00,0.00,0.00,43.16,0.00,0.00,0.00,48.32,0.00 +300005.SZ,0.00,0.00,0.00,27.35,0.00,0.00,0.00,39.73,0.00,0.00,0.00,31.20,0.00,0.00,0.00,33.37,0.00,0.00,0.00,35.36,0.00 +688259.SH,0.00,92.56,0.00,89.09,0.00,87.05,0.00,88.35,0.00,0.00,0.00,87.91,0.00,0.00,0.00,69.99,0.00,0.00,0.00,58.99,0.00 +873593.BJ,0.00,0.00,0.00,39.28,0.00,0.00,0.00,27.31,33.76,33.70,38.58,39.97,0.00,0.00,0.00,41.48,0.00,0.00,0.00,31.94,0.00 +300353.SZ,0.00,0.00,0.00,27.85,0.00,0.00,0.00,18.80,0.00,0.00,0.00,22.16,0.00,0.00,0.00,20.74,0.00,0.00,0.00,27.89,0.00 +600115.SH,0.00,0.00,0.00,25.11,0.00,0.00,0.00,24.34,0.00,0.00,0.00,19.85,0.00,0.00,0.00,15.31,0.00,0.00,0.00,20.48,0.00 +300025.SZ,0.00,0.00,0.00,89.87,0.00,0.00,0.00,91.34,0.00,0.00,0.00,90.31,0.00,0.00,0.00,89.55,0.00,0.00,0.00,87.37,0.00 +688112.SH,0.00,40.57,0.00,35.48,0.00,32.40,0.00,31.80,0.00,0.00,0.00,29.39,0.00,0.00,0.00,28.44,0.00,0.00,0.00,21.19,0.00 +002633.SZ,0.00,0.00,0.00,54.17,0.00,0.00,0.00,44.59,0.00,0.00,0.00,40.81,0.00,0.00,0.00,51.73,0.00,0.00,0.00,62.46,0.00 +688111.SH,0.00,0.00,0.00,10.94,0.00,0.00,0.00,9.85,0.00,0.00,0.00,11.90,0.00,0.00,0.00,11.95,0.00,0.00,0.00,10.08,0.00 +002456.SZ,0.00,0.00,0.00,85.59,0.00,0.00,0.00,70.50,0.00,0.00,0.00,69.54,0.00,0.00,0.00,70.90,0.00,0.00,0.00,77.35,0.00 +300547.SZ,0.00,0.00,0.00,54.06,0.00,0.00,0.00,33.80,0.00,0.00,0.00,44.15,0.00,0.00,0.00,58.02,0.00,0.00,0.00,59.75,0.00 +601611.SH,0.00,0.00,0.00,18.30,0.00,0.00,0.00,21.92,0.00,0.00,0.00,25.26,0.00,0.00,0.00,44.34,0.00,0.00,0.00,49.67,0.00 +300109.SZ,0.00,0.00,0.00,18.96,0.00,0.00,0.00,15.74,0.00,0.00,0.00,13.89,0.00,0.00,0.00,7.80,0.00,0.00,0.00,12.44,0.00 +301293.SZ,0.00,1.45,0.00,2.09,0.00,1.48,0.00,2.28,0.00,1.70,0.00,2.19,0.00,0.00,0.00,2.63,0.00,0.00,0.00,1.47,0.00 +301382.SZ,0.00,67.47,0.00,62.47,0.00,53.25,0.00,50.88,0.00,57.99,0.00,56.69,0.00,0.00,0.00,39.78,0.00,0.00,0.00,35.99,0.00 +688246.SH,44.61,0.00,0.00,14.12,0.00,24.24,0.00,15.13,0.00,0.00,0.00,11.91,0.00,0.00,0.00,12.55,0.00,0.00,0.00,17.33,0.00 +300553.SZ,0.00,0.00,0.00,9.80,0.00,0.00,0.00,15.05,0.00,0.00,0.00,32.29,0.00,0.00,0.00,28.68,0.00,0.00,0.00,21.81,0.00 +300066.SZ,0.00,0.00,0.00,22.15,0.00,0.00,0.00,17.55,0.00,0.00,0.00,13.95,0.00,0.00,0.00,34.34,0.00,0.00,0.00,28.73,0.00 +601111.SH,0.00,0.00,0.00,11.12,0.00,0.00,0.00,15.40,0.00,0.00,0.00,37.00,0.00,0.00,0.00,20.25,0.00,0.00,0.00,20.43,0.00 +605080.SH,0.00,51.33,0.00,46.69,0.00,0.00,0.00,44.20,0.00,0.00,0.00,51.97,0.00,0.00,0.00,50.45,0.00,0.00,0.00,48.41,0.00 +002613.SZ,0.00,0.00,0.00,17.26,0.00,0.00,0.00,28.72,0.00,0.00,0.00,24.47,0.00,0.00,0.00,15.48,0.00,0.00,0.00,21.99,0.00 +605099.SH,0.00,22.68,0.00,19.30,0.00,0.00,0.00,21.94,0.00,0.00,0.00,21.74,0.00,0.00,0.00,13.68,0.00,0.00,0.00,11.75,0.00 +301031.SZ,0.00,32.81,0.00,33.32,0.00,0.00,0.00,38.92,0.00,0.00,0.00,40.49,0.00,0.00,0.00,37.90,0.00,0.00,0.00,39.51,0.00 +000567.SZ,0.00,0.00,0.00,73.31,0.00,0.00,0.00,69.20,0.00,0.00,0.00,76.60,0.00,0.00,0.00,64.31,0.00,0.00,0.00,83.38,0.00 +300240.SZ,0.00,0.00,0.00,18.82,0.00,0.00,0.00,18.68,0.00,0.00,0.00,16.69,0.00,0.00,0.00,15.74,0.00,0.00,0.00,18.33,0.00 +600212.SH,0.00,0.00,0.00,94.84,0.00,0.00,0.00,75.89,0.00,0.00,0.00,23.67,0.00,0.00,0.00,18.21,0.00,0.00,0.00,17.29,0.00 +000555.SZ,0.00,0.00,0.00,24.75,0.00,0.00,0.00,15.97,0.00,0.00,0.00,16.17,0.00,0.00,0.00,19.45,0.00,0.00,0.00,18.45,0.00 +002420.SZ,0.00,0.00,0.00,55.11,0.00,0.00,0.00,59.15,0.00,0.00,0.00,58.67,0.00,0.00,0.00,58.83,0.00,0.00,0.00,56.05,0.00 +836504.BJ,0.00,0.00,0.00,30.42,0.00,0.00,0.00,28.10,0.00,25.46,0.00,26.07,0.00,0.00,0.00,20.81,0.00,0.00,0.00,21.86,0.00 +301558.SZ,0.00,0.00,0.00,49.79,0.00,7.33,0.00,30.79,0.00,0.00,0.00,16.86,0.00,0.00,0.00,62.35,0.00,0.00,0.00,63.80,0.00 +688623.SH,0.00,0.00,0.00,16.48,0.00,0.00,0.00,24.09,0.00,40.56,0.00,39.70,50.80,0.00,0.00,44.15,0.00,0.00,0.00,38.10,0.00 +688119.SH,0.00,0.00,25.61,26.19,0.00,32.80,0.00,25.47,0.00,0.00,0.00,27.80,0.00,0.00,0.00,22.83,0.00,0.00,0.00,26.18,0.00 +603915.SH,0.00,0.00,0.00,11.02,0.00,0.00,0.00,8.93,0.00,0.00,0.00,10.50,0.00,0.00,0.00,9.99,0.00,0.00,0.00,9.68,0.00 +002583.SZ,0.00,0.00,0.00,16.24,0.00,0.00,0.00,15.63,0.00,0.00,0.00,13.43,0.00,0.00,0.00,6.77,0.00,0.00,0.00,12.93,0.00 +603093.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +605089.SH,0.00,0.00,0.00,8.22,0.00,0.00,0.00,9.62,0.00,0.00,0.00,6.01,0.00,0.00,0.00,6.86,0.00,0.00,0.00,7.32,0.00 +301258.SZ,0.00,49.01,0.00,39.45,0.00,32.64,0.00,31.55,0.00,0.00,0.00,30.64,0.00,0.00,0.00,33.86,0.00,0.00,0.00,42.08,0.00 +301522.SZ,0.00,0.00,0.00,59.04,0.00,0.00,0.00,51.70,0.00,51.81,0.00,51.27,0.00,0.00,0.00,52.72,0.00,0.00,0.00,53.43,0.00 +301213.SZ,0.00,0.00,100.00,96.75,0.00,100.00,0.00,86.26,0.00,0.00,0.00,63.94,0.00,0.00,0.00,55.01,0.00,0.00,0.00,58.75,0.00 +833873.BJ,0.00,42.00,0.00,24.23,0.00,28.10,0.00,23.50,0.00,0.00,0.00,31.82,0.00,0.00,0.00,20.48,0.00,0.00,0.00,17.37,0.00 +603327.SH,0.00,0.00,0.00,61.82,0.00,0.00,0.00,72.46,0.00,0.00,0.00,76.02,0.00,0.00,0.00,67.31,0.00,0.00,0.00,51.21,0.00 +002640.SZ,0.00,0.00,0.00,54.11,0.00,0.00,0.00,68.18,0.00,0.00,0.00,69.58,0.00,0.00,0.00,71.11,0.00,0.00,0.00,85.61,0.00 +830964.BJ,0.00,0.00,0.00,15.54,0.00,0.00,0.00,32.53,0.00,0.00,0.00,18.97,0.00,0.00,0.00,30.57,0.00,0.00,0.00,20.32,0.00 +688226.SH,0.00,41.98,0.00,37.75,44.72,0.00,0.00,32.27,0.00,0.00,0.00,36.15,0.00,0.00,0.00,39.10,0.00,0.00,0.00,47.65,0.00 +300811.SZ,0.00,0.00,0.00,41.02,0.00,0.00,0.00,39.69,0.00,0.00,0.00,40.92,0.00,0.00,0.00,45.68,0.00,0.00,0.00,47.18,0.00 +300493.SZ,0.00,0.00,0.00,34.85,0.00,0.00,0.00,30.95,0.00,0.00,0.00,26.82,0.00,0.00,0.00,25.07,0.00,0.00,0.00,30.03,0.00 +300862.SZ,0.00,31.83,0.00,27.69,0.00,0.00,0.00,35.89,0.00,0.00,0.00,24.79,0.00,0.00,0.00,16.57,0.00,0.00,0.00,19.66,0.00 +603179.SH,0.00,0.00,0.00,68.92,0.00,0.00,0.00,63.08,0.00,0.00,0.00,69.29,0.00,0.00,0.00,70.73,0.00,0.00,0.00,74.56,0.00 +600337.SH,0.00,0.00,0.00,4.93,0.00,5.19,0.00,4.75,0.00,0.00,0.00,5.73,0.00,6.30,0.00,7.54,0.00,0.00,0.00,10.26,0.00 +601133.SH,0.00,0.00,0.00,52.39,0.00,47.72,0.00,47.29,0.00,57.31,0.00,45.78,0.00,0.00,0.00,45.76,0.00,0.00,0.00,37.75,0.00 +300337.SZ,0.00,0.00,0.00,19.29,0.00,0.00,0.00,23.14,0.00,0.00,0.00,26.05,0.00,0.00,0.00,31.13,0.00,0.00,0.00,32.15,0.00 +600673.SH,0.00,0.00,0.00,14.69,0.00,0.00,0.00,22.06,0.00,0.00,0.00,24.19,0.00,0.00,0.00,22.95,0.00,0.00,0.00,20.18,0.00 +839792.BJ,43.41,40.44,0.00,44.93,0.00,45.42,0.00,46.10,62.85,59.09,55.09,50.42,0.00,0.00,0.00,38.26,0.00,0.00,0.00,44.00,0.00 +836675.BJ,0.00,99.99,0.00,90.70,0.00,96.42,0.00,99.99,0.00,99.20,0.00,99.99,0.00,81.81,0.00,99.82,0.00,80.50,0.00,99.89,0.00 +002901.SZ,0.00,0.00,0.00,22.96,0.00,0.00,0.00,27.06,0.00,0.00,0.00,30.47,0.00,0.00,0.00,25.20,0.00,0.00,0.00,16.51,0.00 +300745.SZ,0.00,0.00,0.00,57.35,0.00,0.00,0.00,58.68,0.00,0.00,0.00,75.90,0.00,0.00,0.00,73.50,0.00,0.00,0.00,76.34,0.00 +000851.SZ,0.00,0.00,0.00,58.68,0.00,0.00,0.00,54.53,0.00,0.00,0.00,47.40,0.00,0.00,0.00,47.94,0.00,0.00,0.00,30.37,0.00 +603206.SH,0.00,0.00,0.00,88.28,0.00,89.13,0.00,80.45,0.00,0.00,0.00,79.45,0.00,0.00,0.00,75.20,0.00,0.00,0.00,77.25,0.00 +600678.SH,0.00,0.00,0.00,75.91,0.00,0.00,0.00,53.61,0.00,0.00,0.00,58.72,0.00,0.00,0.00,37.26,0.00,0.00,0.00,40.34,0.00 +300250.SZ,0.00,0.00,0.00,27.35,0.00,0.00,0.00,22.40,0.00,0.00,0.00,19.95,0.00,0.00,0.00,16.23,0.00,0.00,0.00,22.87,0.00 +688757.SH,0.00,0.00,0.00,40.81,0.00,0.00,0.00,36.98,0.00,0.00,0.00,41.88,0.00,0.00,0.00,54.29,0.00,57.51,0.00,0.00,0.00 +600552.SH,0.00,0.00,0.00,58.11,0.00,0.00,0.00,40.83,0.00,0.00,0.00,40.93,0.00,0.00,0.00,36.56,0.00,0.00,0.00,0.00,0.00 +000970.SZ,0.00,0.00,0.00,25.13,0.00,0.00,0.00,23.04,0.00,0.00,0.00,21.83,0.00,0.00,0.00,27.49,0.00,0.00,0.00,25.23,0.00 +002645.SZ,0.00,0.00,0.00,29.94,0.00,0.00,0.00,40.84,0.00,0.00,0.00,44.88,0.00,0.00,0.00,45.89,0.00,0.00,0.00,29.39,0.00 +833509.BJ,38.03,28.35,0.00,26.07,0.00,0.00,0.00,25.41,0.00,0.00,0.00,22.76,0.00,0.00,0.00,19.73,0.00,0.00,0.00,21.16,0.00 +603124.SH,0.00,0.00,0.00,19.21,0.00,0.00,0.00,21.12,0.00,23.19,0.00,22.13,0.00,0.00,0.00,21.10,0.00,22.01,0.00,21.20,0.00 +600439.SH,0.00,0.00,0.00,19.14,0.00,0.00,0.00,20.39,0.00,0.00,0.00,18.39,0.00,0.00,0.00,13.10,0.00,0.00,0.00,11.06,0.00 +301356.SZ,0.00,0.00,0.00,83.32,0.00,78.14,0.00,82.23,0.00,86.25,0.00,84.65,0.00,0.00,0.00,77.02,0.00,0.00,0.00,71.67,0.00 +600130.SH,0.00,0.00,0.00,76.01,0.00,0.00,0.00,65.47,0.00,0.00,0.00,56.90,0.00,0.00,0.00,56.97,0.00,0.00,0.00,49.13,0.00 +300118.SZ,0.00,0.00,0.00,12.36,0.00,0.00,0.00,15.67,0.00,0.00,0.00,12.42,0.00,0.00,0.00,20.66,0.00,0.00,0.00,23.55,0.00 +300444.SZ,0.00,0.00,0.00,15.04,0.00,0.00,0.00,16.45,0.00,0.00,0.00,23.89,0.00,0.00,0.00,22.68,0.00,0.00,0.00,20.32,0.00 +300383.SZ,0.00,0.00,0.00,29.36,0.00,0.00,0.00,23.14,0.00,0.00,0.00,26.72,0.00,0.00,0.00,32.93,0.00,0.00,0.00,32.10,0.00 +603588.SH,0.00,0.00,0.00,9.57,0.00,0.00,0.00,29.29,0.00,0.00,0.00,28.49,0.00,0.00,0.00,27.83,0.00,0.00,0.00,27.61,0.00 +002305.SZ,0.00,0.00,0.00,34.51,0.00,77.52,0.00,1.90,0.00,0.00,0.00,0.62,0.00,0.00,0.00,6.12,0.00,0.00,0.00,4.59,0.00 +300328.SZ,0.00,0.00,0.00,37.09,0.00,0.00,0.00,32.18,0.00,0.00,0.00,33.09,0.00,0.00,0.00,33.06,0.00,0.00,0.00,34.98,0.00 +000609.SZ,0.00,0.00,0.00,23.80,0.00,0.00,0.00,2.32,0.00,0.00,0.00,1.05,0.00,0.00,0.00,6.84,0.00,0.00,0.00,4.06,0.00 +600243.SH,0.00,0.00,0.00,40.35,0.00,0.00,0.00,40.76,0.00,0.00,0.00,47.33,0.00,0.00,0.00,73.55,0.00,0.00,0.00,78.41,0.00 +832786.BJ,0.00,0.00,0.00,60.07,0.00,0.00,0.00,68.28,0.00,0.00,0.00,69.38,0.00,0.00,0.00,70.23,0.00,0.00,0.00,64.60,0.00 +688165.SH,0.00,0.00,0.00,53.66,0.00,0.00,0.00,38.43,0.00,0.00,0.00,45.97,0.00,0.00,0.00,60.32,0.00,0.00,0.00,38.89,0.00 +601188.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +603557.SH,0.00,0.00,0.00,24.12,0.00,0.00,0.00,22.95,0.00,0.00,0.00,16.59,0.00,0.00,0.00,40.16,0.00,0.00,0.00,42.53,0.00 +872351.BJ,0.00,0.00,0.00,15.82,0.00,0.00,0.00,19.99,0.00,23.25,0.00,20.12,0.00,0.00,0.00,16.61,0.00,0.00,0.00,22.78,0.00 +831195.BJ,0.00,0.00,0.00,59.68,0.00,0.00,0.00,51.24,50.04,50.44,0.00,52.35,0.00,47.40,0.00,46.20,0.00,45.78,0.00,45.45,0.00 +831961.BJ,0.00,53.40,0.00,36.03,0.00,50.98,0.00,30.82,0.00,57.07,0.00,30.45,0.00,40.06,0.00,22.33,0.00,41.68,0.00,27.98,0.00 +300850.SZ,0.00,0.00,0.00,84.38,0.00,0.00,0.00,82.00,0.00,0.00,0.00,74.28,0.00,0.00,0.00,70.26,0.00,0.00,0.00,72.45,0.00 +603278.SH,0.00,0.00,0.00,21.97,0.00,0.00,0.00,13.99,0.00,0.00,0.00,26.27,0.00,0.00,0.00,30.76,0.00,0.00,0.00,29.95,0.00 +002345.SZ,0.00,0.00,0.00,11.37,0.00,0.00,0.00,13.00,0.00,0.00,0.00,12.30,0.00,0.00,0.00,10.16,0.00,0.00,0.00,9.60,0.00 +300806.SZ,0.00,0.00,0.00,38.09,0.00,0.00,0.00,28.79,0.00,0.00,0.00,33.13,0.00,0.00,0.00,25.99,0.00,0.00,0.00,28.21,0.00 +600029.SH,0.00,0.00,0.00,2.36,0.00,0.00,0.00,4.08,0.00,0.00,0.00,4.47,0.00,0.00,0.00,2.73,0.00,0.00,0.00,3.28,0.00 +001395.SZ,0.00,0.00,0.00,75.73,0.00,0.00,0.00,65.23,0.00,91.65,0.00,66.32,0.00,0.00,0.00,73.42,0.00,71.61,0.00,43.40,0.00 +600381.SH,0.00,0.00,0.00,31.96,0.00,0.00,0.00,38.48,0.00,0.00,0.00,41.02,0.00,0.00,0.00,50.07,0.00,0.00,0.00,54.69,0.00 +600643.SH,0.00,0.00,0.00,61.22,0.00,0.00,0.00,56.46,0.00,0.00,0.00,56.05,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +301025.SZ,0.00,60.39,0.00,56.03,0.00,0.00,0.00,50.12,0.00,0.00,0.00,46.98,0.00,0.00,0.00,46.29,0.00,0.00,0.00,44.59,0.00 +001382.SZ,0.00,0.00,0.00,52.08,0.00,0.00,0.00,54.66,0.00,0.00,0.00,51.96,0.00,59.81,0.00,55.28,0.00,55.44,0.00,59.08,0.00 +600318.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +605188.SH,0.00,0.00,0.00,1.18,0.00,0.00,0.00,1.52,0.00,0.00,0.00,1.14,0.00,0.00,0.00,1.25,0.00,0.00,0.00,1.02,0.00 +301273.SZ,0.00,0.00,0.00,54.47,0.00,53.97,0.00,52.97,0.00,0.00,0.00,63.68,0.00,0.00,0.00,54.71,0.00,0.00,0.00,51.37,0.00 +300494.SZ,0.00,81.74,0.00,77.39,0.00,78.71,0.00,71.64,0.00,51.86,0.00,43.69,0.00,0.00,0.00,32.82,0.00,0.00,0.00,23.00,0.00 +000601.SZ,0.00,0.00,0.00,74.69,0.00,0.00,0.00,62.71,0.00,0.00,0.00,61.45,0.00,0.00,0.00,56.06,0.00,0.00,0.00,47.19,0.00 +301607.SZ,0.00,0.00,0.00,95.58,0.00,0.00,0.00,97.86,0.00,96.37,0.00,95.61,0.00,96.89,0.00,96.14,0.00,0.00,0.00,93.99,0.00 +300539.SZ,0.00,0.00,0.00,64.38,0.00,0.00,0.00,59.23,0.00,0.00,0.00,66.86,0.00,0.00,0.00,66.98,0.00,0.00,0.00,65.10,0.00 +601869.SH,0.00,0.00,0.00,25.04,0.00,0.00,0.00,24.42,0.00,0.00,0.00,25.78,0.00,0.00,0.00,28.46,0.00,0.00,0.00,26.03,0.00 +003026.SZ,0.00,49.60,0.00,47.43,0.00,0.00,0.00,41.59,0.00,0.00,0.00,39.92,0.00,0.00,0.00,34.96,0.00,0.00,0.00,25.98,0.00 +603118.SH,0.00,0.00,0.00,62.47,0.00,0.00,0.00,62.07,0.00,0.00,0.00,62.74,0.00,0.00,0.00,57.82,0.00,0.00,0.00,60.33,0.00 +002173.SZ,0.00,0.00,0.00,0.33,0.00,0.00,0.00,1.96,0.00,0.00,0.00,2.99,0.00,0.00,0.00,0.57,0.00,0.00,0.00,0.69,0.00 +836414.BJ,0.00,0.00,0.00,82.02,0.00,0.00,0.00,55.13,0.00,56.01,0.00,49.27,0.00,0.00,0.00,53.31,0.00,0.00,0.00,57.71,0.00 +000736.SZ,0.00,0.00,0.00,1.17,0.00,0.00,0.00,1.93,0.00,0.00,0.00,30.06,0.00,0.00,0.00,0.87,0.00,0.00,0.00,5.79,0.00 +688125.SH,0.00,0.00,0.00,67.41,0.00,66.98,0.00,0.00,0.00,0.00,0.00,71.01,0.00,0.00,0.00,56.95,0.00,0.00,0.00,71.65,0.00 +688283.SH,0.00,0.00,0.00,61.46,0.00,58.16,0.00,53.31,0.00,0.00,0.00,59.09,0.00,0.00,0.00,38.10,0.00,0.00,0.00,39.23,0.00 +836395.BJ,0.00,0.00,0.00,62.87,0.00,0.00,0.00,59.58,0.00,0.00,0.00,65.51,0.00,0.00,0.00,56.73,0.00,0.00,0.00,70.80,0.00 +002126.SZ,0.00,0.00,0.00,20.50,0.00,0.00,0.00,15.32,0.00,0.00,0.00,10.37,0.00,0.00,0.00,26.58,0.00,0.00,0.00,26.42,0.00 +837592.BJ,0.00,0.00,0.00,29.01,0.00,0.00,0.00,19.36,0.00,34.26,0.00,26.37,0.00,0.00,0.00,24.28,0.00,0.00,0.00,28.23,0.00 +870204.BJ,0.00,0.00,0.00,38.02,0.00,37.91,0.00,35.66,0.00,0.00,0.00,35.73,0.00,0.00,0.00,30.16,0.00,0.00,0.00,35.05,0.00 +831832.BJ,0.00,0.00,0.00,64.65,0.00,68.45,0.00,36.58,0.00,0.00,0.00,17.16,0.00,0.00,0.00,26.44,0.00,0.00,0.00,22.57,0.00 +002620.SZ,0.00,0.00,0.00,49.74,0.00,0.00,0.00,45.11,0.00,0.00,0.00,33.30,0.00,0.00,0.00,39.22,0.00,0.00,0.00,52.02,0.00 +300237.SZ,0.00,0.00,0.00,32.97,0.00,0.00,0.00,27.42,0.00,0.00,0.00,31.18,0.00,0.00,0.00,40.25,0.00,0.00,0.00,43.54,0.00 +002021.SZ,0.00,0.00,0.00,22.63,0.00,0.00,0.00,21.64,0.00,0.00,0.00,23.65,0.00,0.00,0.00,17.89,0.00,0.00,0.00,14.84,0.00 +300530.SZ,0.00,0.00,0.00,36.58,0.00,0.00,0.00,35.10,0.00,0.00,0.00,70.97,0.00,0.00,0.00,51.71,0.00,0.00,0.00,38.38,0.00 +000691.SZ,0.00,0.00,0.00,48.83,0.00,0.00,0.00,37.84,0.00,0.00,0.00,40.79,0.00,0.00,0.00,38.57,0.00,0.00,0.00,34.64,0.00 +603215.SH,0.00,0.00,0.00,46.61,0.00,51.66,50.34,49.97,0.00,0.00,0.00,63.28,0.00,0.00,0.00,60.04,0.00,69.35,0.00,64.00,0.00 +300649.SZ,0.00,0.00,0.00,72.10,0.00,0.00,0.00,56.12,0.00,0.00,0.00,50.94,0.00,0.00,0.00,41.26,0.00,0.00,0.00,42.55,0.00 +605180.SH,0.00,36.11,0.00,36.75,0.00,0.00,0.00,37.13,0.00,0.00,0.00,40.97,0.00,0.00,0.00,46.16,0.00,0.00,0.00,48.40,0.00 +603985.SH,0.00,0.00,0.00,25.75,0.00,33.89,0.00,29.29,0.00,0.00,0.00,41.76,0.00,0.00,0.00,36.86,0.00,0.00,0.00,36.26,0.00 +301459.SZ,0.00,0.00,0.00,37.30,0.00,37.52,0.00,36.93,0.00,32.30,0.00,35.01,0.00,38.47,0.00,37.22,0.00,0.00,0.00,0.00,0.00 +000504.SZ,0.00,0.00,0.00,82.24,0.00,0.00,0.00,26.71,0.00,0.00,0.00,11.87,0.00,0.00,0.00,18.67,0.00,0.00,0.00,19.40,0.00 +688227.SH,0.00,86.36,0.00,46.69,0.00,75.53,0.00,42.63,0.00,0.00,0.00,41.59,0.00,0.00,0.00,44.98,0.00,0.00,0.00,45.27,0.00 +600408.SH,0.00,0.00,0.00,40.50,0.00,0.00,0.00,42.52,0.00,0.00,0.00,39.52,0.00,0.00,0.00,45.62,0.00,0.00,0.00,40.11,0.00 +002845.SZ,0.00,0.00,0.00,53.45,0.00,0.00,0.00,60.59,0.00,0.00,0.00,48.52,0.00,0.00,0.00,53.37,0.00,0.00,0.00,58.21,0.00 +837092.BJ,0.00,0.00,0.00,54.82,75.45,0.00,0.00,55.66,0.00,0.00,0.00,27.48,0.00,0.00,0.00,87.60,0.00,0.00,0.00,45.66,0.00 +603389.SH,0.00,0.00,0.00,11.80,0.00,0.00,0.00,14.31,0.00,0.00,0.00,23.37,0.00,0.00,0.00,20.86,0.00,0.00,0.00,27.49,0.00 +002130.SZ,0.00,0.00,0.00,6.69,0.00,0.00,0.00,6.25,0.00,0.00,0.00,6.87,0.00,0.00,0.00,6.92,0.00,0.00,0.00,12.79,0.00 +300551.SZ,0.00,0.00,0.00,67.80,0.00,0.00,0.00,45.80,0.00,0.00,0.00,15.64,0.00,0.00,0.00,13.08,0.00,0.00,0.00,27.55,0.00 +002855.SZ,0.00,0.00,0.00,65.96,0.00,0.00,0.00,63.47,0.00,0.00,0.00,50.13,0.00,0.00,0.00,40.89,0.00,0.00,0.00,38.14,0.00 +002762.SZ,0.00,0.00,0.00,9.49,0.00,0.00,0.00,8.37,0.00,0.00,0.00,6.49,0.00,0.00,0.00,13.35,0.00,0.00,0.00,16.14,0.00 +300244.SZ,0.00,0.00,0.00,3.01,0.00,0.00,0.00,3.03,0.00,0.00,0.00,4.56,0.00,0.00,0.00,3.45,0.00,0.00,0.00,3.91,0.00 +300885.SZ,0.00,0.00,0.00,88.37,0.00,0.00,0.00,87.59,0.00,0.00,0.00,85.94,0.00,0.00,0.00,79.31,0.00,0.00,0.00,75.53,0.00 +301286.SZ,0.00,39.91,0.00,38.46,0.00,39.86,0.00,39.93,0.00,0.00,0.00,40.36,0.00,0.00,0.00,38.01,0.00,0.00,0.00,39.72,0.00 +688665.SH,0.00,28.58,0.00,26.10,0.00,0.00,0.00,23.67,0.00,0.00,0.00,22.10,0.00,0.00,0.00,28.21,0.00,0.00,0.00,25.43,0.00 +300445.SZ,0.00,0.00,0.00,13.57,0.00,0.00,0.00,11.72,0.00,0.00,0.00,12.51,0.00,0.00,0.00,11.70,0.00,0.00,0.00,20.16,0.00 +688651.SH,0.00,0.00,0.00,35.35,0.00,0.00,0.00,33.97,0.00,37.52,0.00,26.08,0.00,0.00,0.00,29.63,0.00,0.00,0.00,29.64,0.00 +301312.SZ,0.00,0.00,0.00,89.49,0.00,84.95,0.00,84.87,78.18,0.00,0.00,79.23,0.00,0.00,0.00,77.24,0.00,0.00,0.00,78.25,0.00 +600193.SH,0.00,0.00,0.00,71.67,0.00,0.00,0.00,63.93,0.00,0.00,0.00,94.20,0.00,0.00,0.00,96.57,0.00,0.00,0.00,81.23,0.00 +688037.SH,0.00,0.00,0.00,54.33,0.00,0.00,0.00,44.20,0.00,0.00,0.00,22.52,0.00,0.00,0.00,34.02,0.00,0.00,0.00,36.65,0.00 +870726.BJ,0.00,0.00,0.00,41.65,0.00,0.00,0.00,39.55,0.00,48.38,0.00,40.95,0.00,0.00,0.00,30.71,0.00,0.00,0.00,29.02,0.00 +301622.SZ,0.00,0.00,0.00,62.86,0.00,0.00,0.00,45.80,52.50,0.00,0.00,54.79,0.00,0.00,0.00,57.18,58.50,0.00,0.00,70.36,0.00 +002519.SZ,0.00,0.00,0.00,44.54,0.00,0.00,0.00,27.74,0.00,0.00,0.00,33.13,0.00,0.00,0.00,51.72,0.00,0.00,0.00,67.53,0.00 +002278.SZ,0.00,0.00,0.00,31.11,0.00,0.00,0.00,78.23,0.00,0.00,0.00,76.14,0.00,0.00,0.00,70.14,0.00,0.00,0.00,69.49,0.00 +002535.SZ,0.00,0.00,0.00,59.07,0.00,0.00,0.00,49.51,0.00,0.00,0.00,65.82,0.00,0.00,0.00,71.32,0.00,0.00,0.00,69.65,0.00 +002569.SZ,0.00,0.00,0.00,24.28,0.00,0.00,0.00,24.98,0.00,0.00,0.00,29.77,0.00,0.00,0.00,25.89,0.00,0.00,0.00,30.56,0.00 +600696.SH,0.00,0.00,0.00,28.77,0.00,0.00,0.00,21.92,0.00,0.00,0.00,18.33,0.00,0.00,0.00,6.32,0.00,0.00,0.00,16.81,0.00 +600185.SH,0.00,0.00,0.00,11.79,0.00,0.00,0.00,4.37,0.00,0.00,0.00,7.15,0.00,0.00,0.00,6.79,0.00,0.00,0.00,3.94,0.00 +830832.BJ,0.00,78.59,0.00,84.77,0.00,80.01,0.00,86.45,0.00,92.63,0.00,88.86,0.00,86.01,0.00,86.74,0.00,87.82,0.00,89.24,0.00 +002197.SZ,0.00,0.00,0.00,37.23,0.00,0.00,0.00,37.84,0.00,0.00,0.00,45.34,0.00,0.00,0.00,67.38,0.00,0.00,0.00,66.95,0.00 +300197.SZ,0.00,0.00,0.00,25.39,0.00,0.00,0.00,24.28,0.00,0.00,0.00,23.66,0.00,0.00,0.00,34.74,0.00,0.00,0.00,46.24,0.00 +002650.SZ,0.00,0.00,0.00,6.27,0.00,0.00,0.00,4.97,0.00,0.00,0.00,4.55,0.00,0.00,0.00,7.03,0.00,0.00,0.00,5.54,0.00 +300656.SZ,0.00,0.00,0.00,45.52,0.00,0.00,0.00,37.07,0.00,0.00,0.00,40.57,0.00,0.00,0.00,47.15,0.00,0.00,0.00,54.16,0.00 +603388.SH,0.00,0.00,0.00,86.50,0.00,0.00,0.00,87.31,0.00,0.00,0.00,81.84,0.00,0.00,0.00,54.81,0.00,0.00,0.00,45.59,0.00 +002685.SZ,0.00,0.00,0.00,13.38,0.00,0.00,0.00,14.65,0.00,0.00,0.00,62.46,0.00,0.00,0.00,24.27,0.00,0.00,0.00,44.66,0.00 +834639.BJ,0.00,0.00,0.00,91.93,0.00,89.28,52.52,88.69,54.71,0.00,0.00,88.97,0.00,0.00,0.00,87.64,0.00,0.00,0.00,90.46,0.00 +002204.SZ,0.00,0.00,0.00,18.51,0.00,0.00,0.00,15.20,0.00,0.00,0.00,14.44,0.00,0.00,0.00,17.09,0.00,0.00,0.00,10.48,0.00 +002199.SZ,0.00,0.00,0.00,61.99,0.00,0.00,0.00,53.76,0.00,0.00,0.00,42.05,0.00,0.00,0.00,44.30,0.00,0.00,0.00,38.25,0.00 +603813.SH,0.00,0.00,0.00,62.81,0.00,0.00,0.00,61.01,0.00,0.00,0.00,59.34,0.00,0.00,0.00,52.02,0.00,0.00,0.00,41.19,0.00 +688549.SH,0.00,0.00,0.00,34.90,0.00,33.55,0.00,34.64,0.00,0.00,0.00,35.61,0.00,36.62,0.00,36.39,0.00,0.00,0.00,41.93,0.00 +831526.BJ,0.00,43.19,0.00,51.58,0.00,37.56,0.00,49.64,0.00,53.80,0.00,52.70,0.00,0.00,0.00,48.50,0.00,0.00,0.00,50.11,0.00 +002816.SZ,0.00,0.00,0.00,54.46,0.00,0.00,0.00,67.00,0.00,0.00,0.00,48.62,0.00,0.00,0.00,84.01,0.00,0.00,0.00,73.83,0.00 +605050.SH,0.00,19.31,0.00,10.49,0.00,0.00,0.00,15.34,0.00,0.00,0.00,15.64,0.00,0.00,0.00,17.11,0.00,0.00,0.00,20.65,0.00 +603268.SH,0.00,0.00,0.00,35.59,0.00,0.00,0.00,23.61,0.00,0.00,0.00,31.82,0.00,0.00,0.00,23.58,0.00,0.00,0.00,21.44,0.00 +300572.SZ,0.00,0.00,0.00,3.73,0.00,0.00,0.00,13.54,0.00,0.00,0.00,4.75,0.00,0.00,0.00,7.68,0.00,0.00,0.00,10.85,0.00 +603261.SH,0.00,0.00,0.00,98.80,0.00,99.18,0.00,98.37,0.00,0.00,0.00,94.38,0.00,0.00,0.00,90.30,0.00,0.00,0.00,89.45,0.00 +002200.SZ,0.00,0.00,0.00,76.24,0.00,0.00,0.00,84.86,0.00,0.00,0.00,93.69,0.00,0.00,0.00,76.78,0.00,0.00,0.00,53.81,0.00 +002848.SZ,0.00,0.00,0.00,33.52,0.00,0.00,0.00,28.51,0.00,0.00,0.00,44.63,0.00,0.00,0.00,64.37,0.00,0.00,0.00,41.46,0.00 +000566.SZ,0.00,0.00,0.00,16.95,0.00,0.00,0.00,10.56,0.00,0.00,0.00,16.15,0.00,0.00,0.00,8.57,0.00,0.00,0.00,15.33,0.00 +603007.SH,0.00,0.00,0.00,60.56,0.00,0.00,0.00,60.98,0.00,0.00,0.00,61.78,0.00,0.00,0.00,51.63,0.00,0.00,0.00,49.75,0.00 +002112.SZ,0.00,0.00,0.00,27.38,0.00,0.00,0.00,33.31,0.00,0.00,0.00,46.23,0.00,0.00,0.00,49.85,0.00,0.00,0.00,39.94,0.00 +603917.SH,0.00,0.00,0.00,64.38,0.00,0.00,0.00,49.87,0.00,0.00,0.00,57.79,0.00,0.00,0.00,52.52,0.00,0.00,0.00,50.88,0.00 +002289.SZ,0.00,0.00,0.00,40.87,0.00,0.00,0.00,37.42,0.00,0.00,0.00,54.64,0.00,0.00,0.00,78.26,0.00,0.00,0.00,65.31,0.00 +300464.SZ,0.00,0.00,0.00,4.12,0.00,0.00,0.00,9.21,0.00,0.00,0.00,14.64,0.00,0.00,0.00,16.55,0.00,0.00,0.00,32.19,0.00 +300293.SZ,0.00,0.00,0.00,26.79,0.00,0.00,0.00,22.74,0.00,0.00,0.00,21.39,0.00,0.00,0.00,18.66,0.00,0.00,0.00,21.61,0.00 +002868.SZ,0.00,0.00,0.00,30.84,0.00,0.00,0.00,31.34,0.00,0.00,0.00,21.04,0.00,0.00,0.00,31.33,0.00,0.00,0.00,35.22,0.00 +002095.SZ,0.00,0.00,0.00,20.80,0.00,0.00,0.00,23.27,0.00,0.00,0.00,18.47,0.00,0.00,0.00,22.96,0.00,0.00,0.00,30.02,0.00 +000676.SZ,0.00,0.00,0.00,44.98,0.00,0.00,0.00,47.90,0.00,0.00,0.00,45.55,0.00,0.00,0.00,51.35,0.00,0.00,0.00,46.40,0.00 +300657.SZ,0.00,0.00,0.00,58.13,0.00,0.00,0.00,58.00,0.00,0.00,0.00,57.86,0.00,0.00,0.00,66.53,0.00,0.00,0.00,52.08,0.00 +600980.SH,0.00,0.00,0.00,32.04,0.00,0.00,0.00,27.54,0.00,0.00,0.00,22.52,0.00,0.00,0.00,22.01,0.00,0.00,0.00,31.66,0.00 +830779.BJ,0.00,0.00,0.00,39.86,0.00,34.27,0.00,28.61,0.00,32.28,26.08,37.00,20.67,0.00,0.00,21.37,0.00,0.00,0.00,24.59,0.00 +300067.SZ,0.00,0.00,0.00,15.66,0.00,0.00,0.00,14.28,0.00,0.00,0.00,18.26,0.00,0.00,0.00,19.72,0.00,0.00,0.00,22.84,0.00 +002058.SZ,0.00,0.00,0.00,14.69,0.00,0.00,0.00,12.06,0.00,0.00,0.00,31.19,0.00,0.00,0.00,18.80,0.00,0.00,0.00,13.25,0.00 +603569.SH,0.00,0.00,0.00,52.89,0.00,0.00,0.00,44.12,0.00,0.00,0.00,36.63,0.00,0.00,0.00,35.51,0.00,0.00,0.00,28.65,0.00 +601399.SH,0.00,0.00,0.00,25.12,0.00,0.00,0.00,36.06,0.00,0.00,0.00,20.71,0.00,0.00,0.00,16.54,0.00,0.00,0.00,17.12,0.00 +000929.SZ,0.00,0.00,0.00,15.89,0.00,0.00,0.00,9.55,0.00,0.00,0.00,8.21,0.00,0.00,0.00,8.71,0.00,0.00,0.00,9.21,0.00 +300822.SZ,0.00,0.00,0.00,95.61,0.00,0.00,0.00,97.55,0.00,0.00,0.00,91.79,0.00,0.00,0.00,86.23,0.00,0.00,0.00,79.89,0.00 +002881.SZ,0.00,0.00,0.00,51.74,0.00,0.00,0.00,25.76,0.00,0.00,0.00,29.95,0.00,0.00,0.00,39.35,0.00,0.00,0.00,47.21,0.00 +300103.SZ,0.00,0.00,0.00,42.82,0.00,0.00,0.00,42.94,0.00,0.00,0.00,31.92,0.00,0.00,0.00,33.57,0.00,0.00,0.00,41.62,0.00 +605289.SH,0.00,61.97,0.00,55.73,0.00,60.79,0.00,44.65,0.00,39.22,0.00,43.56,0.00,52.79,0.00,42.15,0.00,51.34,0.00,31.68,0.00 +000710.SZ,0.00,0.00,0.00,26.75,0.00,0.00,0.00,18.70,0.00,0.00,0.00,15.95,0.00,0.00,0.00,15.56,0.00,0.00,0.00,13.01,0.00 +300461.SZ,0.00,0.00,0.00,47.27,0.00,0.00,0.00,43.33,0.00,0.00,0.00,31.41,0.00,0.00,0.00,29.98,0.00,0.00,0.00,60.27,0.00 +688157.SH,0.00,0.00,0.00,36.88,0.00,0.00,0.00,29.48,0.00,0.00,0.00,31.40,0.00,0.00,0.00,33.32,0.00,0.00,0.00,37.95,0.00 +301118.SZ,0.00,27.51,0.00,24.26,0.00,27.55,0.00,25.47,0.00,0.00,0.00,23.46,0.00,0.00,0.00,28.49,0.00,0.00,0.00,29.98,0.00 +920799.BJ,0.00,0.00,0.00,86.57,0.00,0.00,0.00,79.60,0.00,0.00,0.00,80.03,0.00,0.00,0.00,79.58,0.00,0.00,0.00,73.04,0.00 +001212.SZ,0.00,32.34,0.00,32.79,0.00,0.00,0.00,35.65,0.00,0.00,0.00,27.26,0.00,0.00,0.00,26.96,0.00,0.00,0.00,26.91,0.00 +002898.SZ,0.00,0.00,0.00,28.75,0.00,0.00,0.00,15.60,0.00,0.00,0.00,19.23,0.00,0.00,0.00,22.95,0.00,0.00,0.00,34.49,0.00 +600753.SH,0.00,0.00,0.00,57.00,0.00,0.00,0.00,60.34,0.00,0.00,0.00,76.83,0.00,0.00,0.00,92.57,0.00,0.00,0.00,70.78,0.00 +688035.SH,0.00,0.00,0.00,52.56,0.00,43.92,0.00,50.68,0.00,0.00,0.00,66.14,0.00,0.00,0.00,62.39,0.00,0.00,0.00,59.61,0.00 +002713.SZ,0.00,0.00,0.00,1.71,0.00,0.00,0.00,1.93,0.00,0.00,0.00,1.08,0.00,0.00,0.00,1.38,0.00,0.00,0.00,2.67,0.00 +831087.BJ,0.00,0.00,0.00,7.34,0.00,0.00,0.00,9.16,0.00,19.40,0.00,7.93,0.00,0.00,0.00,7.10,0.00,0.00,0.00,5.67,0.00 +600636.SH,0.00,0.00,0.00,37.58,0.00,0.00,0.00,12.47,0.00,0.00,0.00,2.83,0.00,0.00,0.00,17.02,0.00,0.00,0.00,15.29,0.00 +603579.SH,0.00,0.00,0.00,53.75,0.00,0.00,0.00,49.11,0.00,0.00,0.00,45.27,0.00,0.00,0.00,44.13,0.00,0.00,0.00,44.37,0.00 +301516.SZ,56.48,0.00,0.00,55.63,0.00,66.37,0.00,72.31,0.00,73.91,0.00,74.08,0.00,76.45,73.78,73.37,0.00,0.00,0.00,65.96,0.00 +688680.SH,0.00,84.56,0.00,84.74,0.00,0.00,0.00,82.65,0.00,0.00,0.00,75.00,0.00,0.00,0.00,71.89,0.00,0.00,0.00,59.18,0.00 +833580.BJ,0.00,0.00,0.00,33.28,0.00,0.00,0.00,30.70,0.00,0.00,0.00,34.09,0.00,0.00,0.00,35.33,0.00,0.00,0.00,28.52,0.00 +301191.SZ,0.00,0.00,0.00,99.45,0.00,99.32,0.00,99.56,99.83,0.00,0.00,99.08,0.00,0.00,0.00,99.34,0.00,0.00,0.00,96.53,0.00 +002542.SZ,0.00,0.00,0.00,67.12,0.00,0.00,0.00,52.94,0.00,0.00,0.00,60.83,0.00,0.00,0.00,58.90,0.00,0.00,0.00,47.42,0.00 +603023.SH,0.00,0.00,0.00,68.33,0.00,0.00,0.00,68.18,0.00,0.00,0.00,67.21,0.00,0.00,0.00,74.50,0.00,0.00,0.00,79.22,0.00 +688557.SH,0.00,87.74,0.00,70.95,0.00,0.00,0.00,62.77,0.00,0.00,0.00,51.58,0.00,0.00,0.00,31.22,0.00,0.00,0.00,42.47,0.00 +600776.SH,0.00,0.00,0.00,46.93,0.00,0.00,0.00,49.53,0.00,0.00,0.00,55.87,0.00,0.00,0.00,58.07,0.00,0.00,0.00,58.67,0.00 +000668.SZ,0.00,0.00,0.00,39.47,0.00,0.00,0.00,15.91,0.00,0.00,0.00,27.65,0.00,0.00,0.00,51.19,0.00,0.00,0.00,54.78,0.00 +688309.SH,0.00,0.00,0.00,91.47,0.00,0.00,0.00,73.64,0.00,0.00,0.00,64.82,0.00,0.00,0.00,100.97,0.00,0.00,0.00,72.15,0.00 +002626.SZ,0.00,0.00,0.00,37.58,0.00,32.09,0.00,35.53,0.00,0.00,0.00,40.44,0.00,46.98,0.00,46.95,0.00,46.94,0.00,45.14,0.00 +600608.SH,0.00,0.00,0.00,98.05,0.00,0.00,0.00,55.80,0.00,0.00,0.00,59.40,0.00,0.00,0.00,74.29,0.00,0.00,0.00,64.58,0.00 +603838.SH,0.00,0.00,0.00,20.52,0.00,0.00,0.00,18.86,0.00,0.00,0.00,18.27,0.00,0.00,0.00,26.67,0.00,0.00,0.00,27.98,0.00 +833030.BJ,0.00,0.00,0.00,10.92,0.00,0.00,13.28,10.46,0.00,0.00,0.00,13.48,10.56,11.02,0.00,8.58,0.00,0.00,0.00,7.11,0.00 +688135.SH,75.83,74.01,0.00,67.19,0.00,0.00,0.00,54.24,0.00,0.00,0.00,40.55,0.00,0.00,0.00,42.81,0.00,0.00,0.00,41.17,0.00 +688800.SH,0.00,52.30,0.00,43.33,37.22,0.00,0.00,40.17,0.00,0.00,0.00,42.73,0.00,0.00,0.00,33.53,0.00,0.00,0.00,37.64,0.00 +002528.SZ,0.00,0.00,0.00,19.94,0.00,0.00,0.00,23.43,0.00,0.00,0.00,22.62,0.00,0.00,0.00,28.52,0.00,0.00,0.00,32.96,0.00 +300416.SZ,0.00,0.00,0.00,20.03,0.00,0.00,0.00,13.59,0.00,0.00,0.00,11.59,0.00,0.00,0.00,10.19,0.00,0.00,0.00,11.40,0.00 +300348.SZ,0.00,0.00,0.00,19.92,0.00,0.00,0.00,16.43,0.00,0.00,0.00,24.54,0.00,0.00,0.00,23.16,0.00,0.00,0.00,21.52,0.00 +000545.SZ,0.00,0.00,0.00,25.81,0.00,0.00,0.00,20.53,0.00,0.00,0.00,23.44,0.00,0.00,0.00,23.47,0.00,0.00,0.00,21.67,0.00 +002857.SZ,0.00,0.00,0.00,28.28,0.00,0.00,0.00,44.74,0.00,0.00,0.00,48.17,0.00,0.00,0.00,47.87,0.00,0.00,0.00,69.64,0.00 +301366.SZ,0.00,19.83,0.00,17.42,0.00,18.79,0.00,16.32,0.00,13.61,0.00,11.37,0.00,0.00,0.00,6.11,0.00,0.00,0.00,7.02,0.00 +600187.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,58.46,0.00,0.00,0.00,70.25,0.00,0.00,0.00,79.61,0.00,0.00,0.00,95.49,0.00 +300056.SZ,0.00,0.00,0.00,52.24,0.00,0.00,0.00,62.73,0.00,0.00,0.00,43.01,0.00,0.00,0.00,20.31,0.00,0.00,0.00,35.79,0.00 +002322.SZ,0.00,0.00,0.00,13.57,0.00,0.00,0.00,16.03,0.00,0.00,0.00,7.46,0.00,0.00,0.00,8.87,0.00,0.00,0.00,7.26,0.00 +002842.SZ,0.00,0.00,0.00,28.10,0.00,0.00,0.00,26.66,0.00,0.00,0.00,34.38,0.00,0.00,0.00,34.38,0.00,0.00,0.00,31.38,0.00 +002306.SZ,0.00,0.00,0.00,17.65,0.00,0.00,0.00,15.33,0.00,0.00,0.00,31.05,0.00,0.00,0.00,37.44,0.00,0.00,0.00,66.97,0.00 +300302.SZ,0.00,0.00,0.00,47.88,0.00,0.00,0.00,46.79,0.00,0.00,0.00,62.09,0.00,0.00,0.00,66.74,0.00,0.00,0.00,59.70,0.00 +300098.SZ,0.00,0.00,0.00,22.68,0.00,0.00,0.00,14.80,0.00,0.00,0.00,15.27,0.00,0.00,0.00,30.87,0.00,0.00,0.00,45.83,0.00 +002769.SZ,0.00,0.00,0.00,26.82,0.00,0.00,0.00,31.23,0.00,0.00,0.00,30.10,0.00,0.00,0.00,38.10,0.00,0.00,0.00,67.00,0.00 +300949.SZ,0.00,20.56,0.00,18.05,0.00,0.00,0.00,20.58,0.00,0.00,0.00,23.40,0.00,0.00,0.00,28.83,0.00,0.00,0.00,26.79,0.00 +688435.SH,0.00,0.00,0.00,21.22,0.00,31.43,0.00,17.25,0.00,24.23,21.18,21.89,0.00,0.00,0.00,22.65,0.00,0.00,0.00,15.98,0.00 +002277.SZ,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.96,0.00,0.00,0.00,6.23,0.00 +301608.SZ,0.00,0.00,0.00,39.09,0.00,0.00,0.00,41.29,0.00,51.41,0.00,43.25,0.00,41.50,0.00,35.29,39.80,0.00,0.00,41.45,0.00 +002141.SZ,0.00,0.00,0.00,15.31,0.00,0.00,0.00,15.81,0.00,0.00,0.00,17.22,0.00,0.00,0.00,33.76,0.00,0.00,0.00,49.56,0.00 +600835.SH,0.00,0.00,0.00,2.52,0.00,0.00,0.00,15.41,0.00,0.00,0.00,8.23,0.00,0.00,0.00,7.50,0.00,0.00,0.00,6.56,0.00 +002298.SZ,0.00,0.00,0.00,36.62,0.00,0.00,0.00,26.44,0.00,0.00,0.00,17.22,0.00,0.00,0.00,24.46,0.00,0.00,0.00,20.27,0.00 +301517.SZ,0.00,0.00,0.00,73.08,0.00,75.94,0.00,74.93,0.00,0.00,0.00,74.34,0.00,0.00,0.00,78.52,0.00,0.00,0.00,71.46,0.00 +300340.SZ,0.00,0.00,0.00,26.64,0.00,0.00,0.00,22.19,0.00,0.00,0.00,38.21,0.00,0.00,0.00,23.59,0.00,0.00,0.00,32.05,0.00 +002093.SZ,0.00,0.00,0.00,28.90,0.00,0.00,0.00,24.72,0.00,0.00,0.00,35.17,0.00,0.00,0.00,34.42,0.00,0.00,0.00,22.98,0.00 +002323.SZ,0.00,0.00,0.00,87.32,0.00,0.00,0.00,88.64,0.00,0.00,0.00,82.68,0.00,0.00,0.00,79.08,0.00,0.00,0.00,79.49,0.00 +600841.SH,0.00,0.00,0.00,70.95,0.00,0.00,0.00,29.96,0.00,0.00,0.00,40.20,0.00,0.00,0.00,35.47,0.00,0.00,0.00,32.61,0.00 +002580.SZ,0.00,0.00,0.00,23.15,0.00,0.00,0.00,26.98,0.00,0.00,0.00,26.91,0.00,0.00,0.00,29.66,0.00,0.00,0.00,28.74,0.00 +300488.SZ,0.00,0.00,0.00,17.61,0.00,0.00,0.00,18.25,0.00,0.00,0.00,19.68,0.00,0.00,0.00,19.32,0.00,0.00,0.00,23.00,0.00 +002602.SZ,0.00,0.00,0.00,45.06,0.00,0.00,0.00,46.58,0.00,0.00,0.00,46.00,0.00,0.00,0.00,53.87,0.00,0.00,0.00,68.27,0.00 +300242.SZ,0.00,0.00,0.00,22.36,0.00,0.00,0.00,28.96,0.00,0.00,0.00,34.55,0.00,0.00,0.00,40.10,0.00,0.00,0.00,21.05,0.00 +834475.BJ,0.00,89.48,0.00,79.39,0.00,85.34,0.00,71.53,0.00,78.07,0.00,71.68,0.00,84.10,0.00,60.41,0.00,89.47,0.00,78.67,0.00 +300520.SZ,0.00,0.00,0.00,29.17,0.00,0.00,0.00,32.00,0.00,0.00,0.00,32.48,0.00,0.00,0.00,45.13,0.00,0.00,0.00,35.56,0.00 +300814.SZ,0.00,64.40,0.00,62.05,0.00,0.00,0.00,51.63,0.00,0.00,0.00,53.20,0.00,0.00,0.00,46.07,0.00,0.00,0.00,42.30,0.00 +873679.BJ,0.00,0.00,0.00,99.81,0.00,0.00,0.00,99.55,0.00,0.00,0.00,99.91,0.00,99.41,0.00,99.41,0.00,0.00,0.00,99.61,0.00 +002208.SZ,0.00,0.00,0.00,4.78,0.00,0.00,0.00,6.38,0.00,0.00,0.00,14.37,0.00,0.00,0.00,3.80,0.00,0.00,0.00,23.97,0.00 +301176.SZ,0.00,0.00,0.00,43.26,0.00,47.66,0.00,50.21,0.00,0.00,0.00,53.41,0.00,0.00,0.00,41.26,0.00,0.00,0.00,41.45,0.00 +688167.SH,0.00,0.00,44.55,40.56,0.00,33.49,0.00,36.92,0.00,0.00,0.00,33.74,0.00,0.00,0.00,36.16,0.00,0.00,0.00,26.84,0.00 +000034.SZ,0.00,0.00,0.00,32.40,0.00,0.00,0.00,44.62,0.00,0.00,0.00,38.99,0.00,0.00,0.00,39.04,0.00,0.00,0.00,42.55,0.00 +002149.SZ,0.00,0.00,0.00,19.07,0.00,0.00,0.00,18.32,0.00,0.00,0.00,22.63,0.00,0.00,0.00,18.77,0.00,0.00,0.00,19.75,0.00 +600198.SH,0.00,0.00,0.00,44.18,0.00,0.00,0.00,33.30,0.00,0.00,0.00,3.08,0.00,0.00,0.00,35.52,0.00,0.00,0.00,48.33,0.00 +600644.SH,0.00,0.00,0.00,10.66,0.00,0.00,0.00,18.78,0.00,0.00,0.00,18.68,0.00,0.00,0.00,21.03,0.00,0.00,0.00,22.95,0.00 +002168.SZ,0.00,0.00,0.00,14.17,0.00,0.00,0.00,27.62,0.00,0.00,0.00,41.26,0.00,0.00,0.00,56.60,0.00,0.00,0.00,40.85,0.00 +603766.SH,0.00,0.00,0.00,34.06,0.00,0.00,0.00,34.33,0.00,0.00,0.00,28.05,0.00,0.00,0.00,33.65,0.00,0.00,0.00,30.93,0.00 +301555.SZ,0.00,0.00,0.00,78.30,0.00,77.22,0.00,79.14,0.00,81.59,0.00,80.75,0.00,81.01,0.00,80.38,0.00,0.00,0.00,71.54,0.00 +002335.SZ,0.00,0.00,0.00,14.99,0.00,0.00,0.00,15.57,0.00,0.00,0.00,17.83,0.00,0.00,0.00,21.13,0.00,0.00,0.00,24.97,0.00 +301288.SZ,0.00,0.00,0.00,54.59,0.00,88.00,0.00,0.00,0.00,0.00,0.00,70.48,0.00,0.00,0.00,72.59,0.00,0.00,0.00,63.70,0.00 +601608.SH,0.00,0.00,0.00,12.17,0.00,0.00,0.00,16.67,0.00,0.00,0.00,27.55,0.00,0.00,0.00,25.12,0.00,0.00,0.00,20.11,0.00 +000997.SZ,0.00,0.00,0.00,16.54,0.00,0.00,0.00,19.08,0.00,0.00,0.00,17.99,0.00,0.00,0.00,15.94,0.00,0.00,0.00,20.96,0.00 +603219.SH,0.00,94.63,0.00,95.84,0.00,96.50,96.39,83.52,0.00,0.00,0.00,96.83,0.00,0.00,0.00,95.67,0.00,0.00,0.00,93.47,0.00 +688418.SH,74.53,0.00,0.00,27.80,0.00,0.00,0.00,28.07,0.00,0.00,0.00,28.06,0.00,0.00,0.00,37.23,0.00,0.00,0.00,32.15,0.00 +600550.SH,0.00,0.00,0.00,58.46,0.00,0.00,0.00,36.03,0.00,0.00,0.00,29.80,0.00,0.00,0.00,23.76,0.00,0.00,0.00,17.50,0.00 +002622.SZ,0.00,0.00,0.00,29.17,0.00,0.00,0.00,24.10,0.00,0.00,0.00,7.44,0.00,0.00,0.00,3.82,0.00,0.00,0.00,5.10,0.00 +301226.SZ,0.00,42.73,0.00,43.16,0.00,44.71,0.00,46.19,0.00,0.00,0.00,46.43,0.00,0.00,0.00,38.03,0.00,0.00,0.00,36.63,0.00 +002104.SZ,0.00,0.00,0.00,17.88,0.00,0.00,0.00,24.86,0.00,0.00,0.00,14.25,0.00,0.00,0.00,20.43,0.00,0.00,0.00,55.80,0.00 +601216.SH,0.00,0.00,0.00,18.81,0.00,0.00,0.00,19.27,0.00,0.00,0.00,12.15,0.00,0.00,0.00,8.08,0.00,0.00,0.00,8.10,0.00 +603108.SH,0.00,0.00,0.00,12.94,0.00,13.13,0.00,11.48,0.00,13.55,0.00,13.00,0.00,18.12,0.00,13.22,0.00,10.72,0.00,12.23,0.00 +832175.BJ,0.00,0.00,0.00,26.37,0.00,0.00,0.00,22.92,0.00,23.92,0.00,23.15,0.00,0.00,0.00,37.18,0.00,0.00,0.00,28.13,0.00 +831039.BJ,0.00,0.00,0.00,25.80,0.00,0.00,0.00,24.76,0.00,0.00,0.00,26.24,0.00,0.00,0.00,37.50,0.00,0.00,0.00,28.43,0.00 +872895.BJ,0.00,0.00,0.00,20.47,0.00,26.98,0.00,20.12,0.00,14.38,15.33,17.43,0.00,20.45,0.00,16.25,0.00,0.00,0.00,35.15,0.00 +833943.BJ,0.00,0.00,0.00,24.72,28.17,0.00,0.00,30.81,0.00,0.00,0.00,24.38,0.00,0.00,0.00,19.87,0.00,0.00,0.00,25.10,0.00 +872808.BJ,0.00,0.00,0.00,93.47,0.00,0.00,0.00,94.23,0.00,94.19,0.00,91.81,0.00,0.00,0.00,84.87,0.00,0.00,0.00,49.14,0.00 +831768.BJ,0.00,60.33,0.00,62.32,0.00,0.00,0.00,59.36,0.00,0.00,0.00,54.71,0.00,0.00,0.00,66.31,0.00,0.00,0.00,72.88,0.00 +002694.SZ,0.00,0.00,0.00,12.78,0.00,0.00,0.00,14.87,0.00,0.00,0.00,16.40,0.00,0.00,0.00,21.51,0.00,0.00,0.00,18.53,0.00 +001319.SZ,0.00,0.00,0.00,56.48,0.00,56.14,0.00,50.45,0.00,0.00,0.00,44.42,0.00,0.00,0.00,42.47,0.00,0.00,0.00,41.13,0.00 +300018.SZ,0.00,0.00,0.00,10.78,0.00,0.00,0.00,11.08,0.00,0.00,0.00,13.86,0.00,0.00,0.00,14.18,0.00,0.00,0.00,16.57,0.00 +301072.SZ,0.00,77.19,0.00,76.24,0.00,0.00,0.00,78.92,0.00,0.00,0.00,78.33,0.00,0.00,0.00,75.29,0.00,0.00,0.00,71.32,0.00 +002434.SZ,0.00,0.00,0.00,72.28,0.00,0.00,0.00,70.57,0.00,0.00,0.00,77.83,0.00,0.00,0.00,77.90,0.00,0.00,0.00,66.98,0.00 +603228.SH,0.00,0.00,0.00,23.92,0.00,0.00,0.00,18.91,0.00,0.00,0.00,19.73,0.00,0.00,0.00,18.98,0.00,0.00,0.00,23.11,0.00 +002031.SZ,0.00,0.00,0.00,18.26,0.00,0.00,0.00,20.26,0.00,0.00,0.00,30.77,0.00,0.00,0.00,36.75,0.00,0.00,0.00,50.94,0.00 +300459.SZ,0.00,0.00,0.00,50.67,0.00,0.00,0.00,53.29,0.00,0.00,0.00,54.93,0.00,0.00,0.00,60.58,0.00,0.00,0.00,57.10,0.00 +002987.SZ,0.00,0.00,0.00,60.93,0.00,0.00,0.00,59.57,0.00,0.00,0.00,53.66,0.00,0.00,0.00,52.85,0.00,0.00,0.00,51.53,0.00 +603899.SH,0.00,0.00,0.00,17.33,0.00,0.00,0.00,19.48,0.00,0.00,0.00,25.97,0.00,0.00,0.00,25.72,0.00,0.00,0.00,23.94,0.00 +600458.SH,0.00,0.00,0.00,46.79,0.00,0.00,0.00,37.91,0.00,0.00,0.00,49.55,0.00,0.00,0.00,35.80,0.00,0.00,0.00,53.58,0.00 +603949.SH,0.00,0.00,0.00,72.24,0.00,0.00,0.00,68.74,0.00,0.00,0.00,63.18,0.00,0.00,0.00,65.12,0.00,0.00,0.00,64.62,0.00 +688290.SH,0.00,0.00,0.00,99.16,0.00,99.57,0.00,95.23,0.00,0.00,0.00,97.35,0.00,0.00,0.00,93.49,0.00,0.00,0.00,83.69,0.00 +601100.SH,0.00,0.00,0.00,63.53,0.00,0.00,0.00,60.17,0.00,0.00,0.00,50.18,0.00,0.00,0.00,42.45,0.00,0.00,0.00,44.13,0.00 +002943.SZ,0.00,0.00,0.00,87.87,0.00,0.00,0.00,46.59,0.00,0.00,0.00,45.58,0.00,0.00,0.00,46.16,0.00,0.00,0.00,48.50,0.00 +600734.SH,0.00,0.00,0.00,29.84,0.00,43.26,0.00,50.72,0.00,0.00,0.00,68.77,0.00,0.00,0.00,91.98,0.00,0.00,0.00,89.02,0.00 +002506.SZ,0.00,0.00,0.00,20.47,0.00,0.00,0.00,14.86,0.00,0.00,0.00,27.08,0.00,0.00,0.00,46.36,0.00,0.00,0.00,39.50,0.00 +600986.SH,0.00,0.00,0.00,33.48,0.00,0.00,0.00,28.89,0.00,0.00,0.00,32.14,0.00,0.00,0.00,30.70,0.00,0.00,0.00,38.26,0.00 +002428.SZ,0.00,0.00,0.00,27.21,0.00,0.00,0.00,40.52,0.00,0.00,0.00,39.77,0.00,0.00,0.00,46.46,0.00,0.00,0.00,42.01,0.00 +300887.SZ,0.00,0.00,0.00,2.67,0.00,0.00,0.00,5.52,0.00,0.00,0.00,14.96,0.00,0.00,0.00,11.81,0.00,0.00,0.00,2.55,0.00 +600183.SH,0.00,0.00,0.00,23.25,0.00,0.00,0.00,18.03,0.00,0.00,0.00,16.69,0.00,0.00,0.00,15.93,0.00,0.00,0.00,16.22,0.00 +000048.SZ,0.00,0.00,0.00,5.28,0.00,0.00,0.00,8.25,0.00,0.00,0.00,13.29,0.00,0.00,0.00,6.56,0.00,0.00,0.00,13.20,0.00 +003028.SZ,0.00,69.40,68.48,67.80,0.00,0.00,0.00,63.43,0.00,0.00,0.00,54.56,0.00,0.00,0.00,48.89,0.00,0.00,0.00,41.70,0.00 +300359.SZ,0.00,0.00,0.00,37.76,0.00,0.00,0.00,30.10,0.00,0.00,0.00,28.11,0.00,0.00,0.00,26.54,0.00,0.00,0.00,32.52,0.00 +600681.SH,0.00,0.00,0.00,10.33,0.00,0.00,0.00,7.34,0.00,0.00,0.00,7.62,0.00,0.00,0.00,7.38,0.00,0.00,0.00,8.74,0.00 +300438.SZ,0.00,0.00,0.00,21.34,0.00,0.00,0.00,28.55,0.00,0.00,0.00,41.71,0.00,0.00,0.00,27.21,0.00,0.00,0.00,29.86,0.00 +688545.SH,0.00,0.00,0.00,44.31,0.00,0.00,0.00,35.78,0.00,0.00,0.00,44.88,0.00,0.00,0.00,45.11,0.00,40.76,41.19,40.92,0.00 +600538.SH,0.00,0.00,0.00,40.59,0.00,0.00,0.00,24.08,0.00,0.00,0.00,21.87,0.00,0.00,0.00,27.60,0.00,0.00,0.00,26.97,0.00 +603918.SH,0.00,0.00,0.00,17.28,0.00,0.00,0.00,15.54,0.00,0.00,0.00,17.50,0.00,0.00,0.00,13.82,0.00,0.00,0.00,25.58,0.00 +300571.SZ,0.00,0.00,0.00,41.83,0.00,0.00,0.00,30.33,0.00,0.00,0.00,73.14,0.00,0.00,0.00,75.68,0.00,0.00,0.00,79.71,0.00 +872392.BJ,0.00,29.04,0.00,30.82,0.00,29.27,0.00,29.61,33.27,29.12,26.07,25.52,0.00,23.83,0.00,24.02,0.00,24.06,0.00,29.29,0.00 +301085.SZ,0.00,69.20,0.00,53.79,0.00,0.00,0.00,42.17,0.00,0.00,0.00,33.83,0.00,0.00,0.00,31.09,0.00,0.00,0.00,38.33,0.00 +002547.SZ,0.00,0.00,0.00,45.71,0.00,0.00,0.00,30.66,0.00,0.00,0.00,42.87,0.00,0.00,0.00,32.99,0.00,0.00,0.00,37.64,0.00 +688275.SH,0.00,0.00,0.00,84.56,0.00,0.00,91.75,92.21,0.00,96.64,0.00,96.86,0.00,0.00,0.00,96.55,0.00,0.00,0.00,88.21,0.00 +002689.SZ,0.00,0.00,0.00,18.42,0.00,0.00,0.00,16.32,0.00,0.00,0.00,22.66,0.00,0.00,0.00,32.08,0.00,0.00,0.00,23.98,0.00 +300921.SZ,0.00,21.31,0.00,20.92,0.00,0.00,0.00,17.30,0.00,0.00,0.00,16.20,0.00,0.00,0.00,15.16,0.00,0.00,0.00,15.96,0.00 +833171.BJ,0.00,0.00,0.00,66.75,0.00,0.00,0.00,65.32,0.00,72.98,0.00,57.78,0.00,0.00,0.00,51.62,0.00,0.00,0.00,39.02,0.00 +871553.BJ,0.00,18.11,0.00,18.06,0.00,0.00,0.00,15.17,0.00,14.81,0.00,13.92,0.00,12.54,0.00,12.76,0.00,12.49,0.00,13.01,0.00 +002824.SZ,0.00,0.00,0.00,33.36,0.00,0.00,0.00,45.51,0.00,0.00,0.00,62.70,0.00,0.00,0.00,66.71,0.00,0.00,0.00,64.16,0.00 +600192.SH,0.00,0.00,0.00,26.27,0.00,0.00,0.00,12.13,0.00,0.00,0.00,7.97,0.00,0.00,0.00,8.33,0.00,0.00,0.00,10.58,0.00 +603042.SH,0.00,0.00,0.00,15.09,0.00,0.00,0.00,13.63,0.00,0.00,0.00,17.81,0.00,0.00,0.00,18.28,0.00,0.00,0.00,19.91,0.00 +603901.SH,0.00,0.00,0.00,18.66,0.00,0.00,0.00,16.99,0.00,0.00,0.00,17.17,0.00,0.00,0.00,15.48,0.00,0.00,0.00,11.71,0.00 +601519.SH,0.00,0.00,0.00,13.60,0.00,0.00,0.00,12.75,0.00,0.00,0.00,11.06,0.00,0.00,0.00,9.64,0.00,0.00,0.00,10.80,0.00 +002634.SZ,0.00,0.00,0.00,69.76,0.00,0.00,0.00,67.65,0.00,0.00,0.00,70.32,0.00,0.00,0.00,50.14,0.00,0.00,0.00,52.47,0.00 +301439.SZ,0.00,49.21,0.00,44.47,0.00,41.72,0.00,44.94,0.00,0.00,49.61,47.18,0.00,0.00,0.00,39.38,0.00,0.00,0.00,42.57,0.00 +603767.SH,0.00,0.00,0.00,63.02,0.00,0.00,0.00,58.49,0.00,0.00,0.00,50.60,0.00,0.00,0.00,54.26,0.00,0.00,0.00,57.86,0.00 +833455.BJ,0.00,43.57,0.00,66.39,0.00,43.22,0.00,64.88,75.90,0.00,0.00,75.96,0.00,0.00,0.00,77.43,0.00,0.00,0.00,77.92,0.00 +603045.SH,0.00,0.00,0.00,39.89,0.00,0.00,0.00,40.09,0.00,0.00,0.00,41.30,0.00,0.00,0.00,36.10,0.00,0.00,0.00,33.65,0.00 +300772.SZ,0.00,0.00,0.00,65.97,0.00,0.00,0.00,66.60,0.00,0.00,0.00,46.77,0.00,0.00,0.00,44.74,0.00,0.00,0.00,53.17,0.00 +688260.SH,0.00,54.47,0.00,0.00,0.00,0.00,0.00,48.41,0.00,0.00,0.00,50.03,0.00,0.00,0.00,52.60,0.00,0.00,0.00,55.03,0.00 +872374.BJ,0.00,26.93,0.00,24.50,0.00,36.05,0.00,35.15,28.34,29.63,27.96,29.79,0.00,36.68,0.00,33.83,0.00,35.15,0.00,23.86,0.00 +688409.SH,0.00,0.00,0.00,87.25,0.00,86.92,0.00,86.23,0.00,0.00,0.00,73.75,0.00,0.00,0.00,74.63,0.00,0.00,0.00,78.81,0.00 +601113.SH,0.00,0.00,0.00,53.98,0.00,0.00,0.00,48.91,0.00,0.00,0.00,41.62,0.00,0.00,0.00,34.80,0.00,0.00,0.00,24.85,0.00 +301236.SZ,0.00,0.00,71.27,69.88,0.00,65.46,0.00,64.09,0.00,0.00,0.00,59.68,0.00,0.00,0.00,52.34,0.00,0.00,0.00,47.91,0.00 +600726.SH,0.00,0.00,0.00,63.35,0.00,0.00,0.00,75.02,0.00,0.00,0.00,43.94,0.00,0.00,0.00,66.45,0.00,0.00,0.00,76.32,0.00 +001300.SZ,0.00,0.00,0.00,71.18,0.00,77.40,0.00,78.05,0.00,76.09,0.00,72.51,0.00,0.00,0.00,75.09,0.00,0.00,0.00,70.67,0.00 +301448.SZ,0.00,0.00,0.00,60.67,0.00,60.49,0.00,59.65,0.00,0.00,0.00,59.96,0.00,0.00,0.00,65.08,0.00,0.00,0.00,61.90,0.00 +002658.SZ,0.00,0.00,0.00,8.19,0.00,0.00,0.00,10.00,0.00,0.00,0.00,9.66,0.00,0.00,0.00,10.74,0.00,0.00,0.00,11.46,0.00 +301300.SZ,0.00,0.00,0.00,39.90,0.00,40.52,0.00,43.60,0.00,0.00,0.00,44.38,0.00,0.00,0.00,31.71,0.00,0.00,0.00,24.50,0.00 +688295.SH,0.00,0.00,0.00,31.21,0.00,41.04,0.00,0.00,0.00,0.00,0.00,31.56,0.00,0.00,0.00,32.92,0.00,0.00,0.00,35.89,0.00 +300819.SZ,0.00,0.00,0.00,65.81,0.00,0.00,0.00,59.75,0.00,0.00,0.00,55.63,0.00,0.00,0.00,52.31,0.00,0.00,0.00,63.88,0.00 +002294.SZ,0.00,0.00,0.00,18.95,0.00,0.00,0.00,21.65,0.00,0.00,0.00,46.08,0.00,0.00,0.00,51.39,0.00,0.00,0.00,51.17,0.00 +839790.BJ,0.00,60.56,0.00,56.26,0.00,60.48,54.52,65.58,0.00,58.41,0.00,60.75,0.00,69.87,0.00,71.42,0.00,71.49,0.00,69.20,0.00 +688573.SH,0.00,0.00,0.00,44.02,0.00,0.00,0.00,64.29,0.00,64.00,0.00,53.13,0.00,0.00,0.00,54.51,0.00,0.00,0.00,86.34,0.00 +002291.SZ,0.00,0.00,0.00,10.89,0.00,0.00,0.00,13.52,0.00,0.00,0.00,11.77,0.00,0.00,0.00,20.29,0.00,0.00,0.00,19.09,0.00 +831906.BJ,0.00,0.00,0.00,68.56,0.00,69.14,0.00,64.44,0.00,68.54,0.00,65.78,0.00,64.95,0.00,67.33,0.00,60.46,0.00,67.64,0.00 +688667.SH,0.00,83.29,0.00,71.04,0.00,0.00,0.00,64.79,0.00,0.00,0.00,65.51,0.00,0.00,0.00,73.60,0.00,0.00,0.00,69.18,0.00 +002841.SZ,0.00,0.00,0.00,29.64,0.00,0.00,0.00,27.62,0.00,0.00,0.00,26.07,0.00,0.00,0.00,25.53,0.00,0.00,0.00,27.18,0.00 +301012.SZ,57.57,45.99,0.00,32.75,33.66,0.00,0.00,29.99,0.00,0.00,0.00,42.93,0.00,0.00,0.00,51.27,0.00,0.00,0.00,46.05,0.00 +300785.SZ,0.00,0.00,0.00,63.42,0.00,0.00,0.00,54.18,0.00,0.00,0.00,54.96,0.00,0.00,0.00,46.22,0.00,0.00,0.00,42.97,0.00 +688639.SH,0.00,63.62,64.60,62.79,0.00,0.00,0.00,40.38,0.00,0.00,0.00,33.01,0.00,0.00,0.00,28.97,0.00,0.00,0.00,25.32,0.00 +002574.SZ,0.00,0.00,0.00,10.39,0.00,0.00,0.00,13.28,0.00,0.00,0.00,9.56,0.00,0.00,0.00,8.67,0.00,0.00,0.00,18.85,0.00 +001270.SZ,0.00,0.00,0.00,97.63,0.00,91.53,0.00,94.44,0.00,0.00,0.00,96.70,0.00,0.00,0.00,79.60,0.00,0.00,0.00,80.69,0.00 +600382.SH,0.00,0.00,0.00,100.00,0.00,100.00,0.00,70.67,0.00,0.00,0.00,75.39,0.00,0.00,0.00,71.54,0.00,0.00,0.00,65.36,0.00 +002747.SZ,0.00,0.00,0.00,10.10,0.00,0.00,0.00,11.92,0.00,0.00,0.00,16.42,0.00,0.00,0.00,19.68,0.00,0.00,0.00,25.63,0.00 +600679.SH,0.00,0.00,0.00,42.87,0.00,0.00,0.00,35.03,0.00,0.00,0.00,27.26,0.00,0.00,0.00,36.21,0.00,0.00,0.00,40.72,0.00 +688659.SH,0.00,21.81,0.00,0.00,0.00,0.00,0.00,21.67,0.00,0.00,0.00,21.48,0.00,0.00,0.00,17.25,0.00,0.00,0.00,11.09,0.00 +830809.BJ,0.00,0.00,0.00,85.47,0.00,0.00,0.00,96.69,0.00,75.63,0.00,73.29,0.00,0.00,0.00,73.59,0.00,0.00,0.00,71.00,0.00 +000659.SZ,0.00,0.00,0.00,33.26,0.00,0.00,0.00,34.36,0.00,0.00,0.00,37.42,0.00,0.00,0.00,79.06,0.00,0.00,0.00,72.32,0.00 +831627.BJ,0.00,0.00,0.00,20.34,0.00,0.00,0.00,27.51,27.32,0.00,24.09,22.84,23.04,22.17,0.00,19.80,0.00,0.00,0.00,31.19,0.00 +920489.BJ,0.00,29.37,0.00,24.26,0.00,0.00,0.00,15.80,0.00,0.00,0.00,14.02,0.00,14.86,0.00,15.60,0.00,21.11,0.00,18.13,0.00 +002638.SZ,0.00,0.00,0.00,20.00,0.00,0.00,0.00,23.05,0.00,0.00,0.00,33.96,0.00,0.00,0.00,41.64,0.00,0.00,0.00,40.02,0.00 +002520.SZ,0.00,0.00,0.00,28.97,0.00,0.00,0.00,23.08,0.00,0.00,0.00,28.20,0.00,0.00,0.00,31.63,0.00,0.00,0.00,31.74,0.00 +002045.SZ,0.00,0.00,0.00,66.45,0.00,0.00,0.00,65.31,0.00,0.00,0.00,67.98,0.00,0.00,0.00,65.51,0.00,0.00,0.00,62.99,0.00 +300511.SZ,0.00,0.00,0.00,24.23,0.00,0.00,0.00,19.73,0.00,0.00,0.00,18.84,0.00,0.00,0.00,7.44,0.00,0.00,0.00,12.58,0.00 +002329.SZ,0.00,0.00,0.00,16.28,0.00,3.35,0.00,11.77,0.00,0.00,0.00,11.12,0.00,0.00,0.00,21.21,0.00,0.00,0.00,19.15,0.00 +000636.SZ,0.00,0.00,0.00,18.86,0.00,0.00,0.00,16.57,0.00,0.00,0.00,20.01,0.00,0.00,0.00,21.93,0.00,0.00,0.00,20.37,0.00 +000777.SZ,0.00,0.00,0.00,26.61,0.00,0.00,0.00,35.93,0.00,0.00,0.00,37.07,0.00,0.00,0.00,42.57,0.00,0.00,0.00,51.91,0.00 +300333.SZ,0.00,0.00,0.00,29.44,0.00,0.00,0.00,35.61,0.00,0.00,0.00,21.84,0.00,0.00,0.00,33.11,0.00,0.00,0.00,32.46,0.00 +688272.SH,0.00,0.00,92.31,89.89,0.00,77.17,0.00,63.02,0.00,0.00,0.00,59.42,0.00,0.00,0.00,73.24,0.00,0.00,0.00,62.88,0.00 +600386.SH,0.00,0.00,0.00,15.45,0.00,0.00,0.00,18.22,0.00,0.00,0.00,21.24,0.00,0.00,0.00,17.79,0.00,0.00,0.00,19.24,0.00 +838163.BJ,0.00,0.00,0.00,28.99,0.00,0.00,0.00,38.61,0.00,0.00,0.00,34.84,0.00,0.00,0.00,31.64,0.00,0.00,0.00,22.36,0.00 +688618.SH,0.00,18.98,0.00,14.62,0.00,0.00,0.00,11.55,0.00,0.00,0.00,20.07,0.00,0.00,0.00,30.79,0.00,0.00,0.00,19.80,0.00 +301348.SZ,0.00,40.68,0.00,34.35,0.00,27.87,0.00,28.56,0.00,0.00,0.00,37.84,0.00,0.00,0.00,39.28,0.00,0.00,0.00,41.20,0.00 +002467.SZ,0.00,0.00,0.00,12.97,0.00,0.00,0.00,17.51,0.00,0.00,0.00,15.99,0.00,0.00,0.00,21.31,0.00,0.00,0.00,20.32,0.00 +301163.SZ,0.00,44.01,0.00,76.87,0.00,71.53,0.00,0.00,0.00,0.00,0.00,40.09,0.00,0.00,0.00,36.52,0.00,0.00,0.00,50.29,0.00 +300817.SZ,0.00,0.00,0.00,26.37,0.00,0.00,0.00,23.38,0.00,0.00,0.00,19.79,0.00,0.00,0.00,20.31,0.00,0.00,0.00,19.42,0.00 +833346.BJ,0.00,0.00,0.00,62.27,0.00,62.06,0.00,58.17,0.00,0.00,0.00,50.27,0.00,0.00,0.00,56.49,0.00,0.00,0.00,64.37,0.00 +002164.SZ,0.00,0.00,0.00,27.02,0.00,0.00,0.00,24.17,0.00,0.00,0.00,20.11,0.00,0.00,0.00,17.16,0.00,0.00,0.00,23.89,0.00 +300077.SZ,0.00,0.00,0.00,28.08,0.00,0.00,0.00,26.16,0.00,0.00,0.00,41.42,0.00,0.00,0.00,43.41,0.00,0.00,0.00,46.43,0.00 +605186.SH,0.00,33.86,0.00,34.62,0.00,0.00,0.00,72.88,0.00,0.00,0.00,43.76,0.00,0.00,0.00,39.99,0.00,0.00,0.00,48.03,0.00 +002760.SZ,0.00,0.00,0.00,18.83,0.00,0.00,0.00,26.20,0.00,0.00,0.00,21.80,0.00,0.00,0.00,24.99,0.00,0.00,0.00,23.12,0.00 +001328.SZ,0.00,0.00,0.00,12.70,0.00,0.00,0.00,12.46,0.00,12.02,0.00,12.66,0.00,0.00,0.00,19.32,0.00,0.00,0.00,22.29,0.00 +600370.SH,0.00,0.00,0.00,18.23,0.00,0.00,0.00,22.35,0.00,0.00,0.00,28.49,0.00,0.00,0.00,25.88,0.00,0.00,0.00,25.76,0.00 +300603.SZ,0.00,0.00,0.00,0.00,0.00,0.00,0.00,40.22,0.00,0.00,0.00,40.48,0.00,0.00,0.00,36.92,0.00,0.00,0.00,31.23,0.00 +836826.BJ,52.12,51.38,0.00,47.18,0.00,0.00,0.00,43.69,0.00,0.00,0.00,40.31,0.00,0.00,0.00,33.29,0.00,0.00,0.00,27.74,0.00 +300394.SZ,0.00,0.00,0.00,41.57,0.00,0.00,0.00,37.22,0.00,0.00,0.00,47.74,0.00,0.00,0.00,81.64,0.00,0.00,0.00,86.80,0.00 +688361.SH,0.00,0.00,0.00,51.21,0.00,77.92,0.00,44.32,0.00,65.06,0.00,33.27,0.00,0.00,0.00,27.32,0.00,0.00,0.00,39.31,0.00 +688217.SH,0.00,33.24,0.00,27.19,0.00,0.00,0.00,23.93,0.00,0.00,0.00,44.56,0.00,0.00,0.00,22.84,0.00,0.00,0.00,25.19,0.00 +301205.SZ,0.00,0.00,0.00,44.59,0.00,51.94,0.00,52.15,0.00,0.00,0.00,59.44,0.00,0.00,0.00,46.72,0.00,0.00,0.00,63.35,0.00 +300980.SZ,0.00,32.16,0.00,29.17,0.00,0.00,0.00,30.73,0.00,0.00,0.00,25.99,0.00,0.00,0.00,25.25,0.00,0.00,0.00,22.45,0.00 +688655.SH,37.56,35.89,0.00,38.08,0.00,0.00,0.00,47.73,0.00,0.00,0.00,40.39,0.00,0.00,0.00,40.19,0.00,0.00,0.00,38.40,0.00 +688403.SH,0.00,0.00,0.00,71.86,0.00,74.21,0.00,70.77,78.54,0.00,0.00,75.37,0.00,80.26,0.00,72.60,0.00,72.59,0.00,66.37,0.00 +830974.BJ,0.00,95.83,0.00,99.26,0.00,98.94,0.00,91.63,92.10,88.62,0.00,83.50,0.00,0.00,0.00,87.94,0.00,0.00,0.00,90.52,0.00 +603076.SH,0.00,0.00,0.00,50.22,0.00,0.00,0.00,50.32,0.00,0.00,0.00,49.83,0.00,0.00,0.00,43.08,0.00,0.00,0.00,30.54,0.00 +833075.BJ,0.00,51.06,0.00,47.52,0.00,47.00,0.00,46.06,0.00,40.54,0.00,39.98,0.00,0.00,0.00,35.51,0.00,0.00,0.00,46.99,0.00 +603629.SH,0.00,0.00,0.00,58.41,0.00,0.00,0.00,61.80,0.00,0.00,0.00,61.60,0.00,0.00,0.00,72.71,0.00,0.00,0.00,54.97,0.00 +002123.SZ,0.00,0.00,0.00,22.52,0.00,0.00,0.00,34.66,0.00,0.00,0.00,46.53,0.00,0.00,0.00,57.03,0.00,0.00,0.00,40.68,0.00 +831152.BJ,0.00,0.00,0.00,55.49,0.00,61.82,0.00,58.41,0.00,0.00,0.00,44.90,0.00,0.00,0.00,37.44,0.00,0.00,0.00,33.75,0.00 +300365.SZ,0.00,0.00,0.00,43.73,0.00,0.00,0.00,27.22,0.00,0.00,0.00,12.38,0.00,0.00,0.00,31.19,0.00,0.00,0.00,46.29,0.00 +300848.SZ,0.00,0.00,0.00,44.17,0.00,0.00,0.00,41.30,0.00,0.00,0.00,32.47,0.00,0.00,0.00,32.46,0.00,0.00,0.00,36.27,0.00 +002279.SZ,0.00,0.00,0.00,15.00,0.00,0.00,0.00,20.43,0.00,0.00,0.00,11.54,0.00,0.00,0.00,16.16,0.00,0.00,0.00,26.48,0.00 +300410.SZ,0.00,0.00,0.00,24.22,0.00,0.00,0.00,36.25,0.00,0.00,0.00,30.59,0.00,0.00,0.00,18.61,0.00,0.00,0.00,18.12,0.00 +301162.SZ,0.00,25.98,0.00,34.22,0.00,29.15,0.00,0.00,0.00,0.00,0.00,11.55,0.00,0.00,0.00,11.51,0.00,0.00,0.00,12.12,0.00 +600255.SH,0.00,0.00,0.00,24.68,0.00,28.93,0.00,29.49,0.00,36.22,0.00,35.89,0.00,33.45,0.00,34.43,0.00,39.16,0.00,38.07,0.00 +301169.SZ,0.00,23.54,0.00,15.00,0.00,26.71,0.00,13.78,0.00,0.00,0.00,14.08,0.00,0.00,0.00,15.91,0.00,0.00,0.00,13.00,0.00 +000859.SZ,0.00,0.00,0.00,13.42,0.00,0.00,0.00,15.67,0.00,0.00,0.00,16.92,0.00,0.00,0.00,11.06,0.00,0.00,0.00,18.44,0.00 +300370.SZ,0.00,0.00,0.00,55.99,0.00,0.00,0.00,64.76,0.00,0.00,0.00,56.78,0.00,0.00,0.00,63.77,0.00,0.00,0.00,62.31,0.00 +002369.SZ,0.00,0.00,0.00,82.39,0.00,0.00,0.00,85.46,0.00,0.00,0.00,88.87,0.00,0.00,0.00,73.38,0.00,0.00,0.00,83.99,0.00 +873693.BJ,0.00,0.00,0.00,71.52,0.00,0.00,63.76,62.49,0.00,55.51,0.00,59.75,67.68,62.48,0.00,57.20,0.00,56.59,0.00,55.01,0.00 +600881.SH,0.00,0.00,0.00,15.88,0.00,0.00,0.00,4.22,0.00,0.00,0.00,8.54,0.00,0.00,0.00,13.90,0.00,0.00,0.00,6.64,0.00 +300927.SZ,0.00,37.25,0.00,36.13,0.00,0.00,0.00,28.48,0.00,0.00,0.00,34.18,0.00,0.00,0.00,30.74,0.00,0.00,0.00,36.91,0.00 +600768.SH,0.00,0.00,0.00,59.41,0.00,0.00,0.00,53.48,0.00,0.00,0.00,53.28,0.00,0.00,0.00,46.61,0.00,0.00,0.00,55.74,0.00 +300606.SZ,0.00,0.00,0.00,16.86,0.00,0.00,0.00,20.78,0.00,0.00,0.00,23.62,0.00,0.00,0.00,39.45,0.00,0.00,0.00,23.78,0.00 +300080.SZ,0.00,0.00,0.00,77.02,0.00,0.00,0.00,77.68,0.00,0.00,0.00,69.82,0.00,0.00,0.00,73.23,0.00,0.00,0.00,27.44,0.00 +603829.SH,0.00,0.00,0.00,38.80,0.00,0.00,0.00,42.69,0.00,0.00,0.00,40.95,0.00,0.00,0.00,33.75,0.00,0.00,0.00,32.36,0.00 +833454.BJ,0.00,0.00,0.00,58.69,0.00,56.20,0.00,60.06,0.00,0.00,0.00,60.11,0.00,0.00,0.00,57.44,0.00,0.00,0.00,44.30,0.00 +301030.SZ,0.00,73.71,0.00,54.01,0.00,0.00,0.00,62.29,0.00,0.00,0.00,58.57,0.00,0.00,0.00,64.95,0.00,0.00,0.00,67.17,0.00 +301252.SZ,0.00,0.00,0.00,50.63,0.00,54.20,0.00,55.35,0.00,51.58,0.00,54.62,0.00,0.00,0.00,51.92,0.00,0.00,0.00,53.73,0.00 +300637.SZ,0.00,0.00,0.00,17.17,0.00,0.00,0.00,19.54,0.00,0.00,0.00,28.04,0.00,0.00,0.00,23.21,0.00,0.00,0.00,29.66,0.00 +300279.SZ,0.00,0.00,0.00,44.14,0.00,0.00,0.00,45.11,0.00,0.00,0.00,39.28,0.00,0.00,0.00,47.43,0.00,0.00,0.00,52.31,0.00 +920116.BJ,0.00,0.00,0.00,52.16,0.00,0.00,0.00,56.45,0.00,0.00,0.00,45.34,0.00,50.36,0.00,34.22,0.00,43.25,0.00,22.74,0.00 +300320.SZ,0.00,0.00,0.00,21.79,0.00,0.00,0.00,19.84,0.00,0.00,0.00,18.67,0.00,0.00,0.00,18.72,0.00,0.00,0.00,18.48,0.00 +300053.SZ,0.00,0.00,0.00,16.50,0.00,0.00,0.00,22.83,0.00,0.00,0.00,35.76,0.00,0.00,0.00,47.65,0.00,0.00,0.00,44.58,0.00 +300081.SZ,0.00,0.00,0.00,65.23,0.00,0.00,0.00,62.66,0.00,0.00,0.00,69.47,0.00,0.00,0.00,80.48,0.00,0.00,0.00,83.08,0.00 +301032.SZ,0.00,56.91,0.00,59.37,0.00,0.00,0.00,58.73,0.00,0.00,0.00,58.83,0.00,0.00,0.00,58.10,0.00,0.00,0.00,55.89,0.00 +832471.BJ,0.00,20.68,0.00,17.49,0.00,0.00,0.00,20.28,26.64,22.88,22.49,22.42,23.72,17.80,0.00,13.98,0.00,0.00,0.00,23.18,0.00 +301099.SZ,0.00,29.78,0.00,27.32,0.00,24.51,0.00,24.30,0.00,0.00,0.00,24.70,0.00,0.00,0.00,19.54,0.00,0.00,0.00,11.67,0.00 +603803.SH,0.00,0.00,0.00,15.46,0.00,0.00,0.00,27.01,0.00,0.00,0.00,25.00,0.00,0.00,0.00,24.44,0.00,0.00,0.00,23.00,0.00 +600996.SH,0.00,0.00,0.00,9.13,0.00,0.00,0.00,9.62,0.00,0.00,0.00,20.86,0.00,0.00,0.00,10.94,0.00,0.00,0.00,9.67,0.00 +300729.SZ,0.00,0.00,0.00,12.55,0.00,0.00,0.00,9.38,0.00,0.00,0.00,8.14,0.00,0.00,0.00,9.81,0.00,0.00,0.00,14.47,0.00 +300380.SZ,0.00,0.00,0.00,22.52,0.00,0.00,0.00,25.88,0.00,0.00,0.00,21.15,0.00,0.00,0.00,26.24,0.00,0.00,0.00,0.00,0.00 +002265.SZ,0.00,0.00,0.00,37.04,0.00,0.00,0.00,41.36,0.00,0.00,0.00,67.92,0.00,0.00,0.00,61.81,0.00,0.00,0.00,57.71,0.00 +301261.SZ,0.00,0.00,0.00,23.49,0.00,23.59,0.00,23.20,0.00,24.40,0.00,22.56,0.00,0.00,0.00,21.22,0.00,0.00,0.00,19.12,0.00 +601212.SH,0.00,0.00,0.00,36.20,0.00,0.00,0.00,31.13,0.00,0.00,0.00,30.55,0.00,0.00,0.00,27.69,0.00,0.00,0.00,16.07,0.00 +300106.SZ,0.00,0.00,0.00,68.32,0.00,67.26,0.00,34.00,0.00,0.00,0.00,23.41,0.00,0.00,0.00,34.67,0.00,0.00,0.00,16.61,0.00 +872953.BJ,0.00,0.00,0.00,9.90,0.00,0.00,0.00,8.24,0.00,6.48,5.56,4.89,19.27,13.05,0.00,7.47,0.00,0.00,0.00,6.92,0.00 +301091.SZ,0.00,45.64,0.00,41.38,0.00,37.18,0.00,32.99,0.00,0.00,0.00,23.23,0.00,0.00,0.00,42.01,0.00,0.00,0.00,45.63,0.00 +000670.SZ,0.00,0.00,0.00,79.78,0.00,0.00,0.00,82.03,0.00,0.00,0.00,67.95,0.00,0.00,0.00,59.69,0.00,0.00,0.00,52.25,0.00 +600966.SH,0.00,0.00,0.00,15.84,0.00,0.00,0.00,17.65,0.00,0.00,0.00,14.60,0.00,0.00,0.00,14.62,0.00,0.00,0.00,13.50,0.00 +300199.SZ,0.00,0.00,0.00,12.30,0.00,0.00,0.00,15.27,0.00,0.00,0.00,19.05,0.00,0.00,0.00,27.73,0.00,0.00,0.00,49.40,0.00 +002766.SZ,0.00,0.00,0.00,46.10,0.00,0.00,0.00,51.90,0.00,0.00,0.00,59.45,0.00,0.00,0.00,83.60,0.00,0.00,0.00,91.71,0.00 +688699.SH,0.00,59.29,54.78,53.41,0.00,0.00,0.00,39.60,0.00,0.00,0.00,36.37,0.00,0.00,0.00,41.63,0.00,0.00,0.00,43.36,0.00 +002313.SZ,0.00,0.00,0.00,42.28,0.00,0.00,0.00,33.42,0.00,0.00,0.00,39.39,0.00,0.00,0.00,39.90,0.00,0.00,0.00,35.42,0.00 +300931.SZ,57.81,0.00,0.00,35.28,0.00,0.00,0.00,38.47,0.00,0.00,0.00,34.17,0.00,0.00,0.00,29.48,0.00,0.00,0.00,35.41,0.00 +600390.SH,0.00,0.00,0.00,17.25,0.00,0.00,0.00,22.03,0.00,0.00,0.00,81.51,0.00,0.00,0.00,58.41,0.00,0.00,0.00,32.85,0.00 +000779.SZ,0.00,0.00,0.00,17.20,0.00,0.00,0.00,11.02,0.00,0.00,0.00,16.98,0.00,0.00,0.00,10.45,0.00,0.00,0.00,10.17,0.00 +300713.SZ,0.00,0.00,0.00,24.32,0.00,0.00,0.00,34.76,0.00,0.00,0.00,34.50,0.00,0.00,0.00,25.54,0.00,0.00,0.00,26.87,0.00 +603366.SH,0.00,0.00,0.00,9.00,0.00,0.00,0.00,9.15,0.00,0.00,0.00,7.86,0.00,0.00,0.00,8.66,0.00,0.00,0.00,15.70,0.00 +300915.SZ,0.00,11.37,12.07,11.18,0.00,9.29,0.00,9.40,0.00,0.00,0.00,9.16,0.00,9.35,0.00,10.62,0.00,9.56,0.00,13.31,0.00 +603308.SH,0.00,0.00,0.00,40.38,0.00,0.00,0.00,39.08,0.00,0.00,0.00,37.73,0.00,0.00,0.00,34.31,0.00,0.00,0.00,16.72,0.00 +688601.SH,80.57,0.00,79.81,77.26,75.80,0.00,0.00,74.42,0.00,0.00,0.00,71.75,0.00,0.00,0.00,71.10,0.00,0.00,0.00,66.04,0.00 +603048.SH,0.00,56.74,0.00,54.42,0.00,53.11,0.00,51.80,0.00,0.00,0.00,53.41,0.00,0.00,0.00,46.85,0.00,0.00,0.00,41.84,0.00 +603116.SH,0.00,0.00,0.00,8.93,0.00,0.00,0.00,14.50,0.00,0.00,0.00,17.27,0.00,0.00,0.00,11.37,0.00,0.00,0.00,18.77,0.00 +301665.SZ,51.49,0.00,54.31,53.47,0.00,50.51,0.00,49.28,0.00,0.00,0.00,45.65,0.00,39.77,0.00,34.46,0.00,33.13,0.00,33.35,0.00 +603585.SH,0.00,0.00,0.00,27.15,0.00,0.00,0.00,29.82,0.00,0.00,0.00,34.37,0.00,0.00,0.00,33.21,0.00,0.00,0.00,31.75,0.00 +300576.SZ,0.00,0.00,0.00,28.58,0.00,0.00,0.00,20.62,0.00,0.00,0.00,21.34,0.00,0.00,0.00,19.26,0.00,0.00,0.00,19.72,0.00 +300134.SZ,0.00,0.00,0.00,70.71,0.00,0.00,0.00,64.36,0.00,0.00,0.00,56.86,0.00,0.00,0.00,60.91,0.00,0.00,0.00,52.09,0.00 +831396.BJ,0.00,0.00,0.00,52.62,0.00,0.00,0.00,49.76,0.00,44.23,30.84,36.00,43.98,44.39,20.20,25.70,0.00,35.03,0.00,27.55,0.00 +000757.SZ,0.00,0.00,0.00,8.98,0.00,0.00,0.00,6.69,0.00,0.00,0.00,7.36,0.00,0.00,0.00,9.56,0.00,0.00,0.00,15.35,0.00 +300420.SZ,0.00,0.00,0.00,12.10,0.00,0.00,0.00,13.29,0.00,0.00,0.00,12.25,0.00,0.00,0.00,9.19,0.00,0.00,0.00,11.49,0.00 +301157.SZ,0.00,0.00,0.00,33.67,0.00,0.00,0.00,40.43,0.00,33.58,0.00,24.62,0.00,0.00,0.00,27.04,0.00,0.00,0.00,29.91,0.00 +002209.SZ,0.00,0.00,0.00,38.43,0.00,0.00,0.00,32.95,0.00,0.00,0.00,29.46,0.00,0.00,0.00,38.66,0.00,0.00,0.00,42.27,0.00 +688113.SH,0.00,52.70,0.00,43.16,0.00,0.00,0.00,37.10,0.00,0.00,0.00,41.97,0.00,0.00,0.00,23.38,0.00,0.00,0.00,23.84,0.00 +300045.SZ,0.00,0.00,0.00,29.96,0.00,0.00,0.00,23.25,0.00,0.00,0.00,21.50,0.00,0.00,0.00,44.15,0.00,0.00,0.00,47.14,0.00 +603966.SH,0.00,0.00,0.00,30.31,0.00,0.00,0.00,21.88,0.00,0.00,0.00,27.21,0.00,0.00,0.00,22.14,0.00,0.00,0.00,19.06,0.00 +600601.SH,0.00,0.00,0.00,30.87,0.00,0.00,0.00,29.30,0.00,0.00,0.00,30.69,0.00,0.00,0.00,53.10,0.00,0.00,0.00,48.61,0.00 +873527.BJ,0.00,0.00,0.00,11.79,0.00,0.00,0.00,11.58,0.00,0.00,0.00,17.06,0.00,0.00,0.00,10.12,0.00,0.00,0.00,11.59,0.00 +835857.BJ,0.00,0.00,0.00,51.06,0.00,0.00,0.00,42.66,0.00,53.54,0.00,30.48,0.00,0.00,0.00,45.01,0.00,0.00,0.00,29.70,0.00 +836422.BJ,0.00,0.00,0.00,15.71,0.00,0.00,0.00,17.30,22.40,20.54,17.34,15.82,0.00,0.00,0.00,16.88,0.00,0.00,0.00,18.05,0.00 +000810.SZ,0.00,0.00,0.00,19.01,0.00,0.00,0.00,19.01,0.00,0.00,0.00,22.31,0.00,0.00,0.00,18.58,0.00,0.00,0.00,15.16,0.00 +301526.SZ,0.00,0.00,0.00,27.93,0.00,26.05,0.00,22.53,0.00,0.00,0.00,22.45,0.00,26.20,25.92,25.80,0.00,0.00,0.00,22.69,0.00 +300427.SZ,0.00,0.00,0.00,26.22,0.00,0.00,0.00,25.95,0.00,0.00,0.00,26.52,0.00,0.00,0.00,30.84,0.00,0.00,0.00,37.83,0.00 +300079.SZ,0.00,0.00,0.00,31.65,0.00,0.00,0.00,33.11,0.00,0.00,0.00,32.07,0.00,0.00,0.00,14.60,0.00,0.00,0.00,36.16,0.00 +300666.SZ,0.00,0.00,0.00,46.10,0.00,0.00,0.00,39.90,0.00,0.00,0.00,43.94,0.00,0.00,0.00,34.16,0.00,0.00,0.00,37.31,0.00 +600721.SH,0.00,0.00,0.00,44.68,0.00,0.00,0.00,19.94,0.00,0.00,0.00,21.14,0.00,0.00,0.00,17.89,0.00,0.00,0.00,19.88,0.00 +837174.BJ,0.00,0.00,0.00,72.77,0.00,0.00,0.00,68.03,0.00,64.85,0.00,63.11,0.00,0.00,0.00,62.53,0.00,0.00,0.00,61.68,0.00 +688143.SH,0.00,0.00,0.00,84.45,0.00,78.41,0.00,79.11,0.00,69.41,0.00,64.40,0.00,0.00,0.00,50.68,0.00,0.00,0.00,43.09,0.00 +300478.SZ,0.00,0.00,0.00,33.67,0.00,0.00,0.00,34.36,0.00,0.00,0.00,29.40,0.00,0.00,0.00,27.37,0.00,0.00,0.00,29.19,0.00 +601279.SH,0.00,87.67,0.00,0.00,0.00,48.26,0.00,76.41,0.00,0.00,0.00,76.02,0.00,0.00,0.00,73.67,0.00,0.00,0.00,70.52,0.00 +835368.BJ,0.00,0.00,0.00,99.33,0.00,0.00,0.00,0.00,0.00,0.00,0.00,82.74,0.00,0.00,0.00,75.48,0.00,0.00,0.00,79.72,0.00 +688053.SH,0.00,0.00,0.00,53.58,58.58,62.99,0.00,55.99,53.97,0.00,0.00,47.02,0.00,0.00,0.00,33.02,0.00,0.00,0.00,35.03,0.00 +873833.BJ,0.00,0.00,0.00,84.30,0.00,0.00,0.00,80.51,0.00,79.59,0.00,80.80,0.00,81.48,0.00,83.98,0.00,0.00,0.00,85.56,0.00 +688529.SH,0.00,78.53,0.00,57.13,0.00,0.00,0.00,39.42,0.00,0.00,0.00,44.85,0.00,0.00,0.00,44.74,0.00,0.00,0.00,44.67,0.00 +603688.SH,0.00,0.00,0.00,22.23,0.00,0.00,0.00,26.82,0.00,0.00,0.00,39.34,0.00,0.00,0.00,45.20,0.00,0.00,0.00,26.77,0.00 +835579.BJ,0.00,68.35,0.00,46.35,0.00,0.00,0.00,53.27,0.00,54.26,0.00,58.28,0.00,62.17,0.00,39.62,0.00,0.00,0.00,42.87,0.00 +300583.SZ,0.00,0.00,0.00,50.67,0.00,0.00,0.00,43.56,0.00,0.00,0.00,30.28,0.00,0.00,0.00,28.95,0.00,0.00,0.00,41.33,0.00 +835640.BJ,79.12,0.00,0.00,78.38,0.00,0.00,0.00,73.06,0.00,0.00,0.00,76.24,0.00,0.00,0.00,77.24,0.00,0.00,0.00,78.01,0.00 +301578.SZ,0.00,0.00,0.00,52.92,0.00,48.86,0.00,49.27,0.00,45.49,0.00,48.25,0.00,50.82,0.00,49.68,0.00,0.00,0.00,47.39,0.00 +601003.SH,0.00,0.00,0.00,49.79,0.00,0.00,0.00,47.79,0.00,0.00,0.00,49.58,0.00,0.00,0.00,51.36,0.00,0.00,0.00,53.90,0.00 +002108.SZ,0.00,0.00,0.00,26.17,0.00,0.00,0.00,24.24,0.00,0.00,0.00,23.82,0.00,0.00,0.00,28.49,0.00,0.00,0.00,30.42,0.00 +688088.SH,0.00,0.00,0.00,56.14,0.00,67.34,0.00,59.28,0.00,59.36,0.00,57.41,0.00,68.03,0.00,66.55,0.00,64.01,0.00,60.14,0.00 +871970.BJ,0.00,0.00,0.00,6.14,0.00,5.80,0.00,8.58,0.00,0.00,0.00,12.75,0.00,0.00,0.00,10.20,0.00,0.00,0.00,12.58,0.00 +002875.SZ,0.00,0.00,0.00,23.08,0.00,0.00,0.00,29.08,0.00,0.00,0.00,32.41,0.00,0.00,0.00,29.40,0.00,0.00,0.00,25.36,0.00 +605020.SH,0.00,17.58,0.00,15.33,0.00,0.00,0.00,19.66,0.00,0.00,0.00,9.51,0.00,0.00,0.00,10.47,0.00,0.00,0.00,12.33,0.00 +835438.BJ,0.00,0.00,0.00,21.51,0.00,0.00,0.00,22.75,0.00,33.95,0.00,37.12,0.00,69.36,0.00,67.31,0.00,0.00,0.00,33.17,0.00 +603272.SH,0.00,0.00,0.00,2.92,0.00,3.23,0.00,3.11,0.00,0.00,0.00,6.83,0.00,0.00,0.00,8.44,0.00,0.00,0.00,26.24,0.00 +002921.SZ,0.00,0.00,0.00,47.29,0.00,0.00,0.00,41.23,0.00,0.00,0.00,39.21,0.00,0.00,0.00,50.39,0.00,0.00,0.00,49.78,0.00 +830839.BJ,0.00,0.00,0.00,62.45,0.00,0.00,0.00,63.40,0.00,0.00,0.00,61.91,0.00,0.00,0.00,67.31,0.00,0.00,0.00,63.13,0.00 +603151.SH,0.00,0.00,0.00,7.87,0.00,10.39,0.00,9.68,0.00,0.00,0.00,12.44,0.00,0.00,0.00,11.23,0.00,0.00,0.00,50.29,0.00 +300512.SZ,0.00,0.00,0.00,57.25,0.00,0.00,0.00,49.56,0.00,0.00,0.00,58.70,0.00,0.00,0.00,57.27,0.00,0.00,0.00,37.16,0.00 +832469.BJ,0.00,54.38,0.00,55.02,0.00,0.00,0.00,46.89,0.00,57.21,0.00,54.38,0.00,0.00,0.00,51.44,0.00,0.00,0.00,42.64,0.00 +688102.SH,0.00,43.37,0.00,41.21,0.00,47.86,0.00,47.67,0.00,0.00,0.00,35.39,0.00,0.00,0.00,32.28,0.00,0.00,0.00,29.68,0.00 +688327.SH,0.00,31.23,0.00,25.07,0.00,0.00,0.00,69.58,0.00,0.00,0.00,58.88,0.00,0.00,0.00,36.57,0.00,0.00,0.00,45.22,0.00 +002109.SZ,0.00,0.00,0.00,45.13,0.00,0.00,0.00,48.79,0.00,0.00,0.00,50.64,0.00,0.00,0.00,51.98,0.00,0.00,0.00,45.87,0.00 +688668.SH,0.00,91.67,0.00,95.58,0.00,0.00,0.00,90.27,0.00,0.00,0.00,85.85,0.00,0.00,0.00,83.95,0.00,0.00,0.00,86.65,0.00 +301171.SZ,0.00,56.50,0.00,54.22,0.00,0.00,0.00,62.81,0.00,0.00,0.00,42.20,0.00,0.00,0.00,21.49,0.00,0.00,0.00,26.76,0.00 +832278.BJ,0.00,29.97,0.00,38.42,0.00,46.30,0.00,40.41,0.00,0.00,0.00,36.83,0.00,0.00,0.00,35.62,0.00,0.00,0.00,34.04,0.00 +002691.SZ,0.00,0.00,0.00,42.05,0.00,0.00,0.00,43.72,0.00,0.00,0.00,43.28,0.00,0.00,0.00,35.58,0.00,0.00,0.00,41.57,0.00 +300136.SZ,0.00,0.00,0.00,40.28,0.00,0.00,0.00,55.02,0.00,0.00,0.00,53.25,0.00,0.00,0.00,60.54,0.00,0.00,0.00,51.53,0.00 +688013.SH,0.00,0.00,0.00,32.17,0.00,0.00,0.00,32.40,0.00,0.00,0.00,39.14,0.00,0.00,0.00,36.50,0.00,0.00,0.00,37.84,0.00 +000965.SZ,0.00,0.00,0.00,6.84,0.00,0.00,0.00,12.30,0.00,0.00,0.00,1.55,0.00,0.00,0.00,1.68,0.00,0.00,0.00,25.14,0.00 +002909.SZ,0.00,0.00,0.00,17.86,0.00,0.00,0.00,25.03,0.00,0.00,0.00,15.65,0.00,0.00,0.00,12.67,0.00,0.00,0.00,29.13,0.00 +002474.SZ,0.00,0.00,0.00,26.06,0.00,0.00,0.00,14.12,0.00,0.00,0.00,35.54,0.00,0.00,0.00,38.45,0.00,0.00,0.00,26.97,0.00 +301320.SZ,0.00,0.00,0.00,56.60,0.00,54.51,0.00,57.55,0.00,50.55,0.00,43.37,42.84,0.00,0.00,47.43,0.00,0.00,0.00,40.13,0.00 +600330.SH,0.00,0.00,0.00,24.74,0.00,0.00,0.00,30.27,0.00,0.00,0.00,29.04,0.00,0.00,0.00,32.95,0.00,0.00,0.00,32.89,0.00 +301539.SZ,0.00,0.00,0.00,42.20,0.00,0.00,0.00,47.38,0.00,47.60,0.00,43.64,0.00,44.57,0.00,44.54,0.00,0.00,0.00,45.92,0.00 +300902.SZ,0.00,42.41,0.00,56.34,0.00,0.00,0.00,58.58,0.00,0.00,0.00,54.13,0.00,0.00,0.00,57.03,0.00,0.00,0.00,47.98,0.00 +603578.SH,0.00,0.00,0.00,85.67,0.00,0.00,0.00,76.37,0.00,0.00,0.00,86.87,0.00,0.00,0.00,87.80,0.00,0.00,0.00,67.01,0.00 +688296.SH,0.00,27.65,0.00,31.25,29.80,0.00,0.00,19.91,0.00,0.00,0.00,18.75,0.00,0.00,0.00,18.65,0.00,0.00,0.00,31.92,0.00 +300355.SZ,0.00,0.00,0.00,34.30,0.00,0.00,0.00,43.12,0.00,0.00,0.00,48.85,0.00,0.00,0.00,34.09,0.00,0.00,0.00,27.34,0.00 +300252.SZ,0.00,0.00,0.00,42.11,0.00,0.00,0.00,40.05,0.00,0.00,0.00,41.30,0.00,0.00,0.00,31.67,0.00,0.00,0.00,43.03,0.00 +002162.SZ,0.00,0.00,0.00,9.92,0.00,0.00,0.00,8.10,0.00,0.00,0.00,8.34,0.00,0.00,0.00,8.48,0.00,0.00,0.00,8.36,0.00 +000541.SZ,0.00,0.00,0.00,19.53,0.00,0.00,0.00,21.64,0.00,0.00,0.00,17.49,0.00,0.00,0.00,20.69,0.00,0.00,0.00,23.47,0.00 +002178.SZ,0.00,0.00,0.00,19.15,0.00,0.00,0.00,20.23,0.00,0.00,0.00,18.36,0.00,0.00,0.00,17.00,0.00,0.00,0.00,20.27,0.00 +300269.SZ,0.00,0.00,0.00,24.40,0.00,0.00,0.00,10.24,0.00,0.00,0.00,7.44,0.00,0.00,0.00,11.42,0.00,0.00,0.00,13.50,0.00 +300192.SZ,0.00,0.00,0.00,9.35,0.00,0.00,0.00,10.54,0.00,0.00,0.00,10.00,0.00,0.00,0.00,12.06,0.00,0.00,0.00,11.67,0.00 +605196.SH,0.00,0.00,0.00,36.34,0.00,0.00,0.00,36.96,0.00,0.00,0.00,34.05,0.00,0.00,0.00,27.02,0.00,0.00,0.00,27.45,0.00 +300853.SZ,98.18,0.00,0.00,76.12,0.00,0.00,0.00,88.90,0.00,0.00,0.00,69.93,0.00,0.00,0.00,80.47,0.00,0.00,0.00,48.54,0.00 +000790.SZ,0.00,0.00,0.00,26.52,0.00,0.00,0.00,40.23,0.00,0.00,0.00,29.12,0.00,0.00,0.00,29.46,0.00,0.00,0.00,14.72,0.00 +002796.SZ,0.00,0.00,0.00,77.52,0.00,72.98,0.00,68.73,0.00,66.21,0.00,65.68,0.00,65.62,0.00,66.80,0.00,64.09,0.00,64.70,0.00 +300061.SZ,0.00,0.00,0.00,60.93,0.00,0.00,0.00,53.42,0.00,0.00,0.00,63.93,0.00,0.00,0.00,61.60,0.00,0.00,0.00,64.72,0.00 +300809.SZ,0.00,0.00,0.00,55.06,0.00,0.00,0.00,34.74,0.00,0.00,0.00,40.33,0.00,0.00,0.00,33.12,0.00,0.00,0.00,32.16,0.00 +000633.SZ,0.00,0.00,0.00,48.07,0.00,0.00,0.00,40.11,0.00,0.00,0.00,34.72,0.00,0.00,0.00,29.33,0.00,0.00,0.00,45.33,0.00 +600026.SH,0.00,0.00,0.00,61.18,0.00,0.00,0.00,63.98,0.00,0.00,0.00,64.05,0.00,0.00,0.00,58.95,0.00,0.00,0.00,52.60,0.00 +000839.SZ,0.00,0.00,0.00,39.56,0.00,0.00,0.00,41.17,0.00,0.00,0.00,51.10,0.00,0.00,0.00,80.88,0.00,0.00,0.00,45.78,0.00 +301056.SZ,0.00,20.03,0.00,10.57,0.00,0.00,0.00,10.82,0.00,0.00,0.00,9.31,0.00,0.00,0.00,8.84,0.00,0.00,0.00,11.99,0.00 +300084.SZ,0.00,0.00,0.00,38.71,0.00,0.00,0.00,37.17,0.00,0.00,0.00,34.72,0.00,0.00,0.00,34.24,0.00,0.00,0.00,31.68,0.00 +300502.SZ,0.00,0.00,0.00,59.61,0.00,0.00,0.00,62.56,0.00,0.00,0.00,57.84,0.00,0.00,0.00,60.65,0.00,0.00,0.00,71.10,0.00 +002822.SZ,0.00,0.00,0.00,13.21,0.00,0.00,0.00,13.32,0.00,0.00,0.00,13.77,0.00,0.00,0.00,13.82,0.00,0.00,0.00,20.23,0.00 +002406.SZ,0.00,0.00,0.00,47.36,0.00,0.00,0.00,43.59,0.00,0.00,0.00,43.01,0.00,0.00,0.00,46.33,0.00,0.00,0.00,46.19,0.00 +300565.SZ,0.00,0.00,0.00,84.39,0.00,0.00,0.00,81.08,0.00,0.00,0.00,85.19,0.00,0.00,0.00,66.19,0.00,0.00,0.00,68.11,0.00 +001266.SZ,0.00,0.00,0.00,96.58,0.00,98.02,0.00,96.11,0.00,0.00,0.00,87.16,0.00,0.00,0.00,85.73,0.00,0.00,0.00,86.70,0.00 +301428.SZ,90.76,0.00,0.00,89.38,0.00,0.00,90.89,89.95,0.00,91.45,0.00,88.27,0.00,0.00,0.00,80.11,0.00,0.00,0.00,81.46,0.00 +001279.SZ,0.00,0.00,0.00,27.26,0.00,0.00,0.00,34.76,0.00,35.24,0.00,32.95,0.00,29.07,0.00,29.91,0.00,0.00,0.00,43.00,0.00 +688448.SH,0.00,0.00,0.00,12.11,0.00,18.05,0.00,11.27,0.00,23.51,0.00,13.94,0.00,0.00,0.00,22.43,0.00,0.00,0.00,22.80,0.00 +600258.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,1.66,0.00,0.00,0.00,1.11,0.00 +688121.SH,0.00,0.00,96.57,92.37,0.00,0.00,0.00,92.79,0.00,99.38,0.00,95.20,0.00,94.85,0.00,93.23,0.00,74.41,0.00,71.80,0.00 +002846.SZ,0.00,0.00,0.00,24.03,0.00,0.00,0.00,23.20,0.00,0.00,0.00,18.27,0.00,0.00,0.00,19.96,0.00,0.00,0.00,19.57,0.00 +002552.SZ,0.00,0.00,0.00,34.02,0.00,0.00,0.00,34.89,0.00,0.00,0.00,15.11,0.00,0.00,0.00,24.02,0.00,0.00,0.00,25.28,0.00 +002733.SZ,0.00,0.00,0.00,35.00,0.00,0.00,0.00,38.29,0.00,0.00,0.00,40.76,0.00,0.00,0.00,35.09,0.00,0.00,0.00,31.07,0.00 +000056.SZ,0.00,0.00,0.00,13.82,0.00,0.00,0.00,14.16,0.00,0.00,0.00,16.25,0.00,0.00,0.00,10.78,0.00,0.00,0.00,10.78,0.00 +838275.BJ,0.00,56.58,0.00,50.35,0.00,0.00,0.00,44.06,0.00,0.00,0.00,70.30,0.00,0.00,0.00,36.30,0.00,0.00,0.00,26.45,0.00 +002780.SZ,0.00,0.00,0.00,17.04,0.00,0.00,0.00,5.11,0.00,0.00,0.00,3.36,0.00,0.00,0.00,2.85,0.00,0.00,0.00,4.53,0.00 +600973.SH,0.00,0.00,0.00,11.57,0.00,0.00,0.00,10.89,0.00,0.00,0.00,11.75,0.00,0.00,0.00,12.50,0.00,0.00,0.00,13.11,0.00 +300151.SZ,0.00,0.00,0.00,40.06,0.00,0.00,0.00,45.70,0.00,0.00,0.00,56.27,0.00,0.00,0.00,59.93,0.00,0.00,0.00,55.61,0.00 +603823.SH,0.00,0.00,0.00,39.43,0.00,0.00,0.00,43.62,0.00,0.00,0.00,33.21,0.00,0.00,0.00,30.27,0.00,0.00,0.00,29.34,0.00 +300762.SZ,0.00,0.00,0.00,77.25,0.00,0.00,0.00,71.23,0.00,0.00,0.00,73.35,0.00,0.00,0.00,72.82,0.00,0.00,0.00,69.79,0.00 +600770.SH,0.00,0.00,0.00,33.74,0.00,0.00,0.00,29.99,0.00,0.00,0.00,34.26,0.00,0.00,0.00,34.28,0.00,0.00,0.00,35.13,0.00 +301065.SZ,0.00,65.71,0.00,71.77,0.00,0.00,0.00,69.33,0.00,0.00,0.00,71.65,0.00,0.00,0.00,68.26,0.00,0.00,0.00,64.07,0.00 +688721.SH,0.00,0.00,0.00,31.91,0.00,0.00,0.00,39.80,0.00,0.00,0.00,41.66,0.00,39.57,0.00,36.02,0.00,0.00,0.00,0.00,0.00 +300578.SZ,0.00,0.00,0.00,16.49,0.00,0.00,0.00,21.11,0.00,0.00,0.00,23.06,0.00,0.00,0.00,25.14,0.00,0.00,0.00,37.57,0.00 +300322.SZ,0.00,0.00,0.00,48.32,0.00,0.00,0.00,31.92,0.00,0.00,0.00,21.60,0.00,0.00,0.00,31.10,0.00,0.00,0.00,29.83,0.00 +603738.SH,0.00,0.00,0.00,24.76,0.00,0.00,0.00,21.83,0.00,0.00,0.00,22.92,0.00,0.00,0.00,22.09,0.00,0.00,0.00,23.22,0.00 +000829.SZ,0.00,0.00,0.00,40.84,0.00,0.00,0.00,38.96,0.00,0.00,0.00,47.73,0.00,54.27,0.00,34.81,0.00,0.00,0.00,21.13,0.00 +688079.SH,0.00,89.85,0.00,87.18,0.00,0.00,0.00,83.54,0.00,0.00,0.00,79.20,0.00,0.00,0.00,66.63,0.00,0.00,0.00,63.14,0.00 +834415.BJ,0.00,0.00,0.00,47.89,0.00,0.00,0.00,48.77,0.00,0.00,0.00,55.03,0.00,0.00,0.00,50.30,0.00,0.00,0.00,55.46,0.00 +000957.SZ,0.00,0.00,0.00,23.29,0.00,0.00,0.00,33.00,0.00,0.00,0.00,19.13,0.00,0.00,0.00,26.21,0.00,0.00,0.00,24.16,0.00 +300150.SZ,0.00,0.00,0.00,30.39,0.00,0.00,0.00,25.27,0.00,0.00,0.00,22.66,0.00,0.00,0.00,20.35,0.00,0.00,0.00,20.44,0.00 +002356.SZ,0.00,0.00,0.00,29.87,0.00,0.00,0.00,28.32,0.00,0.00,0.00,34.09,0.00,0.00,0.00,47.35,0.00,0.00,0.00,33.41,0.00 +831641.BJ,0.00,70.16,0.00,71.27,0.00,0.00,0.00,70.23,0.00,78.65,0.00,75.64,0.00,0.00,0.00,62.53,0.00,0.00,0.00,65.71,0.00 +002300.SZ,0.00,0.00,0.00,33.94,0.00,0.00,0.00,34.69,0.00,0.00,0.00,31.89,0.00,0.00,0.00,22.26,0.00,0.00,0.00,18.38,0.00 +000157.SZ,0.00,0.00,0.00,2.95,0.00,0.00,0.00,3.48,0.00,0.00,0.00,4.20,0.00,0.00,0.00,4.92,0.00,0.00,0.00,5.44,0.00 +837403.BJ,0.00,0.00,0.00,41.11,0.00,0.00,0.00,40.08,0.00,0.00,0.00,39.47,0.00,32.34,0.00,34.38,0.00,0.00,0.00,17.85,0.00 +301189.SZ,0.00,31.71,0.00,38.73,0.00,42.34,0.00,31.00,0.00,0.00,0.00,47.23,0.00,0.00,0.00,47.54,0.00,0.00,0.00,38.35,0.00 +603618.SH,0.00,0.00,0.00,18.20,0.00,0.00,0.00,17.34,0.00,0.00,0.00,17.89,0.00,0.00,0.00,17.29,0.00,0.00,0.00,17.07,0.00 +002170.SZ,0.00,0.00,0.00,7.76,0.00,0.00,0.00,7.62,0.00,0.00,0.00,7.77,0.00,0.00,0.00,8.16,0.00,0.00,0.00,11.24,0.00 +605018.SH,0.00,0.00,0.00,57.24,0.00,0.00,0.00,54.95,0.00,0.00,0.00,60.77,0.00,0.00,0.00,66.94,0.00,0.00,0.00,62.24,0.00 +300727.SZ,0.00,0.00,0.00,6.89,0.00,0.00,0.00,7.72,0.00,0.00,0.00,8.73,0.00,0.00,0.00,8.65,0.00,0.00,0.00,8.55,0.00 +301230.SZ,0.00,0.00,44.94,40.92,0.00,27.16,0.00,29.45,0.00,0.00,0.00,29.67,0.00,0.00,0.00,23.21,0.00,0.00,0.00,20.20,0.00 +300299.SZ,0.00,0.00,0.00,49.58,0.00,0.00,0.00,82.51,0.00,0.00,0.00,68.18,0.00,0.00,0.00,62.27,0.00,0.00,0.00,57.34,0.00 +873665.BJ,0.00,0.00,0.00,26.76,0.00,22.96,0.00,25.72,0.00,0.00,25.86,23.72,0.00,0.00,0.00,25.88,0.00,0.00,0.00,29.03,0.00 +603255.SH,0.00,0.00,0.00,34.45,0.00,60.22,0.00,27.18,30.91,0.00,0.00,54.58,0.00,0.00,0.00,58.30,0.00,0.00,0.00,45.50,0.00 +002047.SZ,0.00,0.00,0.00,52.75,0.00,0.00,0.00,50.11,0.00,0.00,0.00,28.98,0.00,0.00,0.00,39.38,0.00,0.00,0.00,58.55,0.00 +601686.SH,0.00,11.79,0.00,11.97,0.00,0.00,0.00,10.18,0.00,0.00,0.00,8.90,0.00,0.00,0.00,9.20,0.00,0.00,0.00,7.44,0.00 +002184.SZ,0.00,0.00,0.00,10.86,0.00,0.00,0.00,8.78,0.00,0.00,0.00,14.37,0.00,0.00,0.00,26.06,0.00,0.00,0.00,13.25,0.00 +688153.SH,0.00,0.00,0.00,98.67,0.00,99.08,0.00,0.00,0.00,0.00,0.00,97.17,0.00,0.00,0.00,99.23,0.00,0.00,0.00,97.39,0.00 +605100.SH,0.00,0.00,0.00,94.49,0.00,0.00,0.00,76.32,0.00,0.00,0.00,91.26,0.00,0.00,0.00,94.92,0.00,0.00,0.00,96.78,0.00 +000783.SZ,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +300569.SZ,0.00,0.00,0.00,27.97,0.00,0.00,0.00,36.99,0.00,0.00,0.00,42.21,0.00,0.00,0.00,52.24,0.00,0.00,0.00,50.92,0.00 +605399.SH,0.00,0.00,0.00,17.01,0.00,0.00,0.00,10.75,0.00,0.00,0.00,10.00,0.00,0.00,0.00,7.90,0.00,0.00,0.00,9.37,0.00 +430139.BJ,0.00,0.00,0.00,70.90,0.00,0.00,0.00,67.90,0.00,0.00,0.00,71.46,0.00,0.00,0.00,75.65,0.00,0.00,0.00,70.56,0.00 +002241.SZ,0.00,0.00,0.00,79.07,0.00,0.00,0.00,86.54,0.00,0.00,0.00,87.91,0.00,0.00,0.00,88.75,0.00,0.00,0.00,88.56,0.00 +688561.SH,0.00,0.00,0.00,24.38,0.00,0.00,0.00,26.10,0.00,0.00,0.00,20.66,0.00,0.00,0.00,28.49,0.00,0.00,0.00,27.76,0.00 +301129.SZ,0.00,80.31,0.00,45.01,0.00,62.11,0.00,50.61,0.00,0.00,0.00,63.65,0.00,0.00,0.00,58.08,0.00,0.00,0.00,44.20,0.00 +002596.SZ,0.00,0.00,0.00,14.68,0.00,0.00,0.00,15.31,0.00,0.00,0.00,14.17,0.00,0.00,0.00,19.12,0.00,0.00,0.00,21.13,0.00 +000795.SZ,0.00,0.00,0.00,19.33,0.00,0.00,0.00,17.39,0.00,0.00,0.00,20.14,0.00,0.00,0.00,18.58,0.00,0.00,0.00,24.64,0.00 +301266.SZ,0.00,61.35,0.00,61.55,0.00,66.84,0.00,66.80,0.00,0.00,0.00,57.42,0.00,0.00,0.00,43.79,0.00,0.00,0.00,63.03,0.00 +605167.SH,0.00,49.08,0.00,49.80,0.00,0.00,0.00,12.76,0.00,0.00,0.00,48.01,0.00,0.00,0.00,73.72,0.00,0.00,0.00,77.11,0.00 +300335.SZ,0.00,0.00,0.00,25.31,0.00,0.00,0.00,18.59,0.00,0.00,0.00,15.66,0.00,0.00,0.00,18.79,0.00,0.00,0.00,10.83,0.00 +603220.SH,0.00,0.00,0.00,38.74,0.00,0.00,0.00,36.29,0.00,0.00,0.00,36.96,0.00,0.00,0.00,36.58,0.00,33.71,0.00,29.23,0.00 +000533.SZ,0.00,0.00,0.00,16.81,0.00,0.00,0.00,15.56,0.00,0.00,0.00,20.66,0.00,0.00,0.00,12.33,0.00,0.00,0.00,17.25,0.00 +000967.SZ,0.00,0.00,0.00,8.43,0.00,0.00,0.00,7.88,0.00,0.00,0.00,4.36,0.00,0.00,0.00,6.09,0.00,0.00,0.00,7.18,0.00 +002663.SZ,0.00,0.00,0.00,63.11,0.00,0.00,0.00,62.68,0.00,0.00,0.00,64.92,0.00,0.00,0.00,67.43,0.00,0.00,0.00,54.64,0.00 +002682.SZ,0.00,0.00,0.00,8.96,0.00,0.00,0.00,13.12,0.00,0.00,0.00,9.37,0.00,0.00,0.00,11.92,0.00,0.00,0.00,21.20,0.00 +300739.SZ,0.00,0.00,0.00,44.46,0.00,0.00,0.00,35.66,0.00,0.00,0.00,35.47,0.00,0.00,0.00,33.45,0.00,0.00,0.00,29.30,0.00 +300876.SZ,0.00,34.29,0.00,30.06,0.00,0.00,0.00,25.51,0.00,0.00,0.00,26.16,0.00,0.00,0.00,23.26,0.00,0.00,0.00,21.32,0.00 +300568.SZ,0.00,0.00,0.00,53.23,0.00,0.00,0.00,62.77,0.00,0.00,0.00,67.08,0.00,0.00,0.00,63.17,0.00,0.00,0.00,50.43,0.00 +688627.SH,0.00,0.00,0.00,99.52,0.00,0.00,0.00,98.82,0.00,96.03,0.00,86.93,0.00,0.00,0.00,86.76,0.00,0.00,0.00,67.49,0.00 +300177.SZ,0.00,0.00,0.00,8.79,0.00,0.00,0.00,9.92,0.00,0.00,0.00,11.22,0.00,0.00,0.00,14.74,0.00,0.00,0.00,18.63,0.00 +300828.SZ,0.00,0.00,0.00,50.95,0.00,0.00,0.00,41.58,0.00,0.00,0.00,39.32,0.00,0.00,0.00,42.58,0.00,0.00,0.00,47.15,0.00 +920108.BJ,0.00,0.00,0.00,95.82,0.00,0.00,0.00,94.12,0.00,0.00,0.00,95.28,0.00,94.01,0.00,94.23,0.00,93.53,0.00,93.32,0.00 +002899.SZ,0.00,0.00,0.00,44.00,0.00,0.00,0.00,35.76,0.00,0.00,0.00,42.76,0.00,0.00,0.00,37.63,0.00,0.00,0.00,39.35,0.00 +301361.SZ,0.00,18.00,0.00,16.53,0.00,12.78,0.00,11.99,0.00,14.51,0.00,11.73,0.00,0.00,0.00,16.78,0.00,0.00,0.00,8.35,0.00 +600031.SH,0.00,0.00,0.00,11.76,0.00,0.00,0.00,9.02,0.00,0.00,0.00,7.11,0.00,0.00,0.00,4.91,0.00,0.00,0.00,5.16,0.00 +600671.SH,0.00,0.00,0.00,34.64,0.00,0.00,0.00,29.08,0.00,0.00,0.00,18.98,0.00,0.00,0.00,23.10,0.00,0.00,0.00,36.37,0.00 +600860.SH,0.00,0.00,0.00,21.49,0.00,0.00,0.00,22.65,0.00,0.00,0.00,20.72,0.00,24.61,0.00,27.89,0.00,0.00,0.00,23.14,0.00 +603926.SH,0.00,0.00,0.00,31.02,0.00,0.00,0.00,26.98,0.00,0.00,0.00,14.79,0.00,0.00,0.00,14.43,0.00,0.00,0.00,13.94,0.00 +871263.BJ,0.00,0.00,0.00,38.16,0.00,0.00,0.00,51.62,0.00,0.00,0.00,45.07,0.00,40.19,0.00,42.13,0.00,0.00,0.00,35.49,0.00 +873152.BJ,0.00,0.00,0.00,41.59,0.00,0.00,0.00,44.46,0.00,52.11,0.00,55.69,0.00,0.00,0.00,66.66,0.00,0.00,0.00,57.31,0.00 +300626.SZ,0.00,0.00,0.00,20.17,0.00,0.00,0.00,12.68,0.00,0.00,0.00,33.88,0.00,0.00,0.00,34.36,0.00,0.00,0.00,31.45,0.00 +300007.SZ,0.00,0.00,0.00,8.31,0.00,0.00,0.00,6.61,0.00,0.00,0.00,11.73,0.00,0.00,0.00,8.97,0.00,0.00,0.00,6.85,0.00 +603818.SH,0.00,0.00,0.00,10.05,0.00,0.00,0.00,9.74,0.00,0.00,0.00,11.84,0.00,0.00,0.00,12.19,0.00,0.00,0.00,12.06,0.00 +300154.SZ,0.00,0.00,0.00,27.75,0.00,0.00,0.00,29.46,0.00,0.00,0.00,31.00,0.00,0.00,0.00,25.07,0.00,0.00,0.00,28.33,0.00 +688059.SH,0.00,41.02,0.00,38.89,0.00,0.00,0.00,40.60,0.00,0.00,0.00,43.86,0.00,50.86,0.00,47.28,0.00,38.07,0.00,38.31,0.00 +002256.SZ,0.00,0.00,0.00,30.16,0.00,0.00,0.00,29.38,0.00,0.00,0.00,31.40,0.00,0.00,0.00,27.40,0.00,0.00,0.00,26.57,0.00 +300477.SZ,0.00,0.00,0.00,26.46,0.00,0.00,0.00,25.20,0.00,0.00,0.00,31.44,0.00,0.00,0.00,17.25,0.00,0.00,0.00,23.71,0.00 +002443.SZ,0.00,0.00,0.00,21.21,0.00,0.00,0.00,18.73,0.00,0.00,0.00,14.57,0.00,0.00,0.00,21.82,0.00,0.00,0.00,19.50,0.00 +300858.SZ,0.00,0.00,0.00,83.74,0.00,0.00,0.00,74.64,0.00,0.00,0.00,66.00,0.00,0.00,0.00,59.15,0.00,0.00,0.00,49.90,0.00 +300155.SZ,0.00,0.00,0.00,23.36,0.00,0.00,0.00,28.42,0.00,0.00,0.00,18.92,0.00,0.00,0.00,18.30,0.00,0.00,0.00,13.02,0.00 +000037.SZ,0.00,0.00,0.00,97.99,0.00,0.00,0.00,95.44,0.00,0.00,0.00,99.74,0.00,0.00,0.00,99.74,0.00,0.00,0.00,98.82,0.00 +001359.SZ,0.00,0.00,0.00,14.97,0.00,0.00,0.00,16.51,0.00,15.71,0.00,15.18,0.00,14.42,0.00,14.69,0.00,0.00,0.00,15.55,0.00 +603686.SH,0.00,0.00,0.00,18.70,0.00,0.00,0.00,19.02,0.00,0.00,0.00,21.24,0.00,0.00,0.00,23.31,0.00,0.00,0.00,22.55,0.00 +300665.SZ,0.00,0.00,0.00,37.76,0.00,0.00,0.00,40.00,0.00,0.00,0.00,52.00,0.00,0.00,0.00,47.77,0.00,0.00,0.00,47.24,0.00 +300968.SZ,0.00,69.19,0.00,72.97,0.00,0.00,0.00,69.01,0.00,0.00,0.00,76.59,0.00,0.00,0.00,76.05,0.00,0.00,0.00,74.40,0.00 +603978.SH,0.00,0.00,0.00,42.76,0.00,0.00,0.00,63.24,0.00,0.00,0.00,68.88,0.00,0.00,0.00,64.34,0.00,0.00,0.00,60.73,0.00 +002342.SZ,0.00,0.00,0.00,21.09,0.00,0.00,0.00,21.17,0.00,0.00,0.00,17.57,0.00,0.00,0.00,14.22,0.00,0.00,0.00,9.07,0.00 +300538.SZ,0.00,0.00,0.00,57.56,0.00,0.00,0.00,42.93,0.00,0.00,0.00,44.09,0.00,0.00,0.00,36.21,0.00,0.00,0.00,32.71,0.00 +300836.SZ,0.00,0.00,0.00,73.96,0.00,0.00,0.00,71.86,0.00,0.00,0.00,76.55,0.00,0.00,0.00,81.31,0.00,0.00,0.00,78.47,0.00 +601138.SH,0.00,0.00,0.00,64.00,0.00,0.00,0.00,65.00,0.00,0.00,0.00,63.46,0.00,0.00,0.00,65.33,0.00,0.00,0.00,65.19,0.00 +603596.SH,0.00,0.00,0.00,62.97,0.00,0.00,0.00,45.37,0.00,0.00,0.00,42.23,0.00,0.00,0.00,48.08,0.00,0.00,0.00,47.64,0.00 +600990.SH,0.00,0.00,0.00,40.14,0.00,0.00,0.00,38.55,0.00,0.00,0.00,34.50,0.00,0.00,0.00,30.90,0.00,0.00,0.00,38.74,0.00 +301075.SZ,60.92,0.00,0.00,59.51,0.00,61.18,0.00,59.90,0.00,0.00,0.00,48.81,0.00,0.00,0.00,45.07,0.00,0.00,0.00,37.85,0.00 +688268.SH,0.00,0.00,0.00,19.34,0.00,0.00,0.00,23.75,0.00,0.00,0.00,31.89,0.00,0.00,0.00,19.94,0.00,0.00,0.00,20.77,0.00 +600756.SH,0.00,0.00,0.00,21.90,0.00,0.00,0.00,5.99,0.00,0.00,0.00,11.98,0.00,0.00,0.00,35.00,0.00,0.00,0.00,26.98,0.00 +300849.SZ,0.00,0.00,0.00,57.54,0.00,0.00,0.00,50.44,0.00,0.00,0.00,45.59,0.00,0.00,0.00,32.02,0.00,0.00,0.00,34.00,0.00 +000590.SZ,0.00,0.00,0.00,74.39,0.00,0.00,0.00,74.07,0.00,0.00,0.00,68.40,0.00,0.00,0.00,61.62,0.00,0.00,0.00,58.08,0.00 +300052.SZ,0.00,0.00,0.00,60.38,0.00,0.00,0.00,53.54,0.00,0.00,0.00,53.72,0.00,0.00,0.00,53.06,0.00,0.00,0.00,47.73,0.00 +301272.SZ,0.00,0.00,0.00,47.93,0.00,46.77,0.00,46.40,0.00,41.95,0.00,35.08,37.25,0.00,0.00,32.03,0.00,0.00,0.00,29.82,0.00 +920167.BJ,0.00,0.00,0.00,99.08,0.00,0.00,0.00,98.91,0.00,0.00,0.00,94.20,0.00,0.00,0.00,91.05,0.00,0.00,0.00,95.15,0.00 +300733.SZ,0.00,0.00,0.00,74.09,0.00,0.00,0.00,56.69,0.00,0.00,0.00,58.91,0.00,0.00,0.00,68.15,0.00,0.00,0.00,66.24,0.00 +600101.SH,0.00,0.00,0.00,16.74,0.00,0.00,0.00,13.93,0.00,0.00,0.00,23.18,0.00,0.00,0.00,17.88,0.00,0.00,0.00,19.27,0.00 +002163.SZ,0.00,0.00,0.00,30.30,0.00,0.00,0.00,24.72,0.00,0.00,0.00,33.02,0.00,0.00,0.00,46.23,0.00,0.00,0.00,46.33,0.00 +300936.SZ,0.00,65.93,56.59,58.35,0.00,0.00,0.00,52.61,0.00,0.00,0.00,59.10,0.00,0.00,0.00,50.98,0.00,0.00,0.00,42.05,0.00 +603356.SH,0.00,0.00,0.00,55.14,0.00,0.00,0.00,63.34,0.00,0.00,0.00,65.87,0.00,0.00,0.00,57.52,0.00,0.00,0.00,61.04,0.00 +002444.SZ,0.00,0.00,0.00,45.19,0.00,0.00,0.00,46.51,0.00,0.00,0.00,48.03,0.00,0.00,0.00,45.85,0.00,0.00,0.00,48.72,0.00 +300784.SZ,0.00,0.00,0.00,91.20,0.00,0.00,0.00,88.24,0.00,0.00,83.35,82.95,0.00,82.42,0.00,80.02,0.00,0.00,0.00,78.06,0.00 +300012.SZ,0.00,0.00,0.00,3.61,0.00,0.00,0.00,3.36,0.00,0.00,0.00,6.00,0.00,0.00,0.00,3.85,0.00,0.00,0.00,2.76,0.00 +002912.SZ,0.00,0.00,0.00,57.92,0.00,0.00,0.00,28.97,0.00,0.00,0.00,37.28,0.00,0.00,0.00,48.74,0.00,0.00,0.00,37.70,0.00 +301198.SZ,0.00,57.03,0.00,50.72,0.00,56.50,51.55,50.58,0.00,0.00,0.00,39.05,0.00,0.00,0.00,39.41,0.00,0.00,0.00,40.76,0.00 +300608.SZ,0.00,0.00,0.00,42.07,0.00,0.00,0.00,54.07,0.00,0.00,0.00,48.91,0.00,0.00,0.00,48.04,0.00,0.00,0.00,54.24,0.00 +001314.SZ,0.00,0.00,0.00,52.16,0.00,55.31,0.00,42.33,0.00,0.00,45.22,42.30,0.00,0.00,0.00,46.55,0.00,0.00,0.00,39.87,0.00 +600818.SH,0.00,0.00,0.00,30.06,0.00,0.00,0.00,28.00,0.00,0.00,0.00,28.67,0.00,0.00,0.00,26.27,0.00,0.00,0.00,25.54,0.00 +300042.SZ,0.00,0.00,0.00,26.63,0.00,0.00,0.00,18.51,0.00,0.00,0.00,16.31,0.00,0.00,0.00,18.28,0.00,0.00,0.00,21.22,0.00 +300092.SZ,0.00,0.00,0.00,46.92,0.00,71.78,0.00,45.04,0.00,0.00,0.00,44.68,0.00,0.00,0.00,62.76,0.00,0.00,0.00,65.78,0.00 +002715.SZ,0.00,0.00,0.00,62.93,0.00,0.00,0.00,59.46,0.00,0.00,0.00,56.36,0.00,0.00,0.00,50.61,0.00,0.00,0.00,54.44,0.00 +300988.SZ,0.00,73.95,0.00,72.91,0.00,0.00,0.00,73.76,0.00,0.00,0.00,74.15,0.00,0.00,0.00,70.34,0.00,0.00,0.00,71.76,0.00 +300756.SZ,0.00,0.00,0.00,44.98,0.00,0.00,0.00,41.11,0.00,0.00,0.00,62.99,0.00,0.00,0.00,54.67,0.00,0.00,0.00,32.67,0.00 +300364.SZ,0.00,0.00,0.00,16.80,0.00,0.00,0.00,27.40,0.00,0.00,0.00,16.12,0.00,0.00,0.00,11.61,0.00,0.00,0.00,16.84,0.00 +301251.SZ,0.00,0.00,0.00,71.87,0.00,0.00,0.00,55.91,0.00,61.17,0.00,59.84,0.00,0.00,0.00,52.14,0.00,0.00,0.00,56.04,0.00 +870866.BJ,0.00,0.00,0.00,7.68,0.00,0.00,0.00,6.19,0.00,7.31,0.00,5.27,0.00,0.00,0.00,7.78,0.00,0.00,0.00,12.95,0.00 +600186.SH,0.00,0.00,0.00,11.00,0.00,0.00,0.00,13.27,0.00,0.00,0.00,9.56,0.00,0.00,0.00,9.75,0.00,0.00,0.00,9.60,0.00 +002902.SZ,0.00,0.00,0.00,35.61,0.00,0.00,0.00,35.20,0.00,0.00,0.00,35.17,0.00,0.00,0.00,35.08,0.00,0.00,0.00,42.17,0.00 +300890.SZ,0.00,96.41,0.00,100.08,0.00,0.00,0.00,96.09,0.00,0.00,0.00,95.61,0.00,0.00,0.00,97.25,0.00,0.00,0.00,97.49,0.00 +002801.SZ,0.00,0.00,0.00,12.27,0.00,0.00,0.00,13.50,0.00,0.00,0.00,12.64,0.00,0.00,0.00,10.21,0.00,0.00,0.00,8.81,0.00 +600501.SH,0.00,0.00,0.00,54.38,0.00,0.00,0.00,53.99,0.00,0.00,0.00,54.01,0.00,0.00,0.00,56.55,0.00,0.00,0.00,45.26,0.00 +001269.SZ,0.00,98.16,0.00,97.37,0.00,0.00,0.00,94.74,0.00,0.00,0.00,95.62,0.00,0.00,0.00,98.16,0.00,0.00,0.00,96.75,0.00 +300964.SZ,0.00,47.21,0.00,45.29,0.00,0.00,0.00,33.76,0.00,0.00,0.00,28.76,0.00,0.00,0.00,28.36,0.00,0.00,0.00,21.25,0.00 +300546.SZ,0.00,0.00,0.00,30.07,0.00,0.00,0.00,36.07,0.00,0.00,0.00,70.28,0.00,0.00,0.00,39.24,0.00,0.00,0.00,36.80,0.00 +688408.SH,0.00,0.00,0.00,60.81,0.00,0.00,0.00,54.05,0.00,0.00,0.00,51.75,0.00,0.00,0.00,54.75,0.00,0.00,0.00,75.69,0.00 +300567.SZ,0.00,0.00,0.00,75.52,0.00,0.00,0.00,71.70,0.00,0.00,0.00,63.52,0.00,0.00,0.00,59.55,0.00,0.00,0.00,45.46,0.00 +600549.SH,0.00,0.00,0.00,34.59,0.00,0.00,0.00,43.54,0.00,0.00,0.00,52.41,0.00,0.00,0.00,35.78,0.00,0.00,0.00,30.06,0.00 +601069.SH,0.00,0.00,0.00,99.37,0.00,0.00,0.00,96.43,0.00,0.00,0.00,83.47,0.00,0.00,0.00,88.93,0.00,0.00,0.00,91.04,0.00 +601086.SH,0.00,0.00,0.00,0.57,0.00,0.00,0.00,1.25,0.00,0.00,0.00,2.31,0.00,0.00,0.00,0.65,0.00,0.00,0.00,1.27,0.00 +603004.SH,0.00,0.00,0.00,52.68,0.00,0.00,0.00,53.90,0.00,45.58,0.00,51.50,0.00,53.63,0.00,54.03,0.00,0.00,0.00,51.90,0.00 +300008.SZ,0.00,0.00,0.00,46.72,0.00,0.00,0.00,43.26,0.00,0.00,0.00,72.31,0.00,0.00,0.00,51.37,0.00,0.00,0.00,45.97,0.00 +000820.SZ,0.00,0.00,0.00,98.58,0.00,0.00,0.00,84.39,0.00,0.00,0.00,89.61,0.00,0.00,0.00,74.61,0.00,0.00,0.00,90.07,0.00 +300942.SZ,0.00,49.83,0.00,37.30,0.00,0.00,0.00,73.55,0.00,0.00,0.00,61.69,0.00,0.00,0.00,26.84,0.00,0.00,0.00,31.26,0.00 +837212.BJ,0.00,69.28,0.00,73.44,0.00,0.00,0.00,72.85,0.00,0.00,0.00,72.15,0.00,0.00,0.00,67.66,0.00,0.00,0.00,71.66,0.00 +002518.SZ,0.00,0.00,0.00,14.52,0.00,0.00,0.00,18.66,0.00,0.00,0.00,35.75,0.00,0.00,0.00,34.03,0.00,0.00,0.00,17.34,0.00 +838670.BJ,0.00,0.00,0.00,74.58,0.00,78.59,0.00,67.91,0.00,0.00,0.00,62.87,0.00,0.00,0.00,52.23,0.00,0.00,0.00,74.12,0.00 +002376.SZ,0.00,0.00,0.00,19.09,0.00,0.00,0.00,20.45,0.00,0.00,0.00,27.95,0.00,0.00,0.00,26.59,0.00,0.00,0.00,26.58,0.00 +301255.SZ,0.00,0.00,0.00,9.72,0.00,11.42,0.00,10.62,0.00,13.13,0.00,12.28,0.00,0.00,0.00,10.23,0.00,0.00,0.00,14.16,0.00 +600498.SH,0.00,0.00,0.00,6.05,0.00,0.00,0.00,6.48,0.00,0.00,0.00,10.57,0.00,0.00,0.00,15.29,0.00,0.00,0.00,12.95,0.00 +300990.SZ,0.00,19.04,0.00,22.24,0.00,0.00,0.00,18.55,0.00,0.00,0.00,22.11,0.00,0.00,0.00,41.26,0.00,0.00,0.00,40.91,0.00 +301502.SZ,0.00,0.00,0.00,80.56,0.00,0.00,0.00,83.26,0.00,49.27,0.00,83.46,0.00,82.47,82.06,82.06,0.00,0.00,0.00,79.79,0.00 +688503.SH,0.00,0.00,0.00,64.81,0.00,0.00,0.00,65.06,0.00,63.12,0.00,63.58,0.00,0.00,0.00,55.86,0.00,0.00,0.00,53.27,0.00 +873223.BJ,0.00,0.00,0.00,33.91,29.13,29.67,0.00,30.55,0.00,0.00,0.00,29.35,0.00,0.00,0.00,28.27,0.00,0.00,0.00,25.64,0.00 +300183.SZ,0.00,0.00,0.00,26.78,0.00,0.00,0.00,24.98,0.00,0.00,0.00,23.95,0.00,0.00,0.00,34.20,0.00,0.00,0.00,27.04,0.00 +920111.BJ,0.00,0.00,0.00,33.46,0.00,0.00,0.00,28.88,0.00,0.00,31.60,31.47,0.00,29.39,0.00,27.41,0.00,27.33,0.00,28.95,0.00 +600983.SH,0.00,0.00,0.00,52.52,0.00,0.00,0.00,57.00,0.00,0.00,0.00,65.93,0.00,0.00,0.00,69.70,0.00,0.00,0.00,90.59,0.00 +002269.SZ,0.00,0.00,0.00,7.80,0.00,0.00,0.00,7.43,0.00,0.00,0.00,8.51,0.00,0.00,0.00,7.63,0.00,0.00,0.00,8.82,0.00 +300166.SZ,0.00,0.00,0.00,16.60,0.00,0.00,0.00,20.55,0.00,0.00,0.00,21.03,0.00,0.00,0.00,18.39,0.00,0.00,0.00,48.96,0.00 +301311.SZ,0.00,0.00,0.00,78.92,0.00,79.44,0.00,72.02,0.00,73.81,0.00,30.18,0.00,0.00,0.00,38.85,0.00,0.00,0.00,40.04,0.00 +002348.SZ,0.00,0.00,0.00,57.80,0.00,0.00,0.00,52.63,0.00,0.00,0.00,45.00,0.00,0.00,0.00,48.35,0.00,0.00,0.00,49.65,0.00 +000557.SZ,0.00,0.00,0.00,70.05,0.00,0.00,0.00,86.91,0.00,0.00,0.00,79.80,0.00,0.00,0.00,85.71,0.00,0.00,0.00,88.93,0.00 +300256.SZ,0.00,0.00,0.00,32.91,0.00,0.00,0.00,41.88,0.00,0.00,0.00,47.18,0.00,0.00,0.00,35.05,0.00,0.00,0.00,28.18,0.00 +002955.SZ,0.00,0.00,0.00,28.43,0.00,0.00,0.00,36.71,0.00,0.00,0.00,30.18,0.00,0.00,0.00,27.48,0.00,0.00,0.00,27.23,0.00 +300097.SZ,0.00,0.00,0.00,36.98,0.00,0.00,0.00,49.23,0.00,0.00,0.00,53.73,0.00,0.00,0.00,75.46,0.00,0.00,0.00,73.53,0.00 +002409.SZ,0.00,0.00,0.00,33.40,0.00,0.00,0.00,39.14,0.00,0.00,0.00,40.43,0.00,0.00,0.00,35.94,0.00,0.00,0.00,44.40,0.00 +300149.SZ,0.00,0.00,0.00,17.52,0.00,0.00,0.00,11.44,0.00,0.00,0.00,13.10,0.00,0.00,0.00,23.05,0.00,0.00,0.00,29.16,0.00 +603131.SH,0.00,0.00,0.00,24.17,0.00,0.00,0.00,29.45,0.00,0.00,0.00,27.46,0.00,0.00,0.00,29.56,0.00,0.00,0.00,30.31,0.00 +836149.BJ,0.00,50.21,0.00,39.50,0.00,0.00,0.00,38.51,0.00,0.00,0.00,31.65,0.00,0.00,0.00,70.82,0.00,0.00,0.00,66.78,0.00 +300222.SZ,0.00,0.00,0.00,22.09,0.00,0.00,0.00,14.82,0.00,0.00,0.00,23.91,0.00,0.00,0.00,40.76,0.00,0.00,0.00,43.52,0.00 +300697.SZ,0.00,0.00,0.00,49.73,0.00,0.00,0.00,47.89,0.00,0.00,0.00,55.98,0.00,0.00,0.00,54.37,0.00,0.00,0.00,53.08,0.00 +603283.SH,0.00,0.00,0.00,61.81,0.00,0.00,0.00,65.67,0.00,0.00,0.00,72.85,0.00,0.00,0.00,65.76,0.00,0.00,0.00,63.97,0.00 +300671.SZ,0.00,0.00,0.00,27.62,0.00,0.00,0.00,27.46,0.00,0.00,0.00,22.04,0.00,0.00,0.00,27.15,0.00,0.00,0.00,28.38,0.00 +688599.SH,0.00,0.00,0.00,18.69,0.00,0.00,0.00,9.05,0.00,0.00,0.00,22.77,0.00,0.00,0.00,18.46,0.00,0.00,0.00,19.99,0.00 +839729.BJ,0.00,0.00,0.00,28.93,0.00,0.00,0.00,31.41,0.00,0.00,0.00,33.13,0.00,0.00,0.00,25.79,0.00,0.00,0.00,26.25,0.00 +300231.SZ,0.00,0.00,0.00,42.39,0.00,0.00,0.00,41.90,0.00,0.00,0.00,26.11,0.00,0.00,0.00,35.65,0.00,0.00,0.00,30.53,0.00 +603005.SH,0.00,0.00,0.00,87.82,0.00,0.00,0.00,81.96,0.00,0.00,0.00,72.58,0.00,0.00,0.00,67.41,0.00,0.00,0.00,66.57,0.00 +300102.SZ,0.00,0.00,0.00,53.27,0.00,0.00,0.00,60.06,0.00,0.00,0.00,55.81,0.00,0.00,0.00,55.66,0.00,0.00,0.00,49.66,0.00 +300189.SZ,0.00,0.00,0.00,20.73,0.00,0.00,0.00,25.58,0.00,0.00,0.00,25.94,0.00,0.00,0.00,23.47,0.00,0.00,0.00,21.77,0.00 +300011.SZ,0.00,0.00,0.00,63.69,0.00,0.00,0.00,51.97,0.00,0.00,0.00,58.57,0.00,0.00,0.00,47.22,0.00,0.00,0.00,61.93,0.00 +603778.SH,0.00,0.00,0.00,71.53,0.00,0.00,0.00,33.38,0.00,0.00,0.00,92.29,0.00,0.00,0.00,60.00,0.00,0.00,0.00,84.01,0.00 +300223.SZ,0.00,0.00,0.00,39.14,0.00,0.00,0.00,40.12,0.00,0.00,0.00,48.10,0.00,0.00,0.00,53.46,0.00,0.00,0.00,46.86,0.00 +300021.SZ,0.00,0.00,0.00,22.68,0.00,0.00,0.00,36.08,0.00,0.00,0.00,34.62,0.00,0.00,0.00,28.43,0.00,0.00,0.00,28.18,0.00 +871478.BJ,0.00,0.00,0.00,67.45,0.00,0.00,0.00,57.29,0.00,75.74,0.00,50.67,0.00,0.00,0.00,48.20,0.00,0.00,0.00,67.34,0.00 +600619.SH,0.00,0.00,0.00,49.49,0.00,0.00,0.00,41.56,0.00,0.00,0.00,41.69,0.00,0.00,0.00,39.99,0.00,0.00,0.00,37.56,0.00 +688788.SH,0.00,0.00,0.00,93.02,0.00,92.78,0.00,90.03,0.00,0.00,0.00,76.19,0.00,0.00,0.00,77.79,0.00,0.00,0.00,70.71,0.00 +833230.BJ,0.00,33.17,0.00,33.29,0.00,52.14,0.00,42.18,54.36,50.38,0.00,46.19,0.00,42.76,0.00,32.73,0.00,47.56,0.00,46.92,0.00 +831278.BJ,0.00,0.00,0.00,51.42,0.00,45.09,0.00,41.17,0.00,0.00,0.00,40.37,0.00,0.00,0.00,38.79,0.00,0.00,0.00,34.10,0.00 +300632.SZ,0.00,0.00,0.00,55.57,0.00,0.00,0.00,50.61,0.00,0.00,0.00,51.47,0.00,0.00,0.00,57.13,0.00,0.00,0.00,58.95,0.00 +688029.SH,0.00,0.00,0.00,17.26,0.00,0.00,0.00,17.51,0.00,0.00,0.00,16.82,0.00,0.00,0.00,19.99,0.00,0.00,0.00,20.22,0.00 +300311.SZ,0.00,0.00,0.00,20.88,0.00,0.00,0.00,15.31,0.00,0.00,0.00,22.51,0.00,0.00,0.00,29.09,0.00,0.00,0.00,49.87,0.00 +300537.SZ,0.00,0.00,0.00,12.96,0.00,0.00,0.00,10.76,0.00,0.00,0.00,8.25,0.00,0.00,0.00,16.61,0.00,0.00,0.00,16.15,0.00 +000678.SZ,0.00,0.00,0.00,34.15,0.00,0.00,0.00,38.96,0.00,0.00,0.00,29.49,0.00,0.00,0.00,32.79,0.00,0.00,0.00,36.54,0.00 +001311.SZ,0.00,0.00,0.00,79.24,0.00,71.89,0.00,76.69,0.00,80.79,0.00,81.94,0.00,0.00,0.00,81.99,0.00,0.00,0.00,81.55,0.00 +002642.SZ,0.00,0.00,0.00,31.40,0.00,0.00,0.00,28.79,0.00,0.00,0.00,28.46,0.00,0.00,0.00,26.52,0.00,0.00,0.00,17.80,0.00 +300875.SZ,0.00,0.00,0.00,95.38,0.00,0.00,0.00,61.34,0.00,0.00,0.00,33.57,0.00,0.00,0.00,33.89,0.00,0.00,0.00,39.19,0.00 +871694.BJ,0.00,0.00,0.00,29.67,0.00,0.00,0.00,26.72,55.54,54.44,0.00,52.42,0.00,0.00,0.00,53.34,0.00,0.00,0.00,37.02,0.00 +688236.SH,0.00,23.77,0.00,24.25,0.00,26.43,0.00,23.99,0.00,0.00,0.00,36.03,0.00,0.00,0.00,47.13,0.00,0.00,0.00,49.74,0.00 +600367.SH,0.00,0.00,0.00,16.23,0.00,0.00,0.00,16.79,0.00,0.00,0.00,32.99,0.00,0.00,0.00,17.12,0.00,0.00,0.00,16.41,0.00 +000856.SZ,0.00,0.00,0.00,89.23,0.00,0.00,0.00,91.39,0.00,0.00,0.00,88.79,0.00,0.00,0.00,87.26,0.00,0.00,0.00,83.91,0.00 +300778.SZ,0.00,0.00,0.00,18.23,0.00,0.00,0.00,20.20,0.00,0.00,0.00,21.42,0.00,0.00,0.00,23.51,0.00,0.00,0.00,23.15,0.00 +300575.SZ,0.00,0.00,0.00,48.64,0.00,0.00,0.00,51.87,0.00,0.00,0.00,64.46,0.00,0.00,0.00,62.54,0.00,0.00,0.00,44.64,0.00 +600615.SH,0.00,0.00,0.00,88.16,0.00,0.00,0.00,19.72,0.00,0.00,0.00,64.77,0.00,0.00,0.00,73.01,0.00,0.00,0.00,69.07,0.00 +301125.SZ,0.00,23.09,0.00,25.54,0.00,24.46,0.00,27.20,24.93,0.00,0.00,30.27,0.00,0.00,0.00,32.40,0.00,0.00,0.00,38.06,0.00 +600843.SH,0.00,0.00,0.00,13.44,0.00,0.00,0.00,12.54,0.00,0.00,0.00,12.85,0.00,0.00,0.00,11.33,0.00,0.00,0.00,9.80,0.00 +300619.SZ,0.00,0.00,0.00,22.46,0.00,0.00,0.00,39.58,0.00,0.00,0.00,63.91,0.00,0.00,0.00,58.58,0.00,0.00,0.00,36.23,0.00 +873339.BJ,0.00,35.25,0.00,33.75,0.00,44.46,0.00,42.91,49.91,46.11,0.00,42.20,0.00,41.29,0.00,40.42,0.00,44.16,0.00,49.06,0.00 +430556.BJ,0.00,0.00,0.00,36.84,0.00,0.00,0.00,35.62,0.00,33.86,0.00,33.78,0.00,0.00,0.00,34.40,0.00,0.00,0.00,35.86,0.00 +300803.SZ,0.00,0.00,0.00,10.22,0.00,0.00,0.00,7.92,0.00,0.00,0.00,4.42,0.00,0.00,0.00,3.62,0.00,0.00,0.00,2.25,0.00 +300749.SZ,0.00,0.00,0.00,11.08,0.00,0.00,0.00,14.52,0.00,0.00,0.00,14.20,0.00,0.00,0.00,28.19,0.00,0.00,0.00,27.43,0.00 +002357.SZ,0.00,0.00,0.00,11.44,0.00,0.00,0.00,11.63,0.00,0.00,0.00,13.02,0.00,0.00,0.00,12.41,0.00,0.00,0.00,13.38,0.00 +603499.SH,0.00,0.00,0.00,43.83,0.00,0.00,0.00,40.00,0.00,0.00,0.00,45.74,0.00,0.00,0.00,40.89,0.00,0.00,0.00,53.04,0.00 +301325.SZ,0.00,0.00,0.00,44.42,0.00,68.50,52.40,44.95,0.00,46.51,0.00,48.45,0.00,0.00,0.00,71.52,0.00,0.00,0.00,75.16,0.00 +000526.SZ,0.00,0.00,0.00,1.04,0.00,0.00,0.00,0.96,0.00,0.00,0.00,1.48,0.00,0.00,0.00,1.19,0.00,0.00,0.00,0.36,0.00 +603528.SH,0.00,0.00,0.00,13.19,0.00,0.00,0.00,18.59,0.00,0.00,0.00,8.34,0.00,0.00,0.00,8.98,0.00,0.00,0.00,15.99,0.00 +300043.SZ,0.00,0.00,0.00,52.34,0.00,0.00,0.00,49.23,0.00,0.00,0.00,46.73,0.00,0.00,0.00,47.60,0.00,0.00,0.00,46.12,0.00 +300101.SZ,0.00,0.00,0.00,34.38,0.00,0.00,0.00,33.97,0.00,0.00,0.00,33.71,0.00,0.00,0.00,27.06,0.00,0.00,0.00,33.80,0.00 +603070.SH,0.00,0.00,0.00,7.14,0.00,8.77,0.00,8.09,0.00,0.00,0.00,5.53,0.00,0.00,0.00,7.15,0.00,0.00,0.00,5.36,0.00 +300121.SZ,0.00,0.00,0.00,17.47,0.00,0.00,0.00,19.63,0.00,0.00,0.00,21.70,0.00,0.00,0.00,22.79,0.00,0.00,0.00,23.96,0.00 +605006.SH,0.00,24.27,0.00,21.86,0.00,0.00,0.00,18.78,0.00,0.00,0.00,16.39,0.00,0.00,0.00,12.68,0.00,0.00,0.00,18.27,0.00 +002062.SZ,0.00,0.00,0.00,47.81,0.00,0.00,0.00,44.81,0.00,0.00,0.00,32.00,0.00,0.00,0.00,34.69,0.00,0.00,0.00,30.96,0.00 +002400.SZ,0.00,0.00,0.00,25.48,0.00,0.00,0.00,23.89,0.00,0.00,0.00,24.28,0.00,0.00,0.00,21.75,0.00,0.00,0.00,23.78,0.00 +301172.SZ,0.00,0.00,0.00,60.45,0.00,94.36,0.00,75.85,0.00,88.94,0.00,63.55,0.00,0.00,0.00,62.80,0.00,0.00,0.00,68.73,0.00 +600149.SH,0.00,0.00,0.00,18.09,0.00,0.00,0.00,19.01,0.00,0.00,0.00,19.04,0.00,0.00,0.00,16.57,0.00,0.00,0.00,15.22,0.00 +605580.SH,0.00,68.26,0.00,64.24,65.53,0.00,0.00,58.58,0.00,0.00,0.00,57.16,0.00,0.00,0.00,57.26,0.00,0.00,0.00,66.81,0.00 +688320.SH,0.00,0.00,0.00,21.08,0.00,18.99,0.00,15.63,0.00,0.00,0.00,24.72,0.00,0.00,0.00,30.49,0.00,0.00,0.00,23.39,0.00 +002866.SZ,0.00,0.00,0.00,51.39,0.00,0.00,0.00,54.14,0.00,0.00,0.00,51.91,0.00,0.00,0.00,59.87,0.00,0.00,0.00,56.84,0.00 +300196.SZ,0.00,0.00,0.00,6.38,0.00,0.00,0.00,8.63,0.00,0.00,0.00,8.49,0.00,0.00,0.00,9.80,0.00,0.00,0.00,10.45,0.00 +000657.SZ,0.00,0.00,0.00,10.99,0.00,0.00,0.00,12.16,0.00,0.00,0.00,9.51,0.00,0.00,0.00,7.33,0.00,0.00,0.00,7.48,0.00 +003029.SZ,0.00,38.33,33.41,23.29,0.00,0.00,0.00,17.70,0.00,0.00,0.00,25.23,0.00,0.00,0.00,21.60,0.00,0.00,0.00,26.68,0.00 +300998.SZ,0.00,50.91,0.00,51.44,0.00,0.00,0.00,53.67,0.00,0.00,0.00,42.82,0.00,0.00,0.00,46.14,0.00,0.00,0.00,42.44,0.00 +300651.SZ,0.00,0.00,0.00,18.06,0.00,0.00,0.00,19.20,0.00,0.00,0.00,16.85,0.00,0.00,0.00,19.53,0.00,0.00,0.00,12.42,0.00 +000509.SZ,0.00,0.00,0.00,64.67,0.00,0.00,0.00,94.50,0.00,0.00,0.00,82.77,0.00,0.00,0.00,76.06,0.00,0.00,0.00,78.15,0.00 +300667.SZ,0.00,0.00,0.00,17.91,0.00,0.00,0.00,19.77,0.00,0.00,0.00,8.55,0.00,0.00,0.00,8.37,0.00,0.00,0.00,12.75,0.00 +600505.SH,0.00,0.00,0.00,26.74,0.00,0.00,0.00,21.65,0.00,0.00,0.00,24.01,0.00,0.00,0.00,24.46,0.00,0.00,0.00,23.78,0.00 +000759.SZ,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.40,0.00,0.00,0.00,0.65,0.00,0.00,0.00,0.53,0.00,0.00,0.00,1.59,0.00 +871753.BJ,0.00,14.54,0.00,10.50,0.00,13.49,0.00,15.12,0.00,0.00,0.00,15.98,0.00,0.00,0.00,12.44,0.00,0.00,0.00,6.59,0.00 +688560.SH,0.00,66.40,68.48,68.59,0.00,0.00,0.00,68.20,0.00,0.00,0.00,64.09,0.00,0.00,0.00,65.64,0.00,0.00,0.00,77.31,0.00 +002986.SZ,0.00,0.00,0.00,34.83,0.00,0.00,0.00,41.13,0.00,0.00,0.00,28.97,0.00,0.00,0.00,33.84,0.00,0.00,0.00,48.58,0.00 +831305.BJ,0.00,44.65,0.00,49.22,53.69,46.39,0.00,41.21,0.00,29.85,0.00,29.47,0.00,27.40,0.00,28.36,0.00,59.29,0.00,55.71,0.00 +002599.SZ,0.00,0.00,0.00,15.45,0.00,0.00,0.00,9.89,0.00,0.00,0.00,13.60,0.00,0.00,0.00,9.74,0.00,0.00,0.00,10.13,0.00 +002448.SZ,0.00,0.00,0.00,22.72,0.00,0.00,0.00,14.84,0.00,0.00,0.00,16.02,0.00,0.00,0.00,23.82,0.00,0.00,0.00,24.41,0.00 +002539.SZ,0.00,0.00,0.00,9.25,0.00,0.00,0.00,14.84,0.00,0.00,0.00,7.96,0.00,0.00,0.00,6.79,0.00,0.00,0.00,10.24,0.00 +300331.SZ,0.00,0.00,0.00,25.22,0.00,0.00,0.00,23.63,0.00,0.00,0.00,23.35,0.00,0.00,0.00,21.55,0.00,0.00,0.00,20.06,0.00 +600476.SH,0.00,0.00,0.00,78.69,0.00,0.00,0.00,60.26,0.00,0.00,0.00,71.03,0.00,0.00,0.00,47.94,0.00,0.00,0.00,58.04,0.00 +603960.SH,0.00,0.00,0.00,64.08,0.00,0.00,0.00,66.26,0.00,0.00,0.00,74.61,0.00,0.00,0.00,70.90,0.00,0.00,0.00,74.60,0.00 +605599.SH,0.00,8.52,0.00,7.94,0.00,0.00,0.00,12.87,0.00,0.00,0.00,5.68,0.00,0.00,0.00,5.76,0.00,0.00,0.00,5.93,0.00 +600719.SH,0.00,0.00,0.00,30.77,0.00,0.00,0.00,25.28,0.00,0.00,0.00,41.26,0.00,0.00,0.00,0.00,0.00,0.00,0.00,22.17,0.00 +002387.SZ,0.00,0.00,0.00,57.67,0.00,0.00,0.00,59.62,0.00,0.00,0.00,65.58,0.00,0.00,0.00,64.41,0.00,0.00,0.00,69.44,0.00 +600446.SH,0.00,0.00,0.00,12.36,0.00,0.00,0.00,20.76,0.00,0.00,0.00,6.61,0.00,0.00,0.00,6.89,0.00,0.00,0.00,14.99,0.00 +300602.SZ,0.00,0.00,0.00,48.54,0.00,0.00,0.00,38.02,0.00,0.00,0.00,43.46,0.00,0.00,0.00,43.74,0.00,0.00,0.00,45.33,0.00 +300956.SZ,98.27,96.69,0.00,95.56,0.00,0.00,0.00,96.99,0.00,0.00,0.00,96.84,0.00,0.00,0.00,95.67,0.00,0.00,0.00,90.52,0.00 +002771.SZ,0.00,0.00,0.00,37.80,0.00,0.00,0.00,30.96,0.00,0.00,0.00,36.45,0.00,0.00,0.00,37.67,0.00,0.00,0.00,31.26,0.00 +002401.SZ,0.00,0.00,0.00,59.66,0.00,0.00,0.00,41.19,0.00,0.00,0.00,39.77,0.00,0.00,0.00,47.97,0.00,0.00,0.00,59.65,0.00 +001228.SZ,0.00,12.56,0.00,11.40,0.00,11.50,0.00,10.49,0.00,0.00,0.00,10.04,0.00,0.00,0.00,15.44,0.00,0.00,0.00,19.94,0.00 +300635.SZ,0.00,0.00,0.00,16.44,0.00,0.00,0.00,12.98,0.00,0.00,0.00,16.04,0.00,0.00,0.00,15.43,0.00,0.00,0.00,17.98,0.00 +002510.SZ,0.00,0.00,0.00,40.88,0.00,0.00,0.00,38.60,0.00,0.00,0.00,40.16,0.00,0.00,0.00,52.12,0.00,0.00,0.00,48.65,0.00 +688095.SH,0.00,0.00,0.00,18.60,0.00,0.00,0.00,20.50,0.00,0.00,0.00,25.35,0.00,0.00,0.00,27.78,0.00,0.00,0.00,27.55,0.00 +831726.BJ,0.00,12.23,0.00,12.04,0.00,11.70,0.00,12.24,0.00,0.00,0.00,12.74,0.00,16.84,0.00,12.46,0.00,11.28,0.00,11.89,0.00 +301533.SZ,0.00,0.00,0.00,27.67,0.00,30.08,0.00,29.39,0.00,0.00,0.00,36.15,28.25,29.34,0.00,31.67,0.00,0.00,0.00,34.40,0.00 +301156.SZ,0.00,0.00,0.00,28.26,0.00,28.51,0.00,30.73,0.00,0.00,0.00,35.29,0.00,0.00,0.00,35.90,0.00,0.00,0.00,37.63,0.00 +688786.SH,0.00,50.01,0.00,56.37,0.00,0.00,0.00,51.43,0.00,0.00,0.00,48.92,0.00,0.00,0.00,43.38,0.00,0.00,0.00,37.34,0.00 +688443.SH,0.00,0.00,0.00,100.00,0.00,0.00,0.00,99.95,0.00,100.00,0.00,100.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,33.11,0.00 +300442.SZ,0.00,0.00,0.00,39.10,0.00,0.00,0.00,40.64,0.00,0.00,0.00,99.71,0.00,0.00,0.00,96.44,0.00,0.00,0.00,90.82,0.00 +300417.SZ,0.00,0.00,0.00,21.68,0.00,0.00,0.00,13.43,0.00,0.00,0.00,12.18,0.00,0.00,0.00,12.71,0.00,0.00,0.00,7.27,0.00 +000922.SZ,0.00,0.00,0.00,11.24,0.00,0.00,0.00,9.10,0.00,0.00,0.00,10.52,0.00,0.00,0.00,17.09,0.00,0.00,0.00,20.70,0.00 +300419.SZ,0.00,0.00,0.00,59.67,0.00,0.00,0.00,72.74,0.00,0.00,0.00,75.65,0.00,0.00,0.00,55.24,0.00,0.00,0.00,39.70,0.00 +603759.SH,0.00,22.32,0.00,23.35,0.00,0.00,0.00,30.21,0.00,0.00,0.00,29.25,0.00,0.00,0.00,31.09,0.00,0.00,0.00,27.52,0.00 +301046.SZ,90.89,0.00,93.47,92.84,0.00,0.00,0.00,92.02,0.00,0.00,0.00,88.93,0.00,0.00,0.00,93.35,0.00,0.00,0.00,85.59,0.00 +002167.SZ,0.00,0.00,0.00,36.93,0.00,0.00,0.00,40.61,0.00,0.00,0.00,44.29,0.00,0.00,0.00,50.73,0.00,0.00,0.00,50.06,0.00 +601872.SH,0.00,0.00,0.00,35.22,0.00,0.00,0.00,5.46,0.00,0.00,0.00,17.37,0.00,0.00,0.00,27.48,0.00,0.00,0.00,24.11,0.00 +600403.SH,0.00,0.00,0.00,53.32,0.00,0.00,0.00,34.34,0.00,0.00,0.00,27.54,0.00,0.00,0.00,28.50,0.00,0.00,0.00,32.39,0.00 +600620.SH,0.00,0.00,0.00,58.49,0.00,0.00,0.00,61.98,0.00,0.00,0.00,48.13,0.00,0.00,0.00,45.99,0.00,0.00,0.00,26.96,0.00 +002800.SZ,0.00,0.00,0.00,44.26,0.00,0.00,0.00,45.12,0.00,0.00,0.00,45.11,0.00,0.00,0.00,45.06,0.00,0.00,0.00,52.02,0.00 +832802.BJ,0.00,26.93,0.00,21.26,0.00,19.55,0.00,23.65,0.00,28.15,0.00,24.21,0.00,0.00,0.00,29.42,0.00,0.00,0.00,24.63,0.00 +002681.SZ,0.00,0.00,0.00,30.45,0.00,0.00,0.00,39.11,0.00,0.00,0.00,47.18,0.00,0.00,0.00,51.70,0.00,0.00,0.00,49.63,0.00 +002725.SZ,0.00,0.00,0.00,29.43,0.00,0.00,0.00,36.67,0.00,0.00,0.00,31.70,0.00,0.00,0.00,30.42,0.00,0.00,0.00,35.60,0.00 +603506.SH,0.00,0.00,0.00,4.63,0.00,0.00,0.00,4.80,0.00,0.00,0.00,5.65,0.00,0.00,0.00,6.55,0.00,0.00,0.00,5.77,0.00 +301616.SZ,0.00,0.00,0.00,25.37,0.00,0.00,0.00,27.62,0.00,28.74,0.00,30.68,0.00,0.00,0.00,32.99,0.00,41.97,0.00,38.66,0.00 +300820.SZ,0.00,0.00,0.00,50.11,0.00,0.00,0.00,47.92,0.00,0.00,0.00,31.94,0.00,0.00,0.00,39.07,0.00,0.00,0.00,33.57,0.00 +300841.SZ,0.00,0.00,0.00,8.85,0.00,0.00,0.00,19.66,0.00,0.00,0.00,9.85,0.00,0.00,0.00,5.23,0.00,0.00,0.00,6.54,0.00 +002993.SZ,84.11,0.00,0.00,76.18,0.00,0.00,0.00,70.87,0.00,0.00,0.00,61.24,0.00,0.00,0.00,59.80,0.00,0.00,0.00,57.26,0.00 +300319.SZ,0.00,0.00,0.00,39.88,0.00,0.00,0.00,49.79,0.00,0.00,0.00,64.28,0.00,0.00,0.00,51.98,0.00,0.00,0.00,55.08,0.00 +688398.SH,0.00,0.00,0.00,68.20,0.00,0.00,0.00,60.94,0.00,0.00,0.00,66.31,0.00,0.00,0.00,65.80,0.00,0.00,0.00,65.99,0.00 +830879.BJ,0.00,0.00,0.00,35.28,0.00,29.91,0.00,32.83,0.00,35.77,0.00,28.55,0.00,0.00,0.00,34.91,0.00,0.00,0.00,33.51,0.00 +002368.SZ,0.00,0.00,0.00,16.86,0.00,0.00,0.00,21.28,0.00,0.00,0.00,12.48,0.00,0.00,0.00,25.64,0.00,0.00,0.00,15.97,0.00 +301083.SZ,0.00,34.50,0.00,38.15,0.00,0.00,0.00,34.80,0.00,0.00,0.00,36.58,0.00,0.00,0.00,35.92,0.00,0.00,0.00,26.85,0.00 +601137.SH,0.00,0.00,0.00,11.71,0.00,0.00,0.00,6.02,0.00,0.00,0.00,19.45,0.00,0.00,0.00,33.15,0.00,0.00,0.00,21.28,0.00 +300894.SZ,0.00,14.87,13.57,15.12,0.00,0.00,0.00,27.82,0.00,0.00,0.00,37.15,0.00,0.00,0.00,44.55,0.00,0.00,0.00,30.79,0.00 +300316.SZ,0.00,0.00,0.00,83.35,0.00,0.00,0.00,79.88,0.00,0.00,0.00,69.78,0.00,0.00,0.00,78.33,0.00,0.00,0.00,66.32,0.00 +603289.SH,0.00,0.00,0.00,25.82,0.00,22.50,0.00,19.12,0.00,0.00,0.00,38.56,0.00,0.00,0.00,32.25,0.00,0.00,0.00,28.85,0.00 +002789.SZ,0.00,0.00,0.00,56.89,0.00,0.00,0.00,52.11,0.00,0.00,0.00,38.90,0.00,0.00,0.00,35.65,0.00,0.00,0.00,45.13,0.00 +300945.SZ,0.00,31.85,33.95,32.63,0.00,0.00,0.00,36.63,0.00,0.00,0.00,21.51,0.00,0.00,0.00,15.52,0.00,0.00,0.00,11.00,0.00 +600133.SH,0.00,0.00,0.00,27.19,0.00,0.00,0.00,23.95,0.00,0.00,0.00,9.52,0.00,0.00,0.00,29.63,0.00,0.00,0.00,22.65,0.00 +002786.SZ,0.00,0.00,0.00,51.96,0.00,0.00,0.00,49.87,0.00,0.00,0.00,45.56,0.00,0.00,0.00,39.71,0.00,0.00,0.00,38.17,0.00 +002171.SZ,0.00,0.00,0.00,8.90,0.00,0.00,0.00,10.01,0.00,0.00,0.00,10.89,0.00,0.00,0.00,12.52,0.00,0.00,0.00,13.56,0.00 +002877.SZ,0.00,0.00,0.00,37.93,0.00,0.00,0.00,54.20,0.00,0.00,0.00,31.24,0.00,0.00,0.00,46.61,0.00,0.00,0.00,18.56,0.00 +300906.SZ,0.00,87.22,0.00,64.52,0.00,0.00,0.00,70.64,0.00,0.00,0.00,72.75,0.00,0.00,0.00,80.97,0.00,0.00,0.00,74.95,0.00 +002767.SZ,0.00,0.00,0.00,19.29,0.00,0.00,0.00,26.34,0.00,0.00,0.00,30.55,0.00,0.00,0.00,25.91,0.00,0.00,0.00,22.82,0.00 +603298.SH,0.00,0.00,0.00,8.37,0.00,0.00,0.00,10.04,0.00,0.00,0.00,9.07,0.00,0.00,0.00,8.35,0.00,0.00,0.00,6.89,0.00 +603507.SH,0.00,0.00,0.00,70.49,0.00,0.00,0.00,68.93,0.00,0.00,0.00,81.52,0.00,0.00,0.00,72.13,0.00,0.00,0.00,71.98,0.00 +300201.SZ,0.00,0.00,0.00,48.84,0.00,0.00,0.00,35.19,0.00,0.00,0.00,18.92,0.00,0.00,0.00,28.14,0.00,0.00,0.00,28.86,0.00 +300903.SZ,22.38,19.93,0.00,20.86,0.00,0.00,0.00,26.00,0.00,0.00,0.00,34.69,0.00,0.00,0.00,33.62,0.00,0.00,0.00,32.18,0.00 +300857.SZ,0.00,0.00,0.00,87.36,0.00,0.00,0.00,88.94,0.00,0.00,0.00,77.05,0.00,0.00,0.00,62.17,0.00,0.00,0.00,55.23,0.00 +002065.SZ,0.00,0.00,0.00,15.89,0.00,0.00,0.00,14.78,0.00,0.00,0.00,17.80,0.00,0.00,0.00,16.75,0.00,0.00,0.00,20.93,0.00 +000025.SZ,0.00,0.00,0.00,9.56,0.00,17.77,0.00,15.33,0.00,0.00,0.00,40.12,0.00,0.00,0.00,53.06,0.00,0.00,0.00,21.82,0.00 +300448.SZ,0.00,0.00,0.00,29.48,0.00,0.00,0.00,39.89,0.00,0.00,0.00,38.62,0.00,0.00,0.00,31.93,0.00,0.00,0.00,29.07,0.00 +002616.SZ,0.00,0.00,0.00,49.39,0.00,0.00,0.00,43.09,0.00,0.00,0.00,40.90,0.00,0.00,0.00,41.39,0.00,0.00,0.00,42.96,0.00 +300588.SZ,0.00,0.00,0.00,40.39,0.00,0.00,0.00,41.64,0.00,0.00,0.00,39.48,0.00,0.00,0.00,41.25,0.00,0.00,0.00,31.88,0.00 +002537.SZ,0.00,0.00,0.00,21.35,0.00,0.00,0.00,20.56,0.00,0.00,0.00,28.81,0.00,0.00,0.00,25.36,0.00,0.00,0.00,30.71,0.00 +300797.SZ,0.00,0.00,0.00,11.91,0.00,0.00,0.00,12.78,0.00,0.00,0.00,14.02,0.00,0.00,0.00,13.91,0.00,0.00,0.00,14.11,0.00 +000818.SZ,0.00,0.00,0.00,15.35,0.00,0.00,0.00,19.16,0.00,0.00,0.00,17.01,0.00,0.00,0.00,17.45,0.00,0.00,0.00,21.33,0.00 +601619.SH,0.00,0.00,0.00,99.81,0.00,0.00,0.00,88.95,0.00,0.00,0.00,89.80,0.00,0.00,0.00,88.08,0.00,0.00,0.00,83.99,0.00 +000953.SZ,0.00,0.00,0.00,58.98,0.00,0.00,0.00,73.49,0.00,0.00,0.00,83.18,0.00,0.00,0.00,74.26,0.00,0.00,0.00,73.82,0.00 +300958.SZ,0.00,69.35,68.14,70.94,0.00,0.00,0.00,63.43,0.00,0.00,0.00,51.04,0.00,0.00,0.00,66.03,0.00,0.00,0.00,64.78,0.00 +688103.SH,0.00,29.49,0.00,28.61,0.00,27.89,0.00,27.99,0.00,0.00,0.00,31.68,0.00,0.00,0.00,32.95,0.00,0.00,0.00,38.92,0.00 +920118.BJ,0.00,0.00,0.00,22.02,0.00,0.00,0.00,25.81,0.00,0.00,0.00,19.62,0.00,20.33,0.00,17.55,0.00,0.00,0.00,16.20,0.00 +603258.SH,0.00,0.00,0.00,22.32,0.00,0.00,0.00,14.44,0.00,0.00,0.00,11.76,0.00,0.00,0.00,15.13,0.00,0.00,0.00,12.12,0.00 +002105.SZ,0.00,0.00,0.00,32.28,0.00,0.00,0.00,30.55,0.00,0.00,0.00,28.61,0.00,0.00,0.00,35.15,0.00,0.00,0.00,38.46,0.00 +300698.SZ,0.00,0.00,0.00,39.81,0.00,0.00,0.00,41.61,0.00,0.00,0.00,43.76,0.00,0.00,0.00,55.40,0.00,0.00,0.00,53.37,0.00 +836942.BJ,0.00,0.00,0.00,56.87,0.00,0.00,0.00,67.20,0.00,73.39,0.00,70.36,0.00,0.00,0.00,70.98,0.00,0.00,0.00,60.68,0.00 +300563.SZ,0.00,0.00,0.00,36.25,0.00,0.00,0.00,43.83,0.00,0.00,0.00,36.77,0.00,0.00,0.00,47.89,0.00,0.00,0.00,0.00,0.00 +300446.SZ,0.00,0.00,0.00,47.47,0.00,0.00,0.00,31.87,0.00,0.00,0.00,37.62,0.00,0.00,0.00,72.27,0.00,0.00,0.00,70.12,0.00 +605088.SH,21.98,0.00,0.00,19.24,0.00,0.00,0.00,22.36,0.00,0.00,0.00,23.89,0.00,0.00,0.00,23.98,0.00,0.00,0.00,28.34,0.00 +600302.SH,0.00,0.00,0.00,29.25,0.00,0.00,0.00,60.14,0.00,0.00,0.00,45.84,0.00,0.00,0.00,28.10,0.00,0.00,0.00,32.48,0.00 +836433.BJ,0.00,0.00,0.00,43.47,0.00,0.00,0.00,64.77,0.00,0.00,0.00,64.59,0.00,0.00,0.00,61.05,0.00,0.00,0.00,43.88,0.00 +002057.SZ,0.00,0.00,0.00,12.09,0.00,0.00,0.00,12.48,0.00,0.00,0.00,11.28,0.00,0.00,0.00,11.25,0.00,0.00,0.00,11.59,0.00 +603381.SH,0.00,0.00,0.00,100.00,0.00,0.00,0.00,99.72,0.00,0.00,0.00,90.49,0.00,86.20,0.00,85.74,0.00,0.00,0.00,71.63,0.00 +301282.SZ,0.00,39.46,0.00,35.48,0.00,40.30,0.00,37.58,0.00,36.86,0.00,35.49,0.00,0.00,0.00,30.79,0.00,0.00,0.00,29.14,0.00 +600078.SH,0.00,0.00,0.00,13.67,0.00,12.93,0.00,6.20,0.00,21.87,0.00,19.80,0.00,16.46,0.00,18.61,0.00,23.20,0.00,20.93,0.00 +000559.SZ,0.00,0.00,0.00,21.02,0.00,0.00,0.00,25.29,0.00,0.00,0.00,31.99,0.00,0.00,0.00,38.46,0.00,0.00,0.00,39.49,0.00 +002879.SZ,0.00,0.00,0.00,45.08,0.00,0.00,0.00,44.46,0.00,0.00,0.00,41.42,0.00,0.00,0.00,40.82,0.00,0.00,0.00,26.64,0.00 +603712.SH,0.00,0.00,0.00,34.38,0.00,0.00,0.00,46.08,0.00,0.00,0.00,43.18,0.00,0.00,0.00,37.75,0.00,0.00,0.00,40.53,0.00 +688258.SH,0.00,0.00,0.00,52.93,0.00,0.00,0.00,60.24,0.00,0.00,0.00,52.61,0.00,0.00,0.00,40.79,0.00,0.00,0.00,31.81,0.00 +300449.SZ,0.00,0.00,0.00,42.11,0.00,0.00,0.00,80.16,0.00,0.00,0.00,73.25,0.00,0.00,0.00,89.76,0.00,0.00,0.00,71.39,0.00 +688475.SH,0.00,0.00,0.00,29.72,0.00,32.96,0.00,33.50,0.00,31.93,0.00,31.46,0.00,0.00,0.00,28.16,0.00,0.00,0.00,25.41,0.00 +603273.SH,0.00,43.32,0.00,38.62,0.00,45.79,0.00,38.12,0.00,36.83,0.00,27.41,56.57,39.12,0.00,34.73,0.00,0.00,0.00,37.88,0.00 +301378.SZ,0.00,0.00,0.00,19.66,0.00,30.69,0.00,18.25,0.00,18.12,0.00,22.46,0.00,0.00,0.00,21.00,0.00,0.00,0.00,24.07,0.00 +301190.SZ,0.00,68.02,0.00,69.79,0.00,58.09,53.61,52.27,0.00,0.00,0.00,54.67,0.00,0.00,0.00,57.87,0.00,0.00,0.00,69.64,0.00 +002451.SZ,0.00,0.00,0.00,28.74,0.00,0.00,0.00,26.44,0.00,0.00,0.00,25.26,0.00,0.00,0.00,46.93,0.00,0.00,0.00,44.08,0.00 +603716.SH,0.00,0.00,0.00,20.88,0.00,0.00,0.00,13.31,0.00,0.00,0.00,30.13,0.00,0.00,0.00,35.87,0.00,0.00,0.00,42.83,0.00 +000151.SZ,0.00,0.00,0.00,45.81,0.00,0.00,0.00,50.65,0.00,0.00,0.00,78.49,0.00,0.00,0.00,75.98,0.00,0.00,0.00,65.63,0.00 +002360.SZ,0.00,0.00,0.00,32.51,0.00,0.00,0.00,35.63,0.00,0.00,0.00,47.36,0.00,0.00,0.00,53.92,0.00,0.00,0.00,59.72,0.00 +839725.BJ,0.00,0.00,0.00,53.07,0.00,0.00,0.00,38.43,0.00,0.00,0.00,53.03,0.00,0.00,0.00,51.96,0.00,0.00,0.00,24.71,0.00 +300513.SZ,0.00,0.00,0.00,30.71,0.00,0.00,0.00,29.68,0.00,0.00,0.00,26.64,0.00,0.00,0.00,21.80,0.00,0.00,0.00,35.42,0.00 +300258.SZ,0.00,0.00,0.00,58.87,0.00,0.00,0.00,51.41,0.00,0.00,0.00,48.15,0.00,0.00,0.00,48.68,0.00,0.00,0.00,49.54,0.00 +002559.SZ,0.00,0.00,0.00,11.56,0.00,0.00,0.00,12.18,0.00,0.00,0.00,12.39,0.00,0.00,0.00,12.60,0.00,0.00,0.00,12.17,0.00 +603177.SH,0.00,0.00,0.00,37.57,0.00,0.00,0.00,39.07,0.00,0.00,0.00,51.82,0.00,0.00,0.00,44.39,0.00,0.00,0.00,42.93,0.00 +301257.SZ,0.00,29.24,0.00,25.51,0.00,26.39,0.00,25.67,0.00,0.00,0.00,22.86,0.00,0.00,0.00,23.07,0.00,0.00,0.00,21.18,0.00 +300554.SZ,0.00,0.00,0.00,62.19,0.00,0.00,0.00,49.46,0.00,0.00,0.00,49.19,0.00,0.00,0.00,42.18,0.00,0.00,0.00,30.72,0.00 +002266.SZ,0.00,0.00,0.00,40.61,0.00,0.00,0.00,46.86,0.00,0.00,0.00,55.78,0.00,0.00,0.00,51.67,0.00,0.00,0.00,56.16,0.00 +873001.BJ,0.00,0.00,0.00,42.36,0.00,0.00,0.00,40.13,41.48,0.00,0.00,36.90,0.00,0.00,0.00,37.76,0.00,0.00,0.00,38.25,0.00 +300238.SZ,0.00,0.00,0.00,15.59,0.00,0.00,0.00,14.64,0.00,0.00,0.00,16.85,0.00,0.00,0.00,20.09,0.00,0.00,0.00,19.92,0.00 +603505.SH,0.00,0.00,0.00,41.77,0.00,0.00,0.00,42.84,0.00,0.00,0.00,42.58,0.00,0.00,0.00,45.21,0.00,0.00,0.00,33.93,0.00 +603330.SH,0.00,0.00,0.00,19.65,0.00,0.00,0.00,15.71,0.00,0.00,0.00,37.41,0.00,0.00,0.00,32.75,0.00,0.00,0.00,30.40,0.00 +300933.SZ,0.00,29.07,0.00,21.35,0.00,0.00,0.00,24.70,0.00,0.00,0.00,16.39,0.00,0.00,0.00,23.23,0.00,0.00,0.00,22.54,0.00 +002185.SZ,0.00,0.00,0.00,17.52,0.00,0.00,0.00,16.11,0.00,0.00,0.00,18.64,0.00,0.00,0.00,17.43,0.00,0.00,0.00,19.10,0.00 +002923.SZ,0.00,0.00,0.00,21.19,0.00,19.76,0.00,17.61,0.00,22.89,0.00,19.70,0.00,19.99,0.00,18.71,0.00,0.00,0.00,19.85,0.00 +688115.SH,0.00,0.00,0.00,76.53,0.00,73.25,77.64,76.95,0.00,0.00,0.00,74.88,0.00,0.00,0.00,62.86,0.00,0.00,0.00,59.90,0.00 +603536.SH,0.00,0.00,0.00,24.17,0.00,0.00,0.00,27.51,0.00,0.00,0.00,23.21,0.00,0.00,0.00,23.33,0.00,0.00,0.00,24.95,0.00 +002745.SZ,0.00,0.00,0.00,23.56,0.00,0.00,0.00,23.70,0.00,0.00,0.00,26.24,0.00,0.00,0.00,22.57,0.00,22.82,0.00,21.46,0.00 +688556.SH,85.45,0.00,0.00,71.55,0.00,0.00,0.00,59.82,0.00,0.00,0.00,53.44,0.00,0.00,0.00,44.79,0.00,0.00,0.00,41.62,0.00 +301260.SZ,0.00,0.00,0.00,77.51,0.00,63.97,0.00,63.17,0.00,50.80,0.00,47.99,0.00,0.00,0.00,42.05,0.00,0.00,0.00,46.41,0.00 +301388.SZ,0.00,0.00,0.00,22.48,0.00,25.12,0.00,25.28,0.00,20.89,0.00,21.87,0.00,0.00,0.00,26.12,0.00,0.00,0.00,21.48,0.00 +836221.BJ,0.00,0.00,0.00,49.92,0.00,0.00,0.00,55.43,0.00,61.68,0.00,59.79,0.00,0.00,0.00,55.30,0.00,0.00,0.00,54.55,0.00 +002391.SZ,0.00,0.00,0.00,39.87,0.00,0.00,0.00,35.23,0.00,0.00,0.00,44.90,0.00,0.00,0.00,44.46,0.00,0.00,0.00,32.39,0.00 +688778.SH,0.00,89.56,0.00,88.38,0.00,0.00,0.00,87.99,0.00,0.00,0.00,85.78,0.00,0.00,0.00,77.74,0.00,0.00,0.00,77.64,0.00 +838701.BJ,0.00,0.00,0.00,67.58,0.00,0.00,0.00,64.46,0.00,65.99,0.00,63.19,0.00,0.00,0.00,66.15,0.00,0.00,0.00,63.10,0.00 +300700.SZ,0.00,0.00,0.00,50.84,0.00,0.00,0.00,47.23,0.00,0.00,0.00,64.61,0.00,0.00,0.00,68.66,0.00,0.00,0.00,54.44,0.00 +300617.SZ,0.00,0.00,0.00,77.33,0.00,0.00,0.00,64.16,0.00,0.00,0.00,69.70,0.00,0.00,0.00,49.44,0.00,0.00,0.00,57.48,0.00 +600119.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,68.94,0.00,0.00,0.00,73.61,0.00,0.00,0.00,72.20,0.00,0.00,0.00,57.19,0.00 +838402.BJ,0.00,0.00,0.00,89.01,0.00,92.49,0.00,90.26,0.00,0.00,0.00,71.83,0.00,0.00,0.00,58.16,0.00,0.00,0.00,57.72,0.00 +605055.SH,0.00,7.78,8.40,10.26,0.00,0.00,0.00,8.80,0.00,0.00,0.00,5.57,0.00,0.00,0.00,6.37,0.00,0.00,0.00,6.50,0.00 +688515.SH,0.00,0.00,0.00,67.57,0.00,0.00,0.00,59.56,0.00,59.89,0.00,54.16,0.00,0.00,0.00,54.18,0.00,0.00,0.00,56.23,0.00 +600207.SH,0.00,0.00,0.00,30.00,0.00,0.00,0.00,25.00,0.00,0.00,0.00,22.00,0.00,0.00,0.00,36.00,0.00,0.00,0.00,57.00,0.00 +300525.SZ,0.00,0.00,0.00,7.41,0.00,0.00,0.00,6.15,0.00,0.00,0.00,8.75,0.00,0.00,0.00,6.35,0.00,0.00,0.00,5.66,0.00 +834770.BJ,0.00,0.00,0.00,61.99,0.00,0.00,0.00,71.55,74.36,65.79,63.40,63.93,0.00,0.00,0.00,65.00,0.00,0.00,0.00,44.03,0.00 +300308.SZ,0.00,0.00,0.00,58.39,0.00,0.00,0.00,60.28,0.00,0.00,0.00,63.06,0.00,0.00,0.00,73.71,0.00,0.00,0.00,74.75,0.00 +837748.BJ,0.00,22.36,0.00,50.97,0.00,0.00,0.00,45.53,0.00,0.00,48.62,48.46,0.00,0.00,0.00,40.82,0.00,0.00,0.00,40.79,0.00 +688567.SH,0.00,0.00,0.00,72.99,0.00,0.00,0.00,67.04,0.00,0.00,0.00,86.71,0.00,0.00,0.00,85.22,0.00,0.00,0.00,89.46,0.00 +688067.SH,0.00,19.51,0.00,15.74,20.29,0.00,0.00,18.54,0.00,0.00,0.00,17.35,0.00,0.00,0.00,17.15,0.00,0.00,0.00,18.32,0.00 +600868.SH,0.00,0.00,0.00,70.91,0.00,0.00,0.00,41.01,0.00,0.00,0.00,42.57,0.00,0.00,0.00,63.40,0.00,0.00,0.00,76.00,0.00 +002080.SZ,0.00,0.00,0.00,47.00,0.00,32.00,0.00,36.32,0.00,0.00,0.00,31.95,0.00,0.00,0.00,33.06,0.00,0.00,0.00,33.27,0.00 +000862.SZ,0.00,0.00,0.00,84.00,0.00,0.00,0.00,89.41,0.00,0.00,0.00,92.85,0.00,0.00,0.00,97.59,0.00,0.00,0.00,99.52,0.00 +603333.SH,0.00,0.00,0.00,29.55,0.00,0.00,0.00,20.16,0.00,0.00,0.00,29.20,0.00,0.00,0.00,40.80,0.00,0.00,0.00,38.66,0.00 +002132.SZ,0.00,0.00,0.00,16.54,0.00,0.00,0.00,16.77,0.00,0.00,0.00,11.83,0.00,0.00,0.00,14.34,0.00,0.00,0.00,16.70,0.00 +603920.SH,0.00,0.00,0.00,31.71,0.00,0.00,0.00,29.06,0.00,0.00,0.00,34.21,0.00,0.00,0.00,23.68,0.00,0.00,0.00,33.69,0.00 +833914.BJ,0.00,0.00,0.00,20.77,0.00,0.00,0.00,19.84,22.34,20.05,0.00,18.35,0.00,0.00,0.00,14.74,0.00,0.00,0.00,16.32,0.00 +002885.SZ,0.00,0.00,0.00,36.66,0.00,0.00,0.00,42.73,0.00,0.00,0.00,47.99,0.00,0.00,0.00,50.82,0.00,0.00,0.00,48.92,0.00 +430478.BJ,0.00,57.16,0.00,61.68,0.00,0.00,0.00,52.60,0.00,46.75,0.00,45.05,0.00,0.00,0.00,51.64,0.00,0.00,0.00,54.59,0.00 +600626.SH,0.00,0.00,0.00,39.53,0.00,0.00,0.00,47.16,0.00,0.00,0.00,45.98,0.00,0.00,0.00,45.98,0.00,0.00,0.00,46.75,0.00 +688565.SH,0.00,0.00,90.08,69.02,0.00,0.00,0.00,50.85,0.00,0.00,0.00,61.41,0.00,0.00,0.00,54.07,0.00,0.00,0.00,38.56,0.00 +601616.SH,0.00,0.00,0.00,20.99,0.00,0.00,0.00,20.49,0.00,0.00,0.00,16.78,0.00,0.00,0.00,23.95,0.00,0.00,0.00,29.50,0.00 +873167.BJ,0.00,0.00,0.00,46.65,0.00,0.00,0.00,54.29,0.00,59.05,0.00,48.33,0.00,43.41,0.00,44.68,0.00,46.98,0.00,44.96,0.00 +001222.SZ,0.00,0.00,0.00,67.05,0.00,72.62,0.00,74.35,0.00,0.00,0.00,67.76,0.00,0.00,0.00,58.32,0.00,0.00,0.00,54.75,0.00 +600081.SH,0.00,0.00,0.00,60.72,0.00,0.00,0.00,50.32,0.00,0.00,0.00,48.48,0.00,0.00,0.00,51.90,0.00,0.00,0.00,39.89,0.00 +300471.SZ,0.00,0.00,0.00,19.23,0.00,0.00,0.00,19.61,0.00,0.00,0.00,19.93,0.00,0.00,0.00,27.49,0.00,0.00,0.00,16.40,0.00 +300686.SZ,0.00,0.00,0.00,67.62,0.00,0.00,0.00,68.66,0.00,0.00,0.00,72.07,0.00,0.00,0.00,62.98,0.00,0.00,0.00,67.72,0.00 +688262.SH,0.00,57.91,0.00,44.00,0.00,56.99,0.00,47.84,0.00,0.00,0.00,44.20,0.00,0.00,0.00,73.54,0.00,0.00,0.00,81.04,0.00 +603321.SH,0.00,0.00,0.00,8.32,0.00,0.00,0.00,9.35,0.00,0.00,0.00,8.57,0.00,0.00,0.00,8.08,0.00,0.00,0.00,11.45,0.00 +300543.SZ,0.00,0.00,0.00,67.06,0.00,0.00,0.00,64.87,0.00,0.00,0.00,68.05,0.00,0.00,0.00,60.56,0.00,0.00,0.00,63.65,0.00 +688025.SH,0.00,0.00,0.00,35.16,0.00,20.04,0.00,21.05,0.00,0.00,0.00,20.23,0.00,0.00,0.00,31.77,0.00,0.00,0.00,38.73,0.00 +301603.SZ,0.00,0.00,0.00,14.52,0.00,0.00,0.00,10.71,0.00,12.68,0.00,11.15,0.00,0.00,0.00,8.67,0.00,0.00,0.00,10.83,0.00 +603896.SH,0.00,0.00,0.00,14.60,0.00,0.00,0.00,16.10,0.00,0.00,0.00,18.50,0.00,0.00,0.00,18.71,0.00,0.00,0.00,16.46,0.00 +300160.SZ,0.00,0.00,0.00,59.18,0.00,0.00,0.00,64.08,0.00,66.84,0.00,64.53,0.00,66.81,0.00,65.87,0.00,0.00,0.00,67.71,0.00 +600051.SH,0.00,0.00,0.00,20.20,0.00,0.00,0.00,30.40,0.00,0.00,0.00,52.40,0.00,0.00,0.00,44.00,0.00,0.00,0.00,54.60,0.00 +833394.BJ,0.00,0.00,0.00,29.40,0.00,0.00,0.00,33.95,37.42,0.00,36.64,34.39,0.00,0.00,0.00,31.47,0.00,0.00,0.00,28.90,0.00 +301279.SZ,0.00,82.38,0.00,82.80,0.00,81.18,0.00,84.90,0.00,0.00,0.00,80.36,0.00,0.00,0.00,79.11,0.00,0.00,0.00,77.47,0.00 +688158.SH,0.00,0.00,0.00,33.60,0.00,0.00,0.00,35.97,0.00,0.00,0.00,21.49,0.00,0.00,0.00,20.53,0.00,0.00,0.00,23.49,0.00 +603421.SH,0.00,0.00,0.00,7.23,0.00,0.00,0.00,13.80,0.00,0.00,0.00,17.85,0.00,0.00,0.00,19.56,0.00,0.00,0.00,18.49,0.00 +834950.BJ,0.00,0.00,0.00,58.20,0.00,0.00,0.00,63.35,0.00,67.92,0.00,59.73,0.00,0.00,0.00,65.75,0.00,0.00,0.00,62.64,0.00 +300212.SZ,0.00,0.00,0.00,40.72,0.00,0.00,0.00,40.71,0.00,0.00,0.00,52.79,0.00,0.00,0.00,51.88,0.00,0.00,0.00,46.48,0.00 +001356.SZ,0.00,0.00,0.00,35.78,0.00,0.00,0.00,31.69,0.00,35.82,0.00,34.20,0.00,34.21,0.00,35.96,0.00,47.83,0.00,46.47,0.00 +002523.SZ,0.00,0.00,0.00,36.39,0.00,0.00,0.00,22.51,0.00,0.00,0.00,18.32,0.00,0.00,0.00,25.98,0.00,0.00,0.00,21.09,0.00 +300076.SZ,0.00,0.00,0.00,48.33,0.00,0.00,0.00,29.06,0.00,0.00,0.00,68.99,0.00,0.00,0.00,40.26,0.00,0.00,0.00,72.84,0.00 +300276.SZ,0.00,0.00,0.00,55.98,0.00,0.00,0.00,64.25,0.00,0.00,0.00,44.47,0.00,0.00,0.00,57.16,0.00,0.00,0.00,40.32,0.00 +002611.SZ,0.00,0.00,0.00,16.45,0.00,0.00,0.00,17.99,0.00,0.00,0.00,20.90,0.00,0.00,0.00,23.59,0.00,0.00,0.00,25.67,0.00 +688496.SH,0.00,0.00,0.00,53.27,0.00,56.33,0.00,56.69,0.00,77.00,0.00,78.92,0.00,0.00,0.00,78.19,0.00,0.00,0.00,76.66,0.00 +300467.SZ,0.00,0.00,0.00,91.72,0.00,0.00,0.00,93.96,0.00,0.00,0.00,94.28,0.00,0.00,0.00,88.33,0.00,0.00,0.00,81.95,0.00 +839719.BJ,45.82,0.00,0.00,37.03,0.00,32.83,0.00,34.13,0.00,43.36,0.00,43.05,0.00,0.00,0.00,40.38,0.00,0.00,0.00,34.53,0.00 +002283.SZ,0.00,0.00,0.00,58.19,0.00,0.00,0.00,50.33,0.00,0.00,0.00,39.60,0.00,0.00,0.00,48.03,0.00,0.00,0.00,47.08,0.00 +688080.SH,0.00,0.00,0.00,33.78,0.00,0.00,0.00,30.65,0.00,0.00,0.00,27.24,0.00,0.00,0.00,20.12,0.00,0.00,0.00,20.04,0.00 +835985.BJ,0.00,0.00,0.00,34.01,0.00,0.00,38.25,42.05,0.00,0.00,0.00,45.52,0.00,0.00,0.00,52.03,0.00,0.00,0.00,75.27,0.00 +603956.SH,0.00,0.00,0.00,14.91,0.00,0.00,0.00,14.35,0.00,0.00,0.00,11.24,0.00,0.00,0.00,11.27,0.00,0.00,0.00,15.34,0.00 +002337.SZ,0.00,0.00,0.00,60.72,0.00,0.00,0.00,56.86,0.00,0.00,0.00,65.45,0.00,0.00,0.00,55.49,0.00,0.00,0.00,52.03,0.00 +688118.SH,0.00,0.00,0.00,24.09,0.00,0.00,0.00,19.64,0.00,0.00,0.00,24.79,0.00,0.00,0.00,26.63,0.00,0.00,0.00,22.02,0.00 +688709.SH,0.00,0.00,0.00,74.65,0.00,0.00,76.65,72.85,0.00,0.00,0.00,65.26,0.00,75.50,0.00,24.67,0.00,0.00,0.00,24.90,0.00 +600609.SH,0.00,0.00,0.00,87.93,0.00,0.00,0.00,84.64,0.00,0.00,0.00,93.47,0.00,0.00,0.00,91.49,0.00,0.00,0.00,93.64,0.00 +002493.SZ,0.00,0.00,0.00,26.85,0.00,0.00,0.00,20.73,0.00,0.00,0.00,17.20,0.00,0.00,0.00,21.18,0.00,0.00,0.00,19.80,0.00 +002654.SZ,0.00,0.00,0.00,21.83,0.00,0.00,0.00,16.31,0.00,0.00,0.00,21.87,0.00,0.00,0.00,24.14,0.00,0.00,0.00,20.84,0.00 +301512.SZ,0.00,0.00,0.00,90.36,0.00,90.96,0.00,91.88,0.00,0.00,0.00,84.26,0.00,0.00,0.00,89.24,0.00,0.00,0.00,80.20,0.00 +002489.SZ,0.00,0.00,0.00,46.13,0.00,0.00,0.00,45.66,0.00,0.00,0.00,49.58,0.00,0.00,0.00,55.99,0.00,0.00,0.00,51.03,0.00 +834021.BJ,0.00,0.00,0.00,49.20,0.00,0.00,0.00,56.69,0.00,0.00,0.00,45.15,0.00,0.00,0.00,42.84,0.00,0.00,0.00,41.09,0.00 +688027.SH,0.00,0.00,0.00,73.44,0.00,0.00,0.00,74.71,0.00,0.00,0.00,62.85,0.00,0.00,0.00,54.95,0.00,0.00,0.00,54.40,0.00 +300579.SZ,0.00,0.00,0.00,14.08,0.00,0.00,0.00,12.21,0.00,0.00,0.00,18.11,0.00,0.00,0.00,15.90,0.00,0.00,0.00,18.46,0.00 +300730.SZ,0.00,0.00,0.00,26.28,0.00,0.00,0.00,28.67,0.00,0.00,0.00,36.92,0.00,0.00,0.00,30.69,0.00,0.00,0.00,29.79,0.00 +000901.SZ,0.00,0.00,0.00,30.36,0.00,0.00,0.00,32.69,0.00,0.00,0.00,28.60,0.00,0.00,0.00,31.74,0.00,0.00,0.00,28.06,0.00 +600805.SH,0.00,0.00,0.00,19.26,0.00,0.00,0.00,18.88,0.00,0.00,0.00,19.50,0.00,0.00,0.00,18.32,0.00,0.00,0.00,25.20,0.00 +000628.SZ,0.00,0.00,0.00,81.94,0.00,0.00,0.00,94.23,0.00,0.00,0.00,94.48,0.00,0.00,0.00,95.40,0.00,0.00,0.00,97.53,0.00 +301132.SZ,0.00,0.00,0.00,67.02,0.00,70.00,0.00,61.82,0.00,0.00,0.00,46.83,0.00,0.00,0.00,34.94,0.00,0.00,0.00,35.92,0.00 +688362.SH,0.00,0.00,0.00,43.50,0.00,42.73,0.00,43.97,0.00,46.82,0.00,42.18,0.00,0.00,0.00,38.38,0.00,0.00,0.00,37.65,0.00 +688633.SH,0.00,44.85,0.00,23.02,0.00,0.00,0.00,19.89,0.00,0.00,0.00,31.14,0.00,0.00,0.00,15.51,0.00,0.00,0.00,25.57,0.00 +920060.BJ,0.00,0.00,0.00,42.54,0.00,0.00,44.90,44.83,0.00,0.00,0.00,46.75,0.00,46.89,0.00,47.06,0.00,43.58,0.00,42.74,0.00 +603980.SH,0.00,0.00,0.00,11.55,0.00,0.00,0.00,10.87,0.00,0.00,0.00,8.03,0.00,0.00,0.00,13.23,0.00,0.00,0.00,12.74,0.00 +301566.SZ,0.00,0.00,0.00,45.60,0.00,44.72,0.00,46.64,0.00,57.59,0.00,53.08,0.00,44.51,0.00,38.69,0.00,0.00,0.00,27.93,0.00 +301058.SZ,0.00,45.80,0.00,32.10,0.00,0.00,0.00,15.54,0.00,0.00,0.00,23.44,0.00,0.00,0.00,8.96,0.00,0.00,0.00,14.15,0.00 +301626.SZ,0.00,0.00,0.00,49.34,0.00,0.00,0.00,40.40,0.00,33.34,0.00,32.88,0.00,41.91,0.00,41.36,0.00,43.02,0.00,41.80,0.00 +002716.SZ,0.00,0.00,0.00,51.65,0.00,0.00,0.00,52.14,0.00,0.00,0.00,38.70,0.00,0.00,0.00,54.66,0.00,0.00,0.00,53.83,0.00 +300655.SZ,0.00,0.00,0.00,21.25,0.00,0.00,0.00,27.28,0.00,0.00,0.00,26.64,0.00,0.00,0.00,24.50,0.00,0.00,0.00,27.73,0.00 +002856.SZ,0.00,0.00,0.00,39.22,0.00,0.00,0.00,41.22,0.00,0.00,0.00,53.86,0.00,0.00,0.00,36.10,0.00,0.00,0.00,58.50,0.00 +300304.SZ,0.00,0.00,0.00,36.55,0.00,0.00,0.00,29.58,0.00,0.00,0.00,33.40,0.00,0.00,0.00,42.38,0.00,0.00,0.00,38.59,0.00 +300371.SZ,0.00,0.00,0.00,17.28,0.00,0.00,0.00,15.79,0.00,0.00,0.00,26.30,0.00,0.00,0.00,18.84,0.00,0.00,0.00,22.28,0.00 +002927.SZ,0.00,0.00,0.00,27.63,0.00,0.00,0.00,20.38,0.00,0.00,0.00,24.94,0.00,0.00,0.00,27.92,0.00,0.00,0.00,13.99,0.00 +002237.SZ,0.00,0.00,0.00,67.03,0.00,0.00,0.00,51.95,0.00,0.00,0.00,49.60,0.00,0.00,0.00,65.82,0.00,0.00,0.00,80.25,0.00 +300971.SZ,0.00,70.84,0.00,58.71,0.00,0.00,0.00,53.14,0.00,0.00,0.00,44.16,0.00,0.00,0.00,41.63,0.00,0.00,0.00,43.79,0.00 +000962.SZ,0.00,0.00,0.00,39.37,0.00,0.00,0.00,41.34,0.00,0.00,0.00,46.10,0.00,0.00,0.00,31.28,0.00,0.00,0.00,36.50,0.00 +301317.SZ,0.00,0.00,0.00,31.61,0.00,36.54,0.00,37.98,0.00,37.47,0.00,32.07,0.00,0.00,0.00,27.42,0.00,0.00,0.00,23.41,0.00 +601156.SH,0.00,0.00,0.00,17.44,0.00,0.00,0.00,5.64,0.00,0.00,0.00,17.32,0.00,0.00,0.00,25.08,0.00,0.00,0.00,30.50,0.00 +688238.SH,0.00,0.00,0.00,51.23,0.00,51.85,45.33,0.00,0.00,0.00,0.00,33.54,0.00,0.00,0.00,23.19,0.00,0.00,0.00,21.54,0.00 +300088.SZ,0.00,0.00,0.00,64.12,0.00,0.00,0.00,61.72,0.00,0.00,0.00,66.51,0.00,0.00,0.00,65.55,0.00,0.00,0.00,58.40,0.00 +603906.SH,0.00,0.00,0.00,21.99,0.00,0.00,0.00,42.91,0.00,0.00,0.00,84.19,0.00,0.00,0.00,64.47,0.00,0.00,0.00,67.19,0.00 +601698.SH,0.00,0.00,0.00,30.15,0.00,0.00,0.00,30.74,0.00,0.00,0.00,29.67,0.00,0.00,0.00,29.81,0.00,0.00,0.00,31.41,0.00 +002218.SZ,0.00,0.00,0.00,49.75,0.00,0.00,0.00,39.45,0.00,0.00,0.00,40.80,0.00,0.00,0.00,50.22,0.00,0.00,0.00,60.16,0.00 +000803.SZ,0.00,0.00,0.00,52.00,0.00,0.00,0.00,43.12,0.00,0.00,0.00,39.70,0.00,0.00,0.00,64.49,0.00,0.00,0.00,58.65,0.00 +600686.SH,0.00,0.00,0.00,13.23,0.00,0.00,0.00,18.80,0.00,0.00,0.00,15.46,0.00,0.00,0.00,16.49,0.00,0.00,0.00,14.54,0.00 +600988.SH,0.00,0.00,0.00,65.78,0.00,0.00,0.00,77.89,0.00,0.00,0.00,85.38,0.00,0.00,0.00,77.07,0.00,0.00,0.00,77.03,0.00 +920008.BJ,0.00,0.00,0.00,83.41,0.00,99.75,0.00,98.08,0.00,99.79,0.00,97.08,76.64,0.00,0.00,95.77,0.00,0.00,0.00,97.96,0.00 +300243.SZ,0.00,0.00,0.00,33.25,0.00,0.00,0.00,27.98,0.00,0.00,0.00,19.30,0.00,0.00,0.00,19.76,0.00,0.00,0.00,21.18,0.00 +300535.SZ,0.00,0.00,0.00,29.78,0.00,0.00,0.00,28.94,0.00,0.00,0.00,16.05,0.00,0.00,0.00,21.45,0.00,0.00,0.00,26.32,0.00 +605555.SH,0.00,99.39,0.00,99.27,0.00,0.00,0.00,80.46,0.00,0.00,0.00,74.88,0.00,0.00,0.00,97.34,0.00,0.00,0.00,94.74,0.00 +300611.SZ,0.00,0.00,0.00,42.68,0.00,0.00,0.00,33.87,0.00,0.00,0.00,31.34,0.00,0.00,0.00,30.53,0.00,0.00,0.00,32.20,0.00 +301326.SZ,0.00,0.00,0.00,81.03,0.00,81.82,0.00,77.63,0.00,72.99,0.00,73.97,0.00,0.00,0.00,72.52,0.00,0.00,0.00,56.30,0.00 +301218.SZ,0.00,48.38,0.00,37.24,0.00,56.49,0.00,35.09,0.00,0.00,0.00,41.20,0.00,0.00,0.00,49.33,0.00,0.00,0.00,45.82,0.00 +603690.SH,0.00,0.00,0.00,25.85,0.00,0.00,0.00,41.28,0.00,0.00,0.00,28.68,0.00,0.00,0.00,32.04,0.00,0.00,0.00,62.66,0.00 +600120.SH,0.00,0.00,0.00,25.65,0.00,0.00,0.00,0.00,0.00,0.00,0.00,16.25,0.00,0.00,0.00,15.12,0.00,0.00,0.00,18.39,0.00 +688210.SH,0.00,75.15,0.00,75.15,0.00,76.06,0.00,73.93,0.00,0.00,0.00,74.71,0.00,0.00,0.00,73.31,0.00,0.00,0.00,71.86,0.00 +002949.SZ,0.00,0.00,0.00,41.95,0.00,0.00,0.00,48.66,0.00,0.00,0.00,37.45,0.00,0.00,0.00,36.49,0.00,0.00,0.00,33.90,0.00 +300397.SZ,0.00,0.00,0.00,84.45,0.00,0.00,0.00,71.54,0.00,0.00,0.00,66.90,0.00,0.00,0.00,69.37,0.00,0.00,0.00,65.12,0.00 +603825.SH,0.00,0.00,0.00,48.55,0.00,0.00,0.00,46.50,0.00,0.00,0.00,44.39,0.00,0.00,0.00,47.25,0.00,0.00,0.00,49.61,0.00 +603328.SH,0.00,0.00,0.00,36.81,0.00,0.00,0.00,35.44,0.00,0.00,0.00,36.14,0.00,0.00,0.00,38.05,0.00,0.00,0.00,38.81,0.00 +300891.SZ,0.00,36.06,0.00,36.70,0.00,0.00,0.00,38.61,0.00,0.00,0.00,39.04,0.00,0.00,0.00,38.35,0.00,0.00,0.00,43.18,0.00 +836547.BJ,0.00,28.66,0.00,31.32,0.00,31.20,0.00,41.88,0.00,0.00,34.55,32.29,0.00,33.08,0.00,30.14,0.00,0.00,0.00,25.76,0.00 +600654.SH,0.00,0.00,0.00,5.17,0.00,0.00,0.00,5.71,0.00,0.00,0.00,10.86,0.00,0.00,0.00,6.02,0.00,0.00,0.00,9.27,0.00 +002495.SZ,0.00,0.00,0.00,79.90,0.00,79.74,0.00,78.12,0.00,0.00,0.00,71.07,0.00,55.83,0.00,64.14,0.00,82.11,0.00,39.09,0.00 +603729.SH,0.00,0.00,0.00,61.98,0.00,0.00,0.00,66.63,0.00,0.00,0.00,50.01,0.00,0.00,0.00,48.34,0.00,0.00,0.00,40.26,0.00 +300605.SZ,0.00,0.00,0.00,65.52,0.00,0.00,0.00,56.76,0.00,0.00,0.00,44.25,0.00,0.00,0.00,48.15,0.00,0.00,0.00,36.18,0.00 +301323.SZ,0.00,0.00,0.00,13.69,0.00,13.09,0.00,13.57,0.00,11.69,0.00,11.29,14.28,0.00,0.00,12.02,0.00,0.00,0.00,12.64,0.00 +688620.SH,0.00,0.00,0.00,65.59,0.00,0.00,0.00,49.96,0.00,59.09,0.00,56.00,73.51,0.00,0.00,68.58,0.00,0.00,0.00,69.59,0.00 +600082.SH,0.00,0.00,0.00,87.42,0.00,0.00,0.00,81.30,0.00,0.00,0.00,98.43,0.00,0.00,0.00,92.93,0.00,0.00,0.00,93.22,0.00 +688056.SH,0.00,21.69,0.00,18.95,0.00,0.00,0.00,22.20,0.00,0.00,0.00,22.22,0.00,0.00,0.00,23.08,0.00,0.00,0.00,22.38,0.00 +688300.SH,0.00,0.00,0.00,43.77,0.00,0.00,0.00,48.09,0.00,0.00,0.00,48.96,0.00,0.00,0.00,42.02,0.00,0.00,0.00,44.34,0.00 +000717.SZ,0.00,0.00,0.00,60.60,0.00,0.00,0.00,47.41,0.00,0.00,0.00,50.36,0.00,0.00,0.00,42.30,0.00,0.00,0.00,34.04,0.00 +603178.SH,0.00,0.00,0.00,84.48,0.00,0.00,0.00,81.11,0.00,0.00,0.00,78.33,0.00,0.00,0.00,77.72,0.00,0.00,0.00,65.93,0.00 +600746.SH,0.00,0.00,0.00,25.64,0.00,0.00,0.00,27.81,0.00,0.00,0.00,24.45,0.00,0.00,0.00,30.67,0.00,0.00,0.00,25.94,0.00 +300457.SZ,0.00,0.00,0.00,34.84,0.00,0.00,0.00,61.26,0.00,0.00,0.00,64.94,0.00,0.00,0.00,33.24,0.00,0.00,0.00,37.29,0.00 +002046.SZ,0.00,0.00,0.00,16.39,0.00,0.00,0.00,18.48,0.00,0.00,0.00,20.92,0.00,0.00,0.00,13.17,0.00,0.00,0.00,26.88,0.00 +603665.SH,0.00,0.00,0.00,37.99,0.00,0.00,0.00,31.60,0.00,0.00,0.00,29.98,0.00,0.00,0.00,32.53,0.00,0.00,0.00,22.25,0.00 +002361.SZ,0.00,0.00,0.00,24.68,0.00,0.00,0.00,24.39,0.00,0.00,0.00,22.18,0.00,0.00,0.00,21.61,0.00,0.00,0.00,20.56,0.00 +600389.SH,0.00,0.00,0.00,33.51,0.00,0.00,0.00,37.31,0.00,0.00,0.00,31.50,0.00,0.00,0.00,14.50,0.00,0.00,0.00,12.01,0.00 +603928.SH,0.00,0.00,0.00,15.55,0.00,0.00,0.00,8.61,0.00,7.59,0.00,7.95,0.00,9.65,0.00,8.13,0.00,0.00,0.00,8.46,0.00 +000045.SZ,0.00,0.00,0.00,63.86,0.00,0.00,0.00,69.75,0.00,0.00,0.00,54.28,0.00,0.00,0.00,69.85,0.00,0.00,0.00,71.31,0.00 +600271.SH,0.00,0.00,0.00,32.09,0.00,0.00,0.00,29.33,0.00,0.00,0.00,31.48,0.00,0.00,0.00,6.68,0.00,0.00,0.00,10.19,0.00 +002922.SZ,0.00,0.00,0.00,31.31,0.00,0.00,0.00,36.29,0.00,0.00,0.00,45.32,0.00,0.00,0.00,56.22,0.00,0.00,0.00,51.80,0.00 +000617.SZ,0.00,0.00,0.00,23.92,0.00,0.00,0.00,21.70,0.00,0.00,0.00,21.27,0.00,0.00,0.00,16.09,0.00,0.00,0.00,14.92,0.00 +603516.SH,0.00,0.00,0.00,19.87,0.00,0.00,0.00,12.23,0.00,0.00,0.00,16.81,0.00,0.00,0.00,21.58,0.00,0.00,0.00,29.86,0.00 +002250.SZ,0.00,0.00,0.00,56.94,0.00,0.00,0.00,64.34,0.00,0.00,0.00,65.04,0.00,0.00,0.00,57.74,0.00,0.00,0.00,57.81,0.00 +603660.SH,0.00,0.00,0.00,13.03,0.00,0.00,0.00,10.92,0.00,0.00,0.00,10.21,0.00,0.00,0.00,15.03,0.00,0.00,0.00,16.75,0.00 +000826.SZ,0.00,0.00,0.00,5.79,0.00,0.00,0.00,6.02,0.00,0.00,0.00,6.68,0.00,0.00,0.00,9.91,0.00,0.00,0.00,10.49,0.00 +603089.SH,0.00,0.00,0.00,47.14,0.00,0.00,0.00,44.39,0.00,0.00,0.00,38.21,0.00,0.00,0.00,41.86,0.00,0.00,0.00,40.68,0.00 +600481.SH,0.00,0.00,0.00,28.55,0.00,0.00,0.00,27.93,0.00,0.00,0.00,21.64,0.00,0.00,0.00,36.32,0.00,0.00,0.00,30.94,0.00 +002470.SZ,0.00,0.00,0.00,20.83,0.00,0.00,0.00,20.13,0.00,0.00,0.00,15.54,0.00,0.00,0.00,9.77,0.00,0.00,0.00,9.01,0.00 +603992.SH,0.00,0.00,0.00,54.95,0.00,0.00,0.00,46.34,0.00,0.00,0.00,38.45,0.00,0.00,0.00,39.10,0.00,0.00,0.00,38.11,0.00 +300321.SZ,0.00,0.00,0.00,30.92,0.00,0.00,0.00,29.46,0.00,0.00,0.00,26.18,0.00,0.00,0.00,24.24,0.00,0.00,0.00,36.83,0.00 +688663.SH,0.00,15.84,0.00,12.51,0.00,0.00,0.00,9.42,0.00,0.00,0.00,20.34,0.00,0.00,0.00,23.00,0.00,0.00,0.00,20.52,0.00 +002388.SZ,0.00,0.00,0.00,77.68,0.00,0.00,0.00,68.16,0.00,0.00,0.00,63.36,0.00,0.00,0.00,50.17,0.00,0.00,0.00,57.49,0.00 +603355.SH,0.00,0.00,0.00,41.97,0.00,0.00,0.00,37.05,0.00,0.00,0.00,35.39,0.00,0.00,0.00,33.72,0.00,0.00,0.00,36.14,0.00 +000785.SZ,0.00,0.00,0.00,2.16,0.00,0.00,0.00,9.02,0.00,0.00,0.00,5.49,0.00,0.00,0.00,11.12,0.00,0.00,0.00,12.44,0.00 +300075.SZ,0.00,0.00,0.00,19.37,0.00,0.00,0.00,13.03,0.00,0.00,0.00,15.22,0.00,0.00,0.00,11.70,0.00,0.00,0.00,12.53,0.00 +000931.SZ,0.00,0.00,0.00,14.86,0.00,0.00,0.00,15.31,0.00,0.00,0.00,10.01,0.00,0.00,0.00,9.71,0.00,0.00,0.00,12.24,0.00 +600732.SH,0.00,0.00,0.00,42.93,0.00,0.00,0.00,48.48,0.00,0.00,0.00,52.28,0.00,0.00,0.00,50.67,0.00,0.00,0.00,23.10,0.00 +688371.SH,0.00,0.00,0.00,84.46,73.68,0.00,73.43,79.97,0.00,0.00,0.00,77.69,0.00,0.00,0.00,62.94,0.00,0.00,0.00,67.56,0.00 +873690.BJ,0.00,0.00,0.00,89.80,0.00,0.00,75.29,81.42,0.00,0.00,0.00,79.39,88.62,77.38,0.00,74.79,0.00,0.00,0.00,79.53,0.00 +600830.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +831855.BJ,0.00,0.00,0.00,48.05,0.00,0.00,0.00,47.68,53.17,41.88,40.26,39.43,0.00,0.00,0.00,38.60,0.00,0.00,0.00,33.24,0.00 +300678.SZ,0.00,0.00,0.00,34.89,0.00,0.00,0.00,19.60,0.00,0.00,0.00,34.30,0.00,0.00,0.00,32.23,0.00,0.00,0.00,22.42,0.00 +688022.SH,0.00,0.00,0.00,46.62,0.00,0.00,0.00,48.04,0.00,0.00,0.00,48.55,0.00,0.00,0.00,44.37,0.00,0.00,0.00,54.86,0.00 +301319.SZ,0.00,0.00,0.00,15.57,0.00,18.05,0.00,17.56,0.00,0.00,0.00,15.87,0.00,0.00,0.00,16.38,0.00,0.00,0.00,16.83,0.00 +300138.SZ,0.00,0.00,0.00,11.91,0.00,3.99,0.00,10.64,0.00,0.00,0.00,14.26,0.00,0.00,0.00,12.84,0.00,2.47,0.00,10.31,0.00 +002027.SZ,0.00,0.00,0.00,18.78,0.00,0.00,0.00,20.57,0.00,0.00,0.00,18.63,0.00,0.00,0.00,20.29,0.00,0.00,0.00,25.82,0.00 +300107.SZ,0.00,0.00,0.00,33.04,0.00,0.00,0.00,33.43,0.00,0.00,0.00,39.28,0.00,0.00,0.00,25.07,0.00,0.00,0.00,21.67,0.00 +300620.SZ,0.00,0.00,0.00,26.14,0.00,0.00,0.00,26.16,0.00,0.00,0.00,25.99,0.00,0.00,0.00,37.05,0.00,0.00,0.00,38.12,0.00 +002741.SZ,0.00,0.00,0.00,24.99,0.00,0.00,0.00,18.65,0.00,0.00,0.00,35.01,0.00,0.00,0.00,26.97,0.00,0.00,0.00,15.79,0.00 +002213.SZ,0.00,0.00,0.00,51.97,0.00,0.00,0.00,58.09,0.00,0.00,0.00,77.16,0.00,0.00,0.00,52.78,0.00,0.00,0.00,40.97,0.00 +301596.SZ,0.00,0.00,0.00,34.47,0.00,0.00,0.00,26.48,0.00,24.64,0.00,23.21,0.00,23.29,0.00,24.70,0.00,0.00,0.00,21.14,0.00 +301285.SZ,0.00,0.00,0.00,48.99,0.00,48.75,0.00,48.96,0.00,0.00,0.00,55.56,0.00,0.00,0.00,51.73,0.00,0.00,0.00,55.22,0.00 +603819.SH,0.00,0.00,0.00,52.02,0.00,0.00,0.00,44.46,0.00,0.00,0.00,50.45,0.00,0.00,0.00,46.17,0.00,0.00,0.00,51.27,0.00 +002660.SZ,0.00,0.00,0.00,27.62,0.00,0.00,0.00,24.73,0.00,0.00,0.00,20.53,0.00,0.00,0.00,19.54,0.00,0.00,0.00,18.06,0.00 +301617.SZ,0.00,0.00,0.00,35.09,0.00,0.00,0.00,38.69,0.00,48.68,0.00,46.09,0.00,44.85,0.00,38.65,0.00,39.93,41.39,40.42,0.00 +301227.SZ,0.00,35.31,0.00,22.31,0.00,37.46,0.00,19.25,0.00,22.89,0.00,20.26,0.00,0.00,0.00,17.60,0.00,0.00,0.00,27.67,0.00 +001324.SZ,0.00,0.00,0.00,73.10,0.00,76.03,0.00,73.02,0.00,69.58,0.00,66.73,0.00,0.00,0.00,64.73,0.00,0.00,0.00,68.26,0.00 +300670.SZ,0.00,0.00,0.00,55.57,0.00,0.00,0.00,50.65,0.00,0.00,0.00,56.38,0.00,0.00,0.00,52.46,0.00,0.00,0.00,58.33,0.00 +300235.SZ,0.00,0.00,0.00,50.54,0.00,0.00,0.00,49.35,0.00,0.00,0.00,50.44,0.00,0.00,0.00,46.96,0.00,0.00,0.00,45.63,0.00 +835237.BJ,0.00,0.00,0.00,52.86,0.00,0.00,0.00,50.47,0.00,55.21,0.00,53.18,0.00,0.00,0.00,56.90,0.00,0.00,0.00,53.24,0.00 +600095.SH,0.00,0.00,0.00,73.03,0.00,0.00,0.00,55.77,0.00,0.00,0.00,56.57,0.00,0.00,0.00,92.12,0.00,0.00,0.00,94.03,0.00 +603378.SH,0.00,0.00,0.00,10.45,0.00,0.00,0.00,6.20,0.00,0.00,0.00,3.71,0.00,0.00,0.00,4.70,0.00,0.00,0.00,4.65,0.00 +301202.SZ,0.00,0.00,0.00,34.65,32.88,0.00,35.16,33.77,0.00,0.00,0.00,28.22,0.00,0.00,0.00,35.20,0.00,0.00,0.00,38.14,0.00 +688072.SH,0.00,0.00,0.00,83.60,99.81,0.00,92.43,0.00,0.00,0.00,0.00,67.81,0.00,0.00,0.00,58.24,0.00,0.00,0.00,62.33,0.00 +002700.SZ,0.00,0.00,0.00,6.14,0.00,0.00,0.00,7.37,0.00,0.00,0.00,7.03,0.00,0.00,0.00,9.19,0.00,0.00,0.00,6.95,0.00 +300577.SZ,0.00,0.00,0.00,61.32,0.00,0.00,0.00,55.98,0.00,0.00,0.00,56.63,0.00,0.00,0.00,57.01,0.00,0.00,0.00,57.69,0.00 +301263.SZ,0.00,35.32,0.00,32.02,0.00,37.91,0.00,41.34,0.00,0.00,0.00,39.45,0.00,0.00,0.00,42.34,0.00,0.00,0.00,44.02,0.00 +002276.SZ,0.00,0.00,0.00,8.51,0.00,0.00,0.00,10.69,0.00,0.00,0.00,9.20,0.00,0.00,0.00,24.03,0.00,0.00,0.00,20.21,0.00 +301036.SZ,0.00,11.22,0.00,11.39,0.00,0.00,0.00,11.15,0.00,0.00,0.00,10.03,0.00,0.00,0.00,12.12,0.00,0.00,0.00,14.40,0.00 +002652.SZ,0.00,0.00,0.00,33.58,0.00,0.00,0.00,34.35,0.00,0.00,0.00,46.90,0.00,0.00,0.00,52.49,0.00,0.00,0.00,55.85,0.00 +600106.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +601162.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +301585.SZ,0.00,0.00,0.00,47.17,0.00,0.00,0.00,36.51,41.80,0.00,0.00,40.28,0.00,35.14,0.00,33.79,0.00,28.29,0.00,27.75,0.00 +603285.SH,0.00,0.00,0.00,41.83,0.00,0.00,0.00,43.87,0.00,41.43,0.00,40.99,0.00,0.00,0.00,41.03,47.46,0.00,0.00,44.37,0.00 +688750.SH,0.00,0.00,0.00,79.44,0.00,0.00,0.00,69.53,0.00,0.00,0.00,72.57,0.00,84.44,0.00,78.96,0.00,80.64,0.00,79.79,0.00 +300892.SZ,0.00,0.00,0.00,52.18,0.00,50.44,0.00,46.17,0.00,0.00,0.00,37.52,0.00,0.00,0.00,41.38,0.00,0.00,0.00,41.24,0.00 +301177.SZ,0.00,0.17,0.00,0.13,0.00,0.11,0.00,0.07,0.00,0.00,0.00,0.09,0.00,0.00,0.00,0.12,0.00,0.00,0.00,0.38,0.00 +002692.SZ,0.00,0.00,0.00,24.52,0.00,0.00,0.00,26.09,0.00,0.00,0.00,26.68,0.00,0.00,0.00,24.98,0.00,0.00,0.00,25.68,0.00 +300648.SZ,0.00,0.00,0.00,61.18,0.00,0.00,0.00,65.19,0.00,0.00,0.00,73.75,0.00,0.00,0.00,59.23,0.00,0.00,0.00,56.36,0.00 +002354.SZ,0.00,0.00,0.00,46.72,0.00,0.00,0.00,56.22,0.00,0.00,0.00,32.94,0.00,0.00,0.00,17.94,0.00,0.00,0.00,25.21,0.00 +001217.SZ,0.00,11.46,0.00,11.53,0.00,17.70,0.00,22.48,0.00,0.00,0.00,16.95,0.00,0.00,0.00,14.65,0.00,0.00,0.00,13.25,0.00 +002775.SZ,0.00,0.00,0.00,78.96,0.00,0.00,0.00,75.82,0.00,0.00,0.00,32.60,0.00,0.00,0.00,41.52,0.00,0.00,0.00,34.52,0.00 +300741.SZ,0.00,0.00,0.00,54.29,0.00,0.00,0.00,45.72,0.00,0.00,0.00,39.60,0.00,0.00,0.00,28.09,0.00,0.00,0.00,23.66,0.00 +603787.SH,0.00,0.00,0.00,44.72,0.00,0.00,0.00,7.46,0.00,0.00,0.00,3.94,0.00,0.00,0.00,10.14,0.00,0.00,0.00,14.41,0.00 +300096.SZ,0.00,0.00,0.00,13.37,0.00,0.00,0.00,9.33,0.00,0.00,0.00,12.19,0.00,0.00,0.00,9.19,0.00,0.00,0.00,22.72,0.00 +300609.SZ,0.00,0.00,0.00,35.93,0.00,0.00,0.00,18.81,0.00,0.00,0.00,24.95,0.00,0.00,0.00,22.16,0.00,0.00,0.00,21.20,0.00 +833266.BJ,0.00,0.00,0.00,20.97,0.00,0.00,0.00,17.60,0.00,0.00,0.00,15.00,0.00,0.00,0.00,20.17,0.00,0.00,0.00,25.22,0.00 +002245.SZ,0.00,0.00,0.00,26.33,0.00,0.00,0.00,24.35,0.00,0.00,0.00,23.46,0.00,0.00,0.00,15.04,0.00,0.00,0.00,19.69,0.00 +300384.SZ,0.00,0.00,0.00,48.56,0.00,0.00,0.00,47.69,0.00,0.00,0.00,47.02,0.00,0.00,0.00,52.13,0.00,0.00,0.00,46.86,0.00 +603188.SH,0.00,0.00,0.00,47.18,0.00,0.00,0.00,20.46,0.00,0.00,0.00,18.57,0.00,0.00,0.00,12.80,0.00,0.00,0.00,16.43,0.00 +300691.SZ,0.00,0.00,0.00,70.34,0.00,0.00,0.00,71.05,0.00,0.00,0.00,63.60,0.00,0.00,0.00,65.36,0.00,0.00,0.00,56.80,0.00 +300497.SZ,0.00,0.00,0.00,43.26,0.00,0.00,0.00,49.88,0.00,0.00,0.00,38.52,0.00,0.00,0.00,48.48,0.00,0.00,0.00,43.17,0.00 +600933.SH,0.00,0.00,0.00,50.56,0.00,45.35,0.00,45.48,0.00,0.00,0.00,40.07,0.00,0.00,0.00,35.82,0.00,0.00,0.00,38.60,0.00 +603636.SH,0.00,0.00,0.00,29.25,0.00,0.00,0.00,32.32,0.00,0.00,0.00,33.74,0.00,0.00,0.00,30.96,0.00,0.00,0.00,33.66,0.00 +000688.SZ,0.00,0.00,0.00,75.48,0.00,0.00,0.00,68.73,0.00,0.00,0.00,69.33,0.00,0.00,0.00,72.85,0.00,0.00,0.00,55.72,0.00 +002529.SZ,0.00,0.00,0.00,40.14,0.00,0.00,0.00,56.97,0.00,0.00,0.00,69.75,0.00,0.00,0.00,48.33,0.00,0.00,0.00,59.89,0.00 +873703.BJ,0.00,0.00,0.00,65.86,0.00,0.00,76.26,75.03,0.00,0.00,0.00,53.67,88.72,77.23,65.30,54.35,0.00,0.00,0.00,57.38,0.00 +300510.SZ,0.00,0.00,0.00,13.32,0.00,0.00,0.00,22.97,0.00,0.00,0.00,43.85,0.00,0.00,0.00,56.82,0.00,0.00,0.00,64.45,0.00 +002312.SZ,0.00,0.00,0.00,12.38,0.00,0.00,0.00,12.26,0.00,0.00,0.00,9.55,0.00,0.00,0.00,9.72,0.00,0.00,0.00,9.13,0.00 +600581.SH,0.00,0.00,0.00,32.18,0.00,0.00,0.00,38.90,0.00,0.00,0.00,26.13,0.00,0.00,0.00,28.63,0.00,0.00,0.00,19.09,0.00 +300985.SZ,93.99,0.00,94.52,93.97,0.00,0.00,0.00,57.87,0.00,0.00,0.00,58.89,0.00,0.00,0.00,64.12,0.00,0.00,0.00,74.53,0.00 +000021.SZ,0.00,0.00,0.00,55.08,0.00,0.00,0.00,53.29,0.00,0.00,0.00,54.65,0.00,0.00,0.00,57.33,0.00,0.00,0.00,52.40,0.00 +002526.SZ,0.00,0.00,0.00,17.75,0.00,0.00,0.00,17.55,0.00,0.00,0.00,22.25,0.00,0.00,0.00,18.92,0.00,0.00,0.00,21.69,0.00 +301090.SZ,28.37,0.00,0.00,24.47,0.00,26.03,0.00,26.79,0.00,0.00,0.00,25.72,0.00,0.00,0.00,25.88,0.00,0.00,0.00,21.07,0.00 +301297.SZ,0.00,0.00,0.00,71.87,0.00,69.91,0.00,67.39,0.00,64.36,64.83,61.70,0.00,0.00,0.00,40.94,0.00,0.00,0.00,41.50,0.00 +600635.SH,0.00,0.00,0.00,11.25,0.00,8.83,0.00,8.57,0.00,8.55,0.00,9.38,0.00,9.72,0.00,10.25,0.00,9.54,0.00,9.03,0.00 +603135.SH,0.00,0.00,0.00,63.66,0.00,67.74,0.00,73.06,0.00,59.61,0.00,0.00,0.00,0.00,0.00,81.82,0.00,0.00,0.00,82.52,0.00 +002188.SZ,0.00,0.00,0.00,83.63,0.00,0.00,0.00,41.26,0.00,0.00,0.00,34.43,0.00,0.00,0.00,28.88,0.00,0.00,0.00,23.53,0.00 +601002.SH,0.00,0.00,0.00,23.90,0.00,0.00,0.00,51.86,0.00,0.00,0.00,50.31,0.00,0.00,0.00,53.13,0.00,0.00,0.00,53.35,0.00 +837344.BJ,59.46,57.69,0.00,25.50,0.00,0.00,0.00,58.27,0.00,25.43,0.00,58.95,0.00,26.53,0.00,56.79,0.00,22.61,0.00,57.74,0.00 +832110.BJ,0.00,21.63,0.00,22.96,0.00,0.00,0.00,20.44,0.00,22.82,0.00,19.24,0.00,0.00,0.00,20.99,0.00,0.00,0.00,22.51,0.00 +300654.SZ,0.00,0.00,0.00,38.84,0.00,0.00,0.00,34.98,0.00,0.00,0.00,31.04,0.00,0.00,0.00,34.63,0.00,0.00,0.00,39.90,0.00 +000852.SZ,0.00,0.00,0.00,73.49,0.00,0.00,0.00,75.82,0.00,0.00,0.00,74.06,0.00,0.00,0.00,70.57,0.00,0.00,0.00,58.74,0.00 +838837.BJ,0.00,0.00,0.00,68.34,0.00,0.00,0.00,66.55,73.46,67.25,0.00,65.05,0.00,0.00,0.00,60.81,0.00,0.00,0.00,58.13,0.00 +002534.SZ,0.00,0.00,0.00,20.99,0.00,0.00,0.00,16.84,0.00,0.00,0.00,15.56,0.00,0.00,0.00,13.40,0.00,0.00,0.00,16.49,0.00 +688032.SH,0.00,28.23,0.00,30.85,0.00,28.53,26.23,30.00,0.00,0.00,0.00,23.08,0.00,0.00,0.00,17.85,0.00,0.00,0.00,28.67,0.00 +300643.SZ,0.00,0.00,0.00,36.01,0.00,0.00,0.00,33.32,0.00,0.00,0.00,37.99,0.00,0.00,0.00,40.76,0.00,0.00,0.00,37.47,0.00 +300014.SZ,0.00,0.00,0.00,41.15,0.00,0.00,0.00,45.53,0.00,0.00,0.00,39.91,0.00,0.00,0.00,34.36,0.00,0.00,0.00,21.44,0.00 +002862.SZ,0.00,0.00,0.00,41.08,0.00,0.00,0.00,53.90,0.00,0.00,0.00,58.57,0.00,0.00,0.00,54.39,0.00,0.00,0.00,68.15,0.00 +300078.SZ,0.00,0.00,0.00,23.24,0.00,0.00,0.00,22.80,0.00,0.00,0.00,41.85,0.00,0.00,0.00,25.97,0.00,0.00,0.00,28.26,0.00 +300976.SZ,0.00,65.44,0.00,58.15,0.00,0.00,0.00,57.16,0.00,0.00,0.00,39.49,0.00,0.00,0.00,45.93,0.00,0.00,0.00,50.86,0.00 +688036.SH,0.00,0.00,0.00,15.00,0.00,0.00,0.00,14.54,0.00,0.00,0.00,12.55,0.00,0.00,0.00,12.71,0.00,0.00,0.00,14.55,0.00 +300112.SZ,0.00,0.00,0.00,6.61,0.00,0.00,0.00,7.24,0.00,0.00,0.00,9.28,0.00,0.00,0.00,6.99,0.00,0.00,0.00,5.10,0.00 +300122.SZ,0.00,0.00,0.00,8.62,0.00,0.00,0.00,17.58,0.00,0.00,0.00,6.81,0.00,0.00,0.00,7.19,0.00,0.00,0.00,7.06,0.00 +600067.SH,0.00,0.00,0.00,7.01,0.00,11.69,0.00,18.73,0.00,0.00,0.00,34.26,0.00,0.00,0.00,24.94,0.00,0.00,0.00,23.95,0.00 +300393.SZ,0.00,0.00,0.00,44.34,0.00,0.00,0.00,54.89,0.00,0.00,0.00,55.82,0.00,0.00,0.00,51.95,0.00,0.00,0.00,48.47,0.00 +688605.SH,0.00,0.00,0.00,80.74,0.00,0.00,0.00,83.36,0.00,0.00,0.00,81.91,0.00,0.00,0.00,75.45,84.81,0.00,0.00,83.94,0.00 +603607.SH,0.00,0.00,0.00,54.06,0.00,53.64,0.00,49.50,0.00,53.00,0.00,49.44,0.00,47.29,0.00,47.17,0.00,44.60,0.00,51.79,0.00 +300709.SZ,0.00,0.00,0.00,61.78,0.00,0.00,0.00,56.51,0.00,0.00,0.00,46.91,0.00,0.00,0.00,42.04,0.00,0.00,0.00,41.41,0.00 +836871.BJ,0.00,0.00,0.00,44.76,0.00,46.69,44.74,45.08,56.29,54.89,0.00,51.41,0.00,0.00,0.00,43.76,0.00,0.00,0.00,36.96,0.00 +430476.BJ,0.00,0.00,0.00,6.37,0.00,0.00,0.00,8.57,0.00,0.00,0.00,10.62,0.00,0.00,0.00,12.18,0.00,0.00,0.00,13.84,0.00 +301399.SZ,0.00,0.00,0.00,56.61,0.00,62.68,0.00,56.61,0.00,63.94,0.00,61.97,0.00,58.73,0.00,57.77,0.00,0.00,0.00,55.68,0.00 +688199.SH,0.00,0.00,0.00,20.42,0.00,0.00,0.00,24.30,0.00,0.00,0.00,15.35,0.00,0.00,0.00,15.91,0.00,0.00,0.00,16.54,0.00 +301628.SZ,0.00,0.00,0.00,30.39,0.00,0.00,0.00,25.89,0.00,26.12,0.00,24.78,0.00,0.00,0.00,21.58,0.00,17.00,0.00,16.84,0.00 +600602.SH,0.00,0.00,0.00,7.23,0.00,0.00,0.00,8.34,0.00,0.00,0.00,12.96,0.00,0.00,0.00,12.81,0.00,0.00,0.00,22.93,0.00 +300773.SZ,0.00,0.00,0.00,3.77,0.00,0.00,0.00,4.56,0.00,0.00,0.00,3.43,0.00,0.00,0.00,2.33,0.00,0.00,0.00,2.27,0.00 +300074.SZ,0.00,0.00,0.00,17.25,0.00,0.00,0.00,17.13,0.00,0.00,0.00,26.00,0.00,0.00,0.00,19.08,0.00,0.00,0.00,20.93,0.00 +301613.SZ,0.00,0.00,0.00,88.49,0.00,0.00,0.00,91.11,0.00,94.20,0.00,94.76,0.00,0.00,0.00,96.97,0.00,0.00,0.00,86.00,0.00 +300323.SZ,0.00,0.00,0.00,52.57,0.00,0.00,0.00,52.18,0.00,0.00,0.00,46.66,0.00,0.00,0.00,51.00,0.00,0.00,0.00,58.22,0.00 +301446.SZ,0.00,0.00,0.00,84.19,0.00,0.00,0.00,83.84,0.00,82.17,0.00,76.53,0.00,0.00,0.00,76.33,0.00,0.00,0.00,67.67,0.00 +600876.SH,0.00,0.00,0.00,71.27,0.00,0.00,0.00,54.93,0.00,0.00,0.00,57.33,0.00,0.00,0.00,70.92,0.00,0.00,0.00,73.00,0.00 +002090.SZ,0.00,0.00,0.00,12.87,0.00,0.00,0.00,11.17,0.00,0.00,0.00,15.46,0.00,0.00,0.00,38.18,0.00,0.00,0.00,41.04,0.00 +688518.SH,0.00,0.00,0.00,51.63,0.00,0.00,0.00,53.42,0.00,0.00,0.00,69.41,0.00,0.00,0.00,55.61,0.00,0.00,0.00,51.15,0.00 +002189.SZ,0.00,0.00,0.00,50.22,0.00,0.00,0.00,62.75,0.00,0.00,0.00,61.82,0.00,0.00,0.00,54.15,0.00,0.00,0.00,38.81,0.00 +688306.SH,0.00,66.32,0.00,56.72,0.00,56.33,49.65,0.00,0.00,0.00,0.00,53.31,0.00,0.00,0.00,49.60,0.00,0.00,0.00,63.10,0.00 +600650.SH,0.00,0.00,0.00,9.74,0.00,0.00,0.00,5.31,0.00,0.00,0.00,9.31,0.00,0.00,0.00,7.73,0.00,0.00,0.00,9.17,0.00 +688693.SH,0.00,0.00,0.00,35.27,0.00,0.00,0.00,38.04,0.00,42.91,0.00,41.30,0.00,0.00,0.00,40.66,0.00,0.00,0.00,32.25,0.00 +002975.SZ,0.00,0.00,0.00,62.26,0.00,0.00,0.00,48.37,0.00,0.00,0.00,50.48,0.00,0.00,0.00,48.80,0.00,0.00,0.00,42.84,0.00 +600076.SH,0.00,0.00,0.00,72.88,0.00,0.00,0.00,88.32,0.00,0.00,0.00,96.03,0.00,0.00,0.00,69.15,0.00,0.00,0.00,79.96,0.00 +688489.SH,0.00,0.00,0.00,33.79,0.00,32.36,0.00,26.47,0.00,18.69,0.00,16.29,0.00,0.00,0.00,23.06,0.00,0.00,0.00,24.67,0.00 +003022.SZ,0.00,25.06,0.00,26.92,0.00,0.00,0.00,26.95,0.00,0.00,0.00,25.11,0.00,0.00,0.00,27.46,0.00,0.00,0.00,0.00,0.00 +300390.SZ,0.00,0.00,0.00,23.92,0.00,0.00,0.00,43.49,0.00,0.00,0.00,68.82,0.00,0.00,0.00,64.86,0.00,0.00,0.00,58.22,0.00 +301328.SZ,0.00,0.00,0.00,30.27,0.00,31.56,0.00,31.99,0.00,0.00,0.00,36.88,0.00,0.00,0.00,38.59,0.00,0.00,0.00,37.68,0.00 +688612.SH,0.00,0.00,0.00,72.42,0.00,0.00,0.00,67.26,57.91,55.93,0.00,57.37,75.39,0.00,0.00,74.63,0.00,0.00,0.00,69.41,0.00 +603211.SH,0.00,0.00,0.00,62.07,0.00,56.65,0.00,57.41,0.00,0.00,0.00,53.85,0.00,0.00,0.00,60.74,0.00,0.00,0.00,64.23,0.00 +300265.SZ,0.00,0.00,0.00,22.39,0.00,0.00,0.00,25.42,0.00,0.00,0.00,20.92,0.00,0.00,0.00,14.75,0.00,0.00,0.00,28.92,0.00 +605589.SH,0.00,0.00,0.00,20.02,0.00,0.00,0.00,7.75,0.00,0.00,0.00,8.48,0.00,0.00,0.00,9.59,0.00,0.00,0.00,8.87,0.00 +301158.SZ,0.00,74.19,0.00,80.63,0.00,69.85,0.00,29.29,0.00,0.00,0.00,26.20,0.00,0.00,0.00,25.71,0.00,0.00,0.00,28.52,0.00 +301049.SZ,0.00,42.26,0.00,47.29,0.00,0.00,0.00,30.57,0.00,0.00,0.00,33.10,0.00,0.00,0.00,27.92,0.00,0.00,0.00,23.31,0.00 +873806.BJ,0.00,0.00,0.00,65.92,0.00,0.00,0.00,64.74,0.00,0.00,0.00,66.48,90.61,81.91,0.00,55.69,0.00,0.00,0.00,60.42,0.00 +688600.SH,0.00,0.00,0.00,11.66,0.00,0.00,0.00,7.88,0.00,0.00,0.00,15.26,0.00,0.00,0.00,17.92,0.00,0.00,0.00,17.23,0.00 +920019.BJ,0.00,83.53,0.00,80.83,0.00,0.00,0.00,77.83,0.00,0.00,0.00,76.91,0.00,84.73,0.00,88.41,0.00,0.00,0.00,89.06,0.00 +000821.SZ,0.00,0.00,0.00,18.15,0.00,0.00,0.00,19.19,0.00,0.00,0.00,26.95,0.00,0.00,0.00,22.60,0.00,0.00,0.00,27.48,0.00 +002073.SZ,0.00,0.00,0.00,35.63,0.00,0.00,0.00,36.36,0.00,0.00,0.00,41.65,0.00,0.00,0.00,54.75,0.00,0.00,0.00,48.13,0.00 +600100.SH,0.00,0.00,0.00,12.45,0.00,0.00,0.00,16.16,0.00,0.00,0.00,16.19,0.00,0.00,0.00,18.36,0.00,0.00,0.00,8.50,0.00 +600293.SH,0.00,0.00,0.00,37.19,0.00,0.00,0.00,25.52,0.00,0.00,0.00,22.10,0.00,0.00,0.00,21.59,0.00,0.00,0.00,24.94,0.00 +002068.SZ,0.00,0.00,0.00,17.69,0.00,0.00,0.00,15.20,0.00,0.00,0.00,15.86,0.00,0.00,0.00,17.32,0.00,0.00,0.00,14.16,0.00 +600691.SH,0.00,0.00,0.00,18.29,0.00,0.00,0.00,18.20,0.00,0.00,0.00,10.05,0.00,0.00,0.00,10.73,0.00,0.00,0.00,12.77,0.00 +605588.SH,0.00,90.92,0.00,88.53,0.00,0.00,0.00,90.58,0.00,0.00,0.00,88.27,0.00,0.00,0.00,82.34,0.00,0.00,0.00,75.05,0.00 +002067.SZ,0.00,0.00,0.00,10.19,0.00,0.00,0.00,10.42,0.00,0.00,0.00,8.95,0.00,0.00,0.00,9.01,0.00,0.00,0.00,9.12,0.00 +603212.SH,0.00,0.00,0.00,55.73,0.00,0.00,0.00,49.17,0.00,0.00,0.00,53.03,0.00,0.00,0.00,42.79,0.00,0.00,0.00,38.68,0.00 +300369.SZ,0.00,0.00,0.00,69.73,0.00,0.00,0.00,62.97,0.00,0.00,0.00,61.53,0.00,0.00,0.00,56.66,0.00,0.00,0.00,62.72,0.00 +301216.SZ,0.00,30.82,0.00,30.44,0.00,23.71,0.00,21.62,0.00,0.00,0.00,27.04,0.00,0.00,0.00,23.42,0.00,0.00,0.00,23.54,0.00 +837006.BJ,0.00,0.00,0.00,89.54,0.00,0.00,0.00,82.78,0.00,98.34,0.00,93.05,0.00,0.00,0.00,92.05,0.00,0.00,0.00,78.62,0.00 +300310.SZ,0.00,0.00,0.00,49.64,0.00,0.00,0.00,50.33,0.00,0.00,0.00,50.74,0.00,0.00,0.00,54.22,0.00,0.00,0.00,48.81,0.00 +688502.SH,51.03,0.00,0.00,35.43,0.00,0.00,0.00,40.34,0.00,45.70,0.00,0.00,0.00,0.00,0.00,41.76,0.00,0.00,0.00,43.49,0.00 +920088.BJ,0.00,0.00,0.00,98.14,0.00,0.00,0.00,97.78,0.00,0.00,0.00,98.46,99.94,0.00,0.00,97.32,0.00,98.96,0.00,97.19,0.00 +002259.SZ,0.00,0.00,0.00,47.19,0.00,0.00,0.00,64.74,0.00,0.00,0.00,82.31,0.00,0.00,0.00,81.62,0.00,0.00,0.00,82.28,0.00 +000586.SZ,0.00,0.00,0.00,54.28,0.00,0.00,0.00,45.86,0.00,0.00,0.00,33.95,0.00,0.00,0.00,49.98,0.00,0.00,0.00,55.28,0.00 +603315.SH,0.00,0.00,0.00,47.56,0.00,0.00,0.00,6.22,0.00,0.00,0.00,52.00,0.00,0.00,0.00,59.00,0.00,0.00,0.00,52.57,0.00 +002742.SZ,0.00,0.00,0.00,16.21,0.00,0.00,0.00,19.29,0.00,0.00,0.00,18.11,0.00,0.00,0.00,21.32,0.00,0.00,0.00,18.05,0.00 +300351.SZ,0.00,0.00,0.00,23.73,0.00,0.00,0.00,25.88,0.00,0.00,0.00,30.24,0.00,0.00,0.00,25.47,0.00,0.00,0.00,20.15,0.00 +688152.SH,0.00,0.00,0.00,61.73,0.00,69.67,0.00,60.31,0.00,0.00,0.00,61.96,0.00,0.00,0.00,29.27,0.00,0.00,0.00,32.43,0.00 +002010.SZ,0.00,0.00,0.00,7.03,0.00,0.00,0.00,5.82,0.00,0.00,0.00,5.57,0.00,0.00,0.00,6.40,0.00,0.00,0.00,7.45,0.00 +600676.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,35.03,0.00,0.00,0.00,28.34,0.00,0.00,0.00,28.26,0.00,0.00,0.00,19.51,0.00 +300414.SZ,0.00,0.00,0.00,49.51,0.00,0.00,0.00,48.18,0.00,0.00,0.00,57.20,0.00,0.00,0.00,54.75,0.00,0.00,0.00,60.52,0.00 +600480.SH,0.00,0.00,0.00,22.30,0.00,0.00,0.00,28.63,0.00,0.00,0.00,30.07,0.00,0.00,0.00,30.51,0.00,0.00,0.00,29.33,0.00 +300930.SZ,0.00,29.13,29.30,28.37,0.00,0.00,0.00,22.80,0.00,0.00,0.00,21.76,0.00,0.00,0.00,34.80,0.00,0.00,0.00,34.64,0.00 +301538.SZ,0.00,0.00,0.00,16.89,0.00,0.00,0.00,16.29,0.00,18.87,0.00,20.42,0.00,24.14,0.00,26.44,0.00,0.00,0.00,32.23,0.00 +301529.SZ,0.00,0.00,0.00,77.82,0.00,0.00,86.61,78.40,0.00,0.00,0.00,78.01,0.00,0.00,0.00,81.69,0.00,0.00,0.00,75.06,0.00 +688669.SH,0.00,25.29,0.00,28.14,0.00,0.00,0.00,20.15,0.00,0.00,0.00,16.09,0.00,0.00,0.00,19.64,0.00,0.00,0.00,15.52,0.00 +920066.BJ,0.00,0.00,0.00,73.48,0.00,0.00,0.00,80.00,0.00,81.23,0.00,80.93,0.00,78.03,78.73,76.43,0.00,81.50,0.00,77.39,0.00 +600640.SH,0.00,0.00,0.00,39.03,0.00,0.00,0.00,4.33,0.00,0.00,0.00,7.19,0.00,0.00,0.00,32.88,0.00,0.00,0.00,32.81,0.00 +600152.SH,0.00,0.00,0.00,33.46,0.00,0.00,0.00,39.18,0.00,0.00,0.00,44.21,0.00,0.00,0.00,35.08,0.00,0.00,0.00,47.31,0.00 +688186.SH,0.00,0.00,0.00,49.38,0.00,0.00,0.00,62.50,0.00,0.00,0.00,62.41,0.00,0.00,0.00,70.67,0.00,0.00,0.00,63.79,0.00 +600171.SH,0.00,0.00,0.00,26.30,0.00,0.00,0.00,24.71,0.00,0.00,0.00,25.96,0.00,0.00,0.00,24.46,0.00,0.00,0.00,25.82,0.00 +300051.SZ,0.00,0.00,0.00,12.65,0.00,0.00,0.00,12.82,0.00,0.00,0.00,12.18,0.00,0.00,0.00,25.72,0.00,0.00,0.00,54.44,0.00 +002635.SZ,0.00,0.00,0.00,40.50,0.00,0.00,0.00,29.30,0.00,0.00,0.00,39.91,0.00,0.00,0.00,53.41,0.00,0.00,0.00,0.00,0.00 +002830.SZ,0.00,0.00,0.00,5.56,0.00,0.00,0.00,1.99,0.00,0.00,0.00,1.58,0.00,0.00,0.00,6.83,0.00,0.00,0.00,4.81,0.00 +002579.SZ,0.00,0.00,0.00,30.61,0.00,0.00,0.00,30.74,0.00,0.00,0.00,41.00,0.00,0.00,0.00,29.19,0.00,0.00,0.00,34.02,0.00 +300063.SZ,0.00,0.00,0.00,24.04,0.00,0.00,0.00,19.05,0.00,0.00,0.00,23.20,0.00,0.00,0.00,17.73,0.00,0.00,0.00,19.91,0.00 +001318.SZ,0.00,0.00,0.00,11.65,0.00,11.90,0.00,12.02,0.00,13.62,0.00,11.40,0.00,13.06,0.00,11.38,0.00,6.18,0.00,6.53,0.00 +000409.SZ,0.00,0.00,0.00,64.66,0.00,0.00,0.00,84.24,0.00,0.00,0.00,81.22,0.00,0.00,0.00,79.21,0.00,0.00,0.00,83.98,0.00 +688315.SH,0.00,11.03,0.00,10.26,0.00,0.00,0.00,5.88,0.00,0.00,0.00,10.80,0.00,0.00,0.00,8.69,0.00,0.00,0.00,7.79,0.00 +301568.SZ,0.00,0.00,0.00,22.56,0.00,0.00,0.00,27.97,0.00,25.99,0.00,20.76,0.00,25.97,0.00,18.79,0.00,0.00,0.00,17.49,0.00 +001208.SZ,0.00,33.74,0.00,30.87,42.24,0.00,0.00,18.45,0.00,0.00,0.00,13.18,0.00,0.00,0.00,15.39,0.00,0.00,0.00,20.80,0.00 +603002.SH,0.00,0.00,0.00,18.51,0.00,0.00,0.00,18.46,0.00,0.00,0.00,31.09,0.00,0.00,0.00,32.33,0.00,0.00,0.00,30.15,0.00 +688318.SH,0.00,0.00,0.00,16.50,0.00,0.00,0.00,13.57,0.00,0.00,0.00,12.79,0.00,0.00,0.00,12.38,0.00,0.00,0.00,13.49,0.00 +300839.SZ,0.00,0.00,0.00,39.55,0.00,0.00,0.00,32.47,0.00,0.00,0.00,29.09,0.00,0.00,0.00,25.59,0.00,0.00,0.00,33.70,0.00 +002577.SZ,0.00,0.00,0.00,49.18,0.00,0.00,0.00,45.64,0.00,0.00,0.00,50.26,0.00,0.00,0.00,54.23,0.00,0.00,0.00,46.24,0.00 +300048.SZ,0.00,0.00,0.00,14.03,0.00,0.00,0.00,13.17,0.00,0.00,0.00,24.63,0.00,0.00,0.00,32.49,0.00,0.00,0.00,77.27,0.00 +301315.SZ,0.00,0.00,0.00,82.55,0.00,84.32,0.00,84.25,0.00,85.23,0.00,74.63,0.00,0.00,0.00,77.38,0.00,0.00,0.00,0.00,0.00 +300515.SZ,0.00,0.00,0.00,25.90,0.00,0.00,0.00,26.28,0.00,0.00,0.00,26.52,0.00,0.00,0.00,16.72,0.00,0.00,0.00,13.65,0.00 +603855.SH,0.00,0.00,0.00,18.01,0.00,0.00,0.00,23.37,0.00,0.00,0.00,18.83,0.00,0.00,0.00,11.81,0.00,0.00,0.00,29.04,0.00 +600967.SH,0.00,0.00,0.00,70.68,0.00,0.00,0.00,68.52,0.00,0.00,0.00,61.21,0.00,0.00,0.00,75.31,0.00,0.00,0.00,80.18,0.00 +688130.SH,0.00,0.00,0.00,50.81,0.00,40.13,0.00,35.02,0.00,0.00,0.00,33.19,0.00,0.00,0.00,32.95,0.00,0.00,0.00,35.15,0.00 +688239.SH,0.00,74.20,0.00,74.81,0.00,0.00,0.00,46.68,0.00,0.00,0.00,69.69,0.00,0.00,0.00,58.79,0.00,0.00,0.00,60.96,0.00 +301338.SZ,0.00,24.40,0.00,22.31,0.00,28.65,0.00,20.45,0.00,0.00,0.00,24.26,0.00,0.00,0.00,39.24,0.00,0.00,0.00,34.34,0.00 +300763.SZ,0.00,0.00,0.00,23.12,0.00,0.00,0.00,15.04,0.00,0.00,0.00,20.67,0.00,0.00,0.00,10.21,0.00,0.00,0.00,11.64,0.00 +300182.SZ,0.00,0.00,0.00,45.68,0.00,0.00,0.00,48.70,0.00,0.00,0.00,57.23,0.00,0.00,0.00,56.95,0.00,0.00,0.00,48.29,0.00 +003032.SZ,0.00,0.00,0.00,1.57,0.00,0.00,0.00,1.51,0.00,0.00,0.00,0.81,0.00,0.00,0.00,1.92,0.00,0.00,0.00,3.45,0.00 +001256.SZ,0.00,0.00,0.00,17.60,26.43,0.00,15.46,17.60,0.00,18.28,0.00,16.56,0.00,0.00,0.00,19.41,0.00,0.00,0.00,20.74,0.00 +300029.SZ,0.00,0.00,0.00,93.83,0.00,0.00,0.00,82.20,0.00,0.00,0.00,90.44,0.00,0.00,0.00,98.01,0.00,0.00,0.00,93.50,0.00 +002522.SZ,0.00,0.00,0.00,14.61,0.00,0.00,0.00,18.18,0.00,0.00,0.00,19.87,0.00,0.00,0.00,19.57,0.00,0.00,0.00,18.62,0.00 +688110.SH,0.00,56.81,0.00,57.88,0.00,38.22,0.00,50.17,0.00,0.00,0.00,63.60,0.00,0.00,0.00,54.66,0.00,0.00,0.00,65.33,0.00 +002573.SZ,0.00,0.00,0.00,14.24,0.00,0.00,0.00,11.59,0.00,0.00,0.00,22.12,0.00,0.00,0.00,26.08,0.00,0.00,0.00,25.19,0.00 +836957.BJ,0.00,11.73,0.00,11.02,0.00,10.58,0.00,11.34,0.00,14.73,0.00,12.53,0.00,0.00,0.00,9.18,0.00,0.00,0.00,9.48,0.00 +300263.SZ,0.00,0.00,0.00,23.70,0.00,0.00,0.00,23.66,0.00,0.00,0.00,12.68,0.00,0.00,0.00,11.40,0.00,0.00,0.00,13.76,0.00 +300500.SZ,0.00,0.00,0.00,32.99,0.00,0.00,0.00,32.10,0.00,0.00,0.00,27.57,0.00,0.00,0.00,31.79,0.00,0.00,0.00,9.99,0.00 +002900.SZ,0.00,0.00,0.00,42.55,0.00,0.00,0.00,25.56,0.00,0.00,0.00,25.76,0.00,0.00,0.00,28.90,0.00,0.00,0.00,29.32,0.00 +603679.SH,0.00,0.00,0.00,48.08,0.00,0.00,0.00,28.30,0.00,0.00,0.00,19.24,0.00,0.00,0.00,29.37,0.00,0.00,0.00,17.89,0.00 +000570.SZ,0.00,0.00,0.00,44.71,0.00,0.00,0.00,47.46,0.00,0.00,0.00,48.31,0.00,0.00,0.00,41.30,0.00,0.00,0.00,48.71,0.00 +301383.SZ,0.00,0.00,0.00,85.08,0.00,85.39,0.00,86.01,0.00,80.46,0.00,80.02,0.00,0.00,0.00,86.51,0.00,0.00,0.00,82.84,0.00 +688562.SH,0.00,0.00,0.00,44.18,0.00,0.00,0.00,55.68,0.00,43.59,0.00,36.07,0.00,0.00,0.00,50.64,0.00,0.00,0.00,61.97,0.00 +300193.SZ,0.00,0.00,0.00,25.28,0.00,0.00,0.00,23.64,0.00,0.00,0.00,26.19,0.00,0.00,0.00,25.83,0.00,0.00,0.00,30.18,0.00 +300195.SZ,0.00,0.00,0.00,25.36,0.00,0.00,0.00,24.18,0.00,0.00,0.00,37.00,0.00,0.00,0.00,32.14,0.00,0.00,0.00,27.13,0.00 +002919.SZ,0.00,0.00,0.00,29.88,0.00,0.00,0.00,32.52,0.00,0.00,0.00,28.31,0.00,0.00,0.00,21.59,0.00,0.00,0.00,16.10,0.00 +300679.SZ,0.00,0.00,0.00,45.34,0.00,0.00,0.00,32.81,0.00,0.00,0.00,27.15,0.00,0.00,0.00,26.91,0.00,0.00,0.00,27.55,0.00 +300473.SZ,0.00,0.00,0.00,53.43,0.00,0.00,0.00,50.85,0.00,0.00,0.00,55.60,0.00,0.00,0.00,52.78,0.00,0.00,0.00,52.26,0.00 +300846.SZ,0.00,0.00,0.00,36.67,0.00,0.00,0.00,36.45,0.00,0.00,0.00,36.77,0.00,0.00,0.00,34.21,0.00,0.00,0.00,32.24,0.00 +603739.SH,0.00,0.00,0.00,21.04,0.00,0.00,0.00,16.77,0.00,0.00,0.00,15.22,0.00,0.00,0.00,12.48,0.00,0.00,0.00,13.08,0.00 +000100.SZ,0.00,39.95,0.00,38.89,0.00,31.43,0.00,35.50,0.00,0.00,0.00,30.88,0.00,27.50,0.00,29.45,0.00,34.90,0.00,34.52,0.00 +601890.SH,0.00,0.00,0.00,23.91,0.00,0.00,0.00,30.38,0.00,0.00,0.00,21.85,0.00,0.00,0.00,24.16,0.00,0.00,0.00,29.04,0.00 +600536.SH,0.00,0.00,0.00,11.44,0.00,10.97,0.00,15.51,0.00,12.55,0.00,11.40,0.00,20.42,0.00,18.31,0.00,0.00,0.00,22.54,0.00 +002815.SZ,0.00,0.00,0.00,27.74,0.00,0.00,0.00,22.75,0.00,0.00,0.00,28.72,0.00,0.00,0.00,24.42,0.00,0.00,0.00,22.41,0.00 +002606.SZ,0.00,0.00,0.00,44.17,0.00,0.00,0.00,56.09,0.00,0.00,0.00,58.09,0.00,0.00,0.00,64.49,0.00,0.00,0.00,67.34,0.00 +600470.SH,0.00,0.00,0.00,9.13,0.00,0.00,0.00,12.42,0.00,0.00,0.00,18.26,0.00,0.00,0.00,17.65,0.00,0.00,0.00,15.45,0.00 +001696.SZ,0.00,0.00,0.00,32.56,0.00,26.23,0.00,28.30,0.00,29.08,0.00,26.54,0.00,21.45,0.00,24.83,0.00,22.98,0.00,24.80,0.00 +430418.BJ,0.00,0.00,0.00,44.18,0.00,0.00,0.00,46.33,0.00,0.00,0.00,53.08,0.00,0.00,0.00,53.70,0.00,0.00,0.00,54.55,0.00 +600539.SH,0.00,0.00,0.00,26.79,0.00,0.00,0.00,38.80,0.00,0.00,0.00,30.85,0.00,0.00,0.00,24.50,0.00,0.00,0.00,40.58,0.00 +301581.SZ,0.00,0.00,0.00,87.18,0.00,0.00,0.00,83.73,0.00,0.00,0.00,63.85,0.00,55.28,0.00,55.52,0.00,60.42,0.00,50.91,0.00 +301658.SZ,0.00,0.00,0.00,51.48,0.00,0.00,0.00,60.01,0.00,68.08,0.00,65.20,0.00,0.00,0.00,49.39,0.00,51.71,0.00,46.14,0.00 +300091.SZ,0.00,0.00,0.00,20.73,0.00,0.00,0.00,27.63,0.00,0.00,0.00,28.81,0.00,0.00,0.00,35.58,0.00,0.00,0.00,30.08,0.00 +300747.SZ,0.00,0.00,0.00,23.12,0.00,0.00,0.00,15.71,0.00,0.00,0.00,17.37,0.00,0.00,0.00,28.32,0.00,0.00,0.00,23.59,0.00 +301458.SZ,0.00,0.00,0.00,24.98,0.00,0.00,0.00,24.26,36.16,0.00,30.61,29.92,0.00,29.53,0.00,29.26,0.00,26.90,0.00,28.08,0.00 +300095.SZ,0.00,0.00,0.00,17.27,0.00,0.00,0.00,22.40,0.00,0.00,0.00,21.93,0.00,0.00,0.00,23.62,0.00,0.00,0.00,27.34,0.00 +002724.SZ,0.00,0.00,0.00,21.54,0.00,0.00,0.00,9.98,0.00,0.00,0.00,23.33,0.00,0.00,0.00,24.00,0.00,0.00,0.00,22.56,0.00 +688597.SH,89.32,0.00,97.70,95.22,0.00,0.00,0.00,54.34,0.00,0.00,0.00,51.01,0.00,0.00,0.00,42.78,0.00,0.00,0.00,41.19,0.00 +002358.SZ,0.00,0.00,0.00,31.16,0.00,0.00,0.00,17.61,0.00,0.00,0.00,19.31,0.00,0.00,0.00,42.39,0.00,0.00,0.00,39.49,0.00 +605033.SH,0.00,7.83,0.00,6.95,6.35,5.54,0.00,7.46,0.00,0.00,0.00,6.00,0.00,0.00,0.00,10.54,0.00,0.00,0.00,8.44,0.00 +688132.SH,0.00,82.03,0.00,69.26,0.00,0.00,0.00,80.27,0.00,0.00,0.00,80.80,0.00,0.00,0.00,73.79,0.00,0.00,0.00,82.08,0.00 +002350.SZ,0.00,0.00,0.00,13.85,0.00,0.00,0.00,10.00,0.00,0.00,0.00,19.19,0.00,0.00,0.00,20.79,0.00,0.00,0.00,22.95,0.00 +300292.SZ,0.00,0.00,0.00,49.00,0.00,0.00,0.00,46.18,0.00,0.00,0.00,54.40,0.00,0.00,0.00,63.65,0.00,0.00,0.00,72.57,0.00 +600129.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,7.45,0.00,0.00,0.00,7.53,0.00,0.00,0.00,7.88,0.00,0.00,0.00,6.58,0.00 +300816.SZ,0.00,0.00,0.00,79.40,0.00,0.00,0.00,71.69,0.00,0.00,0.00,69.14,0.00,0.00,0.00,62.54,0.00,0.00,0.00,66.33,0.00 +836892.BJ,0.00,16.45,0.00,11.88,0.00,0.00,0.00,6.80,0.00,0.00,0.00,8.15,0.00,0.00,0.00,8.54,0.00,0.00,0.00,6.69,0.00 +002063.SZ,0.00,0.00,0.00,16.03,0.00,0.00,0.00,17.08,0.00,0.00,0.00,23.42,0.00,0.00,0.00,20.06,0.00,0.00,0.00,19.98,0.00 +301180.SZ,0.00,81.91,0.00,80.87,0.00,81.18,0.00,78.40,0.00,0.00,0.00,80.12,0.00,0.00,0.00,72.95,0.00,0.00,0.00,62.31,0.00 +300295.SZ,0.00,0.00,0.00,8.15,0.00,0.00,0.00,8.59,0.00,0.00,0.00,7.83,0.00,0.00,0.00,11.20,0.00,0.00,0.00,4.85,0.00 +600714.SH,0.00,0.00,0.00,36.05,0.00,0.00,0.00,36.14,0.00,0.00,0.00,23.65,0.00,0.00,0.00,31.10,0.00,0.00,0.00,26.23,0.00 +003030.SZ,0.00,22.29,20.45,19.72,0.00,10.28,0.00,17.95,0.00,0.00,0.00,16.69,0.00,5.80,0.00,14.34,0.00,7.57,0.00,14.31,0.00 +002137.SZ,0.00,0.00,0.00,64.59,0.00,0.00,0.00,73.28,0.00,0.00,0.00,72.11,0.00,0.00,0.00,75.38,0.00,0.00,0.00,73.00,0.00 +000503.SZ,0.00,0.00,0.00,16.84,0.00,0.00,0.00,12.71,0.00,0.00,0.00,13.32,0.00,0.00,0.00,13.98,0.00,0.00,0.00,18.19,0.00 +002177.SZ,0.00,0.00,0.00,28.39,0.00,0.00,0.00,37.68,0.00,0.00,0.00,43.16,0.00,0.00,0.00,43.23,0.00,0.00,0.00,39.72,0.00 +430718.BJ,0.00,0.00,0.00,90.02,0.00,0.00,0.00,89.93,92.27,90.30,90.84,90.51,0.00,0.00,0.00,90.30,0.00,0.00,0.00,88.28,0.00 +603290.SH,0.00,0.00,0.00,41.65,0.00,0.00,0.00,41.70,0.00,0.00,0.00,42.61,0.00,0.00,0.00,36.25,0.00,0.00,0.00,33.47,0.00 +301051.SZ,0.00,91.00,0.00,82.64,0.00,80.32,0.00,73.77,0.00,0.00,0.00,64.13,0.00,0.00,0.00,75.29,0.00,0.00,0.00,80.86,0.00 +601011.SH,0.00,0.00,0.00,48.47,0.00,0.00,0.00,43.20,0.00,0.00,0.00,46.95,0.00,0.00,0.00,47.08,0.00,0.00,0.00,54.02,0.00 +688007.SH,0.00,0.00,0.00,55.84,0.00,0.00,0.00,40.61,0.00,0.00,0.00,39.49,0.00,0.00,0.00,28.67,0.00,0.00,0.00,42.94,0.00 +002554.SZ,0.00,0.00,0.00,38.22,0.00,0.00,0.00,54.26,0.00,0.00,0.00,57.55,0.00,0.00,0.00,75.71,0.00,0.00,0.00,68.26,0.00 +301318.SZ,0.00,43.23,48.19,47.70,0.00,38.67,0.00,30.66,36.04,0.00,0.00,30.42,0.00,0.00,0.00,34.55,0.00,0.00,0.00,38.15,0.00 +300036.SZ,0.00,0.00,0.00,6.35,0.00,0.00,0.00,7.81,0.00,0.00,0.00,7.89,0.00,0.00,0.00,6.90,0.00,0.00,0.00,4.75,0.00 +002375.SZ,0.00,0.00,0.00,10.85,0.00,0.00,0.00,13.63,0.00,0.00,0.00,16.23,0.00,0.00,0.00,11.80,0.00,0.00,0.00,23.52,0.00 +002392.SZ,0.00,0.00,0.00,37.03,0.00,0.00,0.00,30.43,0.00,0.00,0.00,32.04,0.00,0.00,0.00,34.49,0.00,0.00,0.00,36.49,0.00 +300433.SZ,0.00,0.00,0.00,79.28,0.00,0.00,0.00,80.56,0.00,0.00,0.00,83.26,0.00,0.00,0.00,83.10,0.00,0.00,0.00,0.00,0.00 +300113.SZ,0.00,0.00,0.00,10.01,0.00,0.00,0.00,10.05,0.00,0.00,0.00,8.38,0.00,0.00,0.00,16.04,0.00,0.00,0.00,20.81,0.00 +002069.SZ,0.00,0.00,0.00,19.40,0.00,0.00,0.00,21.92,0.00,0.00,0.00,26.86,0.00,0.00,0.00,31.42,0.00,0.00,0.00,29.92,0.00 +600693.SH,0.00,0.00,0.00,7.98,0.00,0.00,0.00,38.30,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,47.89,0.00 +688571.SH,0.00,21.81,0.00,21.13,0.00,0.00,0.00,20.38,0.00,0.00,0.00,19.81,0.00,0.00,0.00,20.35,0.00,0.00,0.00,19.47,0.00 +688292.SH,0.00,0.00,0.00,98.91,0.00,98.55,0.00,97.93,0.00,0.00,0.00,38.87,0.00,0.00,0.00,32.25,0.00,0.00,0.00,30.61,0.00 +300618.SZ,0.00,0.00,0.00,62.12,0.00,0.00,0.00,52.94,0.00,0.00,0.00,48.53,0.00,0.00,0.00,52.39,0.00,0.00,0.00,50.78,0.00 +300405.SZ,0.00,0.00,0.00,20.14,0.00,0.00,0.00,18.51,0.00,0.00,0.00,28.13,0.00,0.00,0.00,27.83,0.00,0.00,0.00,34.79,0.00 +002976.SZ,0.00,0.00,0.00,36.13,0.00,0.00,0.00,33.16,0.00,0.00,0.00,30.54,0.00,0.00,0.00,34.68,0.00,0.00,0.00,33.14,0.00 +300458.SZ,0.00,0.00,0.00,53.35,0.00,0.00,0.00,50.53,0.00,0.00,0.00,56.90,0.00,0.00,0.00,45.65,0.00,0.00,0.00,0.00,0.00 +000597.SZ,0.00,0.00,0.00,4.90,0.00,0.00,0.00,4.74,0.00,0.00,0.00,4.93,0.00,0.00,0.00,8.23,0.00,0.00,0.00,8.72,0.00 +301429.SZ,0.00,62.28,0.00,53.17,0.00,48.82,0.00,46.00,0.00,49.60,0.00,45.65,0.00,0.00,0.00,33.39,0.00,0.00,0.00,38.17,0.00 +600831.SH,0.00,0.00,0.00,6.58,0.00,0.00,0.00,6.98,0.00,0.00,0.00,5.95,0.00,0.00,0.00,7.40,0.00,0.00,0.00,6.72,0.00 +002148.SZ,0.00,0.00,0.00,19.27,0.00,0.00,0.00,21.22,0.00,0.00,0.00,19.20,0.00,0.00,0.00,22.91,0.00,0.00,0.00,21.50,0.00 +002319.SZ,0.00,0.00,0.00,34.85,0.00,0.00,0.00,46.63,0.00,0.00,0.00,50.37,0.00,0.00,0.00,66.90,0.00,0.00,0.00,61.59,0.00 +600816.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +300422.SZ,0.00,0.00,0.00,19.96,0.00,0.00,0.00,20.79,0.00,0.00,0.00,18.75,0.00,0.00,0.00,21.71,0.00,0.00,0.00,58.81,0.00 +300757.SZ,0.00,0.00,0.00,71.68,0.00,0.00,0.00,53.01,0.00,0.00,0.00,46.55,0.00,0.00,0.00,63.83,0.00,0.00,0.00,68.69,0.00 +300173.SZ,0.00,0.00,0.00,44.70,0.00,0.00,0.00,72.30,0.00,0.00,0.00,83.42,0.00,0.00,0.00,74.89,0.00,0.00,0.00,72.54,0.00 +920082.BJ,0.00,0.00,0.00,44.42,0.00,0.00,0.00,39.25,0.00,32.78,0.00,40.77,0.00,45.98,31.22,34.07,40.83,39.91,31.17,37.20,0.00 +000692.SZ,0.00,0.00,0.00,7.79,0.00,0.00,0.00,10.94,0.00,0.00,0.00,7.11,0.00,0.00,0.00,1.89,0.00,0.00,0.00,5.10,0.00 +603527.SH,0.00,0.00,0.00,11.60,0.00,0.00,0.00,11.05,0.00,0.00,0.00,11.85,0.00,0.00,0.00,10.69,0.00,0.00,0.00,11.33,0.00 +301278.SZ,0.00,62.54,0.00,67.05,0.00,63.37,0.00,60.94,0.00,0.00,0.00,63.84,0.00,0.00,0.00,60.56,0.00,0.00,0.00,66.83,0.00 +002056.SZ,0.00,0.00,0.00,11.00,0.00,0.00,0.00,15.45,0.00,0.00,0.00,12.45,0.00,0.00,0.00,11.41,0.00,0.00,0.00,19.13,0.00 +301003.SZ,0.00,73.07,0.00,68.67,0.00,0.00,0.00,70.19,0.00,0.00,0.00,70.60,0.00,0.00,0.00,66.94,0.00,0.00,0.00,65.08,0.00 +002865.SZ,0.00,0.00,0.00,52.60,0.00,0.00,0.00,58.54,0.00,0.00,0.00,51.58,0.00,0.00,0.00,52.45,0.00,0.00,0.00,41.30,0.00 +300519.SZ,0.00,0.00,0.00,43.24,0.00,0.00,0.00,46.16,0.00,0.00,0.00,48.90,0.00,0.00,0.00,52.21,0.00,0.00,0.00,45.73,0.00 +000506.SZ,0.00,0.00,0.00,96.36,0.00,0.00,0.00,44.90,0.00,0.00,0.00,94.81,0.00,0.00,0.00,94.60,0.00,0.00,0.00,99.62,0.00 +002530.SZ,0.00,0.00,0.00,13.07,0.00,0.00,0.00,11.21,0.00,0.00,0.00,10.58,0.00,0.00,0.00,12.17,0.00,0.00,0.00,12.21,0.00 +301105.SZ,0.00,25.59,0.00,19.81,0.00,25.25,0.00,23.17,0.00,29.11,0.00,18.61,0.00,0.00,0.00,12.13,0.00,0.00,0.00,10.10,0.00 +600571.SH,0.00,0.00,0.00,11.88,0.00,0.00,0.00,16.54,0.00,0.00,0.00,14.70,0.00,0.00,0.00,14.46,0.00,0.00,0.00,20.54,0.00 +832885.BJ,0.00,59.91,0.00,49.27,0.00,0.00,0.00,53.97,0.00,0.00,0.00,49.95,0.00,0.00,0.00,46.28,0.00,0.00,0.00,57.92,0.00 +301500.SZ,0.00,52.82,0.00,48.91,0.00,0.00,0.00,52.84,0.00,0.00,0.00,64.69,0.00,0.00,0.00,78.88,0.00,0.00,0.00,62.62,0.00 +836247.BJ,0.00,0.00,0.00,21.01,0.00,0.00,0.00,18.32,0.00,17.31,0.00,19.21,0.00,0.00,0.00,19.57,0.00,0.00,0.00,16.19,0.00 +301071.SZ,37.55,0.00,33.01,31.07,0.00,0.00,0.00,37.42,0.00,0.00,0.00,34.41,0.00,0.00,0.00,33.87,0.00,0.00,0.00,25.43,0.00 +601198.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +003040.SZ,0.00,40.97,0.00,42.90,0.00,0.00,0.00,55.21,0.00,0.00,0.00,41.69,0.00,0.00,0.00,50.59,0.00,0.00,0.00,51.77,0.00 +002985.SZ,0.00,0.00,0.00,70.17,0.00,0.00,0.00,48.13,0.00,0.00,0.00,66.72,0.00,0.00,0.00,38.19,0.00,0.00,0.00,39.19,0.00 +300792.SZ,0.00,0.00,0.00,42.29,0.00,0.00,0.00,44.06,0.00,0.00,0.00,31.28,0.00,0.00,0.00,29.99,0.00,0.00,0.00,32.51,0.00 +603189.SH,0.00,0.00,0.00,77.59,0.00,0.00,0.00,51.54,0.00,0.00,0.00,59.08,0.00,0.00,0.00,76.56,0.00,0.00,0.00,75.84,0.00 +000833.SZ,0.00,0.00,0.00,72.43,0.00,0.00,0.00,43.65,0.00,0.00,0.00,42.69,0.00,0.00,0.00,40.72,0.00,0.00,0.00,31.45,0.00 +300793.SZ,0.00,0.00,0.00,89.80,0.00,0.00,0.00,83.71,0.00,0.00,0.00,78.81,0.00,0.00,0.00,85.75,0.00,0.00,0.00,86.50,0.00 +300085.SZ,0.00,0.00,0.00,22.91,0.00,0.00,0.00,16.60,0.00,0.00,0.00,19.09,0.00,0.00,0.00,13.17,0.00,0.00,0.00,13.41,0.00 +301601.SZ,0.00,0.00,0.00,78.19,0.00,0.00,0.00,82.85,0.00,95.71,0.00,90.23,0.00,0.00,0.00,69.94,0.00,92.84,0.00,82.76,0.00 +300409.SZ,0.00,0.00,0.00,32.65,0.00,0.00,0.00,36.42,0.00,0.00,0.00,34.48,0.00,0.00,0.00,58.58,0.00,0.00,0.00,62.56,0.00 +870508.BJ,0.00,0.00,0.00,82.72,0.00,0.00,0.00,82.96,0.00,86.00,78.30,84.93,0.00,0.00,0.00,80.79,0.00,0.00,0.00,88.63,0.00 +600241.SH,0.00,0.00,0.00,26.78,0.00,0.00,0.00,43.19,0.00,0.00,0.00,59.24,0.00,0.00,0.00,49.49,0.00,0.00,0.00,34.49,0.00 +600580.SH,0.00,0.00,0.00,10.06,0.00,0.00,0.00,11.67,0.00,0.00,0.00,14.12,0.00,0.00,0.00,9.64,0.00,0.00,0.00,14.10,0.00 +603106.SH,0.00,0.00,0.00,66.46,0.00,0.00,0.00,67.26,0.00,0.00,0.00,67.53,0.00,0.00,0.00,66.55,0.00,0.00,0.00,57.74,0.00 +300711.SZ,0.00,0.00,0.00,59.45,0.00,0.00,0.00,59.77,0.00,0.00,0.00,59.07,0.00,0.00,0.00,53.84,0.00,0.00,0.00,40.91,0.00 +300412.SZ,0.00,0.00,0.00,22.68,0.00,0.00,0.00,20.42,0.00,0.00,0.00,23.42,0.00,0.00,0.00,18.16,0.00,0.00,0.00,26.89,0.00 +688234.SH,0.00,0.00,0.00,86.71,0.00,88.34,87.78,89.73,0.00,0.00,0.00,64.93,0.00,0.00,0.00,51.16,0.00,0.00,0.00,57.23,0.00 +600794.SH,0.00,0.00,0.00,27.24,0.00,0.00,0.00,24.09,0.00,0.00,0.00,30.63,0.00,0.00,0.00,45.04,0.00,0.00,0.00,11.57,0.00 +600312.SH,0.00,0.00,0.00,94.47,0.00,0.00,0.00,59.22,0.00,0.00,0.00,67.52,0.00,0.00,0.00,80.48,0.00,0.00,0.00,83.47,0.00 +300071.SZ,0.00,0.00,0.00,49.36,0.00,0.00,0.00,43.64,0.00,0.00,0.00,64.10,0.00,0.00,0.00,71.62,0.00,0.00,0.00,58.58,0.00 +301062.SZ,0.00,26.99,0.00,33.11,0.00,0.00,0.00,39.90,0.00,0.00,0.00,37.24,0.00,0.00,0.00,35.96,0.00,0.00,0.00,32.23,0.00 +002564.SZ,0.00,0.00,0.00,26.35,0.00,0.00,0.00,32.19,0.00,0.00,0.00,31.35,0.00,0.00,0.00,39.44,0.00,0.00,0.00,26.55,0.00 +603257.SH,0.00,0.00,0.00,37.18,0.00,0.00,0.00,44.65,0.00,60.97,0.00,59.95,0.00,73.97,0.00,66.19,0.00,44.58,0.00,51.56,0.00 +601218.SH,0.00,0.00,0.00,79.19,0.00,0.00,0.00,87.39,0.00,0.00,0.00,71.77,0.00,0.00,0.00,72.33,0.00,0.00,0.00,86.22,0.00 +688535.SH,0.00,29.01,0.00,29.88,0.00,0.00,0.00,26.05,0.00,29.95,0.00,0.00,0.00,0.00,0.00,25.25,0.00,0.00,0.00,25.17,0.00 +688450.SH,0.00,0.00,0.00,67.53,0.00,0.00,0.00,46.37,0.00,73.13,0.00,48.30,0.00,0.00,0.00,48.59,0.00,0.00,0.00,54.82,0.00 +301168.SZ,0.00,69.79,0.00,77.72,0.00,81.25,0.00,79.17,0.00,0.00,0.00,80.75,0.00,0.00,0.00,78.75,0.00,0.00,0.00,74.82,0.00 +300424.SZ,0.00,0.00,0.00,37.66,0.00,0.00,0.00,44.91,0.00,0.00,0.00,38.74,0.00,0.00,0.00,34.64,0.00,0.00,0.00,37.44,0.00 +301333.SZ,0.00,33.46,0.00,33.96,0.00,36.15,0.00,31.27,0.00,0.00,0.00,27.91,0.00,0.00,0.00,25.09,0.00,0.00,0.00,28.02,0.00 +688303.SH,91.97,0.00,92.44,91.87,0.00,0.00,0.00,80.64,0.00,0.00,0.00,73.63,0.00,0.00,0.00,83.52,0.00,0.00,0.00,75.59,0.00 +301365.SZ,0.00,0.00,0.00,20.55,0.00,19.13,0.00,19.73,0.00,23.25,0.00,19.82,0.00,0.00,0.00,22.45,0.00,0.00,0.00,25.23,0.00 +300534.SZ,0.00,0.00,0.00,16.53,0.00,0.00,0.00,14.39,0.00,0.00,0.00,25.87,0.00,0.00,0.00,19.22,0.00,0.00,0.00,18.03,0.00 +002813.SZ,0.00,0.00,0.00,37.70,0.00,0.00,0.00,27.33,0.00,0.00,0.00,32.29,0.00,0.00,0.00,38.47,0.00,0.00,0.00,41.13,0.00 +300523.SZ,0.00,0.00,0.00,41.47,0.00,0.00,0.00,33.74,0.00,0.00,0.00,29.77,0.00,0.00,0.00,23.30,0.00,0.00,0.00,31.32,0.00 +300943.SZ,0.00,37.82,33.63,32.68,0.00,0.00,0.00,39.16,0.00,0.00,0.00,32.46,0.00,0.00,0.00,29.69,0.00,0.00,0.00,30.68,0.00 +300296.SZ,0.00,0.00,0.00,7.87,0.00,0.00,0.00,7.81,0.00,0.00,0.00,4.63,0.00,0.00,0.00,11.64,0.00,0.00,0.00,10.40,0.00 +300268.SZ,0.00,0.00,0.00,20.92,0.00,0.00,0.00,21.23,0.00,0.00,0.00,15.84,0.00,0.00,0.00,21.11,0.00,0.00,0.00,23.36,0.00 +688211.SH,0.00,0.00,86.40,90.18,0.00,0.00,0.00,95.21,0.00,0.00,0.00,74.99,0.00,0.00,0.00,68.96,0.00,0.00,0.00,42.04,0.00 +300179.SZ,0.00,0.00,0.00,29.44,0.00,0.00,0.00,33.51,0.00,0.00,0.00,26.35,0.00,0.00,0.00,27.52,0.00,0.00,0.00,29.73,0.00 +300882.SZ,0.00,59.74,0.00,48.73,0.00,0.00,0.00,55.29,0.00,0.00,0.00,57.93,0.00,0.00,0.00,50.21,0.00,0.00,0.00,45.98,0.00 +603176.SH,0.00,42.80,0.00,41.04,0.00,0.00,38.18,39.16,0.00,0.00,0.00,35.53,0.00,0.00,0.00,47.12,0.00,0.00,0.00,45.07,0.00 +002429.SZ,0.00,0.00,0.00,53.76,0.00,0.00,0.00,51.55,0.00,0.00,0.00,56.18,0.00,0.00,0.00,49.37,0.00,0.00,0.00,52.72,0.00 +002598.SZ,0.00,0.00,0.00,8.61,0.00,0.00,0.00,10.90,0.00,0.00,0.00,8.21,0.00,0.00,0.00,7.07,0.00,0.00,0.00,7.05,0.00 +300826.SZ,0.00,0.00,0.00,17.95,0.00,0.00,0.00,11.58,0.00,0.00,0.00,15.47,0.00,0.00,0.00,11.14,0.00,0.00,0.00,12.53,0.00 +000758.SZ,0.00,0.00,0.00,18.91,0.00,0.00,0.00,24.25,0.00,0.00,0.00,27.00,0.00,0.00,0.00,49.36,0.00,0.00,0.00,59.44,0.00 +600172.SH,0.00,0.00,0.00,17.48,0.00,0.00,0.00,24.51,0.00,0.00,0.00,22.46,0.00,0.00,0.00,13.75,0.00,0.00,0.00,13.64,0.00 +002008.SZ,0.00,0.00,0.00,16.21,0.00,0.00,0.00,15.38,0.00,0.00,0.00,10.72,0.00,0.00,0.00,17.58,0.00,0.00,0.00,11.76,0.00 +300867.SZ,0.00,59.21,0.00,59.52,0.00,0.00,0.00,35.53,0.00,0.00,0.00,40.90,0.00,0.00,0.00,43.45,0.00,0.00,0.00,46.98,0.00 +603677.SH,0.00,0.00,0.00,50.94,0.00,0.00,0.00,51.86,0.00,0.00,0.00,47.59,0.00,0.00,0.00,50.23,0.00,0.00,0.00,50.81,0.00 +300549.SZ,0.00,0.00,0.00,20.90,0.00,0.00,0.00,18.96,0.00,0.00,0.00,23.18,0.00,0.00,0.00,19.20,0.00,0.00,0.00,18.48,0.00 +603126.SH,0.00,0.00,0.00,23.46,0.00,0.00,0.00,27.98,0.00,0.00,0.00,19.95,0.00,0.00,0.00,23.49,0.00,0.00,0.00,22.56,0.00 +301313.SZ,0.00,46.56,0.00,22.07,0.00,0.00,25.25,20.95,0.00,0.00,0.00,27.71,0.00,0.00,0.00,25.34,0.00,0.00,0.00,31.68,0.00 +603722.SH,0.00,0.00,0.00,62.30,0.00,0.00,0.00,59.62,0.00,0.00,0.00,55.82,0.00,0.00,0.00,55.15,0.00,0.00,0.00,57.96,0.00 +301290.SZ,0.00,0.00,0.00,23.89,0.00,23.54,0.00,21.45,0.00,25.70,0.00,27.95,0.00,0.00,0.00,29.76,0.00,0.00,0.00,20.54,0.00 +002075.SZ,0.00,0.00,0.00,20.05,0.00,0.00,0.00,21.43,0.00,0.00,0.00,18.17,0.00,0.00,0.00,22.23,0.00,0.00,0.00,23.56,0.00 +600227.SH,0.00,0.00,0.00,50.18,0.00,0.00,0.00,51.79,0.00,0.00,0.00,52.29,0.00,0.00,0.00,45.13,0.00,0.00,0.00,17.93,0.00 +872931.BJ,0.00,0.00,0.00,91.82,0.00,0.00,0.00,91.95,0.00,0.00,0.00,80.84,0.00,91.98,0.00,90.86,0.00,0.00,0.00,76.44,0.00 +301038.SZ,0.00,49.03,0.00,35.23,0.00,0.00,0.00,33.06,0.00,0.00,0.00,28.77,0.00,0.00,0.00,19.45,0.00,0.00,0.00,21.41,0.00 +688360.SH,0.00,0.00,0.00,20.55,0.00,0.00,0.00,24.33,0.00,0.00,0.00,26.48,0.00,0.00,0.00,19.48,0.00,0.00,0.00,18.66,0.00 +600810.SH,0.00,0.00,0.00,15.64,0.00,0.00,0.00,19.18,0.00,0.00,0.00,18.12,0.00,0.00,0.00,15.01,0.00,0.00,0.00,17.03,0.00 +300226.SZ,0.00,0.00,0.00,10.96,0.00,0.00,0.00,14.47,0.00,0.00,0.00,9.35,0.00,0.00,0.00,12.87,0.00,0.00,0.00,11.35,0.00 +600489.SH,0.00,0.00,0.00,60.80,0.00,0.00,0.00,55.96,0.00,0.00,0.00,80.32,0.00,0.00,0.00,88.93,0.00,0.00,0.00,91.32,0.00 +002952.SZ,0.00,0.00,0.00,40.21,0.00,0.00,0.00,33.14,0.00,0.00,0.00,45.01,0.00,0.00,0.00,42.04,0.00,0.00,0.00,52.48,0.00 +002403.SZ,0.00,0.00,0.00,32.68,0.00,0.00,0.00,25.57,0.00,0.00,0.00,23.81,0.00,0.00,0.00,20.98,0.00,0.00,0.00,27.20,0.00 +688316.SH,0.00,37.63,0.00,40.18,0.00,0.00,0.00,42.61,0.00,0.00,0.00,41.20,0.00,0.00,0.00,43.43,0.00,0.00,0.00,46.98,0.00 +600981.SH,0.00,0.00,0.00,11.27,0.00,0.00,0.00,11.42,0.00,0.00,0.00,10.01,0.00,0.00,0.00,10.01,0.00,0.00,0.00,10.69,0.00 +000913.SZ,0.00,0.00,0.00,32.64,0.00,0.00,0.00,35.70,0.00,0.00,0.00,32.52,0.00,0.00,0.00,24.23,0.00,0.00,0.00,28.45,0.00 +002012.SZ,0.00,0.00,0.00,30.77,0.00,0.00,0.00,24.75,0.00,0.00,0.00,16.20,0.00,0.00,0.00,22.89,0.00,0.00,0.00,24.98,0.00 +688469.SH,0.00,0.00,0.00,54.78,0.00,0.00,0.00,46.10,0.00,37.67,0.00,43.24,0.00,0.00,0.00,55.43,0.00,0.00,0.00,53.89,0.00 +301196.SZ,0.00,35.43,0.00,38.91,0.00,39.97,0.00,40.84,0.00,0.00,0.00,32.12,0.00,0.00,0.00,34.82,0.00,0.00,0.00,43.47,0.00 +603885.SH,0.00,0.00,0.00,12.53,0.00,0.00,0.00,26.18,0.00,0.00,0.00,22.98,0.00,0.00,0.00,18.06,0.00,0.00,0.00,21.08,0.00 +300640.SZ,0.00,0.00,0.00,23.84,0.00,0.00,0.00,23.91,0.00,0.00,0.00,23.11,0.00,0.00,0.00,24.86,0.00,0.00,0.00,18.92,0.00 +301121.SZ,45.28,0.00,0.00,33.17,0.00,37.62,0.00,31.97,0.00,0.00,0.00,41.61,0.00,0.00,0.00,41.55,0.00,0.00,0.00,31.87,0.00 +871642.BJ,0.00,97.61,0.00,89.44,0.00,0.00,0.00,78.66,0.00,0.00,0.00,65.77,0.00,0.00,0.00,71.66,0.00,0.00,0.00,54.44,0.00 +301380.SZ,0.00,68.13,0.00,63.97,0.00,0.00,0.00,59.00,0.00,0.00,0.00,57.05,0.00,0.00,0.00,49.89,0.00,0.00,0.00,49.37,0.00 +001298.SZ,0.00,0.00,0.00,34.97,0.00,32.33,0.00,32.62,0.00,0.00,0.00,39.13,0.00,0.00,0.00,37.56,0.00,0.00,0.00,37.10,0.00 +300852.SZ,0.00,0.00,0.00,28.12,0.00,0.00,0.00,25.92,0.00,0.00,0.00,24.75,0.00,0.00,0.00,23.18,0.00,0.00,0.00,20.70,0.00 +300162.SZ,0.00,0.00,0.00,17.49,0.00,0.00,0.00,23.19,0.00,0.00,0.00,31.69,0.00,0.00,0.00,24.40,0.00,0.00,0.00,27.54,0.00 +688419.SH,0.00,0.00,0.00,26.93,0.00,40.73,0.00,40.87,0.00,49.36,0.00,41.15,0.00,27.55,0.00,26.59,0.00,0.00,0.00,33.26,0.00 +300724.SZ,0.00,0.00,0.00,47.30,0.00,0.00,0.00,56.66,0.00,0.00,0.00,48.79,0.00,0.00,0.00,47.63,0.00,0.00,0.00,45.77,0.00 +300844.SZ,0.00,17.13,0.00,18.46,0.00,0.00,0.00,10.68,0.00,0.00,0.00,8.65,0.00,0.00,0.00,14.30,0.00,0.00,0.00,14.47,0.00 +688123.SH,0.00,0.00,0.00,56.67,0.00,0.00,0.00,42.06,0.00,0.00,0.00,62.88,0.00,0.00,0.00,57.76,0.00,0.00,0.00,57.50,0.00 +300521.SZ,0.00,0.00,0.00,73.45,0.00,0.00,0.00,70.97,0.00,0.00,0.00,67.90,0.00,0.00,0.00,58.06,0.00,0.00,0.00,63.65,0.00 +300560.SZ,0.00,0.00,0.00,61.70,0.00,0.00,0.00,65.70,0.00,0.00,0.00,68.84,0.00,0.00,0.00,57.84,0.00,0.00,0.00,81.38,0.00 +688128.SH,0.00,0.00,0.00,11.85,0.00,0.00,0.00,15.45,0.00,0.00,0.00,21.28,0.00,0.00,0.00,23.71,0.00,0.00,0.00,19.35,0.00 +603600.SH,0.00,0.00,0.00,64.71,0.00,0.00,0.00,62.03,0.00,67.80,0.00,68.71,0.00,60.33,0.00,54.12,0.00,51.52,0.00,52.46,0.00 +600361.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,12.13,0.00,0.00,0.00,10.62,0.00,0.00,0.00,10.55,0.00 +300504.SZ,0.00,0.00,0.00,94.93,0.00,0.00,0.00,93.83,0.00,0.00,0.00,94.61,0.00,0.00,0.00,96.47,0.00,0.00,0.00,96.47,0.00 +600533.SH,0.00,0.00,0.00,2.09,0.00,0.00,0.00,1.84,0.00,0.00,0.00,0.90,0.00,0.00,0.00,2.63,0.00,0.00,0.00,8.61,0.00 +301077.SZ,0.00,12.46,0.00,13.68,0.00,0.00,0.00,12.10,0.00,0.00,0.00,9.27,0.00,0.00,0.00,10.63,0.00,0.00,0.00,13.83,0.00 +300641.SZ,0.00,0.00,0.00,15.39,0.00,0.00,0.00,18.02,0.00,0.00,0.00,13.30,0.00,0.00,0.00,17.06,0.00,0.00,0.00,20.36,0.00 +001373.SZ,0.00,0.00,0.00,71.45,0.00,0.00,39.11,61.10,0.00,66.48,0.00,62.96,0.00,0.00,0.00,57.86,0.00,0.00,0.00,58.69,0.00 +600855.SH,0.00,0.00,0.00,16.66,0.00,0.00,0.00,25.70,0.00,0.00,0.00,31.01,0.00,0.00,0.00,19.53,0.00,0.00,0.00,19.34,0.00 +300881.SZ,0.00,0.00,0.00,85.47,0.00,0.00,0.00,86.88,0.00,0.00,0.00,88.18,0.00,0.00,0.00,84.83,0.00,0.00,0.00,79.75,0.00 +002030.SZ,0.00,0.00,0.00,10.54,0.00,0.00,0.00,6.66,0.00,0.00,0.00,10.11,0.00,0.00,0.00,14.06,0.00,0.00,0.00,14.15,0.00 +601886.SH,0.00,0.00,0.00,20.16,0.00,0.00,0.00,10.92,0.00,0.00,0.00,13.18,0.00,0.00,0.00,16.02,0.00,0.00,0.00,16.67,0.00 +301550.SZ,0.00,0.00,0.00,40.01,0.00,39.37,0.00,40.58,0.00,0.00,0.00,41.73,0.00,42.84,0.00,44.12,0.00,0.00,0.00,37.24,0.00 +603210.SH,0.00,0.00,0.00,85.47,0.00,0.00,0.00,84.83,0.00,0.00,0.00,85.63,0.00,0.00,0.00,84.57,0.00,78.22,0.00,0.00,0.00 +300041.SZ,0.00,0.00,0.00,17.29,0.00,0.00,0.00,30.75,0.00,0.00,0.00,28.81,0.00,0.00,0.00,23.99,0.00,0.00,0.00,18.91,0.00 +600531.SH,0.00,0.00,0.00,37.08,0.00,0.00,0.00,36.76,0.00,0.00,0.00,36.71,0.00,0.00,0.00,42.91,0.00,0.00,0.00,41.39,0.00 +603200.SH,0.00,0.00,0.00,50.22,0.00,0.00,0.00,41.16,0.00,0.00,0.00,33.79,0.00,0.00,0.00,48.02,0.00,0.00,0.00,38.98,0.00 +601456.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +300307.SZ,0.00,0.00,0.00,19.93,0.00,0.00,0.00,13.67,0.00,0.00,0.00,13.96,0.00,0.00,0.00,14.44,0.00,0.00,0.00,11.05,0.00 +002436.SZ,0.00,0.00,0.00,10.86,0.00,0.00,0.00,10.60,0.00,0.00,0.00,11.80,0.00,0.00,0.00,15.85,0.00,0.00,0.00,25.62,0.00 +301152.SZ,0.00,69.07,0.00,63.71,0.00,51.37,0.00,53.54,0.00,57.17,0.00,52.28,0.00,0.00,0.00,31.18,0.00,0.00,0.00,41.93,0.00 +002782.SZ,0.00,0.00,0.00,49.55,0.00,0.00,0.00,47.65,0.00,0.00,0.00,38.11,0.00,0.00,0.00,44.61,0.00,0.00,0.00,44.04,0.00 +600537.SH,0.00,0.00,0.00,59.65,0.00,0.00,0.00,33.31,0.00,0.00,0.00,43.37,0.00,0.00,0.00,55.20,0.00,0.00,0.00,57.21,0.00 +002212.SZ,0.00,0.00,0.00,20.91,0.00,0.00,0.00,30.48,0.00,0.00,0.00,41.76,0.00,0.00,0.00,38.71,0.00,0.00,0.00,37.34,0.00 +300170.SZ,0.00,0.00,0.00,12.35,0.00,0.00,0.00,11.90,0.00,0.00,0.00,12.87,0.00,0.00,0.00,11.43,0.00,0.00,0.00,10.79,0.00 +601058.SH,0.00,0.00,0.00,21.44,0.00,0.00,0.00,21.21,0.00,0.00,0.00,21.45,0.00,0.00,0.00,18.18,0.00,0.00,0.00,18.78,0.00 +603232.SH,0.00,0.00,0.00,16.62,0.00,0.00,0.00,29.42,0.00,0.00,0.00,2.91,0.00,0.00,0.00,15.80,0.00,0.00,0.00,21.09,0.00 +300995.SZ,30.79,14.49,0.00,19.79,0.00,0.00,0.00,26.17,0.00,0.00,0.00,29.75,0.00,0.00,0.00,28.93,0.00,0.00,0.00,27.68,0.00 +300346.SZ,0.00,0.00,0.00,38.37,0.00,0.00,0.00,39.73,0.00,0.00,0.00,42.24,0.00,0.00,0.00,35.28,0.00,0.00,0.00,31.87,0.00 +300099.SZ,0.00,0.00,0.00,57.03,0.00,0.00,0.00,46.51,0.00,0.00,0.00,40.69,0.00,0.00,0.00,28.86,0.00,0.00,0.00,24.25,0.00 +300349.SZ,0.00,0.00,0.00,13.04,0.00,0.00,0.00,20.78,0.00,0.00,0.00,23.58,0.00,0.00,0.00,20.58,0.00,0.00,0.00,18.53,0.00 +002609.SZ,0.00,0.00,0.00,14.14,0.00,0.00,0.00,10.06,0.00,0.00,0.00,7.43,0.00,0.00,0.00,4.78,0.00,0.00,0.00,3.45,0.00 +002953.SZ,0.00,0.00,0.00,48.68,0.00,0.00,0.00,51.94,0.00,0.00,0.00,45.88,0.00,0.00,0.00,47.74,0.00,0.00,0.00,42.06,0.00 +920128.BJ,0.00,0.00,0.00,21.63,0.00,0.00,0.00,16.65,0.00,0.00,0.00,17.17,0.00,18.90,0.00,19.33,0.00,16.42,0.00,18.75,0.00 +300780.SZ,0.00,0.00,0.00,19.89,0.00,0.00,0.00,23.19,0.00,0.00,0.00,28.24,0.00,0.00,0.00,17.91,0.00,0.00,0.00,19.69,0.00 +000039.SZ,0.00,0.00,0.00,11.10,0.00,0.00,0.00,16.43,0.00,0.00,0.00,12.35,0.00,0.00,0.00,6.93,0.00,0.00,0.00,14.03,0.00 +001317.SZ,0.00,70.83,0.00,71.32,0.00,70.57,0.00,70.80,0.00,0.00,0.00,69.95,0.00,0.00,0.00,73.59,0.00,0.00,0.00,73.87,0.00 +301155.SZ,0.00,70.92,0.00,72.93,0.00,71.94,0.00,74.32,0.00,0.00,0.00,73.76,0.00,0.00,0.00,67.97,0.00,0.00,0.00,80.29,0.00 +002284.SZ,0.00,0.00,0.00,41.08,0.00,0.00,0.00,53.75,0.00,0.00,0.00,54.39,0.00,0.00,0.00,62.17,0.00,0.00,0.00,59.08,0.00 +300768.SZ,0.00,0.00,0.00,78.42,0.00,0.00,0.00,90.09,0.00,0.00,0.00,85.14,0.00,0.00,0.00,86.60,0.00,0.00,0.00,84.35,0.00 +300024.SZ,0.00,0.00,0.00,20.84,0.00,0.00,0.00,20.62,0.00,0.00,0.00,20.46,0.00,0.00,0.00,30.14,0.00,0.00,0.00,23.55,0.00 +301556.SZ,0.00,0.00,0.00,17.73,0.00,0.00,0.00,17.41,0.00,27.58,0.00,19.23,0.00,0.00,0.00,15.88,0.00,0.00,0.00,14.21,0.00 +603000.SH,0.00,0.00,0.00,7.64,0.00,0.00,0.00,6.92,0.00,0.00,0.00,5.57,0.00,0.00,0.00,7.02,0.00,0.00,0.00,6.09,0.00 +603305.SH,0.00,0.00,0.00,66.57,0.00,0.00,0.00,66.20,0.00,0.00,0.00,58.86,0.00,0.00,0.00,56.23,0.00,0.00,0.00,59.97,0.00 +832000.BJ,0.00,34.62,0.00,33.25,0.00,0.00,0.00,37.57,0.00,0.00,0.00,37.14,0.00,0.00,0.00,41.69,0.00,0.00,0.00,42.01,0.00 +300131.SZ,0.00,0.00,0.00,50.79,0.00,0.00,0.00,20.96,0.00,0.00,0.00,20.42,0.00,0.00,0.00,21.50,0.00,0.00,0.00,22.21,0.00 +002085.SZ,0.00,0.00,0.00,28.38,0.00,0.00,0.00,24.75,0.00,0.00,0.00,32.28,0.00,0.00,0.00,31.84,0.00,0.00,0.00,31.60,0.00 +300073.SZ,0.00,0.00,0.00,46.49,0.00,0.00,0.00,43.17,0.00,0.00,0.00,45.57,0.00,0.00,0.00,58.57,0.00,0.00,0.00,62.50,0.00 +300992.SZ,61.97,0.00,51.68,54.58,0.00,0.00,0.00,58.28,0.00,0.00,0.00,47.83,0.00,0.00,0.00,50.29,0.00,0.00,0.00,43.58,0.00 +300188.SZ,0.00,0.00,0.00,23.53,0.00,0.00,0.00,15.13,0.00,0.00,0.00,18.46,0.00,0.00,0.00,22.88,0.00,0.00,0.00,20.74,0.00 +600478.SH,0.00,0.00,0.00,55.84,0.00,0.00,0.00,51.40,0.00,0.00,0.00,55.25,0.00,0.00,0.00,64.79,0.00,0.00,0.00,53.80,0.00 +002081.SZ,0.00,0.00,0.00,28.07,0.00,0.00,0.00,17.03,0.00,8.94,0.00,10.57,0.00,12.10,0.00,11.89,0.00,11.35,0.00,9.35,0.00 +002763.SZ,0.00,0.00,0.00,10.32,0.00,0.00,0.00,9.53,0.00,0.00,0.00,9.47,0.00,0.00,0.00,8.30,0.00,0.00,0.00,11.53,0.00 +002937.SZ,0.00,0.00,0.00,54.02,0.00,0.00,0.00,52.35,0.00,0.00,0.00,61.16,0.00,0.00,0.00,59.19,0.00,0.00,0.00,54.04,0.00 +301577.SZ,0.00,0.00,0.00,48.20,0.00,95.93,0.00,40.27,0.00,44.81,0.00,44.09,0.00,45.91,0.00,40.71,0.00,0.00,0.00,35.70,0.00 +300585.SZ,0.00,0.00,0.00,49.09,0.00,0.00,0.00,39.97,0.00,0.00,0.00,46.44,0.00,0.00,0.00,53.45,0.00,0.00,0.00,48.79,0.00 +300145.SZ,0.00,0.00,0.00,4.25,0.00,0.00,0.00,5.83,0.00,0.00,0.00,5.59,0.00,0.00,0.00,5.39,0.00,0.00,0.00,6.69,0.00 +002017.SZ,0.00,0.00,0.00,12.08,0.00,0.00,0.00,16.32,0.00,0.00,0.00,25.70,0.00,0.00,0.00,13.62,0.00,0.00,0.00,19.96,0.00 +301182.SZ,0.00,90.30,0.00,90.88,0.00,90.22,0.00,89.97,0.00,0.00,0.00,87.80,0.00,0.00,0.00,79.03,0.00,0.00,0.00,75.78,0.00 +300165.SZ,0.00,0.00,0.00,17.75,0.00,0.00,0.00,13.98,0.00,0.00,0.00,20.32,0.00,0.00,0.00,36.40,0.00,0.00,0.00,18.99,0.00 +000993.SZ,0.00,0.00,0.00,80.22,0.00,0.00,0.00,75.45,0.00,0.00,0.00,62.95,0.00,0.00,0.00,25.53,0.00,0.00,0.00,96.87,0.00 +838030.BJ,0.00,2.30,0.00,2.46,0.00,0.00,0.00,1.98,0.00,0.00,0.00,1.59,0.00,0.00,0.00,1.85,0.00,0.00,0.00,1.94,0.00 +600761.SH,0.00,0.00,0.00,9.23,0.00,0.00,0.00,9.24,0.00,0.00,0.00,8.01,0.00,0.00,0.00,9.30,0.00,0.00,0.00,6.32,0.00 +300490.SZ,0.00,0.00,0.00,21.65,0.00,0.00,0.00,51.23,0.00,0.00,0.00,54.81,0.00,0.00,0.00,60.11,0.00,0.00,0.00,45.86,0.00 +002910.SZ,0.00,0.00,0.00,9.28,0.00,0.00,0.00,10.07,0.00,0.00,0.00,20.00,0.00,20.18,0.00,13.29,0.00,17.69,0.00,8.38,0.00 +300451.SZ,0.00,0.00,0.00,10.27,0.00,0.00,0.00,13.22,0.00,0.00,0.00,8.87,0.00,0.00,0.00,14.16,0.00,0.00,0.00,8.26,0.00 +300959.SZ,0.00,60.47,0.00,56.14,0.00,0.00,0.00,53.44,0.00,0.00,0.00,33.86,0.00,0.00,0.00,30.63,0.00,0.00,0.00,26.89,0.00 +601226.SH,0.00,0.00,0.00,59.61,0.00,78.41,0.00,67.83,0.00,0.00,0.00,64.07,0.00,63.18,0.00,58.54,0.00,55.63,0.00,47.95,0.00 +001332.SZ,0.00,0.00,0.00,60.85,0.00,75.19,0.00,61.78,0.00,0.00,0.00,45.99,0.00,0.00,0.00,53.18,0.00,0.00,0.00,47.65,0.00 +002086.SZ,0.00,0.00,0.00,26.38,0.00,0.00,0.00,35.49,0.00,0.00,0.00,51.37,0.00,0.00,0.00,45.66,0.00,0.00,0.00,32.19,0.00 +603120.SH,0.00,0.00,0.00,13.02,0.00,0.00,0.00,12.60,0.00,12.10,0.00,11.97,0.00,0.00,0.00,10.49,0.00,16.03,0.00,0.00,0.00 +603165.SH,0.00,0.00,0.00,12.64,0.00,0.00,0.00,12.03,0.00,0.00,0.00,11.12,0.00,0.00,0.00,12.57,0.00,0.00,0.00,14.41,0.00 +430017.BJ,0.00,0.00,0.00,32.62,0.00,0.00,0.00,30.09,0.00,35.68,0.00,35.80,0.00,0.00,0.00,38.15,0.00,0.00,0.00,43.16,0.00 +300055.SZ,0.00,0.00,0.00,75.99,0.00,0.00,0.00,32.54,0.00,0.00,0.00,24.71,0.00,0.00,0.00,26.99,0.00,0.00,0.00,40.16,0.00 +002587.SZ,0.00,0.00,0.00,44.43,0.00,0.00,0.00,29.52,0.00,0.00,0.00,37.36,0.00,0.00,0.00,27.33,0.00,0.00,0.00,33.80,0.00 +838924.BJ,0.00,91.35,0.00,86.29,0.00,91.56,0.00,87.26,0.00,0.00,0.00,87.03,0.00,0.00,0.00,92.09,0.00,0.00,0.00,84.10,0.00 +605086.SH,0.00,27.71,0.00,0.00,0.00,0.00,0.00,31.90,0.00,0.00,0.00,26.38,0.00,0.00,0.00,27.53,0.00,0.00,0.00,24.21,0.00 +300948.SZ,0.00,83.41,0.00,73.21,0.00,0.00,0.00,72.16,0.00,0.00,0.00,69.89,0.00,0.00,0.00,67.61,0.00,0.00,0.00,60.97,0.00 +600094.SH,0.00,0.00,0.00,0.41,0.00,0.00,0.00,1.26,0.00,0.00,0.00,1.82,0.00,0.00,0.00,0.47,0.00,0.00,0.00,3.94,0.00 +300171.SZ,0.00,0.00,0.00,12.02,0.00,0.00,0.00,26.99,0.00,0.00,0.00,10.30,0.00,0.00,0.00,11.75,0.00,0.00,0.00,10.73,0.00 +001239.SZ,0.00,0.00,0.00,84.92,0.00,0.00,0.00,90.53,0.00,88.68,0.00,81.02,0.00,86.10,0.00,84.72,0.00,0.00,0.00,66.09,0.00 +688215.SH,0.00,0.00,0.00,34.36,0.00,0.00,0.00,33.23,0.00,0.00,0.00,36.44,0.00,0.00,0.00,35.35,0.00,0.00,0.00,15.44,0.00 +603125.SH,0.00,0.00,0.00,22.16,0.00,22.49,0.00,19.38,0.00,21.10,0.00,21.55,0.00,0.00,0.00,17.79,0.00,0.00,0.00,19.02,0.00 +688682.SH,0.00,96.25,96.67,78.25,0.00,0.00,0.00,56.21,0.00,0.00,0.00,76.85,0.00,0.00,0.00,86.53,0.00,0.00,0.00,86.09,0.00 +002669.SZ,0.00,0.00,0.00,36.18,0.00,0.00,0.00,46.19,0.00,0.00,0.00,41.70,0.00,0.00,0.00,34.34,0.00,0.00,0.00,37.73,0.00 +300688.SZ,0.00,0.00,0.00,29.00,0.00,0.00,0.00,25.22,0.00,0.00,0.00,38.08,0.00,0.00,0.00,12.02,0.00,0.00,0.00,6.37,0.00 +301197.SZ,0.00,0.00,0.00,41.59,0.00,54.74,0.00,33.34,53.98,0.00,0.00,35.40,0.00,0.00,0.00,41.97,0.00,0.00,0.00,49.92,0.00 +300126.SZ,0.00,0.00,0.00,50.03,0.00,0.00,0.00,57.20,0.00,0.00,0.00,54.31,0.00,0.00,0.00,54.90,0.00,0.00,0.00,52.46,0.00 +300706.SZ,0.00,0.00,0.00,42.72,0.00,0.00,0.00,35.60,0.00,0.00,0.00,34.84,0.00,0.00,0.00,24.49,0.00,0.00,0.00,31.08,0.00 +000066.SZ,0.00,0.00,0.00,14.66,0.00,0.00,0.00,10.59,0.00,0.00,0.00,13.66,0.00,0.00,0.00,10.23,0.00,0.00,0.00,19.56,0.00 +603332.SH,0.00,0.00,0.00,16.92,0.00,0.00,0.00,18.07,0.00,0.00,0.00,20.49,0.00,0.00,0.00,28.00,0.00,0.00,0.00,32.90,0.00 +301489.SZ,0.00,0.00,0.00,29.69,0.00,0.00,33.24,32.95,0.00,0.00,0.00,27.61,0.00,0.00,0.00,27.64,0.00,0.00,0.00,45.27,0.00 +002158.SZ,0.00,0.00,0.00,20.77,0.00,0.00,0.00,21.45,0.00,0.00,0.00,24.30,0.00,0.00,0.00,25.96,0.00,0.00,0.00,20.28,0.00 +000629.SZ,0.00,0.00,0.00,38.21,0.00,0.00,0.00,37.26,0.00,0.00,0.00,37.24,0.00,0.00,0.00,40.73,0.00,0.00,0.00,45.29,0.00 +300873.SZ,0.00,52.49,0.00,55.22,0.00,0.00,0.00,55.38,0.00,0.00,0.00,63.81,0.00,0.00,0.00,70.70,0.00,0.00,0.00,57.57,0.00 +688670.SH,0.00,35.22,0.00,7.35,0.00,0.00,0.00,7.94,0.00,0.00,0.00,8.67,0.00,0.00,0.00,16.45,0.00,0.00,0.00,7.58,0.00 +301357.SZ,0.00,0.00,0.00,96.15,0.00,92.88,0.00,95.12,0.00,95.94,0.00,63.35,0.00,0.00,0.00,98.64,0.00,0.00,0.00,81.90,0.00 +688218.SH,0.00,0.00,0.00,61.63,0.00,0.00,0.00,51.09,0.00,0.00,0.00,32.64,0.00,68.09,0.00,50.28,0.00,63.98,0.00,40.28,0.00 +002498.SZ,0.00,0.00,0.00,18.04,0.00,0.00,0.00,15.93,0.00,0.00,0.00,18.41,0.00,0.00,0.00,20.53,0.00,0.00,0.00,19.27,0.00 +002235.SZ,0.00,0.00,0.00,16.42,0.00,0.00,0.00,17.39,0.00,0.00,0.00,20.58,0.00,0.00,0.00,21.67,0.00,0.00,0.00,20.22,0.00 +301586.SZ,0.00,0.00,0.00,99.93,0.00,0.00,0.00,99.98,0.00,99.97,0.00,99.96,0.00,100.01,0.00,99.87,0.00,0.00,0.00,99.72,0.00 +833533.BJ,0.00,0.00,0.00,85.93,0.00,88.03,0.00,86.57,0.00,0.00,0.00,79.73,0.00,0.00,0.00,83.43,0.00,0.00,0.00,82.28,0.00 +603324.SH,0.00,78.88,0.00,74.89,0.00,0.00,0.00,60.11,0.00,0.00,0.00,59.00,0.00,0.00,0.00,69.89,0.00,0.00,0.00,63.83,0.00 +831304.BJ,0.00,0.00,0.00,37.58,0.00,0.00,0.00,37.46,0.00,25.96,0.00,23.15,0.00,0.00,0.00,30.14,0.00,0.00,0.00,36.37,0.00 +300612.SZ,0.00,0.00,0.00,38.26,0.00,0.00,0.00,51.60,0.00,0.00,0.00,64.88,0.00,0.00,0.00,59.58,0.00,0.00,0.00,73.26,0.00 +603358.SH,0.00,0.00,0.00,52.48,0.00,0.00,0.00,50.00,0.00,0.00,0.00,47.07,0.00,0.00,0.00,38.29,0.00,0.00,0.00,40.13,0.00 +600935.SH,0.00,19.28,18.42,18.23,0.00,15.89,14.94,13.42,0.00,0.00,0.00,15.37,0.00,0.00,0.00,15.07,0.00,0.00,0.00,15.01,0.00 +002718.SZ,0.00,0.00,0.00,21.50,0.00,0.00,0.00,11.43,0.00,0.00,0.00,5.39,0.00,0.00,0.00,6.25,0.00,0.00,0.00,8.31,0.00 +600288.SH,0.00,0.00,0.00,9.34,0.00,0.00,0.00,11.19,0.00,0.00,0.00,13.93,0.00,0.00,0.00,18.38,0.00,0.00,0.00,11.11,0.00 +001335.SZ,0.00,0.00,0.00,39.86,0.00,0.00,0.00,38.40,40.21,0.00,38.04,36.83,0.00,32.65,0.00,31.71,0.00,31.21,0.00,28.66,0.00 +600594.SH,0.00,0.00,0.00,13.07,0.00,0.00,0.00,2.24,0.00,0.00,0.00,1.97,0.00,0.00,0.00,13.24,0.00,0.00,0.00,13.22,0.00 +834014.BJ,0.00,0.00,0.00,35.49,0.00,0.00,0.00,40.85,58.27,51.18,48.86,45.01,0.00,0.00,0.00,38.97,0.00,0.00,0.00,30.63,0.00 +000958.SZ,0.00,0.00,0.00,30.72,0.00,0.00,0.00,36.98,0.00,0.00,0.00,66.05,0.00,0.00,0.00,52.18,0.00,0.00,0.00,47.76,0.00 +002655.SZ,0.00,0.00,0.00,41.00,0.00,0.00,0.00,35.77,0.00,0.00,0.00,52.52,0.00,0.00,0.00,42.17,0.00,0.00,0.00,42.48,0.00 +300634.SZ,0.00,0.00,0.00,77.61,0.00,0.00,0.00,76.22,0.00,0.00,0.00,79.25,0.00,0.00,0.00,78.88,0.00,0.00,0.00,79.69,0.00 +688138.SH,0.00,0.00,0.00,47.69,0.00,0.00,0.00,52.72,0.00,0.00,0.00,64.15,0.00,0.00,0.00,60.35,0.00,0.00,0.00,58.10,0.00 +002475.SZ,0.00,0.00,0.00,82.04,0.00,0.00,0.00,83.40,0.00,0.00,0.00,83.09,0.00,0.00,0.00,82.44,0.00,0.00,0.00,78.50,0.00 +002897.SZ,0.00,0.00,0.00,54.81,0.00,0.00,0.00,54.82,0.00,0.00,0.00,58.64,0.00,0.00,0.00,52.77,0.00,0.00,0.00,51.03,0.00 +300690.SZ,0.00,0.00,0.00,53.31,0.00,0.00,0.00,52.17,0.00,0.00,0.00,42.83,0.00,0.00,0.00,38.77,0.00,0.00,0.00,46.92,0.00 +300872.SZ,0.00,0.00,0.00,42.13,0.00,0.00,0.00,36.15,0.00,0.00,0.00,37.22,0.00,0.00,0.00,30.59,0.00,0.00,0.00,32.32,0.00 +002334.SZ,0.00,0.00,0.00,13.97,0.00,0.00,0.00,12.02,0.00,0.00,0.00,14.40,0.00,0.00,0.00,16.33,0.00,0.00,0.00,13.43,0.00 +872541.BJ,0.00,0.00,0.00,76.60,0.00,0.00,0.00,78.52,0.00,87.08,0.00,27.61,0.00,0.00,0.00,72.59,0.00,0.00,0.00,66.66,0.00 +300315.SZ,0.00,0.00,0.00,74.34,0.00,0.00,0.00,75.56,0.00,0.00,0.00,65.97,0.00,0.00,0.00,69.98,0.00,0.00,0.00,67.52,0.00 +601208.SH,0.00,0.00,0.00,13.64,0.00,0.00,0.00,14.80,0.00,0.00,0.00,16.81,0.00,0.00,0.00,12.15,0.00,0.00,0.00,14.82,0.00 +002134.SZ,0.00,0.00,0.00,45.42,0.00,0.00,0.00,43.05,0.00,0.00,0.00,44.14,0.00,0.00,0.00,48.34,0.00,0.00,0.00,53.22,0.00 +688631.SH,0.00,0.00,0.00,44.21,0.00,0.00,0.00,20.54,0.00,40.79,0.00,22.85,0.00,0.00,0.00,21.83,0.00,0.00,0.00,40.32,0.00 +688420.SH,0.00,0.00,0.00,60.89,0.00,0.00,0.00,43.10,0.00,75.39,0.00,36.19,0.00,0.00,0.00,47.64,0.00,0.00,0.00,41.53,0.00 +688170.SH,0.00,0.00,0.00,29.18,0.00,37.52,0.00,20.14,0.00,0.00,0.00,24.11,0.00,0.00,0.00,18.10,0.00,0.00,0.00,25.67,0.00 +300019.SZ,0.00,0.00,0.00,12.10,0.00,0.00,0.00,12.06,0.00,0.00,0.00,13.46,0.00,0.00,0.00,12.19,0.00,0.00,0.00,10.56,0.00 +300110.SZ,0.00,0.00,0.00,28.84,0.00,0.00,0.00,22.01,0.00,0.00,0.00,12.91,0.00,0.00,0.00,14.79,0.00,0.00,0.00,16.46,0.00 +301219.SZ,73.06,0.00,62.36,61.42,0.00,69.82,0.00,66.37,0.00,0.00,0.00,55.72,0.00,0.00,0.00,38.08,0.00,0.00,0.00,61.85,0.00 +002805.SZ,0.00,0.00,0.00,28.94,0.00,0.00,0.00,50.60,0.00,0.00,0.00,79.14,0.00,0.00,0.00,96.34,0.00,0.00,0.00,92.86,0.00 +688339.SH,0.00,0.00,0.00,77.63,0.00,0.00,0.00,84.16,0.00,0.00,0.00,88.80,0.00,0.00,0.00,83.94,0.00,0.00,0.00,83.00,0.00 +603373.SH,0.00,0.00,0.00,37.15,0.00,36.74,0.00,35.65,0.00,34.78,0.00,33.10,0.00,34.09,33.58,31.73,0.00,0.00,0.00,28.37,0.00 +605162.SH,0.00,0.00,0.00,57.37,52.83,0.00,0.00,56.48,0.00,0.00,0.00,51.88,0.00,0.00,0.00,47.91,0.00,0.00,0.00,51.24,0.00 +000690.SZ,0.00,0.00,0.00,0.00,0.00,0.00,0.00,98.24,0.00,0.00,0.00,97.21,0.00,0.00,0.00,0.00,0.00,0.00,0.00,99.79,0.00 +603137.SH,0.00,0.00,0.00,81.02,0.00,78.41,0.00,75.47,0.00,77.68,0.00,0.00,0.00,0.00,0.00,72.55,0.00,0.00,0.00,80.18,0.00 +002558.SZ,0.00,0.00,0.00,24.90,0.00,0.00,0.00,29.83,0.00,0.00,0.00,28.09,0.00,0.00,0.00,27.49,0.00,0.00,0.00,32.54,0.00 +688323.SH,0.00,51.23,0.00,55.39,0.00,0.00,0.00,40.40,0.00,0.00,0.00,42.37,0.00,0.00,0.00,51.46,0.00,0.00,0.00,49.90,0.00 +688207.SH,0.00,0.00,0.00,57.57,0.00,74.54,0.00,0.00,0.00,0.00,0.00,89.07,0.00,0.00,0.00,91.56,0.00,0.00,0.00,63.44,0.00 +600731.SH,0.00,0.00,0.00,32.15,0.00,0.00,0.00,38.62,0.00,0.00,0.00,39.88,0.00,0.00,0.00,27.58,0.00,0.00,0.00,43.05,0.00 +601778.SH,0.00,0.00,0.00,39.56,0.00,0.00,0.00,39.85,0.00,0.00,0.00,41.61,0.00,0.00,0.00,38.14,0.00,0.00,0.00,37.14,0.00 +688401.SH,0.00,0.00,0.00,65.94,0.00,0.00,66.32,67.11,0.00,0.00,0.00,71.83,0.00,74.37,0.00,71.98,0.00,74.33,0.00,73.71,0.00 +002978.SZ,0.00,0.00,0.00,77.70,0.00,0.00,0.00,71.34,0.00,0.00,0.00,61.86,0.00,0.00,0.00,60.06,0.00,0.00,0.00,60.40,0.00 +603138.SH,0.00,0.00,0.00,37.93,0.00,0.00,0.00,43.52,0.00,0.00,0.00,45.76,0.00,0.00,0.00,31.88,0.00,0.00,0.00,40.59,0.00 +301565.SZ,0.00,0.00,0.00,23.74,0.00,0.00,0.00,23.25,0.00,20.78,0.00,19.40,0.00,19.05,0.00,16.86,0.00,0.00,0.00,17.98,0.00 +688533.SH,0.00,58.70,0.00,0.00,0.00,0.00,0.00,58.59,0.00,0.00,0.00,51.90,0.00,57.14,0.00,56.64,0.00,50.48,0.00,47.09,0.00 +300254.SZ,0.00,0.00,0.00,13.06,0.00,0.00,0.00,16.93,0.00,0.00,0.00,16.40,0.00,0.00,0.00,16.77,0.00,0.00,0.00,38.81,0.00 +300062.SZ,0.00,0.00,0.00,21.76,0.00,0.00,0.00,15.34,0.00,0.00,0.00,17.16,0.00,0.00,0.00,27.15,0.00,0.00,0.00,27.71,0.00 +002455.SZ,0.00,0.00,0.00,12.09,0.00,0.00,0.00,10.72,0.00,0.00,0.00,17.20,0.00,0.00,0.00,8.61,0.00,0.00,0.00,13.79,0.00 +301022.SZ,0.00,73.11,0.00,67.06,0.00,0.00,0.00,74.49,0.00,0.00,0.00,75.38,0.00,0.00,0.00,72.72,0.00,0.00,0.00,62.30,0.00 +002152.SZ,0.00,0.00,0.00,28.38,0.00,0.00,0.00,24.37,0.00,0.00,0.00,23.46,0.00,0.00,0.00,19.52,0.00,0.00,0.00,21.24,0.00 +002617.SZ,0.00,0.00,0.00,25.57,0.00,0.00,0.00,48.07,0.00,0.00,0.00,52.97,0.00,0.00,0.00,50.73,0.00,0.00,0.00,53.41,0.00 +002533.SZ,0.00,0.00,0.00,11.94,0.00,0.00,0.00,8.31,0.00,0.00,0.00,9.50,0.00,0.00,0.00,15.79,0.00,0.00,0.00,20.20,0.00 +002892.SZ,0.00,0.00,0.00,31.93,0.00,0.00,0.00,33.66,0.00,0.00,0.00,30.10,0.00,0.00,0.00,27.37,0.00,0.00,0.00,32.18,0.00 +301345.SZ,0.00,22.46,0.00,33.09,0.00,37.37,0.00,39.92,0.00,35.87,0.00,36.17,0.00,0.00,0.00,49.68,0.00,0.00,0.00,48.89,0.00 +605158.SH,0.00,0.00,0.00,31.88,0.00,0.00,0.00,38.50,0.00,0.00,0.00,41.83,0.00,0.00,0.00,34.97,0.00,0.00,0.00,35.29,0.00 +300220.SZ,0.00,0.00,0.00,11.78,0.00,0.00,0.00,10.41,0.00,0.00,0.00,20.00,0.00,0.00,0.00,22.33,0.00,0.00,0.00,20.80,0.00 +300303.SZ,0.00,0.00,0.00,24.90,0.00,0.00,0.00,23.28,0.00,0.00,0.00,28.38,0.00,0.00,0.00,31.47,0.00,0.00,0.00,37.35,0.00 +300592.SZ,0.00,0.00,0.00,82.11,0.00,0.00,0.00,4.17,0.00,0.00,0.00,87.67,0.00,0.00,0.00,82.24,0.00,0.00,0.00,79.13,0.00 +301010.SZ,0.00,46.82,0.00,25.74,0.00,0.00,0.00,19.57,0.00,0.00,0.00,23.54,0.00,0.00,0.00,17.13,0.00,0.00,0.00,20.91,0.00 +688069.SH,95.56,0.00,0.00,73.55,0.00,0.00,0.00,59.38,0.00,0.00,0.00,47.99,0.00,0.00,0.00,68.87,0.00,0.00,0.00,71.17,0.00 +002605.SZ,0.00,0.00,0.00,36.66,0.00,0.00,0.00,15.91,0.00,0.00,0.00,17.92,0.00,0.00,0.00,16.18,0.00,0.00,0.00,19.00,0.00 +600397.SH,0.00,0.00,0.00,63.36,0.00,67.92,0.00,65.82,0.00,60.55,0.00,72.68,0.00,66.39,0.00,74.74,0.00,74.12,0.00,76.72,0.00 +688626.SH,0.00,11.67,0.00,10.34,0.00,0.00,0.00,9.51,0.00,0.00,0.00,11.14,0.00,0.00,0.00,12.60,0.00,0.00,0.00,12.53,0.00 +002963.SZ,0.00,0.00,0.00,66.55,0.00,0.00,0.00,70.16,0.00,0.00,0.00,55.78,0.00,0.00,0.00,54.49,0.00,0.00,0.00,57.16,0.00 +002484.SZ,0.00,0.00,0.00,13.93,0.00,0.00,0.00,12.87,0.00,0.00,0.00,20.40,0.00,0.00,0.00,20.64,0.00,0.00,0.00,17.69,0.00 +300597.SZ,0.00,0.00,0.00,40.76,0.00,0.00,0.00,40.27,0.00,0.00,0.00,55.82,0.00,0.00,0.00,49.57,0.00,0.00,0.00,58.84,0.00 +000553.SZ,0.00,0.00,0.00,6.01,0.00,0.00,0.00,6.54,0.00,0.00,0.00,8.35,0.00,0.00,0.00,8.85,0.00,0.00,0.00,8.75,0.00 +301302.SZ,0.00,57.89,0.00,38.58,0.00,47.61,0.00,34.03,0.00,0.00,0.00,33.41,0.00,0.00,0.00,25.18,0.00,0.00,0.00,62.80,0.00 +300997.SZ,0.00,10.98,0.00,9.33,0.00,10.45,0.00,8.51,0.00,0.00,0.00,9.27,0.00,6.01,0.00,6.32,0.00,5.10,0.00,10.03,0.00 +301518.SZ,0.00,0.00,0.00,16.24,0.00,0.00,13.51,13.37,0.00,0.00,0.00,12.58,0.00,0.00,0.00,11.68,0.00,0.00,0.00,10.95,0.00 +603967.SH,0.00,0.00,0.00,12.21,0.00,0.00,0.00,11.28,0.00,0.00,0.00,11.60,0.00,0.00,0.00,7.11,0.00,0.00,0.00,8.76,0.00 +300865.SZ,0.00,0.00,0.00,19.86,0.00,0.00,0.00,14.79,0.00,0.00,0.00,31.26,0.00,0.00,0.00,42.09,0.00,0.00,0.00,29.03,0.00 +600428.SH,0.00,0.00,0.00,33.14,0.00,0.00,0.00,28.42,0.00,0.00,0.00,26.90,0.00,0.00,0.00,25.70,0.00,0.00,0.00,20.60,0.00 +300672.SZ,0.00,0.00,0.00,56.56,0.00,0.00,0.00,86.29,0.00,0.00,0.00,92.98,0.00,0.00,0.00,93.87,0.00,0.00,0.00,85.87,0.00 +300341.SZ,0.00,0.00,0.00,13.55,0.00,0.00,0.00,14.81,0.00,0.00,0.00,16.86,0.00,0.00,0.00,19.79,0.00,0.00,0.00,18.57,0.00 +002997.SZ,0.00,61.64,0.00,52.77,0.00,0.00,0.00,42.19,0.00,0.00,0.00,53.14,0.00,0.00,0.00,55.35,0.00,0.00,0.00,68.25,0.00 +000802.SZ,0.00,0.00,0.00,90.01,0.00,0.00,0.00,85.72,0.00,0.00,0.00,92.33,0.00,0.00,0.00,97.26,0.00,0.00,0.00,87.53,0.00 +603338.SH,0.00,0.00,0.00,73.61,0.00,0.00,0.00,62.28,0.00,0.00,0.00,53.95,0.00,0.00,0.00,39.69,0.00,0.00,0.00,27.60,0.00 +600268.SH,0.00,0.00,0.00,37.49,0.00,0.00,0.00,47.65,0.00,0.00,0.00,42.26,0.00,0.00,0.00,44.50,0.00,0.00,0.00,46.10,0.00 +000032.SZ,0.00,0.00,0.00,37.39,0.00,0.00,0.00,7.51,0.00,0.00,0.00,14.15,0.00,0.00,0.00,14.71,0.00,0.00,0.00,13.94,0.00 +601996.SH,0.00,0.00,0.00,56.84,0.00,0.00,0.00,44.99,0.00,0.00,0.00,27.22,0.00,0.00,0.00,25.17,0.00,0.00,0.00,24.64,0.00 +832419.BJ,0.00,0.00,0.00,50.87,0.00,47.29,0.00,50.37,0.00,0.00,0.00,38.38,0.00,0.00,0.00,38.05,0.00,0.00,0.00,37.38,0.00 +002869.SZ,0.00,0.00,0.00,21.09,0.00,0.00,0.00,33.87,0.00,0.00,0.00,21.23,0.00,0.00,0.00,28.85,0.00,0.00,0.00,45.65,0.00 +002206.SZ,0.00,0.00,0.00,14.64,0.00,0.00,0.00,13.27,0.00,0.00,0.00,10.98,0.00,0.00,0.00,10.24,0.00,0.00,0.00,11.60,0.00 +300215.SZ,0.00,0.00,0.00,10.08,0.00,0.00,0.00,8.27,0.00,0.00,0.00,12.03,0.00,0.00,0.00,16.23,0.00,0.00,0.00,13.94,0.00 +000801.SZ,0.00,0.00,0.00,36.03,0.00,0.00,0.00,41.68,0.00,44.05,0.00,46.63,0.00,56.75,0.00,53.33,0.00,0.00,0.00,59.22,0.00 +600191.SH,0.00,0.00,0.00,90.67,0.00,0.00,0.00,56.25,0.00,0.00,0.00,38.56,0.00,0.00,0.00,32.82,0.00,0.00,0.00,34.76,0.00 +300795.SZ,0.00,0.00,0.00,9.55,0.00,0.00,0.00,6.24,0.00,0.00,0.00,10.14,0.00,0.00,0.00,7.19,0.00,0.00,0.00,8.01,0.00 +000530.SZ,0.00,0.00,0.00,14.54,0.00,0.00,0.00,20.71,0.00,0.00,0.00,16.60,0.00,0.00,0.00,11.79,0.00,0.00,0.00,12.09,0.00 +603988.SH,0.00,0.00,0.00,49.54,0.00,0.00,0.00,36.12,0.00,0.00,0.00,26.02,0.00,0.00,0.00,31.77,0.00,0.00,0.00,24.68,0.00 +000899.SZ,0.00,0.00,0.00,99.79,0.00,0.00,0.00,98.33,0.00,0.00,0.00,99.18,0.00,0.00,0.00,99.68,0.00,0.00,0.00,99.13,0.00 +002696.SZ,0.00,0.00,0.00,10.41,0.00,0.00,0.00,7.64,0.00,0.00,0.00,9.83,0.00,0.00,0.00,9.67,0.00,0.00,0.00,12.55,0.00 +300313.SZ,0.00,0.00,0.00,61.97,0.00,0.00,0.00,42.12,0.00,0.00,0.00,25.90,0.00,0.00,0.00,22.62,0.00,0.00,0.00,27.62,0.00 +002449.SZ,0.00,0.00,0.00,23.46,0.00,0.00,0.00,24.65,0.00,0.00,0.00,17.06,0.00,0.00,0.00,17.33,0.00,0.00,0.00,19.07,0.00 +301019.SZ,0.00,31.57,0.00,30.15,0.00,0.00,0.00,30.70,0.00,0.00,0.00,31.35,0.00,0.00,0.00,26.47,0.00,0.00,0.00,30.00,0.00 +688429.SH,0.00,0.00,0.00,52.13,0.00,0.00,0.00,55.08,0.00,38.55,0.00,41.69,58.38,0.00,0.00,44.82,0.00,0.00,0.00,52.47,0.00 +002258.SZ,0.00,0.00,0.00,17.14,0.00,0.00,0.00,24.67,0.00,0.00,0.00,40.08,0.00,0.00,0.00,29.20,0.00,0.00,0.00,27.87,0.00 +000898.SZ,0.00,0.00,0.00,31.83,0.00,0.00,0.00,33.50,0.00,0.00,0.00,39.25,0.00,0.00,0.00,39.93,0.00,0.00,0.00,41.52,0.00 +301390.SZ,0.00,0.00,0.00,57.04,0.00,49.79,0.00,50.43,0.00,71.03,0.00,61.27,0.00,0.00,0.00,64.89,0.00,0.00,0.00,79.98,0.00 +600421.SH,0.00,0.00,0.00,21.90,0.00,0.00,0.00,17.32,0.00,26.13,0.00,27.47,0.00,36.25,0.00,47.91,0.00,0.00,0.00,50.82,0.00 +603271.SH,0.00,0.00,0.00,20.21,0.00,0.00,0.00,21.92,0.00,38.51,0.00,37.01,0.00,0.00,0.00,30.53,0.00,29.12,0.00,33.56,0.00 +300400.SZ,0.00,0.00,0.00,27.70,0.00,0.00,0.00,18.81,0.00,0.00,0.00,19.16,0.00,0.00,0.00,22.80,0.00,0.00,0.00,21.12,0.00 +000420.SZ,0.00,0.00,0.00,29.95,0.00,0.00,0.00,39.39,0.00,0.00,0.00,40.48,0.00,0.00,0.00,39.10,0.00,0.00,0.00,36.37,0.00 +300148.SZ,0.00,0.00,0.00,27.95,0.00,0.00,0.00,42.98,0.00,0.00,0.00,37.01,0.00,0.00,0.00,44.77,0.00,0.00,0.00,47.62,0.00 +002438.SZ,0.00,0.00,0.00,24.63,0.00,0.00,0.00,26.57,0.00,0.00,0.00,28.28,0.00,0.00,0.00,31.23,0.00,0.00,0.00,39.99,0.00 +688681.SH,0.00,57.08,0.00,54.34,0.00,0.00,0.00,50.91,0.00,0.00,0.00,53.16,0.00,0.00,0.00,55.67,0.00,0.00,0.00,55.21,0.00 +600506.SH,0.00,0.00,0.00,96.18,0.00,0.00,0.00,34.86,0.00,0.00,0.00,12.48,0.00,0.00,0.00,14.62,0.00,0.00,0.00,15.40,0.00 +600345.SH,0.00,0.00,0.00,51.63,0.00,0.00,0.00,64.52,0.00,0.00,0.00,71.78,0.00,0.00,0.00,29.02,0.00,0.00,0.00,31.79,0.00 +603693.SH,0.00,0.00,0.00,98.16,0.00,98.42,0.00,94.35,0.00,98.81,0.00,95.24,0.00,97.90,0.00,95.85,0.00,94.48,0.00,96.01,0.00 +603269.SH,0.00,0.00,0.00,25.95,0.00,0.00,0.00,22.74,0.00,0.00,0.00,21.28,0.00,0.00,0.00,15.85,0.00,0.00,0.00,26.09,0.00 +000791.SZ,0.00,0.00,0.00,99.98,0.00,0.00,0.00,99.99,0.00,0.00,0.00,99.99,0.00,0.00,0.00,99.98,0.00,0.00,0.00,99.87,0.00 +688777.SH,0.00,15.15,0.00,12.73,0.00,0.00,0.00,15.81,0.00,0.00,0.00,14.48,0.00,0.00,0.00,15.46,0.00,0.00,0.00,14.94,0.00 +688216.SH,0.00,26.89,0.00,27.79,0.00,0.00,0.00,23.37,0.00,0.00,0.00,26.49,0.00,0.00,0.00,28.52,0.00,0.00,0.00,27.84,0.00 +605388.SH,0.00,0.00,0.00,8.07,0.00,0.00,0.00,7.58,0.00,0.00,0.00,7.91,0.00,0.00,0.00,12.07,0.00,0.00,0.00,5.61,0.00 +301037.SZ,0.00,30.54,0.00,32.17,0.00,0.00,0.00,41.54,0.00,0.00,0.00,34.12,0.00,0.00,0.00,36.08,0.00,0.00,0.00,37.63,0.00 +835892.BJ,0.00,32.42,0.00,23.77,0.00,0.00,0.00,13.07,0.00,0.00,0.00,14.01,0.00,0.00,0.00,12.82,0.00,0.00,0.00,12.90,0.00 +002792.SZ,0.00,0.00,0.00,50.67,0.00,0.00,0.00,56.21,0.00,0.00,0.00,44.69,0.00,0.00,0.00,67.73,0.00,0.00,0.00,62.50,0.00 +601595.SH,0.00,0.00,0.00,65.90,0.00,0.00,0.00,64.18,0.00,0.00,0.00,69.27,0.00,0.00,0.00,63.47,0.00,0.00,0.00,55.04,0.00 +600319.SH,0.00,0.00,0.00,57.08,0.00,0.00,0.00,34.29,0.00,0.00,0.00,23.68,0.00,0.00,0.00,20.85,0.00,0.00,0.00,21.36,0.00 +688028.SH,0.00,0.00,0.00,17.79,0.00,0.00,0.00,17.10,0.00,0.00,0.00,17.73,0.00,0.00,0.00,27.43,0.00,0.00,0.00,28.57,0.00 +601717.SH,0.00,0.00,0.00,23.82,0.00,0.00,0.00,23.19,0.00,0.00,0.00,21.34,0.00,0.00,0.00,22.58,0.00,0.00,0.00,22.86,0.00 +301299.SZ,0.00,4.98,0.00,3.87,0.00,3.81,0.00,4.29,0.00,0.00,0.00,4.38,0.00,0.00,0.00,4.27,0.00,0.00,0.00,4.17,0.00 +601059.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +000010.SZ,0.00,0.00,0.00,50.46,0.00,0.00,0.00,66.74,0.00,0.00,0.00,61.17,0.00,0.00,0.00,62.60,0.00,0.00,0.00,81.86,0.00 +002136.SZ,0.00,0.00,0.00,21.06,0.00,0.00,0.00,31.24,0.00,0.00,0.00,48.16,0.00,0.00,0.00,36.74,0.00,0.00,0.00,46.97,0.00 +300094.SZ,0.00,0.00,0.00,20.62,0.00,0.00,0.00,22.86,0.00,0.00,0.00,26.24,0.00,0.00,0.00,24.32,0.00,0.00,0.00,19.70,0.00 +688348.SH,0.00,0.00,0.00,41.64,0.00,41.22,0.00,45.01,52.55,0.00,0.00,41.32,0.00,0.00,0.00,31.70,0.00,0.00,0.00,35.46,0.00 +301183.SZ,0.00,0.00,75.11,75.35,0.00,74.36,0.00,65.58,54.52,0.00,0.00,52.98,0.00,0.00,0.00,62.16,0.00,0.00,0.00,66.99,0.00 +003011.SZ,0.00,39.94,0.00,37.14,0.00,0.00,0.00,34.34,0.00,0.00,0.00,42.13,0.00,0.00,0.00,35.55,0.00,0.00,0.00,39.48,0.00 +002496.SZ,0.00,0.00,0.00,45.85,0.00,0.00,0.00,54.99,0.00,0.00,0.00,24.62,0.00,0.00,0.00,15.59,0.00,0.00,0.00,7.55,0.00 +300962.SZ,0.00,17.32,0.00,14.81,0.00,0.00,0.00,14.45,0.00,0.00,0.00,14.27,0.00,0.00,0.00,15.52,0.00,0.00,0.00,14.81,0.00 +300950.SZ,0.00,76.76,0.00,64.08,0.00,0.00,0.00,50.02,0.00,0.00,0.00,62.86,0.00,0.00,0.00,50.47,0.00,0.00,0.00,47.83,0.00 +300264.SZ,0.00,0.00,0.00,65.13,0.00,0.00,0.00,58.09,0.00,0.00,0.00,75.99,0.00,0.00,0.00,62.55,0.00,0.00,0.00,89.34,0.00 +688517.SH,0.00,34.23,0.00,20.54,0.00,0.00,0.00,32.68,0.00,0.00,0.00,83.83,0.00,0.00,0.00,78.55,0.00,0.00,0.00,82.72,0.00 +002119.SZ,0.00,0.00,0.00,23.64,0.00,0.00,0.00,24.73,0.00,0.00,0.00,28.01,0.00,0.00,0.00,25.46,0.00,0.00,0.00,26.98,0.00 +600050.SH,0.00,0.00,0.00,2.25,0.00,0.00,0.00,2.72,0.00,0.00,0.00,2.60,0.00,0.00,0.00,2.20,0.00,0.00,0.00,3.00,0.00 +300086.SZ,0.00,0.00,0.00,15.74,0.00,0.00,0.00,16.08,0.00,0.00,0.00,11.28,0.00,0.00,0.00,20.94,0.00,0.00,0.00,21.93,0.00 +003025.SZ,0.00,12.08,9.02,8.26,0.00,0.00,0.00,7.30,0.00,0.00,0.00,8.82,0.00,0.00,0.00,6.89,0.00,0.00,0.00,9.36,0.00 +002398.SZ,0.00,0.00,0.00,8.61,0.00,0.00,0.00,7.27,0.00,0.00,0.00,9.42,0.00,0.00,0.00,5.87,0.00,0.00,0.00,5.75,0.00 +300486.SZ,0.00,0.00,0.00,33.17,0.00,0.00,0.00,27.49,0.00,0.00,0.00,33.26,0.00,0.00,0.00,39.03,0.00,0.00,0.00,37.72,0.00 +300645.SZ,0.00,0.00,0.00,40.00,0.00,0.00,0.00,32.87,0.00,0.00,0.00,30.00,0.00,0.00,0.00,13.37,0.00,0.00,0.00,13.93,0.00 +002139.SZ,0.00,0.00,0.00,40.43,0.00,0.00,0.00,38.97,0.00,0.00,0.00,36.98,0.00,0.00,0.00,37.35,0.00,0.00,0.00,39.54,0.00 +688055.SH,0.00,0.00,0.00,69.33,0.00,0.00,0.00,69.09,0.00,0.00,0.00,69.04,0.00,0.00,0.00,64.17,0.00,0.00,0.00,71.89,0.00 +300347.SZ,0.00,0.00,0.00,18.03,0.00,0.00,0.00,20.41,0.00,0.00,0.00,21.75,0.00,0.00,0.00,9.70,0.00,0.00,0.00,11.28,0.00 +873122.BJ,0.00,0.00,0.00,17.13,0.00,0.00,19.57,18.44,0.00,0.00,0.00,15.72,0.00,0.00,0.00,14.55,0.00,0.00,0.00,12.86,0.00 +688525.SH,0.00,0.00,0.00,32.23,0.00,0.00,43.39,44.56,0.00,55.69,44.22,39.52,0.00,0.00,0.00,32.32,0.00,0.00,0.00,46.71,0.00 +002324.SZ,0.00,0.00,0.00,11.50,0.00,0.00,0.00,12.38,0.00,0.00,0.00,13.75,0.00,0.00,0.00,15.80,0.00,0.00,0.00,22.43,0.00 +301116.SZ,0.00,11.09,0.00,10.98,0.00,9.75,0.00,9.69,0.00,4.91,0.00,8.89,0.00,5.11,0.00,7.27,0.00,5.30,0.00,7.28,0.00 +300046.SZ,0.00,0.00,0.00,44.02,0.00,0.00,0.00,17.33,0.00,0.00,0.00,25.27,0.00,0.00,0.00,15.95,0.00,0.00,0.00,20.02,0.00 +600493.SH,0.00,0.00,0.00,24.98,0.00,0.00,0.00,28.09,0.00,0.00,0.00,45.68,0.00,0.00,0.00,43.63,0.00,0.00,0.00,47.13,0.00 +002347.SZ,0.00,0.00,0.00,19.40,0.00,0.00,0.00,23.38,0.00,0.00,0.00,17.84,0.00,0.00,0.00,18.72,0.00,0.00,0.00,19.67,0.00 +002607.SZ,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.01,0.00,0.00,0.00,0.02,0.00 +003020.SZ,0.00,24.28,24.65,24.59,0.00,0.00,0.00,28.57,0.00,0.00,0.00,28.40,0.00,0.00,0.00,36.73,0.00,0.00,0.00,50.02,0.00 +300905.SZ,0.00,31.70,0.00,30.11,0.00,0.00,0.00,27.79,0.00,0.00,0.00,29.33,0.00,0.00,0.00,36.64,0.00,0.00,0.00,36.43,0.00 +301078.SZ,0.00,1.32,0.00,1.50,0.00,0.00,0.00,1.84,0.00,0.00,0.00,1.85,0.00,0.00,0.00,2.87,0.00,0.00,0.00,3.55,0.00 +600338.SH,0.00,0.00,0.00,99.85,0.00,0.00,0.00,99.92,0.00,0.00,0.00,99.89,0.00,0.00,0.00,99.86,0.00,0.00,0.00,100.00,0.00 +003007.SZ,0.00,0.00,0.00,89.56,0.00,0.00,0.00,88.55,0.00,0.00,0.00,89.34,0.00,0.00,0.00,90.73,0.00,0.00,0.00,89.92,0.00 +300631.SZ,0.00,0.00,0.00,53.23,0.00,0.00,0.00,30.55,0.00,0.00,0.00,41.19,0.00,0.00,0.00,36.98,0.00,41.98,0.00,47.04,0.00 +600630.SH,0.00,0.00,0.00,15.83,0.00,0.00,0.00,17.94,0.00,0.00,0.00,21.17,0.00,0.00,0.00,18.34,0.00,0.00,0.00,21.82,0.00 +600221.SH,0.00,0.00,0.00,13.70,0.00,0.00,0.00,15.96,0.00,0.00,0.00,29.20,0.00,0.00,0.00,35.53,0.00,0.00,0.00,32.52,0.00 +600155.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +301567.SZ,0.00,0.00,0.00,92.92,0.00,92.72,0.00,93.85,0.00,93.45,0.00,92.54,0.00,83.34,0.00,83.48,0.00,0.00,0.00,84.83,0.00 +001379.SZ,0.00,0.00,0.00,35.26,0.00,0.00,0.00,38.17,0.00,36.57,0.00,36.94,0.00,40.13,0.00,36.71,0.00,0.00,0.00,34.50,0.00 +300755.SZ,0.00,0.00,0.00,14.75,0.00,0.00,0.00,12.48,0.00,0.00,0.00,13.87,0.00,0.00,0.00,16.00,0.00,0.00,0.00,30.02,0.00 +688058.SH,0.00,0.00,0.00,77.14,0.00,0.00,0.00,69.42,0.00,0.00,0.00,70.70,0.00,0.00,0.00,61.78,0.00,0.00,0.00,57.58,0.00 +832566.BJ,0.00,0.00,0.00,61.26,0.00,0.00,0.00,62.47,0.00,0.00,0.00,61.55,0.00,60.70,0.00,62.55,0.00,60.36,0.00,61.47,0.00 +300522.SZ,0.00,0.00,0.00,15.70,0.00,0.00,0.00,25.39,0.00,0.00,0.00,27.35,0.00,0.00,0.00,23.96,0.00,0.00,0.00,22.50,0.00 +600169.SH,0.00,0.00,0.00,31.14,0.00,0.00,0.00,15.15,0.00,0.00,0.00,22.75,0.00,0.00,0.00,25.95,0.00,0.00,0.00,25.38,0.00 +000988.SZ,0.00,0.00,0.00,39.57,0.00,0.00,0.00,48.94,0.00,0.00,0.00,43.44,0.00,0.00,0.00,29.55,0.00,0.00,0.00,29.26,0.00 +688195.SH,0.00,59.64,0.00,0.00,0.00,0.00,0.00,61.57,0.00,0.00,0.00,61.03,0.00,0.00,0.00,62.39,0.00,0.00,0.00,49.91,0.00 +300496.SZ,0.00,0.00,0.00,29.60,0.00,0.00,0.00,26.03,0.00,0.00,0.00,21.02,0.00,0.00,0.00,20.48,0.00,0.00,0.00,18.64,0.00 +300556.SZ,0.00,0.00,0.00,18.38,0.00,0.00,0.00,19.31,0.00,0.00,0.00,24.78,0.00,0.00,0.00,30.63,0.00,0.00,0.00,25.67,0.00 +600301.SH,0.00,0.00,0.00,100.00,0.00,0.00,0.00,27.67,0.00,0.00,0.00,67.72,0.00,0.00,0.00,24.21,0.00,0.00,0.00,27.30,0.00 +688126.SH,0.00,0.00,0.00,25.53,0.00,0.00,0.00,31.73,0.00,0.00,0.00,37.55,0.00,0.00,0.00,34.88,0.00,0.00,0.00,39.86,0.00 +600128.SH,0.00,0.00,0.00,8.34,0.00,0.00,0.00,8.92,0.00,0.00,0.00,16.50,0.00,0.00,0.00,14.38,0.00,0.00,0.00,22.90,0.00 +600202.SH,0.00,0.00,0.00,32.33,0.00,0.00,0.00,38.43,0.00,0.00,0.00,33.41,0.00,0.00,0.00,31.51,0.00,0.00,0.00,33.52,0.00 +603276.SH,0.00,31.20,0.00,41.07,0.00,0.00,0.00,43.71,0.00,0.00,0.00,37.44,0.00,36.61,0.00,32.40,0.00,0.00,0.00,26.69,0.00 +002055.SZ,0.00,0.00,0.00,40.26,0.00,0.00,0.00,45.07,0.00,0.00,0.00,44.90,0.00,0.00,0.00,34.96,0.00,0.00,0.00,0.00,0.00 +300573.SZ,0.00,0.00,0.00,19.09,0.00,0.00,0.00,18.89,0.00,0.00,0.00,19.45,0.00,0.00,0.00,21.34,0.00,0.00,0.00,25.89,0.00 +301520.SZ,0.00,0.00,0.00,32.25,0.00,38.83,0.00,30.73,0.00,28.20,0.00,26.47,0.00,0.00,0.00,28.92,0.00,0.00,0.00,24.82,0.00 +300623.SZ,0.00,0.00,0.00,11.70,0.00,0.00,0.00,11.45,0.00,0.00,0.00,12.57,0.00,0.00,0.00,13.85,0.00,0.00,0.00,15.39,0.00 +688172.SH,0.00,0.00,0.00,44.12,0.00,0.00,0.00,40.13,0.00,39.10,0.00,42.33,0.00,0.00,0.00,50.47,0.00,0.00,0.00,41.53,0.00 +688350.SH,0.00,31.61,0.00,30.62,0.00,0.00,0.00,29.67,0.00,0.00,0.00,27.14,0.00,0.00,0.00,24.07,0.00,0.00,0.00,23.70,0.00 +300385.SZ,0.00,0.00,0.00,33.47,0.00,0.00,0.00,19.30,0.00,0.00,0.00,44.41,0.00,0.00,0.00,21.56,0.00,0.00,0.00,30.28,0.00 +002593.SZ,0.00,0.00,0.00,22.14,0.00,0.00,0.00,28.11,0.00,0.00,0.00,19.45,0.00,0.00,0.00,16.84,0.00,0.00,0.00,22.65,0.00 +688516.SH,0.00,0.00,0.00,60.28,0.00,0.00,0.00,54.13,0.00,0.00,0.00,46.17,0.00,0.00,0.00,31.81,0.00,0.00,0.00,45.93,0.00 +688551.SH,0.00,39.62,0.00,25.22,0.00,0.00,0.00,15.78,0.00,0.00,0.00,17.47,0.00,0.00,0.00,22.73,0.00,0.00,0.00,18.26,0.00 +600435.SH,0.00,0.00,0.00,59.47,0.00,0.00,0.00,58.25,0.00,0.00,0.00,64.03,0.00,0.00,0.00,79.15,0.00,0.00,0.00,74.32,0.00 +300034.SZ,0.00,0.00,0.00,42.58,0.00,0.00,0.00,36.44,0.00,0.00,0.00,40.14,0.00,0.00,0.00,37.39,0.00,0.00,0.00,31.54,0.00 +600475.SH,0.00,0.00,0.00,18.41,0.00,0.00,0.00,7.14,0.00,0.00,0.00,10.10,0.00,0.00,0.00,31.40,0.00,0.00,0.00,23.19,0.00 +000656.SZ,0.00,0.00,0.00,2.92,0.00,28.60,0.00,2.98,0.00,29.98,0.00,0.34,0.00,29.54,0.00,1.39,0.00,30.25,0.00,3.27,0.00 +001330.SZ,0.00,0.00,0.00,42.25,0.00,0.00,0.00,65.35,0.00,76.03,0.00,64.39,0.00,0.00,0.00,25.02,0.00,0.00,0.00,30.14,0.00 +001389.SZ,0.00,68.63,0.00,67.57,0.00,0.00,0.00,70.54,0.00,70.30,0.00,67.51,0.00,65.04,0.00,65.59,0.00,0.00,0.00,61.38,0.00 +002962.SZ,0.00,0.00,0.00,80.78,0.00,0.00,0.00,83.38,0.00,0.00,0.00,91.17,0.00,0.00,0.00,90.99,0.00,0.00,0.00,90.07,0.00 +600645.SH,0.00,0.00,0.00,7.67,0.00,0.00,0.00,7.08,0.00,0.00,0.00,7.27,0.00,0.00,0.00,6.97,0.00,0.00,0.00,7.28,0.00 +603115.SH,0.00,0.00,0.00,34.87,0.00,0.00,0.00,33.63,0.00,0.00,0.00,33.59,0.00,0.00,0.00,37.70,0.00,0.00,0.00,40.43,0.00 +300284.SZ,0.00,0.00,0.00,11.01,0.00,0.00,0.00,9.96,0.00,0.00,0.00,11.80,0.00,0.00,0.00,9.63,0.00,0.00,0.00,8.69,0.00 +002215.SZ,0.00,0.00,0.00,4.37,0.00,0.00,0.00,4.63,0.00,0.00,0.00,3.57,0.00,0.00,0.00,5.16,0.00,0.00,0.00,7.38,0.00 +603127.SH,0.00,0.00,0.00,12.32,0.00,0.00,0.00,12.04,0.00,0.00,0.00,11.72,0.00,0.00,0.00,12.34,0.00,0.00,0.00,11.76,0.00 +603489.SH,0.00,0.00,0.00,24.87,0.00,0.00,0.00,31.18,0.00,0.00,0.00,28.07,0.00,0.00,0.00,28.95,0.00,0.00,0.00,22.28,0.00 +300823.SZ,0.00,0.00,0.00,15.19,0.00,0.00,0.00,17.26,0.00,0.00,0.00,14.33,0.00,0.00,0.00,29.97,0.00,0.00,0.00,26.34,0.00 +300751.SZ,0.00,0.00,0.00,63.00,0.00,0.00,0.00,59.25,0.00,0.00,0.00,52.73,0.00,0.00,0.00,53.75,0.00,0.00,0.00,57.04,0.00 +002442.SZ,0.00,0.00,0.00,31.57,0.00,0.00,0.00,35.38,0.00,0.00,0.00,37.91,0.00,0.00,0.00,35.24,0.00,0.00,0.00,33.33,0.00 +600449.SH,0.00,0.00,0.00,11.31,0.00,0.00,0.00,1.90,0.00,0.00,0.00,9.63,0.00,0.00,0.00,8.20,0.00,0.00,0.00,8.14,0.00 +000425.SZ,0.00,0.00,0.00,27.44,0.00,25.83,0.00,26.84,0.00,26.43,0.00,5.22,0.00,9.96,0.00,10.71,0.00,7.36,0.00,10.68,0.00 +600423.SH,0.00,0.00,0.00,84.12,0.00,0.00,0.00,76.23,0.00,0.00,0.00,60.27,0.00,0.00,0.00,55.15,0.00,0.00,0.00,45.62,0.00 +600661.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,1.20,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +688175.SH,0.00,0.00,0.00,72.86,0.00,47.51,0.00,49.09,0.00,80.88,0.00,64.21,0.00,75.60,0.00,50.20,0.00,0.00,0.00,30.32,0.00 +300298.SZ,0.00,0.00,0.00,10.90,0.00,0.00,0.00,25.23,0.00,0.00,0.00,22.73,0.00,0.00,0.00,20.67,0.00,0.00,0.00,27.73,0.00 +301633.SZ,0.00,0.00,0.00,49.94,0.00,0.00,0.00,46.82,0.00,0.00,0.00,50.52,0.00,40.91,0.00,43.89,0.00,56.52,0.00,46.42,0.00 +301373.SZ,0.00,13.12,0.00,12.43,0.00,0.00,0.00,13.92,0.00,17.11,0.00,17.54,0.00,0.00,0.00,16.18,0.00,0.00,0.00,14.11,0.00 +600135.SH,0.00,0.00,0.00,33.19,0.00,0.00,0.00,27.29,0.00,0.00,0.00,23.19,0.00,0.00,0.00,18.06,0.00,0.00,0.00,15.89,0.00 +688733.SH,0.00,70.96,0.00,72.98,0.00,0.00,0.00,73.46,0.00,0.00,0.00,72.72,0.00,0.00,0.00,58.19,0.00,0.00,0.00,42.47,0.00 +600232.SH,0.00,0.00,0.00,7.55,0.00,0.00,0.00,12.93,0.00,0.00,0.00,17.39,0.00,0.00,0.00,12.14,0.00,0.00,0.00,16.45,0.00 +301020.SZ,0.00,59.43,0.00,59.90,0.00,0.00,0.00,53.14,0.00,0.00,0.00,50.23,0.00,0.00,0.00,54.42,0.00,0.00,0.00,51.12,0.00 +603936.SH,0.00,0.00,0.00,24.60,0.00,0.00,0.00,25.87,0.00,0.00,0.00,30.04,0.00,0.00,0.00,22.46,0.00,0.00,0.00,24.85,0.00 +301503.SZ,0.00,0.00,0.00,66.18,69.02,0.00,0.00,66.49,0.00,0.00,0.00,72.30,0.00,0.00,0.00,70.84,0.00,0.00,0.00,73.53,0.00 +603201.SH,0.00,0.00,0.00,29.32,0.00,29.82,0.00,28.14,0.00,0.00,0.00,29.03,0.00,0.00,0.00,33.33,0.00,0.00,0.00,21.64,0.00 +300332.SZ,0.00,0.00,0.00,52.51,0.00,0.00,0.00,55.67,0.00,0.00,0.00,55.21,0.00,0.00,0.00,57.31,0.00,0.00,0.00,61.39,0.00 +002267.SZ,0.00,0.00,0.00,46.36,0.00,0.00,0.00,54.50,0.00,0.00,0.00,52.82,0.00,0.00,0.00,46.96,0.00,0.00,0.00,48.74,0.00 +601388.SH,0.00,0.00,0.00,16.95,0.00,0.00,0.00,21.70,0.00,0.00,0.00,24.41,0.00,0.00,0.00,28.86,0.00,0.00,0.00,28.84,0.00 +002756.SZ,0.00,0.00,0.00,29.19,0.00,0.00,0.00,26.72,0.00,0.00,0.00,23.61,0.00,0.00,0.00,27.20,0.00,0.00,0.00,27.53,0.00 +603768.SH,0.00,0.00,0.00,65.75,0.00,0.00,0.00,63.66,0.00,0.00,0.00,65.33,0.00,0.00,0.00,63.14,0.00,0.00,0.00,59.79,0.00 +002083.SZ,0.00,0.00,0.00,17.79,0.00,0.00,0.00,19.64,0.00,0.00,0.00,18.73,0.00,0.00,0.00,21.24,0.00,0.00,0.00,21.28,0.00 +002811.SZ,0.00,0.00,0.00,22.83,0.00,0.00,0.00,32.67,0.00,0.00,0.00,14.56,0.00,0.00,0.00,22.64,0.00,0.00,0.00,18.38,0.00 +600780.SH,0.00,0.00,0.00,39.23,0.00,0.00,0.00,35.43,0.00,0.00,0.00,44.53,0.00,0.00,0.00,44.99,0.00,0.00,0.00,43.53,0.00 +300218.SZ,0.00,0.00,0.00,17.80,0.00,19.22,0.00,16.46,0.00,0.00,0.00,26.73,0.00,0.00,0.00,22.69,0.00,0.00,0.00,28.66,0.00 +920098.BJ,0.00,0.00,0.00,43.04,0.00,0.00,0.00,53.49,0.00,0.00,0.00,50.54,0.00,57.25,0.00,53.05,0.00,58.51,0.00,56.07,0.00 +601865.SH,0.00,0.00,0.00,59.20,0.00,0.00,0.00,50.53,0.00,0.00,0.00,51.04,0.00,0.00,0.00,54.17,0.00,0.00,0.00,57.32,0.00 +300746.SZ,0.00,0.00,0.00,31.40,0.00,0.00,0.00,27.73,0.00,0.00,0.00,44.09,0.00,0.00,0.00,49.42,0.00,0.00,0.00,35.78,0.00 +603797.SH,0.00,0.00,0.00,94.63,0.00,0.00,0.00,77.79,0.00,0.00,0.00,80.52,0.00,0.00,0.00,80.51,0.00,0.00,0.00,80.44,0.00 +688189.SH,0.00,0.00,0.00,11.28,0.00,0.00,0.00,17.50,0.00,0.00,0.00,17.44,0.00,0.00,0.00,30.33,0.00,0.00,0.00,35.90,0.00 +301175.SZ,0.00,59.04,0.00,59.73,0.00,33.16,0.00,30.88,0.00,0.00,0.00,27.49,0.00,0.00,0.00,35.32,0.00,0.00,0.00,32.31,0.00 +000528.SZ,0.00,0.00,0.00,16.65,0.00,0.00,0.00,15.27,0.00,0.00,0.00,10.07,0.00,0.00,0.00,7.10,0.00,0.00,0.00,6.77,0.00 +836419.BJ,0.00,0.00,0.00,56.93,0.00,0.00,0.00,68.41,0.00,70.66,0.00,63.16,0.00,0.00,0.00,49.04,0.00,0.00,0.00,44.35,0.00 +600764.SH,0.00,0.00,0.00,47.63,0.00,0.00,0.00,52.80,0.00,0.00,0.00,35.45,0.00,0.00,0.00,38.62,0.00,0.00,0.00,33.83,0.00 +002343.SZ,0.00,0.00,0.00,96.33,0.00,0.00,0.00,95.20,0.00,0.00,0.00,88.97,0.00,0.00,0.00,96.65,0.00,0.00,0.00,88.59,0.00 +002917.SZ,0.00,0.00,0.00,25.13,0.00,0.00,0.00,19.02,0.00,0.00,0.00,17.13,0.00,0.00,0.00,18.49,0.00,0.00,0.00,20.08,0.00 +300288.SZ,0.00,0.00,0.00,18.41,0.00,0.00,0.00,41.86,0.00,0.00,0.00,57.25,0.00,0.00,0.00,66.54,0.00,0.00,0.00,53.84,0.00 +002472.SZ,0.00,0.00,0.00,20.74,0.00,0.00,0.00,29.29,0.00,0.00,0.00,33.84,0.00,0.00,0.00,38.12,0.00,0.00,0.00,34.00,0.00 +000639.SZ,0.00,0.00,0.00,21.51,0.00,0.00,0.00,17.38,0.00,0.00,0.00,11.30,0.00,0.00,0.00,21.30,0.00,0.00,0.00,27.98,0.00 +002970.SZ,0.00,0.00,0.00,19.57,0.00,0.00,0.00,14.10,0.00,0.00,0.00,17.20,0.00,0.00,0.00,15.16,0.00,0.00,0.00,29.30,0.00 +603062.SH,0.00,0.00,0.00,63.63,0.00,0.00,0.00,80.86,74.36,0.00,0.00,67.10,0.00,52.95,0.00,56.52,0.00,0.00,0.00,27.19,0.00 +600819.SH,0.00,0.00,0.00,17.10,0.00,0.00,0.00,15.00,0.00,0.00,0.00,11.33,0.00,0.00,0.00,9.82,0.00,0.00,0.00,14.70,0.00 +300083.SZ,0.00,0.00,0.00,60.38,0.00,0.00,0.00,30.47,0.00,0.00,0.00,18.63,0.00,0.00,0.00,13.39,0.00,0.00,0.00,28.67,0.00 +601991.SH,0.00,0.00,0.00,41.34,0.00,0.00,0.00,40.74,0.00,0.00,0.00,41.73,0.00,0.00,0.00,41.21,0.00,0.00,0.00,45.19,0.00 +600315.SH,0.00,0.00,0.00,18.98,0.00,0.00,0.00,22.24,0.00,0.00,0.00,18.27,0.00,0.00,0.00,19.14,0.00,0.00,0.00,19.61,0.00 +002878.SZ,0.00,0.00,0.00,38.02,0.00,0.00,0.00,36.93,0.00,0.00,0.00,38.85,0.00,0.00,0.00,42.00,0.00,0.00,0.00,37.31,0.00 +003005.SZ,0.00,0.00,0.00,24.52,0.00,0.00,0.00,27.92,0.00,0.00,0.00,36.44,0.00,0.00,0.00,19.53,0.00,0.00,0.00,36.73,0.00 +688237.SH,0.00,0.00,0.00,71.96,0.00,87.43,0.00,73.66,0.00,0.00,0.00,50.84,0.00,0.00,0.00,33.24,0.00,0.00,0.00,51.41,0.00 +688252.SH,0.00,0.00,0.00,57.26,0.00,0.00,0.00,72.24,0.00,0.00,0.00,79.46,0.00,0.00,0.00,66.80,0.00,0.00,0.00,75.52,0.00 +603683.SH,0.00,0.00,0.00,11.34,0.00,12.88,0.00,12.96,0.00,0.00,0.00,11.95,0.00,0.00,0.00,10.00,0.00,0.00,0.00,9.99,0.00 +300205.SZ,0.00,0.00,0.00,36.89,0.00,0.00,0.00,28.96,0.00,0.00,0.00,25.68,0.00,0.00,0.00,24.27,0.00,0.00,0.00,22.57,0.00 +603351.SH,0.00,0.00,0.00,30.22,0.00,0.00,0.00,31.91,0.00,0.00,0.00,26.13,0.00,0.00,0.00,31.50,0.00,0.00,0.00,31.22,0.00 +603236.SH,0.00,0.00,0.00,15.50,0.00,0.00,0.00,21.23,0.00,0.00,0.00,19.01,0.00,0.00,0.00,21.48,0.00,0.00,0.00,20.47,0.00 +600692.SH,0.00,0.00,0.00,20.82,0.00,0.00,0.00,31.80,0.00,0.00,0.00,58.61,0.00,0.00,0.00,56.05,0.00,0.00,0.00,71.61,0.00 +300790.SZ,0.00,0.00,0.00,70.58,0.00,0.00,0.00,72.63,0.00,0.00,0.00,64.95,0.00,0.00,0.00,51.93,0.00,0.00,0.00,51.16,0.00 +300455.SZ,0.00,0.00,0.00,68.71,0.00,0.00,0.00,67.09,0.00,0.00,0.00,73.44,0.00,0.00,0.00,73.35,0.00,0.00,0.00,67.57,0.00 +301206.SZ,0.00,48.98,0.00,47.87,0.00,50.18,0.00,40.41,0.00,0.00,0.00,35.44,0.00,28.86,0.00,36.12,0.00,31.80,0.00,36.38,0.00 +000561.SZ,0.00,0.00,0.00,40.49,0.00,0.00,0.00,39.68,0.00,0.00,0.00,33.55,0.00,0.00,0.00,35.81,0.00,0.00,0.00,30.28,0.00 +300907.SZ,0.00,86.39,0.00,87.35,0.00,0.00,0.00,85.49,0.00,0.00,0.00,86.97,0.00,0.00,0.00,86.98,0.00,0.00,0.00,85.69,0.00 +688717.SH,0.00,0.00,0.00,30.16,0.00,0.00,0.00,44.24,0.00,62.06,0.00,55.42,0.00,51.72,0.00,43.36,0.00,0.00,0.00,32.80,0.00 +301248.SZ,0.00,43.30,0.00,48.73,0.00,36.59,0.00,37.38,0.00,0.00,0.00,24.91,0.00,0.00,0.00,40.97,0.00,0.00,0.00,30.55,0.00 +301369.SZ,47.24,0.00,0.00,30.66,0.00,36.18,0.00,29.04,0.00,0.00,0.00,37.77,0.00,0.00,0.00,29.14,0.00,0.00,0.00,22.57,0.00 +002077.SZ,0.00,0.00,0.00,54.15,0.00,0.00,0.00,45.37,0.00,0.00,0.00,49.03,0.00,0.00,0.00,45.09,0.00,0.00,0.00,59.75,0.00 +688085.SH,0.00,0.00,0.00,39.26,0.00,0.00,0.00,38.34,0.00,0.00,0.00,39.62,0.00,0.00,0.00,24.01,0.00,0.00,0.00,14.32,0.00 +920445.BJ,0.00,0.00,0.00,97.35,0.00,0.00,0.00,96.36,0.00,0.00,0.00,95.24,0.00,0.00,0.00,94.99,0.00,0.00,0.00,93.06,0.00 +300270.SZ,0.00,0.00,0.00,41.66,0.00,0.00,0.00,42.01,0.00,0.00,0.00,68.91,0.00,0.00,0.00,38.75,0.00,0.00,0.00,39.12,0.00 +301314.SZ,0.00,0.00,0.00,47.10,0.00,45.09,0.00,41.73,0.00,39.32,0.00,36.74,0.00,0.00,0.00,46.89,0.00,0.00,0.00,37.76,0.00 +603669.SH,0.00,0.00,0.00,34.38,0.00,0.00,0.00,36.65,0.00,0.00,0.00,34.97,0.00,0.00,0.00,36.46,0.00,0.00,0.00,56.06,0.00 +601727.SH,0.00,0.00,0.00,10.12,0.00,0.00,0.00,15.51,0.00,0.00,0.00,6.22,0.00,0.00,0.00,7.61,0.00,0.00,0.00,6.40,0.00 +002295.SZ,0.00,0.00,0.00,67.63,0.00,0.00,0.00,68.63,0.00,0.00,0.00,68.86,0.00,0.00,0.00,47.41,0.00,0.00,0.00,38.06,0.00 +600854.SH,0.00,0.00,0.00,34.28,0.00,61.13,0.00,59.13,0.00,0.00,0.00,26.36,0.00,0.00,0.00,29.93,0.00,51.60,0.00,51.82,0.00 +430425.BJ,0.00,0.00,0.00,22.93,0.00,0.00,0.00,37.40,0.00,51.48,0.00,47.10,0.00,0.00,0.00,49.07,0.00,0.00,0.00,32.17,0.00 +688191.SH,0.00,45.46,0.00,0.00,0.00,0.00,0.00,30.08,0.00,0.00,0.00,39.71,0.00,0.00,0.00,29.82,0.00,0.00,0.00,29.72,0.00 +000400.SZ,0.00,0.00,0.00,81.01,0.00,0.00,0.00,73.56,0.00,0.00,0.00,61.69,0.00,0.00,0.00,65.15,0.00,0.00,0.00,63.03,0.00 +836263.BJ,0.00,99.03,0.00,93.96,0.00,0.00,0.00,83.02,0.00,0.00,0.00,74.51,0.00,0.00,0.00,82.29,0.00,0.00,0.00,72.49,0.00 +300283.SZ,0.00,0.00,0.00,61.93,0.00,0.00,0.00,58.47,0.00,0.00,0.00,52.98,0.00,0.00,0.00,48.52,0.00,0.00,0.00,51.14,0.00 +301488.SZ,0.00,0.00,0.00,59.30,0.00,58.65,0.00,55.01,0.00,61.69,0.00,58.13,0.00,0.00,0.00,55.88,0.00,0.00,0.00,55.70,0.00 +600491.SH,0.00,0.00,0.00,14.58,0.00,9.07,0.00,10.91,0.00,11.87,0.00,13.32,0.00,18.19,0.00,15.16,0.00,28.36,0.00,23.69,0.00 +300589.SZ,0.00,0.00,0.00,36.81,0.00,0.00,0.00,41.72,0.00,0.00,0.00,30.97,0.00,0.00,0.00,45.78,0.00,0.00,0.00,75.19,0.00 +600783.SH,0.00,0.00,0.00,17.31,0.00,0.00,0.00,12.81,0.00,0.00,0.00,23.26,0.00,0.00,0.00,74.17,0.00,0.00,0.00,35.22,0.00 +300969.SZ,0.00,45.32,0.00,46.91,0.00,0.00,0.00,44.20,0.00,0.00,0.00,48.73,0.00,0.00,0.00,46.50,0.00,0.00,0.00,48.03,0.00 +601929.SH,0.00,0.00,0.00,4.28,0.00,0.00,0.00,14.84,0.00,0.00,0.00,11.14,0.00,0.00,0.00,6.77,0.00,0.00,0.00,10.91,0.00 +300966.SZ,0.00,48.21,0.00,41.06,0.00,0.00,0.00,46.22,0.00,0.00,0.00,48.44,0.00,0.00,0.00,37.15,0.00,0.00,0.00,26.18,0.00 +300581.SZ,0.00,0.00,0.00,69.20,0.00,0.00,0.00,69.12,0.00,0.00,0.00,73.53,0.00,0.00,0.00,71.91,0.00,0.00,0.00,77.21,0.00 +301511.SZ,0.00,0.00,0.00,40.57,0.00,44.30,0.00,53.08,77.13,0.00,0.00,77.28,68.69,0.00,0.00,69.09,0.00,0.00,0.00,61.82,0.00 +688701.SH,85.21,68.95,46.22,36.15,0.00,81.86,0.00,52.75,0.00,0.00,0.00,74.56,0.00,0.00,0.00,71.59,0.00,0.00,0.00,58.66,0.00 +836077.BJ,0.00,89.38,0.00,79.14,0.00,0.00,0.00,83.44,0.00,0.00,0.00,91.38,0.00,0.00,0.00,90.24,0.00,0.00,0.00,86.36,0.00 +000955.SZ,0.00,0.00,0.00,29.53,0.00,0.00,0.00,34.65,0.00,0.00,0.00,29.80,0.00,0.00,0.00,35.31,0.00,0.00,0.00,31.91,0.00 +603663.SH,0.00,0.00,0.00,21.47,0.00,0.00,0.00,18.13,0.00,0.00,0.00,28.69,0.00,0.00,0.00,52.25,0.00,0.00,0.00,28.60,0.00 +603150.SH,0.00,0.00,0.00,71.50,0.00,69.13,70.78,70.20,0.00,0.00,0.00,65.72,0.00,0.00,0.00,62.57,0.00,0.00,0.00,61.72,0.00 +834033.BJ,0.00,0.00,0.00,70.35,0.00,0.00,0.00,71.06,85.29,64.44,57.25,58.65,0.00,0.00,0.00,69.85,0.00,0.00,0.00,58.62,0.00 +301330.SZ,0.00,8.79,0.00,8.26,0.00,9.88,0.00,11.72,11.88,0.00,0.00,10.15,0.00,0.00,0.00,11.93,0.00,0.00,0.00,12.63,0.00 +003015.SZ,0.00,47.29,0.00,43.41,0.00,0.00,0.00,38.26,0.00,0.00,0.00,36.75,0.00,0.00,0.00,33.27,0.00,0.00,0.00,37.76,0.00 +600543.SH,0.00,0.00,0.00,26.39,0.00,0.00,0.00,44.42,0.00,0.00,0.00,32.92,0.00,0.00,0.00,20.83,0.00,0.00,0.00,33.51,0.00 +300719.SZ,0.00,0.00,0.00,79.47,0.00,0.00,0.00,74.98,0.00,0.00,0.00,70.11,0.00,0.00,0.00,79.11,0.00,0.00,0.00,70.12,0.00 +002238.SZ,0.00,0.00,0.00,13.67,0.00,0.00,0.00,14.58,0.00,0.00,0.00,13.48,0.00,0.00,0.00,16.33,0.00,0.00,0.00,13.17,0.00 +002765.SZ,0.00,0.00,0.00,57.55,0.00,0.00,0.00,54.91,0.00,0.00,0.00,51.52,0.00,0.00,0.00,43.56,0.00,0.00,0.00,44.96,0.00 +688277.SH,0.00,0.00,0.00,41.64,0.00,0.00,0.00,42.73,0.00,0.00,0.00,33.38,0.00,0.00,0.00,34.81,0.00,0.00,0.00,41.04,0.00 +300054.SZ,0.00,0.00,0.00,20.42,0.00,0.00,0.00,21.01,0.00,0.00,0.00,19.71,0.00,0.00,0.00,23.84,0.00,0.00,0.00,26.65,0.00 +600300.SH,0.00,0.00,0.00,2.64,0.00,0.00,0.00,2.40,0.00,0.00,0.00,3.01,0.00,0.00,0.00,4.73,0.00,0.00,0.00,4.71,0.00 +301335.SZ,0.00,37.18,0.00,36.10,0.00,65.89,0.00,33.71,0.00,25.50,0.00,31.26,0.00,0.00,0.00,33.48,0.00,0.00,0.00,33.09,0.00 +605259.SH,0.00,27.65,0.00,25.04,26.81,0.00,0.00,26.22,0.00,0.00,0.00,23.88,0.00,0.00,0.00,17.73,0.00,0.00,0.00,23.27,0.00 +300503.SZ,0.00,0.00,0.00,18.28,0.00,58.27,0.00,27.90,0.00,0.00,0.00,18.66,0.00,16.85,0.00,12.68,0.00,0.00,0.00,17.39,0.00 +300327.SZ,0.00,0.00,0.00,63.58,0.00,0.00,0.00,64.54,0.00,0.00,0.00,60.11,0.00,0.00,0.00,64.83,0.00,0.00,0.00,63.14,0.00 +600689.SH,0.00,0.00,0.00,20.90,0.00,0.00,0.00,23.75,0.00,0.00,0.00,28.16,0.00,0.00,0.00,24.39,0.00,0.00,0.00,28.42,0.00 +603010.SH,0.00,0.00,0.00,28.92,0.00,0.00,0.00,29.09,0.00,0.00,0.00,21.76,0.00,0.00,0.00,21.37,0.00,0.00,0.00,19.42,0.00 +688305.SH,0.00,59.88,0.00,53.80,0.00,0.00,0.00,38.08,0.00,0.00,0.00,28.68,0.00,0.00,0.00,58.02,0.00,0.00,0.00,65.85,0.00 +002268.SZ,0.00,0.00,0.00,32.29,0.00,0.00,0.00,32.06,0.00,0.00,0.00,27.87,0.00,0.00,0.00,39.88,0.00,0.00,0.00,44.09,0.00 +300030.SZ,0.00,0.00,0.00,26.79,0.00,0.00,0.00,17.98,0.00,0.00,0.00,13.84,0.00,0.00,0.00,15.63,0.00,0.00,0.00,15.14,0.00 +600667.SH,0.00,0.00,0.00,39.11,0.00,0.00,0.00,29.33,0.00,0.00,0.00,30.15,0.00,0.00,0.00,21.91,0.00,0.00,0.00,33.43,0.00 +688285.SH,0.00,93.35,0.00,91.43,0.00,0.00,0.00,92.10,0.00,0.00,0.00,88.58,0.00,0.00,0.00,86.66,0.00,0.00,0.00,86.33,0.00 +300919.SZ,90.85,0.00,0.00,83.19,0.00,0.00,0.00,73.85,0.00,0.00,0.00,57.97,0.00,0.00,0.00,43.72,0.00,0.00,0.00,29.17,0.00 +000619.SZ,0.00,0.00,0.00,4.69,0.00,0.00,0.00,6.39,0.00,0.00,0.00,12.57,0.00,0.00,0.00,17.00,0.00,0.00,0.00,15.48,0.00 +603863.SH,0.00,0.00,0.00,29.71,0.00,0.00,0.00,47.79,0.00,0.00,0.00,45.14,0.00,0.00,0.00,48.55,0.00,0.00,0.00,43.25,0.00 +301109.SZ,0.00,99.86,0.00,99.82,0.00,99.88,0.00,99.84,0.00,0.00,0.00,99.80,0.00,0.00,0.00,99.85,0.00,0.00,0.00,98.60,0.00 +002049.SZ,0.00,0.00,0.00,30.70,0.00,0.00,0.00,35.04,0.00,0.00,0.00,42.75,0.00,0.00,0.00,40.47,0.00,0.00,0.00,42.06,0.00 +300434.SZ,0.00,0.00,0.00,9.71,0.00,0.00,0.00,26.15,0.00,0.00,0.00,31.29,0.00,0.00,0.00,29.44,0.00,0.00,0.00,27.53,0.00 +002064.SZ,0.00,0.00,0.00,18.93,0.00,0.00,0.00,17.51,0.00,0.00,0.00,22.22,0.00,0.00,0.00,20.73,0.00,0.00,0.00,21.96,0.00 +002079.SZ,0.00,0.00,0.00,30.95,0.00,0.00,0.00,29.08,0.00,0.00,0.00,44.58,0.00,0.00,0.00,55.88,0.00,0.00,0.00,64.88,0.00 +688432.SH,0.00,0.00,0.00,60.03,0.00,68.32,0.00,65.79,0.00,63.80,0.00,65.40,0.00,0.00,0.00,63.22,0.00,0.00,0.00,65.18,0.00 +300590.SZ,0.00,0.00,0.00,37.10,0.00,0.00,0.00,39.00,0.00,0.00,0.00,40.51,0.00,0.00,0.00,49.71,0.00,0.00,0.00,47.95,0.00 +002903.SZ,0.00,0.00,0.00,91.30,0.00,0.00,0.00,87.10,0.00,0.00,0.00,65.49,0.00,0.00,0.00,78.84,0.00,0.00,0.00,59.26,0.00 +300033.SZ,0.00,0.00,0.00,18.73,0.00,0.00,0.00,13.65,0.00,0.00,0.00,13.69,0.00,0.00,0.00,11.18,0.00,0.00,0.00,18.79,0.00 +600694.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,3.24,0.00,0.00,0.00,3.33,0.00,0.00,0.00,4.58,0.00,0.00,0.00,5.52,0.00 +300863.SZ,0.00,0.00,0.00,80.58,0.00,0.00,0.00,76.38,0.00,0.00,0.00,66.45,0.00,0.00,0.00,64.40,0.00,0.00,0.00,62.29,0.00 +002748.SZ,0.00,0.00,0.00,31.52,0.00,0.00,0.00,19.34,0.00,0.00,0.00,16.52,0.00,0.00,0.00,16.44,0.00,0.00,0.00,16.06,0.00 +600416.SH,0.00,0.00,0.00,44.84,0.00,0.00,0.00,51.99,0.00,0.00,0.00,47.60,0.00,0.00,0.00,41.82,0.00,0.00,0.00,43.41,0.00 +600400.SH,0.00,0.00,0.00,15.99,0.00,0.00,0.00,21.10,0.00,0.00,0.00,23.13,0.00,0.00,0.00,17.45,0.00,0.00,0.00,18.69,0.00 +688767.SH,0.00,59.12,0.00,56.52,0.00,0.00,0.00,83.62,0.00,0.00,0.00,70.69,0.00,0.00,0.00,31.48,0.00,0.00,0.00,36.41,0.00 +000949.SZ,0.00,0.00,0.00,16.61,0.00,0.00,0.00,16.84,0.00,0.00,0.00,20.41,0.00,0.00,0.00,19.19,0.00,0.00,0.00,22.87,0.00 +300017.SZ,0.00,0.00,0.00,43.13,0.00,0.00,0.00,34.16,0.00,0.00,0.00,46.81,0.00,0.00,0.00,47.34,0.00,0.00,0.00,48.24,0.00 +601319.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +839946.BJ,0.00,0.00,0.00,96.39,0.00,0.00,0.00,90.84,0.00,0.00,0.00,94.40,0.00,0.00,0.00,58.30,0.00,0.00,0.00,81.45,0.00 +000936.SZ,0.00,0.00,0.00,19.08,0.00,0.00,0.00,22.11,0.00,25.81,0.00,28.65,0.00,29.72,0.00,31.41,0.00,32.55,0.00,30.62,0.00 +688585.SH,0.00,0.00,0.00,55.67,0.00,0.00,0.00,43.69,0.00,0.00,0.00,42.13,0.00,0.00,0.00,30.17,0.00,0.00,0.00,29.34,0.00 +300967.SZ,0.00,10.62,0.00,9.68,0.00,0.00,0.00,8.82,0.00,0.00,0.00,9.12,0.00,0.00,0.00,12.49,0.00,0.00,0.00,10.35,0.00 +688697.SH,0.00,30.60,0.00,21.48,0.00,20.65,0.00,19.82,0.00,0.00,0.00,22.68,0.00,27.44,0.00,23.79,0.00,0.00,0.00,18.20,0.00 +300387.SZ,0.00,0.00,0.00,30.89,0.00,0.00,0.00,29.38,0.00,0.00,0.00,31.43,0.00,0.00,0.00,33.54,0.00,0.00,0.00,32.68,0.00 +301587.SZ,0.00,78.06,0.00,66.72,0.00,0.00,0.00,75.70,0.00,81.18,0.00,82.76,0.00,85.94,0.00,83.22,0.00,0.00,0.00,76.68,0.00 +301033.SZ,17.48,0.00,16.51,16.86,14.91,0.00,0.00,16.64,0.00,0.00,0.00,23.32,0.00,0.00,0.00,10.33,0.00,0.00,0.00,8.91,0.00 +002670.SZ,0.00,0.00,0.00,5.08,0.00,0.00,0.00,6.82,0.00,0.00,0.00,5.13,0.00,0.00,0.00,7.63,0.00,0.00,0.00,4.53,0.00 +835185.BJ,0.00,68.74,0.00,62.63,0.00,0.00,0.00,67.91,0.00,0.00,0.00,71.82,0.00,0.00,0.00,77.41,0.00,0.00,0.00,71.12,0.00 +001209.SZ,0.00,41.05,0.00,36.57,0.00,0.00,0.00,53.05,0.00,0.00,0.00,37.08,0.00,0.00,0.00,39.96,0.00,0.00,0.00,43.35,0.00 +872190.BJ,0.00,60.15,0.00,76.22,0.00,65.01,0.00,84.70,0.00,79.38,0.00,71.94,0.00,64.85,0.00,68.28,0.00,61.43,0.00,68.36,0.00 +600844.SH,0.00,0.00,0.00,61.02,0.00,0.00,0.00,54.22,0.00,0.00,0.00,59.37,0.00,0.00,0.00,50.57,0.00,0.00,0.00,56.46,0.00 +600249.SH,0.00,0.00,0.00,19.91,0.00,0.00,0.00,8.43,0.00,0.00,0.00,9.64,0.00,0.00,0.00,13.76,0.00,0.00,0.00,14.97,0.00 +688387.SH,0.00,0.00,0.00,83.18,0.00,81.63,0.00,85.21,0.00,0.00,0.00,81.12,0.00,0.00,0.00,75.25,0.00,0.00,0.00,68.19,0.00 +600570.SH,0.00,0.00,0.00,4.93,0.00,0.00,0.00,4.53,0.00,0.00,0.00,5.36,0.00,0.00,0.00,5.47,0.00,0.00,0.00,5.28,0.00 +600180.SH,0.00,0.00,0.00,14.29,0.00,0.00,0.00,18.25,0.00,0.00,0.00,15.84,0.00,0.00,0.00,21.88,0.00,0.00,0.00,21.95,0.00 +300069.SZ,0.00,0.00,0.00,44.03,0.00,0.00,0.00,51.71,0.00,0.00,0.00,34.79,0.00,0.00,0.00,57.11,0.00,0.00,0.00,45.30,0.00 +688708.SH,0.00,0.00,0.00,94.01,0.00,0.00,0.00,94.92,0.00,0.00,0.00,97.03,0.00,0.00,0.00,96.74,0.00,97.19,0.00,95.12,0.00 +603019.SH,0.00,0.00,0.00,56.68,0.00,0.00,0.00,62.24,0.00,0.00,0.00,78.63,0.00,0.00,0.00,85.02,0.00,0.00,0.00,87.95,0.00 +000070.SZ,0.00,0.00,0.00,40.70,0.00,0.00,0.00,36.32,0.00,0.00,0.00,21.29,0.00,0.00,0.00,23.05,0.00,0.00,0.00,14.76,0.00 +300159.SZ,0.00,0.00,0.00,27.62,0.00,0.00,0.00,25.05,0.00,0.00,0.00,31.71,0.00,0.00,0.00,17.41,0.00,0.00,0.00,19.69,0.00 +002239.SZ,0.00,0.00,0.00,28.68,0.00,0.00,0.00,38.72,0.00,0.00,0.00,38.50,0.00,0.00,0.00,53.40,0.00,0.00,0.00,42.17,0.00 +688288.SH,0.00,0.00,0.00,66.06,0.00,70.08,0.00,59.87,0.00,0.00,0.00,54.23,0.00,0.00,0.00,63.68,0.00,0.00,0.00,61.11,0.00 +001202.SZ,0.00,70.39,0.00,61.22,0.00,0.00,0.00,51.63,0.00,0.00,0.00,51.27,0.00,0.00,0.00,41.62,0.00,0.00,0.00,30.18,0.00 +000977.SZ,0.00,0.00,0.00,30.27,0.00,0.00,0.00,22.81,0.00,0.00,0.00,32.18,0.00,0.00,0.00,56.15,0.00,0.00,0.00,74.13,0.00 +002729.SZ,0.00,0.00,0.00,40.35,0.00,0.00,0.00,42.49,0.00,0.00,0.00,37.12,0.00,0.00,0.00,46.31,0.00,0.00,0.00,48.75,0.00 +300732.SZ,0.00,0.00,0.00,20.15,0.00,0.00,0.00,22.48,0.00,0.00,0.00,19.23,0.00,0.00,0.00,21.71,0.00,0.00,0.00,25.47,0.00 +300057.SZ,0.00,0.00,0.00,49.62,0.00,0.00,0.00,44.71,0.00,0.00,0.00,37.68,0.00,0.00,0.00,38.27,0.00,0.00,0.00,33.94,0.00 +603012.SH,0.00,0.00,0.00,47.30,0.00,0.00,0.00,37.34,0.00,0.00,0.00,32.21,0.00,0.00,0.00,27.63,0.00,0.00,0.00,27.67,0.00 +000017.SZ,0.00,0.00,0.00,62.98,0.00,0.00,0.00,87.61,0.00,0.00,0.00,75.91,0.00,0.00,0.00,77.78,0.00,0.00,0.00,73.75,0.00 +603385.SH,0.00,0.00,0.00,38.63,0.00,0.00,0.00,32.45,0.00,0.00,0.00,30.80,0.00,0.00,0.00,24.83,0.00,0.00,0.00,21.47,0.00 +301173.SZ,0.00,0.00,0.00,88.04,0.00,0.00,0.00,79.70,0.00,0.00,0.00,74.22,0.00,76.71,0.00,73.39,0.00,77.87,0.00,71.73,0.00 +300285.SZ,0.00,0.00,0.00,23.03,0.00,0.00,0.00,20.78,0.00,0.00,0.00,15.98,0.00,0.00,0.00,16.00,0.00,0.00,0.00,19.63,0.00 +000755.SZ,0.00,0.00,0.00,5.10,0.00,0.00,0.00,1.21,0.00,0.00,0.00,0.61,0.00,0.00,0.00,0.65,0.00,0.00,0.00,0.73,0.00 +300176.SZ,0.00,0.00,0.00,39.41,0.00,0.00,0.00,39.09,0.00,0.00,0.00,51.48,0.00,0.00,0.00,48.60,0.00,0.00,0.00,46.96,0.00 +301308.SZ,0.00,0.00,0.00,34.50,0.00,33.74,0.00,34.88,0.00,0.00,0.00,38.23,0.00,0.00,0.00,34.58,0.00,0.00,0.00,36.76,0.00 +301237.SZ,0.00,22.51,0.00,17.86,0.00,17.00,22.79,24.59,0.00,0.00,0.00,25.77,0.00,0.00,0.00,18.75,0.00,0.00,0.00,20.90,0.00 +688381.SH,0.00,0.00,0.00,46.46,0.00,56.53,0.00,49.58,0.00,37.28,0.00,41.88,0.00,0.00,0.00,42.05,0.00,0.00,0.00,46.63,0.00 +000099.SZ,0.00,0.00,0.00,86.12,0.00,0.00,0.00,83.50,0.00,0.00,0.00,82.43,0.00,0.00,0.00,76.86,0.00,0.00,0.00,80.20,0.00 +301376.SZ,0.00,0.00,0.00,13.90,0.00,14.13,0.00,15.22,0.00,14.66,0.00,14.31,0.00,0.00,0.00,11.62,0.00,0.00,0.00,9.96,0.00 +600011.SH,0.00,0.00,0.00,39.12,0.00,0.00,0.00,40.00,0.00,0.00,0.00,40.00,0.00,0.00,0.00,39.00,0.00,0.00,0.00,39.49,0.00 +300418.SZ,0.00,0.00,0.00,78.93,0.00,0.00,0.00,52.38,0.00,0.00,0.00,55.95,0.00,0.00,0.00,58.64,0.00,0.00,0.00,49.51,0.00 +301192.SZ,0.00,100.00,0.00,98.73,0.00,97.34,0.00,97.41,0.00,0.00,0.00,84.10,0.00,0.00,0.00,64.56,0.00,0.00,0.00,63.18,0.00 +002232.SZ,0.00,0.00,0.00,72.45,0.00,0.00,0.00,73.29,0.00,0.00,0.00,80.58,0.00,0.00,0.00,72.06,0.00,0.00,0.00,90.06,0.00 +002410.SZ,0.00,0.00,0.00,1.65,0.00,0.00,0.00,3.65,0.00,0.00,0.00,1.76,0.00,0.00,0.00,2.37,0.00,0.00,0.00,2.43,0.00 +601789.SH,0.00,0.00,0.00,12.13,0.00,0.00,0.00,8.63,0.00,0.00,0.00,10.14,0.00,0.00,0.00,17.39,0.00,0.00,0.00,13.10,0.00 +300812.SZ,0.00,0.00,0.00,60.32,0.00,0.00,0.00,38.02,0.00,0.00,0.00,40.27,0.00,0.00,0.00,38.84,0.00,0.00,0.00,58.39,0.00 +688273.SH,0.00,0.00,0.00,16.50,0.00,17.33,0.00,15.31,0.00,0.00,0.00,22.06,0.00,0.00,0.00,17.97,0.00,0.00,0.00,12.23,0.00 +688456.SH,0.00,17.06,0.00,19.78,0.00,0.00,0.00,21.36,0.00,0.00,0.00,25.09,0.00,0.00,0.00,20.08,0.00,0.00,0.00,17.08,0.00 +603390.SH,0.00,0.00,0.00,45.94,0.00,0.00,0.00,52.65,0.00,0.00,0.00,53.13,0.00,0.00,0.00,54.38,0.00,0.00,0.00,50.33,0.00 +688325.SH,0.00,0.00,0.00,62.94,0.00,67.61,0.00,0.00,0.00,0.00,0.00,68.26,0.00,0.00,0.00,56.11,0.00,0.00,0.00,58.71,0.00 +601126.SH,0.00,0.00,0.00,18.79,0.00,0.00,0.00,12.34,0.00,0.00,0.00,13.90,0.00,0.00,0.00,13.08,0.00,0.00,0.00,9.69,0.00 +300594.SZ,0.00,0.00,0.00,91.58,0.00,0.00,0.00,81.57,0.00,0.00,0.00,69.92,0.00,0.00,0.00,63.97,0.00,0.00,0.00,64.00,0.00 +600722.SH,0.00,0.00,0.00,66.27,0.00,0.00,0.00,68.30,0.00,0.00,0.00,67.49,0.00,0.00,0.00,72.31,0.00,0.00,0.00,73.85,0.00 +002973.SZ,0.00,0.00,0.00,22.23,0.00,0.00,0.00,19.18,0.00,0.00,0.00,17.31,0.00,0.00,0.00,16.65,0.00,0.00,0.00,18.12,0.00 +000799.SZ,0.00,0.00,0.00,42.32,0.00,0.00,0.00,37.52,0.00,0.00,0.00,37.32,0.00,0.00,0.00,36.96,0.00,0.00,0.00,26.01,0.00 +300580.SZ,0.00,0.00,0.00,78.78,0.00,0.00,0.00,73.77,0.00,0.00,0.00,76.46,0.00,0.00,0.00,78.81,0.00,0.00,0.00,77.44,0.00 +603307.SH,0.00,0.00,0.00,76.13,0.00,79.32,0.00,75.78,0.00,78.31,0.00,73.57,0.00,0.00,0.00,61.96,0.00,0.00,0.00,40.33,0.00 +300774.SZ,0.00,70.87,0.00,61.37,0.00,0.00,0.00,69.61,0.00,0.00,0.00,77.27,0.00,0.00,0.00,61.15,0.00,0.00,0.00,62.27,0.00 +605016.SH,0.00,36.89,0.00,34.03,0.00,0.00,0.00,47.11,0.00,0.00,0.00,41.97,0.00,0.00,0.00,38.82,0.00,0.00,0.00,47.02,0.00 +301306.SZ,0.00,0.00,0.00,72.37,0.00,66.45,0.00,67.20,0.00,0.00,0.00,70.80,0.00,0.00,0.00,64.25,0.00,0.00,0.00,77.61,0.00 +603486.SH,0.00,0.00,0.00,25.72,0.00,0.00,0.00,20.10,0.00,0.00,0.00,19.32,0.00,0.00,0.00,16.11,0.00,0.00,0.00,22.23,0.00 +301027.SZ,0.00,9.49,0.00,10.31,12.26,0.00,0.00,4.32,0.00,0.00,0.00,9.70,0.00,0.00,0.00,14.22,0.00,0.00,0.00,13.98,0.00 +605369.SH,0.00,28.06,0.00,25.31,0.00,0.00,0.00,4.62,0.00,0.00,0.00,21.01,0.00,0.00,0.00,27.45,0.00,0.00,0.00,27.54,0.00 +001391.SZ,0.00,0.00,0.00,21.23,0.00,0.00,0.00,23.90,0.00,23.17,0.00,23.73,0.00,0.00,0.00,28.62,0.00,29.99,0.00,29.28,0.00 +002600.SZ,0.00,0.00,0.00,44.26,0.00,0.00,0.00,45.49,0.00,0.00,0.00,49.14,0.00,0.00,0.00,52.06,0.00,0.00,0.00,56.04,0.00 +300996.SZ,0.00,71.25,0.00,72.81,0.00,73.24,0.00,76.23,0.00,67.68,0.00,69.58,0.00,62.06,0.00,55.40,0.00,59.96,0.00,57.80,0.00 +601021.SH,0.00,0.00,0.00,4.20,0.00,0.00,0.00,4.30,0.00,0.00,0.00,2.68,0.00,0.00,0.00,0.00,0.00,0.00,0.00,5.54,0.00 +600178.SH,0.00,0.00,0.00,74.22,0.00,0.00,0.00,67.54,0.00,0.00,0.00,74.71,0.00,0.00,0.00,57.76,0.00,0.00,0.00,55.66,0.00 +688208.SH,0.00,0.00,0.00,29.21,0.00,0.00,0.00,24.82,0.00,0.00,0.00,26.90,0.00,0.00,0.00,25.17,0.00,0.00,0.00,24.95,0.00 +002676.SZ,0.00,0.00,0.00,45.28,0.00,0.00,0.00,45.48,0.00,0.00,0.00,40.07,0.00,0.00,0.00,43.71,0.00,0.00,0.00,39.46,0.00 +601015.SH,0.00,0.00,0.00,65.98,0.00,0.00,0.00,49.40,0.00,0.00,0.00,46.94,0.00,0.00,0.00,42.12,0.00,0.00,0.00,45.51,0.00 +300261.SZ,0.00,0.00,0.00,65.10,0.00,0.00,0.00,57.02,0.00,0.00,0.00,58.52,0.00,0.00,0.00,47.14,0.00,0.00,0.00,51.02,0.00 +002774.SZ,0.00,0.00,0.00,12.47,0.00,0.00,0.00,44.14,0.00,0.00,0.00,10.87,0.00,0.00,0.00,9.95,0.00,0.00,0.00,12.31,0.00 +688380.SH,0.00,0.00,0.00,19.47,0.00,16.57,0.00,18.52,0.00,0.00,0.00,27.25,0.00,0.00,0.00,24.13,0.00,0.00,0.00,24.68,0.00 +838171.BJ,0.00,0.00,0.00,48.46,0.00,51.33,0.00,50.70,0.00,0.00,0.00,47.70,0.00,0.00,0.00,41.34,0.00,0.00,0.00,36.64,0.00 +002301.SZ,0.00,0.00,0.00,36.37,0.00,0.00,0.00,49.94,0.00,0.00,0.00,45.32,0.00,0.00,0.00,58.46,0.00,0.00,0.00,48.57,0.00 +300893.SZ,48.86,52.14,0.00,58.68,0.00,0.00,0.00,62.37,0.00,0.00,0.00,67.78,0.00,0.00,0.00,65.43,0.00,0.00,0.00,71.32,0.00 +000068.SZ,0.00,0.00,0.00,41.00,0.00,0.00,0.00,82.09,0.00,0.00,0.00,75.77,0.00,0.00,0.00,89.60,0.00,0.00,0.00,69.91,0.00 +300219.SZ,0.00,0.00,0.00,39.30,0.00,0.00,0.00,34.67,0.00,0.00,0.00,35.00,0.00,0.00,0.00,31.71,0.00,0.00,0.00,29.80,0.00 +603501.SH,0.00,0.00,0.00,54.67,0.00,0.00,0.00,56.03,0.00,0.00,0.00,55.06,0.00,0.00,0.00,55.82,0.00,0.00,0.00,51.14,0.00 +603808.SH,0.00,0.00,0.00,14.41,0.00,0.00,0.00,9.61,0.00,0.00,0.00,7.55,0.00,0.00,0.00,7.70,0.00,0.00,0.00,6.98,0.00 +600965.SH,0.00,0.00,0.00,13.03,0.00,0.00,0.00,14.75,0.00,0.00,0.00,16.95,0.00,0.00,0.00,13.05,0.00,0.00,0.00,15.15,0.00 +002920.SZ,0.00,0.00,0.00,54.81,0.00,0.00,0.00,49.97,0.00,0.00,0.00,48.51,0.00,0.00,0.00,55.90,0.00,0.00,0.00,59.27,0.00 +832491.BJ,0.00,0.00,0.00,42.13,0.00,45.41,0.00,43.10,0.00,0.00,0.00,39.80,0.00,0.00,0.00,38.10,0.00,0.00,0.00,35.21,0.00 +002565.SZ,0.00,0.00,0.00,40.17,0.00,0.00,0.00,41.63,0.00,0.00,0.00,46.44,0.00,0.00,0.00,42.76,0.00,0.00,0.00,45.78,0.00 +832089.BJ,0.00,34.32,0.00,32.54,0.00,42.74,0.00,40.24,0.00,0.00,0.00,34.14,0.00,0.00,0.00,33.21,0.00,0.00,0.00,37.65,0.00 +601068.SH,0.00,0.00,0.00,17.17,0.00,0.00,0.00,13.83,0.00,0.00,0.00,5.86,0.00,0.00,0.00,16.63,0.00,0.00,0.00,18.28,0.00 +603191.SH,0.00,0.00,0.00,28.60,0.00,23.93,0.00,24.39,0.00,0.00,0.00,25.47,0.00,0.00,0.00,28.05,0.00,0.00,0.00,27.01,0.00 +300769.SZ,0.00,0.00,0.00,90.04,0.00,0.00,0.00,97.33,0.00,0.00,0.00,94.01,0.00,0.00,0.00,96.32,0.00,0.00,0.00,93.91,0.00 +300566.SZ,0.00,0.00,0.00,38.85,0.00,0.00,0.00,38.73,0.00,0.00,0.00,52.73,0.00,0.00,0.00,55.70,0.00,0.00,0.00,51.05,0.00 +605218.SH,0.00,0.00,0.00,84.19,0.00,84.45,0.00,81.20,0.00,73.02,0.00,78.47,0.00,59.46,0.00,53.19,0.00,54.45,0.00,53.69,0.00 +603409.SH,0.00,0.00,0.00,89.50,0.00,0.00,0.00,93.78,0.00,95.92,0.00,96.35,0.00,94.14,0.00,90.21,0.00,94.37,0.00,94.24,0.00 +832651.BJ,0.00,0.00,0.00,34.91,0.00,0.00,0.00,35.62,0.00,37.79,0.00,25.64,0.00,0.00,0.00,30.59,0.00,0.00,0.00,27.77,0.00 +600229.SH,0.00,0.00,0.00,19.75,0.00,0.00,0.00,23.57,0.00,0.00,0.00,19.40,0.00,0.00,0.00,13.84,0.00,0.00,0.00,19.10,0.00 +000882.SZ,0.00,0.00,0.00,8.51,0.00,0.00,0.00,10.10,0.00,0.00,0.00,19.02,0.00,0.00,0.00,9.42,0.00,0.00,0.00,11.45,0.00 +002578.SZ,0.00,0.00,0.00,24.37,0.00,0.00,0.00,17.19,0.00,0.00,0.00,21.89,0.00,0.00,0.00,30.03,0.00,0.00,0.00,18.84,0.00 +301135.SZ,0.00,44.34,0.00,39.98,0.00,36.01,0.00,37.77,0.00,0.00,0.00,44.90,0.00,0.00,0.00,35.98,0.00,0.00,0.00,32.07,0.00 +002791.SZ,0.00,0.00,0.00,3.57,0.00,0.00,0.00,2.76,0.00,0.00,0.00,2.80,0.00,0.00,0.00,2.35,0.00,0.00,0.00,2.58,0.00 +001333.SZ,0.00,0.00,0.00,16.75,16.89,17.56,0.00,17.80,0.00,18.65,0.00,16.02,0.00,0.00,0.00,17.46,0.00,0.00,0.00,17.40,0.00 +688008.SH,0.00,0.00,0.00,82.22,0.00,0.00,0.00,86.52,0.00,0.00,0.00,84.20,0.00,0.00,0.00,75.21,0.00,0.00,0.00,76.69,0.00 +301552.SZ,0.00,0.00,0.00,87.30,0.00,0.00,0.00,89.10,0.00,89.73,0.00,89.71,0.00,88.84,0.00,89.16,0.00,0.00,0.00,89.87,0.00 +300489.SZ,0.00,0.00,0.00,22.68,0.00,0.00,0.00,20.99,0.00,0.00,0.00,21.22,0.00,0.00,0.00,25.09,0.00,0.00,0.00,35.57,0.00 +603172.SH,0.00,0.00,0.00,28.87,0.00,0.00,0.00,31.65,0.00,26.88,0.00,24.55,0.00,0.00,0.00,28.36,0.00,0.00,0.00,31.96,0.00 +301103.SZ,0.00,0.19,0.00,0.13,0.00,0.10,0.00,0.07,0.00,0.00,0.00,0.05,0.00,0.00,0.00,0.05,0.00,0.00,0.00,0.12,0.00 +002454.SZ,0.00,0.00,0.00,23.14,0.00,0.00,0.00,38.28,0.00,0.00,0.00,33.17,0.00,0.00,0.00,48.84,0.00,0.00,0.00,48.68,0.00 +003021.SZ,0.00,58.83,0.00,43.40,0.00,0.00,0.00,36.86,0.00,0.00,0.00,35.51,0.00,0.00,0.00,50.68,0.00,0.00,0.00,46.62,0.00 +000626.SZ,0.00,0.00,0.00,6.41,0.00,0.00,0.00,6.83,0.00,0.00,0.00,4.86,0.00,0.00,0.00,5.99,0.00,0.00,0.00,10.41,0.00 +002883.SZ,0.00,0.00,0.00,38.88,0.00,0.00,0.00,27.39,0.00,0.00,0.00,18.12,0.00,0.00,0.00,16.87,0.00,0.00,0.00,24.41,0.00 +603082.SH,0.00,0.00,0.00,54.75,0.00,0.00,0.00,52.08,0.00,54.12,0.00,38.90,0.00,64.89,0.00,48.12,0.00,0.00,0.00,42.49,0.00 +002823.SZ,0.00,0.00,0.00,39.05,0.00,0.00,0.00,37.63,0.00,0.00,0.00,42.70,0.00,0.00,0.00,40.70,0.00,0.00,0.00,37.11,0.00 +000881.SZ,0.00,0.00,0.00,7.33,0.00,0.00,0.00,11.88,0.00,0.00,0.00,10.83,0.00,0.00,0.00,9.55,0.00,0.00,0.00,10.52,0.00 +603773.SH,0.00,0.00,0.00,82.56,0.00,0.00,0.00,60.53,0.00,0.00,0.00,52.01,0.00,0.00,0.00,62.87,0.00,0.00,0.00,67.83,0.00 +600727.SH,0.00,0.00,0.00,13.74,0.00,0.00,0.00,16.99,0.00,0.00,0.00,17.89,0.00,0.00,0.00,15.67,0.00,0.00,0.00,0.00,0.00 +300681.SZ,0.00,0.00,0.00,47.14,0.00,0.00,0.00,55.73,0.00,0.00,0.00,64.33,0.00,0.00,0.00,62.73,0.00,0.00,0.00,66.45,0.00 +603682.SH,0.00,0.00,0.00,10.46,0.00,0.00,0.00,7.81,0.00,0.00,0.00,8.45,0.00,0.00,0.00,8.23,0.00,0.00,0.00,5.95,0.00 +002331.SZ,0.00,0.00,0.00,23.11,0.00,0.00,0.00,30.02,0.00,0.00,0.00,27.91,0.00,0.00,0.00,15.86,0.00,0.00,0.00,20.41,0.00 +000014.SZ,0.00,0.00,0.00,5.23,0.00,0.00,0.00,3.08,0.00,0.00,0.00,7.23,0.00,0.00,0.00,17.73,0.00,0.00,0.00,22.31,0.00 +300825.SZ,0.00,0.00,0.00,81.82,0.00,0.00,0.00,72.35,0.00,0.00,0.00,72.21,0.00,0.00,0.00,64.38,0.00,0.00,0.00,62.54,0.00 +600884.SH,0.00,0.00,0.00,40.43,0.00,0.00,0.00,44.64,0.00,0.00,0.00,54.09,0.00,0.00,0.00,56.01,0.00,0.00,0.00,63.93,0.00 +830946.BJ,0.00,0.00,0.00,27.54,0.00,0.00,0.00,25.50,0.00,0.00,0.00,25.69,0.00,0.00,0.00,27.27,0.00,0.00,0.00,27.90,0.00 +000009.SZ,0.00,0.00,0.00,28.19,0.00,34.72,0.00,40.48,0.00,0.00,0.00,57.58,0.00,63.32,0.00,63.31,0.00,50.90,0.00,51.09,0.00 +002023.SZ,0.00,0.00,0.00,32.41,0.00,0.00,0.00,31.27,0.00,0.00,0.00,41.62,0.00,0.00,0.00,43.54,0.00,0.00,0.00,42.08,0.00 +001258.SZ,0.00,0.00,0.00,99.97,0.00,100.00,0.00,99.96,0.00,0.00,0.00,99.92,0.00,0.00,0.00,99.24,0.00,0.00,0.00,99.30,0.00 +301040.SZ,0.00,62.50,0.00,61.75,0.00,0.00,0.00,64.69,0.00,0.00,0.00,42.10,0.00,0.00,0.00,70.84,0.00,0.00,0.00,73.91,0.00 +600327.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,1.11,0.00,0.00,0.00,1.29,0.00,0.00,0.00,2.71,0.00,0.00,0.00,1.24,0.00 +603567.SH,0.00,0.00,0.00,9.57,0.00,0.00,0.00,18.16,0.00,0.00,0.00,16.44,0.00,0.00,0.00,17.56,0.00,0.00,0.00,46.78,0.00 +832522.BJ,0.00,0.00,0.00,67.60,0.00,0.00,0.00,67.13,0.00,0.00,0.00,93.83,0.00,93.91,0.00,89.87,0.00,0.00,0.00,73.54,0.00 +002636.SZ,0.00,0.00,0.00,3.67,0.00,0.00,0.00,3.88,0.00,0.00,0.00,3.46,0.00,0.00,0.00,3.62,0.00,0.00,0.00,4.06,0.00 +601106.SH,0.00,0.00,0.00,29.63,0.00,0.00,0.00,18.89,0.00,0.00,0.00,15.22,0.00,0.00,0.00,10.21,0.00,0.00,0.00,14.72,0.00 +002957.SZ,0.00,0.00,0.00,56.60,0.00,0.00,0.00,57.26,0.00,0.00,0.00,44.70,0.00,0.00,0.00,31.43,0.00,0.00,0.00,43.06,0.00 +870976.BJ,0.00,0.00,0.00,38.41,0.00,0.00,0.00,35.22,0.00,38.41,0.00,28.32,0.00,0.00,0.00,30.33,0.00,0.00,0.00,28.90,0.00 +300137.SZ,0.00,0.00,0.00,8.57,0.00,0.00,0.00,7.41,0.00,0.00,0.00,7.02,0.00,0.00,0.00,12.50,0.00,0.00,0.00,12.28,0.00 +002972.SZ,0.00,0.00,0.00,81.55,0.00,0.00,0.00,75.50,0.00,0.00,0.00,69.24,0.00,0.00,0.00,69.38,0.00,0.00,0.00,61.65,0.00 +300142.SZ,0.00,0.00,0.00,8.08,0.00,0.00,0.00,4.48,0.00,0.00,0.00,7.29,0.00,0.00,0.00,8.37,0.00,0.00,0.00,17.38,0.00 +300123.SZ,0.00,0.00,0.00,22.55,0.00,0.00,0.00,29.48,0.00,0.00,0.00,35.08,0.00,0.00,0.00,0.64,0.00,0.00,0.00,66.48,0.00 +600865.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +600985.SH,0.00,0.00,0.00,16.10,0.00,0.00,0.00,17.18,0.00,0.00,0.00,16.77,0.00,0.00,0.00,14.61,0.00,0.00,0.00,11.56,0.00 +300975.SZ,0.00,32.09,0.00,31.23,0.00,0.00,0.00,34.97,0.00,0.00,0.00,29.98,0.00,0.00,0.00,23.83,0.00,0.00,0.00,20.54,0.00 +300440.SZ,0.00,0.00,0.00,17.37,0.00,0.00,0.00,14.93,0.00,0.00,0.00,23.42,0.00,0.00,0.00,26.42,0.00,0.00,0.00,17.88,0.00 +300228.SZ,0.00,0.00,0.00,46.44,0.00,0.00,0.00,32.93,0.00,0.00,0.00,35.54,0.00,0.00,0.00,46.20,0.00,0.00,0.00,31.15,0.00 +300241.SZ,0.00,0.00,0.00,15.69,0.00,0.00,0.00,19.07,0.00,0.00,0.00,22.58,0.00,0.00,0.00,18.97,0.00,0.00,0.00,20.84,0.00 +601096.SH,0.00,0.00,0.00,95.51,0.00,0.00,0.00,89.98,0.00,86.86,0.00,85.65,0.00,78.88,0.00,78.73,0.00,0.00,0.00,84.28,0.00 +688193.SH,0.00,0.00,0.00,18.49,0.00,18.91,0.00,0.00,0.00,0.00,0.00,19.89,0.00,0.00,0.00,17.32,0.00,0.00,0.00,16.72,0.00 +603598.SH,0.00,0.00,0.00,24.69,0.00,0.00,0.00,31.97,0.00,0.00,0.00,17.47,0.00,0.00,0.00,18.44,0.00,0.00,0.00,21.73,0.00 +301363.SZ,0.00,0.00,0.00,84.17,0.00,83.17,0.00,84.67,0.00,90.09,0.00,88.43,0.00,0.00,0.00,81.79,0.00,0.00,0.00,82.32,0.00 +301602.SZ,0.00,0.00,0.00,13.31,0.00,0.00,0.00,19.48,0.00,22.18,0.00,25.97,0.00,0.00,0.00,30.70,0.00,26.05,0.00,37.56,0.00 +600707.SH,0.00,0.00,0.00,67.87,0.00,0.00,0.00,60.93,0.00,0.00,0.00,47.28,0.00,0.00,0.00,68.93,0.00,0.00,0.00,68.79,0.00 +600520.SH,0.00,0.00,0.00,22.65,0.00,0.00,0.00,21.16,0.00,0.00,0.00,29.00,0.00,0.00,0.00,25.90,0.00,0.00,0.00,27.58,0.00 +603703.SH,0.00,0.00,0.00,26.92,0.00,0.00,0.00,36.57,0.00,0.00,0.00,27.56,0.00,0.00,0.00,19.40,0.00,0.00,0.00,23.50,0.00 +300236.SZ,0.00,0.00,0.00,18.19,0.00,0.00,0.00,23.17,0.00,0.00,0.00,28.74,0.00,0.00,0.00,33.74,0.00,0.00,0.00,37.96,0.00 +000815.SZ,0.00,0.00,0.00,43.77,0.00,0.00,0.00,39.95,0.00,0.00,0.00,44.47,0.00,0.00,0.00,55.35,0.00,0.00,0.00,57.09,0.00 +301041.SZ,0.00,17.42,0.00,17.07,0.00,0.00,0.00,12.52,0.00,0.00,0.00,14.75,0.00,0.00,0.00,14.54,0.00,0.00,0.00,15.83,0.00 +430685.BJ,0.00,0.00,0.00,14.43,0.00,0.00,0.00,16.01,0.00,0.00,0.00,24.52,0.00,0.00,0.00,11.56,0.00,0.00,0.00,9.90,0.00 +301419.SZ,0.00,65.78,0.00,64.33,0.00,59.80,0.00,56.24,0.00,56.88,0.00,57.56,0.00,0.00,0.00,53.28,0.00,0.00,0.00,54.61,0.00 +300813.SZ,0.00,0.00,0.00,7.27,0.00,0.00,0.00,11.37,0.00,0.00,0.00,6.97,0.00,0.00,0.00,11.85,0.00,0.00,0.00,7.67,0.00 +300306.SZ,0.00,0.00,0.00,18.74,0.00,0.00,0.00,20.12,0.00,0.00,0.00,17.00,0.00,0.00,0.00,13.12,0.00,0.00,0.00,15.39,0.00 +001288.SZ,0.00,63.31,0.00,51.06,0.00,51.75,0.00,29.18,0.00,0.00,0.00,42.30,0.00,0.00,0.00,38.76,0.00,0.00,0.00,71.87,0.00 +002396.SZ,0.00,0.00,0.00,33.31,0.00,29.94,0.00,29.68,0.00,34.06,0.00,31.01,0.00,35.75,0.00,30.84,0.00,0.00,0.00,32.35,0.00 +301166.SZ,0.00,16.31,0.00,16.47,0.00,13.94,0.00,8.62,0.00,0.00,0.00,9.85,0.00,0.00,0.00,5.97,0.00,0.00,0.00,8.11,0.00 +003037.SZ,0.00,21.31,0.00,34.98,0.00,0.00,0.00,24.63,0.00,0.00,0.00,17.18,0.00,0.00,0.00,8.30,0.00,0.00,0.00,9.41,0.00 +603083.SH,0.00,0.00,0.00,63.72,0.00,0.00,0.00,14.17,0.00,0.00,0.00,63.36,0.00,0.00,0.00,68.80,0.00,0.00,0.00,74.96,0.00 +300058.SZ,0.00,0.00,0.00,19.34,0.00,0.00,0.00,19.29,0.00,0.00,0.00,14.25,0.00,0.00,0.00,13.80,0.00,0.00,0.00,14.64,0.00 +300213.SZ,0.00,0.00,0.00,35.42,0.00,0.00,0.00,27.92,0.00,0.00,0.00,32.16,0.00,0.00,0.00,36.51,0.00,0.00,0.00,35.64,0.00 +600560.SH,0.00,0.00,0.00,34.33,0.00,0.00,0.00,39.08,0.00,0.00,0.00,38.58,0.00,0.00,0.00,30.75,0.00,0.00,0.00,35.15,0.00 +002445.SZ,0.00,0.00,0.00,35.49,0.00,0.00,0.00,18.27,0.00,0.00,0.00,28.50,0.00,0.00,0.00,18.39,0.00,0.00,0.00,43.19,0.00 +000612.SZ,0.00,0.00,0.00,49.15,0.00,0.00,0.00,45.78,0.00,0.00,0.00,48.69,0.00,0.00,0.00,50.35,0.00,0.00,0.00,56.76,0.00 +001308.SZ,0.00,0.00,0.00,28.13,0.00,27.82,0.00,31.05,0.00,0.00,0.00,37.50,0.00,0.00,0.00,28.92,0.00,0.00,0.00,33.43,0.00 +301136.SZ,0.00,26.73,0.00,20.38,0.00,16.66,0.00,15.19,0.00,0.00,0.00,14.49,0.00,0.00,0.00,9.33,0.00,0.00,0.00,12.10,0.00 +000837.SZ,0.00,0.00,0.00,17.95,0.00,0.00,0.00,20.18,0.00,0.00,0.00,14.34,0.00,0.00,0.00,20.26,0.00,0.00,0.00,20.22,0.00 +003042.SZ,0.00,13.69,0.00,13.91,0.00,0.00,0.00,14.02,0.00,0.00,0.00,20.66,0.00,0.00,0.00,15.70,0.00,0.00,0.00,15.66,0.00 +301222.SZ,0.00,59.69,0.00,60.19,0.00,60.54,0.00,57.67,0.00,0.00,0.00,53.94,0.00,0.00,0.00,52.58,0.00,0.00,0.00,50.64,0.00 +300129.SZ,0.00,0.00,0.00,31.60,0.00,0.00,0.00,43.65,0.00,0.00,0.00,66.04,0.00,0.00,0.00,55.67,0.00,0.00,0.00,71.07,0.00 +603006.SH,0.00,0.00,0.00,70.97,0.00,0.00,0.00,58.00,0.00,0.00,0.00,60.36,0.00,0.00,0.00,79.28,0.00,0.00,0.00,69.85,0.00 +601118.SH,0.00,0.00,0.00,10.70,0.00,0.00,0.00,16.01,0.00,0.00,0.00,18.57,0.00,0.00,0.00,8.79,0.00,0.00,0.00,11.13,0.00 +688638.SH,0.00,0.00,0.00,95.76,0.00,0.00,0.00,88.14,0.00,89.25,0.00,85.67,0.00,0.00,0.00,85.21,0.00,0.00,0.00,68.47,0.00 +002264.SZ,0.00,0.00,0.00,29.58,0.00,0.00,0.00,39.38,0.00,0.00,0.00,70.71,0.00,0.00,0.00,77.88,0.00,0.00,0.00,62.07,0.00 +688151.SH,0.00,81.03,0.00,63.76,0.00,69.08,0.00,61.83,0.00,0.00,0.00,29.39,0.00,0.00,0.00,20.69,0.00,0.00,0.00,32.16,0.00 +603700.SH,0.00,0.00,0.00,9.29,0.00,0.00,0.00,15.07,0.00,0.00,0.00,12.11,0.00,0.00,0.00,12.24,0.00,0.00,0.00,10.43,0.00 +600298.SH,0.00,0.00,0.00,5.01,0.00,0.00,0.00,4.48,0.00,0.00,0.00,5.18,0.00,0.00,0.00,6.17,0.00,0.00,0.00,4.64,0.00 +688400.SH,0.00,0.00,0.00,16.77,0.00,24.26,0.00,22.92,27.60,0.00,0.00,28.51,0.00,0.00,0.00,25.43,0.00,0.00,0.00,17.60,0.00 +002150.SZ,0.00,0.00,0.00,56.61,0.00,0.00,0.00,57.98,0.00,0.00,0.00,57.57,0.00,0.00,0.00,46.70,0.00,0.00,0.00,42.41,0.00 +600584.SH,0.00,0.00,0.00,57.35,0.00,0.00,0.00,50.52,0.00,0.00,0.00,51.40,0.00,0.00,0.00,50.68,0.00,0.00,0.00,52.32,0.00 +301106.SZ,0.00,35.42,0.00,32.21,0.00,33.85,0.00,30.88,0.00,0.00,0.00,35.79,0.00,0.00,0.00,39.59,0.00,0.00,0.00,36.76,0.00 +000908.SZ,0.00,0.00,0.00,14.24,0.00,0.00,0.00,23.16,0.00,0.00,0.00,23.52,0.00,0.00,0.00,26.70,0.00,0.00,0.00,22.22,0.00 +000532.SZ,0.00,0.00,0.00,32.32,0.00,0.00,0.00,34.40,0.00,0.00,0.00,36.94,0.00,0.00,0.00,44.87,0.00,0.00,0.00,40.96,0.00 +300833.SZ,0.00,0.00,0.00,48.19,0.00,0.00,0.00,67.14,0.00,0.00,0.00,66.47,0.00,0.00,0.00,51.06,0.00,0.00,0.00,56.28,0.00 +301536.SZ,0.00,0.00,0.00,83.70,0.00,0.00,0.00,86.50,0.00,86.44,0.00,86.48,0.00,89.20,0.00,87.04,0.00,0.00,0.00,82.90,0.00 +000422.SZ,0.00,0.00,0.00,10.72,0.00,0.00,0.00,13.32,0.00,0.00,0.00,12.80,0.00,0.00,0.00,17.19,0.00,0.00,0.00,17.89,0.00 +002446.SZ,0.00,0.00,0.00,41.36,0.00,0.00,0.00,42.92,0.00,0.00,0.00,85.32,0.00,0.00,0.00,83.84,0.00,0.00,0.00,87.70,0.00 +300558.SZ,0.00,0.00,0.00,54.20,0.00,0.00,0.00,58.67,0.00,0.00,0.00,58.72,0.00,0.00,0.00,61.45,0.00,0.00,0.00,59.29,0.00 +301295.SZ,0.00,0.00,0.00,77.49,0.00,71.90,0.00,69.09,0.00,69.59,0.00,67.65,0.00,0.00,0.00,59.73,0.00,0.00,0.00,56.35,0.00 +002101.SZ,0.00,0.00,0.00,37.80,0.00,0.00,0.00,39.84,0.00,0.00,0.00,37.45,0.00,0.00,0.00,33.59,0.00,0.00,0.00,41.93,0.00 +603348.SH,0.00,0.00,0.00,50.31,0.00,0.00,0.00,48.49,0.00,0.00,0.00,48.35,0.00,48.35,0.00,49.47,0.00,0.00,0.00,58.07,0.00 +603375.SH,0.00,0.00,0.00,93.68,0.00,0.00,0.00,75.57,0.00,70.96,0.00,65.94,0.00,72.67,0.00,62.75,0.00,0.00,0.00,66.58,0.00 +300406.SZ,0.00,0.00,0.00,15.08,0.00,0.00,0.00,23.92,0.00,0.00,0.00,20.48,0.00,0.00,0.00,20.70,0.00,0.00,0.00,16.50,0.00 +603101.SH,0.00,0.00,0.00,1.69,0.00,0.00,0.00,1.49,0.00,0.00,0.00,1.48,0.00,0.00,0.00,1.92,0.00,0.00,0.00,1.57,0.00 +603999.SH,0.00,0.00,0.00,54.16,0.00,0.00,0.00,52.47,0.00,0.00,0.00,50.44,0.00,0.00,0.00,45.25,0.00,0.00,0.00,40.60,0.00 +603871.SH,0.00,0.00,0.00,54.50,0.00,0.00,0.00,28.60,0.00,0.00,0.00,32.94,0.00,0.00,0.00,34.21,0.00,0.00,0.00,21.28,0.00 +000928.SZ,0.00,0.00,0.00,38.06,0.00,0.00,0.00,34.85,0.00,0.00,0.00,36.13,0.00,0.00,0.00,46.37,0.00,0.00,0.00,47.77,0.00 +300035.SZ,0.00,0.00,0.00,55.52,0.00,0.00,0.00,72.69,0.00,0.00,0.00,84.59,0.00,0.00,0.00,79.07,0.00,0.00,0.00,84.50,0.00 +301095.SZ,0.00,0.00,0.00,85.93,0.00,96.85,0.00,84.27,0.00,0.00,0.00,86.05,0.00,0.00,0.00,57.12,0.00,0.00,0.00,66.34,0.00 +688662.SH,0.00,39.20,0.00,0.00,0.00,0.00,0.00,40.74,0.00,0.00,0.00,41.83,0.00,0.00,0.00,24.89,0.00,0.00,0.00,30.20,0.00 +833523.BJ,0.00,0.00,48.64,46.19,0.00,45.61,0.00,48.33,0.00,0.00,0.00,45.89,0.00,0.00,0.00,47.88,0.00,0.00,0.00,50.75,0.00 +605398.SH,0.00,65.31,0.00,84.51,0.00,0.00,0.00,65.08,0.00,0.00,0.00,76.98,0.00,0.00,0.00,79.42,0.00,0.00,0.00,75.90,0.00 +002036.SZ,0.00,0.00,0.00,69.98,0.00,0.00,0.00,62.07,0.00,0.00,0.00,60.01,0.00,0.00,0.00,57.52,0.00,0.00,0.00,51.21,0.00 +301089.SZ,0.00,43.18,0.00,44.33,0.00,0.00,0.00,25.91,0.00,0.00,0.00,60.23,0.00,0.00,0.00,62.42,0.00,0.00,0.00,26.84,0.00 +688033.SH,0.00,0.00,0.00,76.79,0.00,0.00,0.00,48.77,0.00,0.00,0.00,27.38,0.00,0.00,0.00,35.80,0.00,0.00,0.00,46.89,0.00 +001260.SZ,0.00,0.00,0.00,65.53,0.00,61.38,0.00,58.61,0.00,56.00,0.00,52.20,0.00,0.00,0.00,53.25,0.00,0.00,0.00,41.93,0.00 +600883.SH,0.00,0.00,0.00,50.22,0.00,69.93,0.00,75.49,0.00,78.87,0.00,62.62,0.00,74.28,0.00,57.38,0.00,63.86,0.00,52.90,0.00 +688589.SH,0.00,0.00,0.00,45.66,0.00,0.00,0.00,78.71,0.00,0.00,0.00,67.53,0.00,0.00,0.00,76.48,0.00,0.00,0.00,71.25,0.00 +688591.SH,0.00,0.00,0.00,37.10,0.00,0.00,0.00,30.99,0.00,40.48,0.00,41.83,0.00,0.00,0.00,42.52,0.00,0.00,0.00,43.16,0.00 +002219.SZ,0.00,0.00,0.00,2.39,0.00,0.00,0.00,3.60,0.00,0.00,0.00,3.74,0.00,0.00,0.00,4.67,0.00,0.00,0.00,3.35,0.00 +688066.SH,0.00,0.00,0.00,37.96,0.00,0.00,0.00,12.87,0.00,0.00,0.00,12.80,0.00,0.00,0.00,20.25,0.00,0.00,0.00,29.81,0.00 +300516.SZ,0.00,0.00,0.00,94.39,0.00,0.00,0.00,84.76,0.00,0.00,0.00,67.27,0.00,0.00,0.00,86.79,0.00,0.00,0.00,82.05,0.00 +688676.SH,0.00,47.36,0.00,41.34,0.00,0.00,0.00,34.98,0.00,0.00,0.00,23.54,0.00,0.00,0.00,22.37,0.00,0.00,0.00,19.20,0.00 +001306.SZ,0.00,0.00,0.00,66.71,0.00,0.00,0.00,68.09,0.00,55.12,0.00,57.55,0.00,55.73,0.00,56.45,0.00,0.00,0.00,50.85,0.00 +688078.SH,0.00,0.00,0.00,48.30,0.00,0.00,0.00,50.02,0.00,0.00,0.00,51.51,0.00,0.00,0.00,50.62,0.00,0.00,0.00,30.07,0.00 +000816.SZ,0.00,0.00,0.00,48.62,0.00,0.00,0.00,55.44,0.00,0.00,0.00,48.30,0.00,0.00,0.00,45.52,0.00,0.00,0.00,36.25,0.00 +603055.SH,0.00,0.00,0.00,19.23,0.00,0.00,0.00,14.90,0.00,0.00,0.00,18.37,0.00,0.00,0.00,13.17,0.00,0.00,0.00,13.20,0.00 +603190.SH,0.00,0.00,0.00,86.90,0.00,85.64,0.00,83.16,0.00,76.01,0.00,72.15,0.00,0.00,0.00,70.07,0.00,0.00,0.00,66.40,0.00 +300878.SZ,0.00,21.99,0.00,29.42,0.00,0.00,0.00,25.88,0.00,0.00,0.00,23.56,0.00,0.00,0.00,14.43,0.00,0.00,0.00,16.78,0.00 +600235.SH,0.00,0.00,0.00,20.85,0.00,0.00,0.00,21.59,0.00,0.00,0.00,22.53,0.00,0.00,0.00,20.67,0.00,0.00,0.00,21.58,0.00 +300274.SZ,0.00,0.00,0.00,13.15,0.00,0.00,0.00,9.24,0.00,0.00,0.00,13.01,0.00,0.00,0.00,34.39,0.00,0.00,0.00,19.79,0.00 +002829.SZ,0.00,0.00,0.00,62.84,0.00,0.00,0.00,29.01,0.00,0.00,0.00,43.62,0.00,0.00,0.00,57.30,0.00,0.00,0.00,55.39,0.00 +836239.BJ,0.00,43.59,0.00,40.79,0.00,0.00,0.00,36.25,0.00,0.00,0.00,36.99,0.00,38.16,0.00,30.35,0.00,0.00,0.00,32.98,0.00 +002979.SZ,0.00,0.00,0.00,9.46,0.00,0.00,0.00,8.69,0.00,0.00,0.00,10.90,0.00,0.00,0.00,9.25,0.00,0.00,0.00,8.61,0.00 +603681.SH,0.00,0.00,0.00,16.52,0.00,0.00,0.00,15.43,0.00,0.00,0.00,13.21,0.00,0.00,0.00,11.98,0.00,0.00,0.00,13.16,0.00 +601799.SH,0.00,0.00,0.00,77.58,0.00,0.00,0.00,69.38,0.00,0.00,0.00,72.24,0.00,0.00,0.00,63.46,0.00,0.00,0.00,66.70,0.00 +300550.SZ,0.00,0.00,0.00,38.47,0.00,0.00,0.00,39.24,0.00,0.00,0.00,30.56,0.00,0.00,0.00,51.25,0.00,0.00,0.00,34.18,0.00 +301122.SZ,0.00,76.86,0.00,66.71,0.00,72.44,68.38,69.51,0.00,0.00,0.00,71.48,0.00,0.00,0.00,70.18,0.00,0.00,0.00,66.73,0.00 +301009.SZ,0.00,62.77,0.00,67.15,0.00,0.00,0.00,65.02,0.00,0.00,0.00,62.11,0.00,0.00,0.00,56.29,0.00,0.00,0.00,53.53,0.00 +002459.SZ,0.00,0.00,0.00,17.87,0.00,0.00,0.00,18.54,0.00,0.00,0.00,18.88,0.00,0.00,0.00,20.47,0.00,0.00,0.00,19.59,0.00 +688367.SH,0.00,50.09,0.00,49.83,67.70,0.00,0.00,36.98,0.00,0.00,0.00,50.87,0.00,0.00,0.00,36.17,0.00,0.00,0.00,56.86,0.00 +002686.SZ,0.00,0.00,0.00,29.30,0.00,0.00,0.00,32.41,0.00,0.00,0.00,36.42,0.00,0.00,0.00,38.77,0.00,0.00,0.00,31.86,0.00 +000035.SZ,0.00,0.00,0.00,12.58,0.00,0.00,0.00,11.16,0.00,0.00,0.00,22.40,0.00,0.00,0.00,17.43,0.00,0.00,0.00,18.83,0.00 +002121.SZ,0.00,0.00,0.00,13.16,0.00,0.00,0.00,14.08,0.00,0.00,0.00,20.73,0.00,0.00,0.00,46.62,0.00,0.00,0.00,34.43,0.00 +300141.SZ,0.00,0.00,0.00,15.86,0.00,0.00,0.00,27.44,0.00,0.00,0.00,41.53,0.00,0.00,0.00,44.09,0.00,0.00,0.00,43.73,0.00 +300911.SZ,0.00,5.78,0.00,5.99,0.00,0.00,0.00,34.73,0.00,0.00,0.00,4.89,0.00,0.00,0.00,4.82,0.00,0.00,0.00,5.22,0.00 +605286.SH,0.00,83.21,0.00,83.68,0.00,0.00,0.00,83.49,0.00,0.00,0.00,78.82,0.00,0.00,0.00,73.26,0.00,0.00,0.00,71.00,0.00 +300164.SZ,0.00,0.00,0.00,41.48,0.00,0.00,0.00,26.28,0.00,0.00,0.00,30.88,0.00,0.00,0.00,43.41,0.00,0.00,0.00,42.90,0.00 +688653.SH,0.00,0.00,0.00,67.78,0.00,0.00,0.00,83.10,0.00,81.84,0.00,76.70,0.00,80.40,0.00,74.52,0.00,87.90,0.00,77.76,0.00 +603128.SH,0.00,0.00,0.00,9.41,0.00,0.00,0.00,9.73,0.00,0.00,0.00,11.20,0.00,0.00,0.00,9.29,0.00,0.00,0.00,12.64,0.00 +002950.SZ,0.00,0.00,0.00,56.48,0.00,0.00,0.00,53.01,0.00,0.00,0.00,42.66,0.00,0.00,0.00,48.20,0.00,0.00,0.00,50.89,0.00 +300508.SZ,0.00,0.00,0.00,19.36,0.00,0.00,0.00,15.24,0.00,0.00,0.00,17.41,0.00,0.00,0.00,19.85,0.00,0.00,0.00,22.47,0.00 +300342.SZ,0.00,0.00,0.00,44.89,0.00,0.00,0.00,40.11,0.00,0.00,0.00,58.65,0.00,0.00,0.00,63.17,0.00,0.00,0.00,38.85,0.00 +002248.SZ,0.00,0.00,0.00,15.46,0.00,0.00,0.00,14.22,0.00,0.00,0.00,14.26,0.00,0.00,0.00,16.56,0.00,0.00,0.00,16.73,0.00 +002651.SZ,0.00,0.00,0.00,39.38,0.00,0.00,0.00,48.55,0.00,50.90,0.00,47.20,0.00,67.43,0.00,50.99,0.00,58.29,0.00,54.29,0.00 +870357.BJ,0.00,0.00,0.00,90.65,0.00,0.00,0.00,95.52,0.00,98.17,0.00,97.22,0.00,0.00,0.00,97.71,0.00,0.00,0.00,96.29,0.00 +002346.SZ,0.00,0.00,0.00,34.44,0.00,0.00,0.00,39.49,0.00,0.00,0.00,45.88,0.00,0.00,0.00,73.05,0.00,0.00,0.00,61.75,0.00 +603320.SH,0.00,0.00,0.00,88.67,0.00,0.00,0.00,71.36,0.00,0.00,0.00,89.57,0.00,0.00,0.00,85.04,0.00,0.00,0.00,80.12,0.00 +301280.SZ,0.00,0.00,0.00,51.76,0.00,56.65,0.00,55.32,0.00,54.05,53.23,52.40,0.00,0.00,0.00,52.01,0.00,0.00,0.00,49.78,0.00 +300454.SZ,0.00,0.00,0.00,12.36,0.00,0.00,0.00,12.46,0.00,0.00,0.00,11.20,0.00,0.00,0.00,11.12,0.00,0.00,0.00,10.38,0.00 +301086.SZ,0.00,90.34,0.00,91.03,0.00,0.00,0.00,86.21,0.00,0.00,0.00,82.12,0.00,0.00,0.00,76.37,0.00,0.00,0.00,67.81,0.00 +300821.SZ,0.00,0.00,0.00,9.41,0.00,0.00,0.00,11.37,0.00,0.00,0.00,11.88,0.00,0.00,0.00,14.88,0.00,0.00,0.00,14.13,0.00 +600725.SH,0.00,0.00,0.00,85.64,0.00,0.00,0.00,90.45,0.00,0.00,0.00,62.93,0.00,0.00,0.00,56.57,0.00,0.00,0.00,60.72,0.00 +000966.SZ,0.00,0.00,0.00,94.54,0.00,0.00,0.00,92.77,0.00,0.00,0.00,93.92,0.00,0.00,0.00,92.80,0.00,0.00,0.00,93.41,0.00 +002779.SZ,0.00,0.00,0.00,47.85,0.00,0.00,0.00,45.89,0.00,0.00,0.00,45.50,0.00,0.00,0.00,29.06,0.00,0.00,0.00,34.07,0.00 +605098.SH,0.00,0.00,0.00,4.08,0.00,0.00,0.00,3.70,0.00,0.00,0.00,4.26,0.00,0.00,0.00,5.17,0.00,0.00,0.00,7.37,0.00 +301069.SZ,48.85,4.51,36.64,34.99,0.00,0.00,0.00,24.08,0.00,0.00,0.00,29.90,0.00,0.00,0.00,40.14,0.00,0.00,0.00,34.37,0.00 +603266.SH,0.00,0.00,0.00,53.99,0.00,0.00,0.00,49.98,0.00,0.00,0.00,50.49,0.00,0.00,0.00,48.65,0.00,0.00,0.00,52.04,0.00 +603395.SH,0.00,0.00,0.00,9.31,0.00,0.00,0.00,8.42,0.00,8.33,0.00,7.73,0.00,10.64,0.00,8.41,0.00,8.15,8.11,6.98,0.00 +600730.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,26.58,0.00,0.00,0.00,11.88,0.00,0.00,0.00,27.27,0.00,0.00,0.00,36.23,0.00 +836270.BJ,0.00,0.00,0.00,77.75,0.00,0.00,71.73,70.03,72.77,0.00,0.00,61.49,0.00,0.00,0.00,67.68,0.00,0.00,0.00,72.34,0.00 +000637.SZ,0.00,0.00,0.00,49.11,0.00,0.00,0.00,49.61,0.00,0.00,0.00,42.50,0.00,0.00,0.00,49.27,0.00,0.00,0.00,56.46,0.00 +000838.SZ,0.00,0.00,0.00,0.96,0.00,0.00,0.00,8.07,0.00,0.00,0.00,12.23,0.00,0.00,0.00,13.84,0.00,0.00,0.00,6.12,0.00 +300300.SZ,0.00,0.00,0.00,29.74,0.00,0.00,0.00,58.36,0.00,0.00,0.00,41.18,0.00,0.00,0.00,43.76,0.00,0.00,0.00,74.48,0.00 +301393.SZ,0.00,0.00,0.00,27.58,0.00,30.52,0.00,28.87,0.00,37.57,0.00,33.06,0.00,0.00,0.00,33.74,0.00,0.00,0.00,40.24,0.00 +300689.SZ,0.00,0.00,0.00,95.58,0.00,0.00,0.00,91.67,0.00,0.00,0.00,96.21,0.00,0.00,0.00,87.93,0.00,0.00,0.00,77.75,0.00 +601882.SH,0.00,0.00,0.00,28.20,0.00,0.00,0.00,26.40,0.00,0.00,0.00,24.22,0.00,0.00,0.00,25.72,0.00,0.00,0.00,24.15,0.00 +300435.SZ,0.00,0.00,0.00,25.60,0.00,0.00,0.00,26.92,0.00,0.00,0.00,31.53,0.00,0.00,0.00,24.79,0.00,0.00,0.00,29.45,0.00 +603339.SH,0.00,0.00,0.00,31.40,0.00,0.00,0.00,25.94,0.00,0.00,0.00,31.41,0.00,0.00,0.00,20.59,0.00,0.00,0.00,15.81,0.00 +002097.SZ,0.00,0.00,0.00,8.21,0.00,7.81,0.00,9.05,0.00,12.84,0.00,11.04,0.00,13.16,0.00,11.00,0.00,13.45,0.00,10.07,0.00 +836720.BJ,0.00,0.00,0.00,38.58,0.00,48.62,0.00,43.02,0.00,0.00,0.00,35.51,0.00,0.00,0.00,34.25,0.00,0.00,0.00,30.48,0.00 +002460.SZ,0.00,0.00,0.00,28.63,0.00,0.00,0.00,24.62,0.00,0.00,0.00,44.08,0.00,0.00,0.00,41.21,0.00,0.00,0.00,23.58,0.00 +301238.SZ,0.00,76.78,0.00,78.04,0.00,84.40,0.00,86.97,0.00,0.00,0.00,90.04,0.00,0.00,0.00,88.78,0.00,0.00,0.00,76.31,0.00 +603222.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,41.35,0.00,0.00,0.00,30.30,0.00,0.00,0.00,15.14,0.00,0.00,0.00,17.93,0.00 +603341.SH,0.00,0.00,0.00,93.65,0.00,0.00,0.00,89.40,0.00,91.35,89.58,87.57,0.00,73.22,74.79,79.65,0.00,0.00,0.00,82.21,0.00 +688485.SH,0.00,0.00,0.00,86.92,0.00,97.16,0.00,92.46,0.00,99.79,99.77,99.00,0.00,0.00,0.00,91.29,0.00,0.00,0.00,88.64,0.00 +688607.SH,0.00,36.90,0.00,45.04,0.00,0.00,0.00,41.04,0.00,0.00,0.00,26.78,0.00,0.00,0.00,33.25,0.00,0.00,0.00,33.36,0.00 +000063.SZ,0.00,0.00,0.00,61.44,0.00,0.00,0.00,60.40,0.00,0.00,0.00,61.13,0.00,0.00,0.00,62.45,0.00,0.00,0.00,55.72,0.00 +300601.SZ,0.00,0.00,0.00,2.67,0.00,0.00,0.00,48.20,0.00,0.00,0.00,6.09,0.00,0.00,0.00,3.50,0.00,0.00,0.00,3.93,0.00 +002092.SZ,0.00,0.00,0.00,13.65,0.00,0.00,0.00,13.75,0.00,0.00,0.00,16.80,0.00,0.00,0.00,14.08,0.00,0.00,0.00,15.57,0.00 +002383.SZ,0.00,0.00,0.00,19.81,0.00,0.00,0.00,19.22,0.00,0.00,0.00,18.87,0.00,0.00,0.00,24.92,0.00,0.00,0.00,31.65,0.00 +000551.SZ,0.00,0.00,0.00,18.30,0.00,0.00,0.00,19.14,0.00,0.00,0.00,18.88,0.00,0.00,0.00,16.28,0.00,0.00,0.00,22.24,0.00 +688358.SH,0.00,0.00,0.00,16.98,0.00,0.00,0.00,20.91,0.00,0.00,0.00,19.62,0.00,0.00,0.00,26.68,0.00,0.00,0.00,26.42,0.00 +600641.SH,0.00,0.00,0.00,4.06,0.00,0.00,0.00,14.93,0.00,0.00,0.00,14.52,0.00,0.00,0.00,22.46,0.00,0.00,0.00,36.18,0.00 +600515.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,21.18,0.00 +688711.SH,0.00,32.08,0.00,33.45,0.00,37.86,0.00,42.45,0.00,0.00,0.00,57.91,0.00,0.00,0.00,69.46,0.00,0.00,0.00,66.75,0.00 +002476.SZ,0.00,0.00,0.00,79.07,0.00,0.00,0.00,70.73,0.00,0.00,0.00,84.38,0.00,0.00,0.00,81.76,0.00,0.00,0.00,78.03,0.00 +300843.SZ,0.00,0.00,0.00,32.76,0.00,0.00,0.00,35.81,0.00,0.00,0.00,43.53,0.00,0.00,0.00,44.03,0.00,0.00,0.00,32.34,0.00 +600176.SH,0.00,0.00,0.00,19.49,0.00,0.00,0.00,18.59,0.00,0.00,0.00,21.69,0.00,0.00,0.00,12.60,0.00,0.00,0.00,15.88,0.00 +002328.SZ,0.00,0.00,0.00,77.16,0.00,0.00,0.00,93.26,0.00,0.00,0.00,89.64,0.00,0.00,0.00,87.53,0.00,0.00,0.00,86.25,0.00 +603183.SH,0.00,0.00,0.00,11.11,0.00,0.00,0.00,9.30,0.00,0.00,0.00,11.91,0.00,0.00,0.00,14.12,0.00,0.00,0.00,11.81,0.00 +300505.SZ,0.00,0.00,0.00,20.29,0.00,0.00,0.00,40.97,0.00,0.00,0.00,47.16,0.00,0.00,0.00,25.11,0.00,0.00,0.00,31.96,0.00 +300115.SZ,0.00,0.00,0.00,69.03,0.00,0.00,0.00,63.69,0.00,0.00,0.00,69.55,0.00,0.00,0.00,69.00,0.00,0.00,0.00,74.92,0.00 +301161.SZ,0.00,53.55,0.00,55.71,0.00,57.81,0.00,55.32,0.00,0.00,0.00,57.58,0.00,0.00,0.00,35.62,0.00,0.00,0.00,33.31,0.00 +605299.SH,0.00,17.17,22.27,22.55,0.00,0.00,0.00,22.24,0.00,0.00,0.00,26.10,0.00,0.00,0.00,23.13,0.00,0.00,0.00,21.42,0.00 +603535.SH,0.00,0.00,0.00,33.70,0.00,0.00,0.00,35.33,0.00,0.00,0.00,40.38,0.00,0.00,0.00,41.02,0.00,0.00,0.00,43.52,0.00 +301662.SZ,0.00,0.00,0.00,57.42,0.00,0.00,0.00,44.88,0.00,72.26,0.00,58.06,0.00,0.00,0.00,46.85,0.00,0.00,49.40,42.32,0.00 +300540.SZ,0.00,0.00,0.00,72.82,0.00,0.00,0.00,63.18,0.00,0.00,0.00,68.87,0.00,0.00,0.00,49.22,0.00,0.00,0.00,45.56,0.00 +000514.SZ,0.00,0.00,0.00,12.99,0.00,0.00,0.00,52.32,0.00,0.00,0.00,7.99,0.00,0.00,0.00,53.35,0.00,0.00,0.00,16.67,0.00 +600167.SH,0.00,0.00,0.00,9.64,0.00,0.00,0.00,8.82,0.00,0.00,0.00,8.37,0.00,0.00,0.00,8.53,0.00,0.00,0.00,8.53,0.00 +000809.SZ,0.00,0.00,0.00,21.76,0.00,0.00,0.00,13.12,0.00,0.00,0.00,16.78,0.00,0.00,0.00,33.65,0.00,0.00,0.00,96.34,0.00 +000920.SZ,0.00,0.00,0.00,24.90,0.00,0.00,0.00,24.36,0.00,0.00,0.00,18.70,0.00,0.00,0.00,14.29,0.00,0.00,0.00,16.04,0.00 +300708.SZ,0.00,0.00,0.00,50.80,0.00,0.00,0.00,51.82,0.00,0.00,0.00,61.96,0.00,0.00,0.00,64.38,0.00,0.00,0.00,65.60,0.00 +300783.SZ,0.00,0.00,0.00,78.52,0.00,0.00,0.00,69.52,0.00,0.00,0.00,68.76,0.00,0.00,0.00,60.34,0.00,0.00,0.00,54.39,0.00 +600455.SH,0.00,0.00,0.00,5.30,0.00,4.31,0.00,4.86,0.00,1.00,0.00,0.62,0.00,0.69,0.00,0.65,0.00,0.90,0.00,1.50,0.00 +002908.SZ,0.00,0.00,0.00,16.86,0.00,0.00,0.00,15.91,0.00,0.00,0.00,10.94,0.00,0.00,0.00,19.21,0.00,0.00,0.00,18.18,0.00 +834261.BJ,0.00,0.00,0.00,5.38,0.00,0.00,0.00,6.08,0.00,5.93,0.00,5.31,0.00,0.00,0.00,6.15,0.00,0.00,0.00,7.32,0.00 +600618.SH,0.00,0.00,0.00,38.77,0.00,0.00,0.00,33.81,0.00,0.00,0.00,35.53,0.00,0.00,0.00,32.66,0.00,0.00,0.00,29.07,0.00 +688089.SH,0.00,0.00,0.00,70.46,0.00,0.00,0.00,72.38,0.00,0.00,0.00,69.47,0.00,0.00,0.00,72.49,0.00,0.00,0.00,76.20,0.00 +605378.SH,0.00,38.79,0.00,33.04,0.00,0.00,0.00,40.32,0.00,0.00,0.00,39.81,0.00,0.00,0.00,34.08,0.00,0.00,0.00,47.26,0.00 +002759.SZ,0.00,0.00,0.00,37.12,0.00,0.00,0.00,65.52,0.00,0.00,0.00,80.52,0.00,0.00,0.00,59.04,0.00,0.00,0.00,55.02,0.00 +300759.SZ,0.00,0.00,0.00,18.77,0.00,0.00,0.00,14.99,0.00,0.00,0.00,12.99,0.00,0.00,0.00,13.39,0.00,0.00,0.00,14.04,0.00 +605179.SH,0.00,3.79,3.61,3.45,0.00,0.00,0.00,3.70,0.00,0.00,0.00,2.61,0.00,0.00,0.00,3.52,0.00,0.00,0.00,6.36,0.00 +688758.SH,0.00,0.00,0.00,35.91,0.00,0.00,0.00,32.37,0.00,26.58,0.00,34.37,0.00,48.20,0.00,40.08,0.00,42.55,0.00,29.52,0.00 +605500.SH,0.00,13.56,0.00,12.81,0.00,0.00,0.00,11.93,0.00,0.00,0.00,13.20,0.00,0.00,0.00,13.51,0.00,0.00,0.00,15.66,0.00 +002614.SZ,0.00,0.00,0.00,27.92,0.00,0.00,0.00,27.14,0.00,0.00,0.00,24.41,0.00,0.00,0.00,21.23,0.00,0.00,0.00,19.52,0.00 +600405.SH,0.00,0.00,0.00,49.65,0.00,0.00,0.00,31.68,0.00,0.00,0.00,38.61,0.00,0.00,0.00,32.42,0.00,0.00,0.00,33.84,0.00 +605166.SH,0.00,0.00,0.00,39.76,0.00,0.00,0.00,33.34,0.00,0.00,0.00,28.46,0.00,0.00,0.00,38.82,0.00,0.00,0.00,43.89,0.00 +603706.SH,0.00,0.00,0.00,11.10,0.00,0.00,0.00,12.35,0.00,0.00,0.00,19.43,0.00,0.00,0.00,19.58,0.00,0.00,0.00,19.89,0.00 +002515.SZ,0.00,0.00,0.00,11.51,0.00,0.00,0.00,18.65,0.00,0.00,0.00,21.85,0.00,0.00,0.00,17.97,0.00,0.00,0.00,26.97,0.00 +300120.SZ,0.00,0.00,0.00,42.25,0.00,0.00,0.00,35.65,0.00,0.00,0.00,27.79,0.00,0.00,0.00,46.61,0.00,0.00,0.00,45.17,0.00 +301592.SZ,0.00,0.00,0.00,94.52,0.00,0.00,0.00,82.55,0.00,84.43,0.00,67.78,0.00,0.00,0.00,62.21,0.00,76.52,0.00,45.18,0.00 +002872.SZ,0.00,0.00,0.00,36.20,0.00,0.00,0.00,24.45,0.00,0.00,0.00,19.92,0.00,0.00,0.00,20.97,0.00,0.00,0.00,24.99,0.00 +688334.SH,0.00,0.00,0.00,26.50,0.00,0.00,0.00,35.48,0.00,23.99,0.00,18.13,0.00,0.00,0.00,39.49,0.00,0.00,0.00,47.40,0.00 +301016.SZ,0.00,99.99,0.00,99.36,0.00,0.00,0.00,89.24,0.00,0.00,0.00,87.78,0.00,0.00,0.00,0.00,0.00,0.00,0.00,79.24,0.00 +300951.SZ,0.00,85.06,0.00,90.49,0.00,0.00,0.00,95.34,0.00,0.00,0.00,88.52,0.00,0.00,0.00,88.17,0.00,0.00,0.00,79.31,0.00 +000987.SZ,0.00,0.00,0.00,5.70,0.00,0.00,0.00,18.15,0.00,0.00,0.00,11.21,0.00,0.00,0.00,15.48,0.00,0.00,0.00,29.67,0.00 +300883.SZ,0.00,42.49,0.00,42.67,0.00,0.00,0.00,41.01,0.00,0.00,0.00,38.70,0.00,0.00,0.00,38.22,0.00,0.00,0.00,31.13,0.00 +301000.SZ,0.00,64.20,0.00,61.33,0.00,0.00,0.00,54.82,0.00,0.00,0.00,49.56,0.00,0.00,0.00,44.38,0.00,0.00,0.00,43.38,0.00 +605189.SH,0.00,13.17,0.00,13.68,15.61,0.00,0.00,13.42,0.00,0.00,0.00,34.25,0.00,0.00,0.00,10.55,0.00,0.00,0.00,10.16,0.00 +002757.SZ,0.00,0.00,0.00,31.25,0.00,0.00,0.00,36.89,0.00,0.00,0.00,38.86,0.00,0.00,0.00,34.62,0.00,0.00,0.00,43.98,0.00 +301281.SZ,0.00,0.00,0.00,19.32,0.00,18.30,0.00,18.02,0.00,30.98,0.00,28.29,0.00,0.00,0.00,44.59,0.00,0.00,0.00,27.42,0.00 +001299.SZ,0.00,0.00,0.00,18.45,0.00,0.00,0.00,16.63,0.00,0.00,0.00,16.15,0.00,0.00,0.00,17.35,0.00,0.00,0.00,23.63,0.00 +600039.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,51.42,0.00,0.00,0.00,63.59,0.00,0.00,0.00,67.03,0.00,0.00,0.00,63.69,0.00 +000990.SZ,0.00,0.00,0.00,32.79,0.00,0.00,0.00,35.23,0.00,0.00,0.00,31.02,0.00,0.00,0.00,31.52,0.00,0.00,0.00,31.51,0.00 +300480.SZ,0.00,0.00,0.00,22.89,0.00,0.00,0.00,16.38,0.00,0.00,0.00,15.71,0.00,0.00,0.00,15.61,0.00,0.00,0.00,22.42,0.00 +301048.SZ,0.00,75.43,0.00,59.30,0.00,0.00,0.00,71.36,0.00,0.00,0.00,72.60,0.00,0.00,0.00,82.94,0.00,0.00,0.00,81.86,0.00 +688314.SH,0.00,30.10,0.00,30.62,0.00,0.00,0.00,22.60,0.00,0.00,0.00,21.09,0.00,0.00,0.00,17.09,0.00,0.00,0.00,15.59,0.00 +002016.SZ,0.00,0.00,0.00,0.50,0.00,91.37,0.00,1.28,0.00,0.00,0.00,18.72,0.00,0.00,0.00,35.58,0.00,0.00,0.00,54.57,0.00 +603927.SH,0.00,0.00,0.00,19.42,0.00,0.00,0.00,12.95,0.00,0.00,0.00,12.32,0.00,0.00,0.00,14.54,0.00,0.00,0.00,13.94,0.00 +688616.SH,0.00,59.01,0.00,54.45,0.00,0.00,0.00,50.25,0.00,0.00,0.00,46.58,0.00,0.00,0.00,48.92,0.00,0.00,0.00,48.10,0.00 +688629.SH,0.00,0.00,0.00,60.81,0.00,0.00,0.00,57.35,0.00,61.78,0.00,61.41,0.00,0.00,0.00,41.97,0.00,0.00,0.00,52.36,0.00 +002641.SZ,0.00,0.00,0.00,14.13,0.00,0.00,0.00,12.10,0.00,0.00,0.00,11.42,0.00,0.00,0.00,7.15,0.00,0.00,0.00,5.56,0.00 +300506.SZ,0.00,0.00,0.00,54.23,0.00,0.00,0.00,60.49,0.00,0.00,0.00,98.53,0.00,0.00,0.00,80.64,0.00,0.00,0.00,81.76,0.00 +002992.SZ,96.72,0.00,0.00,92.78,0.00,0.00,0.00,88.02,0.00,0.00,0.00,86.47,0.00,0.00,0.00,79.07,0.00,0.00,0.00,73.23,0.00 +002386.SZ,0.00,0.00,0.00,24.90,0.00,0.00,0.00,22.70,0.00,0.00,0.00,17.62,0.00,0.00,0.00,16.36,0.00,0.00,0.00,15.88,0.00 +600121.SH,0.00,0.00,0.00,47.98,0.00,0.00,0.00,52.95,0.00,0.00,0.00,42.88,0.00,0.00,0.00,56.86,0.00,0.00,0.00,57.54,0.00 +300517.SZ,0.00,0.00,0.00,52.91,0.00,66.61,0.00,56.41,0.00,62.74,0.00,60.74,0.00,72.14,0.00,64.76,0.00,0.00,0.00,55.27,0.00 +002931.SZ,0.00,0.00,0.00,48.43,0.00,0.00,0.00,45.00,0.00,0.00,0.00,52.42,0.00,0.00,0.00,50.54,0.00,0.00,0.00,49.47,0.00 +600556.SH,0.00,0.00,0.00,32.30,0.00,0.00,0.00,33.00,0.00,0.00,0.00,36.81,0.00,0.00,0.00,39.63,0.00,0.00,0.00,47.81,0.00 +002338.SZ,0.00,0.00,0.00,52.46,0.00,0.00,0.00,55.32,0.00,0.00,0.00,55.82,0.00,0.00,0.00,56.38,0.00,0.00,0.00,51.50,0.00 +301179.SZ,0.00,79.72,0.00,84.23,0.00,76.45,0.00,77.91,0.00,0.00,0.00,87.30,0.00,0.00,0.00,88.57,0.00,0.00,0.00,86.42,0.00 +600218.SH,0.00,0.00,0.00,51.96,0.00,0.00,0.00,64.41,0.00,0.00,0.00,65.53,0.00,0.00,0.00,60.50,0.00,0.00,0.00,58.08,0.00 +002989.SZ,0.00,0.00,0.00,59.22,0.00,0.00,0.00,49.39,0.00,0.00,0.00,46.13,0.00,54.41,0.00,52.28,0.00,0.00,0.00,86.32,0.00 +300701.SZ,0.00,0.00,0.00,11.02,0.00,0.00,0.00,12.02,0.00,0.00,0.00,13.60,0.00,0.00,0.00,15.13,0.00,0.00,0.00,10.46,0.00 +603730.SH,0.00,0.00,0.00,49.40,0.00,0.00,0.00,48.51,0.00,0.00,0.00,43.34,0.00,0.00,0.00,48.32,0.00,0.00,0.00,53.06,0.00 +002722.SZ,0.00,0.00,0.00,17.15,0.00,0.00,0.00,17.23,0.00,0.00,0.00,16.51,0.00,0.00,0.00,15.49,0.00,0.00,0.00,14.76,0.00 +300140.SZ,0.00,0.00,0.00,17.07,0.00,0.00,0.00,23.50,0.00,0.00,0.00,30.39,0.00,0.00,0.00,25.26,0.00,0.00,0.00,33.55,0.00 +002389.SZ,0.00,0.00,0.00,53.28,0.00,0.00,0.00,59.73,0.00,0.00,0.00,77.33,0.00,0.00,0.00,68.43,0.00,0.00,0.00,70.62,0.00 +001278.SZ,0.00,0.00,0.00,55.58,0.00,60.35,0.00,58.50,0.00,58.34,0.00,57.77,0.00,0.00,0.00,58.99,0.00,0.00,0.00,52.33,0.00 +002882.SZ,0.00,0.00,0.00,30.97,0.00,0.00,0.00,30.73,0.00,0.00,0.00,30.35,0.00,0.00,0.00,35.67,0.00,0.00,0.00,34.68,0.00 +000917.SZ,0.00,0.00,0.00,30.21,0.00,0.00,0.00,37.17,0.00,0.00,0.00,37.28,0.00,0.00,0.00,40.24,0.00,0.00,0.00,34.52,0.00 +000550.SZ,0.00,0.00,0.00,12.28,0.00,0.00,0.00,15.90,0.00,0.00,0.00,28.10,0.00,0.00,0.00,32.10,0.00,0.00,0.00,32.35,0.00 +605116.SH,0.00,44.17,0.00,40.67,0.00,0.00,0.00,34.11,0.00,0.00,0.00,32.69,0.00,0.00,0.00,29.36,0.00,0.00,0.00,31.35,0.00 +605138.SH,0.00,56.51,0.00,53.33,0.00,0.00,0.00,52.92,0.00,0.00,0.00,55.84,0.00,0.00,0.00,46.70,0.00,0.00,0.00,60.08,0.00 +301418.SZ,0.00,63.53,0.00,52.97,0.00,55.74,0.00,58.27,0.00,60.12,0.00,59.31,0.00,0.00,0.00,68.23,0.00,0.00,0.00,70.58,0.00 +000055.SZ,0.00,0.00,0.00,15.07,0.00,0.00,0.00,15.68,0.00,0.00,0.00,17.86,0.00,0.00,0.00,12.58,0.00,0.00,0.00,27.57,0.00 +301557.SZ,0.00,0.00,0.00,90.57,0.00,0.00,0.00,87.68,0.00,92.64,0.00,94.30,0.00,0.00,0.00,85.87,0.00,91.19,0.00,90.64,0.00 +300082.SZ,0.00,0.00,0.00,15.15,0.00,0.00,0.00,24.38,0.00,0.00,0.00,18.42,0.00,0.00,0.00,20.95,0.00,0.00,0.00,22.78,0.00 +600867.SH,0.00,0.00,0.00,10.18,0.00,0.00,0.00,10.14,0.00,0.00,0.00,8.50,0.00,8.94,0.00,10.06,0.00,0.00,0.00,9.30,0.00 +688648.SH,0.00,0.00,0.00,92.56,0.00,0.00,0.00,92.56,0.00,96.45,0.00,95.28,0.00,96.88,0.00,93.86,0.00,0.00,0.00,80.68,0.00 +603538.SH,0.00,0.00,0.00,71.17,0.00,0.00,0.00,54.50,0.00,0.00,0.00,52.77,0.00,0.00,0.00,56.72,0.00,0.00,0.00,61.55,0.00 +688063.SH,0.00,52.87,46.97,41.52,0.00,0.00,0.00,40.33,0.00,0.00,0.00,38.00,0.00,0.00,0.00,26.09,0.00,0.00,0.00,28.51,0.00 +603860.SH,0.00,0.00,0.00,16.05,0.00,41.87,0.00,21.84,0.00,0.00,0.00,21.38,0.00,0.00,0.00,22.43,0.00,0.00,0.00,22.20,0.00 +603861.SH,0.00,0.00,0.00,48.05,0.00,37.70,0.00,40.45,0.00,0.00,0.00,41.70,0.00,0.00,0.00,44.34,0.00,0.00,0.00,55.70,0.00 +688133.SH,0.00,0.00,0.00,10.10,0.00,0.00,0.00,7.29,0.00,0.00,0.00,7.22,0.00,0.00,0.00,5.54,0.00,0.00,0.00,6.42,0.00 +300404.SZ,0.00,0.00,0.00,31.77,0.00,0.00,0.00,24.84,0.00,0.00,0.00,23.66,0.00,0.00,0.00,16.74,0.00,0.00,0.00,22.70,0.00 +301101.SZ,0.00,15.79,0.00,14.57,0.00,13.89,0.00,13.37,0.00,0.00,0.00,13.32,0.00,0.00,0.00,11.60,0.00,0.00,0.00,14.23,0.00 +603991.SH,0.00,0.00,0.00,36.07,0.00,0.00,0.00,55.32,0.00,0.00,0.00,46.02,0.00,0.00,0.00,38.53,0.00,0.00,0.00,37.18,0.00 +300604.SZ,0.00,0.00,0.00,38.04,0.00,0.00,0.00,40.60,0.00,0.00,0.00,54.46,0.00,0.00,0.00,51.34,0.00,0.00,0.00,62.07,0.00 +600992.SH,0.00,0.00,0.00,20.36,0.00,0.00,0.00,23.00,0.00,0.00,0.00,31.70,0.00,0.00,0.00,19.92,0.00,0.00,0.00,24.85,0.00 +002582.SZ,0.00,0.00,0.00,28.35,0.00,12.34,0.00,14.60,0.00,21.27,0.00,16.13,0.00,13.46,0.00,13.29,0.00,15.10,0.00,15.55,0.00 +000655.SZ,0.00,0.00,0.00,50.62,0.00,0.00,0.00,56.88,0.00,0.00,0.00,42.98,0.00,0.00,0.00,44.17,0.00,0.00,0.00,58.77,0.00 +603859.SH,0.00,0.00,0.00,19.12,0.00,0.00,0.00,18.63,0.00,0.00,0.00,15.19,0.00,0.00,0.00,34.02,0.00,0.00,0.00,32.50,0.00 +603016.SH,0.00,0.00,0.00,59.12,0.00,0.00,0.00,54.74,0.00,0.00,0.00,66.45,0.00,0.00,0.00,56.24,0.00,0.00,0.00,59.14,0.00 +603399.SH,0.00,0.00,0.00,29.49,0.00,0.00,0.00,29.01,0.00,0.00,0.00,32.22,0.00,0.00,0.00,29.15,0.00,0.00,0.00,34.27,0.00 +001268.SZ,0.00,0.00,0.00,97.14,0.00,93.70,0.00,94.73,96.15,0.00,0.00,93.68,0.00,0.00,0.00,92.79,0.00,0.00,0.00,90.17,0.00 +600292.SH,0.00,0.00,0.00,21.92,0.00,0.00,0.00,20.11,0.00,0.00,0.00,22.04,0.00,0.00,0.00,32.14,0.00,0.00,0.00,33.55,0.00 +600159.SH,0.00,0.00,0.00,34.23,0.00,0.00,0.00,2.74,0.00,0.00,0.00,63.14,0.00,0.00,0.00,72.54,0.00,0.00,0.00,74.77,0.00 +002296.SZ,0.00,0.00,0.00,28.76,0.00,0.00,0.00,27.30,0.00,0.00,0.00,37.16,0.00,0.00,0.00,50.40,0.00,0.00,0.00,53.66,0.00 +301618.SZ,0.00,0.00,0.00,17.90,0.00,0.00,0.00,18.22,0.00,0.00,15.17,15.56,0.00,0.00,0.00,15.07,0.00,0.00,0.00,21.24,0.00 +688449.SH,0.00,0.00,0.00,86.33,0.00,0.00,0.00,75.91,0.00,80.93,0.00,76.12,0.00,0.00,0.00,73.11,0.00,76.80,0.00,78.53,0.00 +603488.SH,0.00,0.00,0.00,44.60,0.00,0.00,0.00,46.03,0.00,0.00,0.00,50.19,0.00,0.00,0.00,58.59,0.00,0.00,0.00,36.05,0.00 +603628.SH,0.00,0.00,0.00,47.46,0.00,0.00,0.00,10.32,0.00,0.00,0.00,18.24,0.00,0.00,0.00,34.26,0.00,0.00,0.00,24.96,0.00 +300484.SZ,0.00,0.00,0.00,31.26,0.00,0.00,0.00,35.94,0.00,0.00,0.00,39.99,0.00,0.00,0.00,39.60,0.00,0.00,0.00,54.21,0.00 +301381.SZ,0.00,3.60,0.00,74.76,0.00,64.75,0.00,58.07,0.00,56.90,0.00,52.66,0.00,0.00,0.00,96.96,0.00,0.00,0.00,93.36,0.00 +000938.SZ,0.00,0.00,0.00,24.34,0.00,0.00,0.00,20.68,0.00,0.00,0.00,21.42,0.00,0.00,0.00,27.80,0.00,0.00,0.00,30.08,0.00 +688046.SH,0.00,0.00,0.00,18.93,0.00,18.77,0.00,0.00,0.00,0.00,0.00,8.71,0.00,0.00,0.00,7.84,0.00,0.00,0.00,6.87,0.00 +001287.SZ,0.00,0.00,0.00,29.86,0.00,0.00,22.01,20.88,0.00,21.74,0.00,19.80,0.00,0.00,0.00,30.71,0.00,0.00,0.00,29.21,0.00 +000868.SZ,0.00,0.00,0.00,53.61,0.00,0.00,0.00,32.23,0.00,0.00,0.00,29.04,0.00,0.00,0.00,41.11,0.00,0.00,0.00,36.23,0.00 +600578.SH,0.00,0.00,0.00,81.72,0.00,0.00,0.00,82.37,0.00,0.00,0.00,82.82,0.00,0.00,0.00,83.33,0.00,0.00,0.00,83.91,0.00 +002666.SZ,0.00,0.00,0.00,49.13,0.00,0.00,0.00,45.59,0.00,0.00,0.00,42.92,0.00,0.00,0.00,44.33,0.00,0.00,0.00,31.18,0.00 +603155.SH,0.00,0.00,0.00,42.48,0.00,0.00,0.00,45.65,0.00,0.00,0.00,38.30,0.00,0.00,0.00,34.35,0.00,0.00,0.00,32.55,0.00 +688512.SH,0.00,0.00,0.00,79.46,0.00,0.00,0.00,77.16,0.00,72.01,0.00,75.57,0.00,0.00,0.00,90.07,0.00,0.00,0.00,92.85,0.00 +600469.SH,0.00,0.00,0.00,28.58,0.00,0.00,0.00,28.36,0.00,0.00,0.00,21.29,0.00,0.00,0.00,17.77,0.00,0.00,0.00,17.34,0.00 +300771.SZ,0.00,0.00,0.00,83.23,0.00,0.00,0.00,73.60,0.00,0.00,0.00,77.79,0.00,0.00,0.00,59.50,0.00,0.00,0.00,63.01,0.00 +301360.SZ,0.00,0.00,0.00,82.73,0.00,72.29,0.00,59.85,0.00,81.04,0.00,0.00,0.00,0.00,0.00,57.54,0.00,0.00,0.00,64.45,0.00 +838227.BJ,0.00,0.00,0.00,0.61,0.00,0.00,0.00,1.45,2.62,1.15,2.61,0.70,0.00,0.00,0.00,0.56,0.00,0.00,0.00,1.64,0.00 +600798.SH,0.00,0.00,0.00,71.84,0.00,0.00,0.00,63.81,0.00,0.00,0.00,67.18,0.00,0.00,0.00,69.63,0.00,0.00,0.00,68.28,0.00 +603986.SH,0.00,0.00,0.00,25.51,0.00,0.00,0.00,21.94,0.00,0.00,0.00,29.27,0.00,0.00,0.00,30.66,0.00,0.00,0.00,33.23,0.00 +601678.SH,0.00,0.00,0.00,19.75,0.00,0.00,0.00,24.74,0.00,0.00,0.00,20.21,0.00,0.00,0.00,20.06,0.00,0.00,0.00,17.63,0.00 +688710.SH,0.00,0.00,0.00,24.21,0.00,0.00,0.00,22.47,0.00,30.22,0.00,25.17,0.00,0.00,0.00,24.81,0.00,0.00,0.00,24.35,0.00 +300595.SZ,0.00,0.00,0.00,7.03,0.00,0.00,0.00,6.54,0.00,0.00,0.00,5.47,0.00,0.00,0.00,9.06,0.00,0.00,0.00,7.51,0.00 +002145.SZ,0.00,0.00,0.00,30.54,0.00,0.00,0.00,36.82,0.00,0.00,0.00,38.73,0.00,0.00,0.00,30.60,0.00,0.00,0.00,29.87,0.00 +600826.SH,0.00,0.00,0.00,17.42,0.00,0.00,0.00,13.92,0.00,0.00,0.00,31.59,0.00,0.00,0.00,6.79,0.00,0.00,0.00,9.80,0.00 +688523.SH,0.00,0.00,0.00,93.40,0.00,0.00,0.00,91.36,0.00,98.08,0.00,84.40,0.00,0.00,0.00,63.88,0.00,0.00,0.00,80.01,0.00 +600698.SH,0.00,0.00,0.00,67.12,0.00,0.00,0.00,62.55,0.00,0.00,0.00,59.51,0.00,0.00,0.00,69.14,0.00,0.00,0.00,68.86,0.00 +301126.SZ,0.00,14.37,0.00,15.06,0.00,15.47,14.96,14.72,0.00,0.00,0.00,10.36,0.00,0.00,0.00,8.92,0.00,0.00,0.00,7.05,0.00 +002254.SZ,0.00,0.00,0.00,21.26,0.00,0.00,0.00,19.07,0.00,0.00,0.00,17.14,0.00,0.00,0.00,15.75,0.00,0.00,0.00,11.77,0.00 +301289.SZ,0.00,0.00,0.00,14.71,0.00,16.88,0.00,15.98,0.00,0.00,0.00,18.86,0.00,0.00,0.00,18.77,0.00,0.00,0.00,21.69,0.00 +000620.SZ,0.00,0.00,0.00,1.63,0.00,0.00,0.00,0.85,0.00,0.00,0.00,9.55,0.00,0.00,0.00,1.25,0.00,0.00,0.00,6.33,0.00 +301353.SZ,0.00,0.00,0.00,49.66,0.00,61.19,0.00,61.64,0.00,66.95,0.00,63.51,0.00,0.00,0.00,58.24,0.00,0.00,0.00,53.82,0.00 +600117.SH,0.00,0.00,0.00,14.24,0.00,0.00,0.00,20.44,0.00,0.00,0.00,27.92,0.00,0.00,0.00,25.66,0.00,0.00,0.00,18.21,0.00 +600137.SH,0.00,0.00,0.00,56.95,0.00,0.00,0.00,62.32,0.00,0.00,0.00,60.75,0.00,0.00,0.00,61.77,0.00,0.00,0.00,50.92,0.00 +300470.SZ,0.00,0.00,0.00,32.39,0.00,0.00,0.00,32.35,0.00,0.00,0.00,32.14,0.00,0.00,0.00,30.77,0.00,0.00,0.00,31.13,0.00 +300253.SZ,0.00,0.00,0.00,4.61,0.00,0.00,0.00,5.80,0.00,0.00,0.00,5.35,0.00,0.00,0.00,5.29,0.00,0.00,0.00,5.62,0.00 +688352.SH,0.00,0.00,0.00,82.01,0.00,0.00,0.00,64.18,0.00,54.36,0.00,0.00,0.00,50.55,0.00,46.72,0.00,0.00,0.00,50.56,0.00 +300939.SZ,0.00,21.02,22.48,23.47,0.00,0.00,0.00,25.24,0.00,0.00,0.00,28.01,0.00,0.00,0.00,26.69,0.00,0.00,0.00,24.18,0.00 +300479.SZ,0.00,0.00,0.00,17.65,0.00,0.00,0.00,23.74,0.00,0.00,0.00,26.61,0.00,0.00,0.00,51.34,0.00,0.00,0.00,85.75,0.00 +002437.SZ,0.00,0.00,0.00,13.00,0.00,0.00,0.00,14.49,0.00,0.00,0.00,16.32,0.00,0.00,0.00,17.92,0.00,0.00,0.00,22.21,0.00 +000822.SZ,0.00,0.00,0.00,27.03,0.00,0.00,0.00,26.72,0.00,0.00,0.00,23.71,0.00,0.00,0.00,24.74,0.00,0.00,0.00,27.42,0.00 +301329.SZ,0.00,42.89,0.00,50.86,54.75,0.00,0.00,55.28,0.00,51.94,0.00,52.00,57.45,0.00,0.00,56.85,0.00,0.00,0.00,53.75,0.00 +301398.SZ,0.00,72.90,0.00,70.88,0.00,66.25,0.00,60.89,0.00,57.79,0.00,53.36,0.00,0.00,0.00,63.76,0.00,0.00,0.00,64.64,0.00 +688528.SH,0.00,0.00,0.00,14.71,0.00,0.00,0.00,18.22,0.00,0.00,0.00,50.54,0.00,0.00,0.00,50.82,0.00,0.00,0.00,38.02,0.00 +000593.SZ,0.00,0.00,0.00,30.26,0.00,0.00,0.00,27.16,0.00,0.00,0.00,25.02,0.00,0.00,0.00,21.48,0.00,0.00,0.00,22.08,0.00 +002584.SZ,0.00,0.00,0.00,20.95,0.00,0.00,0.00,23.01,0.00,0.00,0.00,17.77,0.00,0.00,0.00,27.00,0.00,0.00,0.00,33.28,0.00 +300168.SZ,0.00,0.00,0.00,14.27,0.00,0.00,0.00,10.70,0.00,0.00,0.00,15.82,0.00,0.00,0.00,18.49,0.00,0.00,0.00,18.05,0.00 +603933.SH,0.00,0.00,0.00,18.67,0.00,0.00,0.00,17.29,0.00,0.00,0.00,17.09,0.00,0.00,0.00,22.30,0.00,0.00,0.00,18.83,0.00 +603617.SH,0.00,0.00,0.00,42.64,0.00,0.00,0.00,38.50,0.00,0.00,0.00,37.54,0.00,0.00,0.00,37.76,0.00,0.00,0.00,34.33,0.00 +002995.SZ,27.46,0.00,0.00,17.88,0.00,0.00,0.00,15.45,0.00,0.00,0.00,15.02,0.00,0.00,0.00,16.13,0.00,0.00,0.00,24.80,0.00 +688351.SH,0.00,0.00,0.00,82.40,0.00,0.00,0.00,70.85,0.00,0.00,0.00,62.61,0.00,0.00,0.00,47.80,0.00,0.00,0.00,37.00,0.00 +002942.SZ,0.00,0.00,0.00,44.40,0.00,0.00,0.00,34.83,0.00,0.00,0.00,23.26,0.00,0.00,0.00,23.20,0.00,0.00,0.00,22.68,0.00 +920099.BJ,0.00,0.00,0.00,89.45,0.00,0.00,0.00,90.52,0.00,0.00,89.81,89.02,0.00,99.54,0.00,99.17,0.00,0.00,0.00,70.55,0.00 +000058.SZ,0.00,0.00,0.00,25.06,0.00,0.00,0.00,8.72,0.00,0.00,0.00,9.12,0.00,0.00,0.00,14.83,0.00,0.00,0.00,11.98,0.00 +300275.SZ,0.00,0.00,0.00,20.72,0.00,0.00,0.00,26.07,0.00,0.00,0.00,30.88,0.00,0.00,0.00,17.52,0.00,0.00,0.00,15.35,0.00 +002037.SZ,0.00,0.00,0.00,34.21,0.00,0.00,0.00,19.72,0.00,0.00,0.00,21.49,0.00,0.00,0.00,29.32,0.00,0.00,0.00,36.92,0.00 +002799.SZ,0.00,0.00,0.00,39.66,0.00,0.00,0.00,53.45,0.00,0.00,0.00,44.86,0.00,0.00,0.00,45.69,0.00,0.00,0.00,41.49,0.00 +300532.SZ,0.00,0.00,0.00,62.95,0.00,0.00,0.00,77.21,0.00,0.00,0.00,80.53,0.00,0.00,0.00,80.32,0.00,0.00,0.00,57.90,0.00 +300374.SZ,0.00,0.00,0.00,52.34,0.00,0.00,0.00,57.61,0.00,0.00,0.00,75.13,0.00,0.00,0.00,85.77,0.00,0.00,0.00,72.40,0.00 +002414.SZ,0.00,0.00,0.00,44.59,0.00,0.00,0.00,52.54,0.00,0.00,0.00,35.54,0.00,0.00,0.00,42.25,0.00,0.00,0.00,51.94,0.00 +603396.SH,0.00,0.00,0.00,52.05,0.00,0.00,0.00,37.44,0.00,0.00,0.00,39.44,0.00,0.00,0.00,45.93,0.00,0.00,0.00,43.54,0.00 +002161.SZ,0.00,0.00,0.00,11.66,0.00,0.00,0.00,15.27,0.00,0.00,0.00,9.90,0.00,0.00,0.00,7.15,0.00,0.00,0.00,10.56,0.00 +002590.SZ,0.00,0.00,0.00,66.79,0.00,0.00,0.00,59.96,0.00,0.00,0.00,41.27,0.00,0.00,0.00,42.32,0.00,0.00,0.00,41.11,0.00 +300599.SZ,0.00,0.00,0.00,8.17,0.00,0.00,0.00,8.99,0.00,0.00,0.00,7.96,0.00,0.00,0.00,10.44,0.00,0.00,0.00,10.66,0.00 +300970.SZ,0.00,24.21,0.00,23.44,0.00,0.00,0.00,23.93,0.00,0.00,0.00,21.75,0.00,0.00,0.00,15.39,0.00,0.00,0.00,16.57,0.00 +833429.BJ,0.00,0.00,0.00,31.39,0.00,0.00,0.00,21.51,0.00,38.51,0.00,32.74,0.00,0.00,0.00,47.13,0.00,0.00,0.00,46.17,0.00 +002999.SZ,0.00,0.00,0.00,5.41,0.00,0.00,0.00,4.17,0.00,0.00,0.00,5.75,0.00,0.00,0.00,4.17,0.00,0.00,0.00,3.19,0.00 +600789.SH,0.00,0.00,0.00,10.89,0.00,0.00,0.00,19.08,0.00,0.00,0.00,22.76,0.00,0.00,0.00,25.40,0.00,0.00,0.00,20.61,0.00 +688689.SH,0.00,32.66,0.00,31.09,0.00,0.00,0.00,34.36,0.00,0.00,0.00,29.38,0.00,0.00,0.00,28.54,0.00,0.00,0.00,24.68,0.00 +688329.SH,0.00,31.41,0.00,27.40,0.00,0.00,0.00,27.54,0.00,0.00,0.00,31.03,0.00,0.00,0.00,25.21,0.00,0.00,0.00,19.00,0.00 +002315.SZ,0.00,0.00,0.00,13.79,0.00,0.00,0.00,9.94,0.00,0.00,0.00,8.80,0.00,0.00,0.00,9.53,0.00,0.00,0.00,4.85,0.00 +002326.SZ,0.00,0.00,0.00,17.82,0.00,0.00,0.00,23.19,0.00,0.00,0.00,17.78,0.00,0.00,0.00,23.16,0.00,0.00,0.00,21.24,0.00 +000761.SZ,0.00,0.00,0.00,19.44,0.00,0.00,0.00,21.93,0.00,0.00,0.00,19.23,0.00,0.00,0.00,17.29,0.00,0.00,0.00,19.23,0.00 +300787.SZ,0.00,0.00,0.00,40.34,0.00,0.00,0.00,44.98,0.00,0.00,0.00,45.61,0.00,0.00,0.00,53.23,0.00,0.00,0.00,47.43,0.00 +002465.SZ,0.00,0.00,0.00,54.63,0.00,0.00,0.00,35.90,0.00,0.00,0.00,49.23,0.00,0.00,0.00,47.46,0.00,0.00,0.00,46.08,0.00 +300447.SZ,0.00,0.00,0.00,33.76,0.00,0.00,0.00,35.68,0.00,0.00,0.00,42.84,0.00,0.00,0.00,42.50,0.00,0.00,0.00,41.18,0.00 +600482.SH,0.00,0.00,0.00,13.70,0.00,0.00,0.00,33.85,0.00,0.00,0.00,39.29,0.00,0.00,0.00,50.17,0.00,0.00,0.00,43.35,0.00 +603052.SH,0.00,0.00,0.00,64.46,0.00,67.30,0.00,64.56,0.00,0.00,0.00,63.82,0.00,0.00,0.00,64.01,0.00,0.00,0.00,64.58,0.00 +300675.SZ,0.00,0.00,0.00,22.74,0.00,0.00,0.00,20.98,0.00,0.00,0.00,21.10,0.00,0.00,0.00,21.45,0.00,0.00,0.00,22.81,0.00 +301006.SZ,0.00,27.20,0.00,23.50,0.00,0.00,0.00,21.66,0.00,0.00,0.00,18.65,0.00,0.00,0.00,14.95,0.00,0.00,0.00,21.08,0.00 +002373.SZ,0.00,0.00,0.00,22.03,0.00,0.00,0.00,16.27,0.00,0.00,0.00,21.01,0.00,0.00,0.00,16.39,0.00,0.00,0.00,15.33,0.00 +688377.SH,0.00,0.00,0.00,79.73,0.00,0.00,0.00,65.83,0.00,0.00,0.00,68.07,0.00,0.00,0.00,70.01,0.00,0.00,0.00,71.89,0.00 +600362.SH,0.00,0.00,0.00,13.03,0.00,0.00,0.00,11.15,0.00,0.00,0.00,12.60,0.00,0.00,0.00,7.98,0.00,0.00,0.00,19.11,0.00 +603221.SH,0.00,0.00,0.00,95.73,0.00,0.00,0.00,85.37,0.00,0.00,0.00,82.52,0.00,0.00,0.00,94.06,0.00,0.00,0.00,97.87,0.00 +603466.SH,0.00,0.00,0.00,20.45,0.00,0.00,0.00,16.29,0.00,0.00,0.00,24.64,0.00,0.00,0.00,32.89,0.00,0.00,0.00,24.19,0.00 +002632.SZ,0.00,0.00,0.00,22.60,0.00,0.00,0.00,13.80,0.00,0.00,0.00,12.01,0.00,0.00,0.00,12.91,0.00,0.00,0.00,10.09,0.00 +002377.SZ,0.00,0.00,0.00,8.79,0.00,0.00,0.00,12.48,0.00,0.00,0.00,40.53,0.00,0.00,0.00,43.15,0.00,0.00,0.00,52.54,0.00 +301061.SZ,0.00,64.82,0.00,67.59,0.00,65.47,0.00,64.23,0.00,0.00,0.00,54.94,0.00,0.00,0.00,54.78,0.00,0.00,0.00,45.51,0.00 +920016.BJ,0.00,50.20,0.00,40.69,0.00,43.51,0.00,36.54,0.00,27.10,24.62,22.45,28.70,22.22,21.72,24.45,30.28,0.00,0.00,29.13,0.00 +603908.SH,0.00,0.00,0.00,59.06,0.00,0.00,0.00,34.30,0.00,0.00,0.00,44.52,0.00,0.00,0.00,34.37,0.00,0.00,0.00,52.04,0.00 +300481.SZ,0.00,0.00,0.00,15.16,0.00,0.00,0.00,20.27,0.00,0.00,0.00,19.86,0.00,0.00,0.00,13.82,0.00,0.00,0.00,13.12,0.00 +002998.SZ,0.00,0.00,0.00,17.35,0.00,0.00,0.00,24.06,0.00,0.00,0.00,30.73,0.00,0.00,0.00,21.94,0.00,0.00,0.00,24.40,0.00 +000563.SZ,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +301008.SZ,0.00,76.56,0.00,75.18,75.89,0.00,0.00,73.80,0.00,0.00,0.00,76.48,0.00,0.00,0.00,72.92,0.00,0.00,0.00,68.27,0.00 +603158.SH,0.00,0.00,0.00,31.60,0.00,0.00,0.00,29.39,0.00,0.00,0.00,31.65,0.00,0.00,0.00,35.62,0.00,0.00,0.00,44.47,0.00 +300676.SZ,0.00,0.00,0.00,37.84,0.00,0.00,0.00,32.16,0.00,0.00,0.00,35.74,0.00,0.00,0.00,12.29,0.00,0.00,0.00,14.36,0.00 +603029.SH,0.00,0.00,0.00,18.44,0.00,0.00,0.00,26.92,0.00,0.00,0.00,51.31,0.00,0.00,0.00,40.20,0.00,0.00,0.00,63.62,0.00 +600530.SH,0.00,0.00,0.00,31.50,0.00,0.00,0.00,27.24,0.00,0.00,0.00,25.14,0.00,0.00,0.00,14.83,0.00,0.00,0.00,14.24,0.00 +600697.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,12.95,0.00,0.00,0.00,0.00,0.00 +603001.SH,0.00,0.00,0.00,5.63,0.00,0.00,0.00,7.24,0.00,0.00,0.00,12.63,0.00,0.00,0.00,12.66,0.00,0.00,0.00,10.26,0.00 +600718.SH,0.00,0.00,0.00,23.46,0.00,0.00,0.00,25.80,0.00,0.00,0.00,26.36,0.00,0.00,0.00,25.74,0.00,0.00,0.00,26.86,0.00 +688356.SH,0.00,0.00,0.00,62.40,0.00,0.00,0.00,63.66,0.00,0.00,0.00,64.94,0.00,0.00,0.00,72.51,0.00,0.00,0.00,51.37,0.00 +301589.SZ,0.00,0.00,0.00,34.45,0.00,38.17,0.00,40.54,0.00,35.97,0.00,35.18,0.00,35.40,0.00,35.69,0.00,0.00,0.00,27.21,0.00 +603757.SH,0.00,0.00,0.00,13.70,0.00,0.00,0.00,13.04,0.00,0.00,0.00,14.22,0.00,0.00,0.00,12.93,0.00,0.00,0.00,11.64,0.00 +301631.SZ,0.00,0.00,0.00,68.63,0.00,0.00,0.00,68.15,0.00,81.44,0.00,65.96,0.00,0.00,0.00,63.38,0.00,60.30,0.00,85.81,0.00 +002439.SZ,0.00,0.00,0.00,16.41,0.00,0.00,0.00,18.31,0.00,0.00,0.00,28.69,0.00,0.00,0.00,44.04,0.00,0.00,0.00,52.87,0.00 +600796.SH,0.00,0.00,0.00,19.79,0.00,0.00,0.00,25.11,0.00,0.00,0.00,26.31,0.00,0.00,0.00,33.00,0.00,0.00,0.00,35.13,0.00 +603638.SH,0.00,0.00,0.00,47.24,0.00,0.00,0.00,60.47,0.00,0.00,0.00,53.84,0.00,0.00,0.00,50.90,0.00,0.00,0.00,47.99,0.00 +300006.SZ,0.00,0.00,0.00,13.51,0.00,0.00,0.00,14.18,0.00,0.00,0.00,13.86,0.00,0.00,0.00,15.74,0.00,0.00,0.00,14.13,0.00 +000723.SZ,0.00,0.00,0.00,62.17,0.00,0.00,0.00,52.35,0.00,0.00,0.00,39.50,0.00,0.00,0.00,31.21,0.00,0.00,0.00,27.07,0.00 +600567.SH,0.00,0.00,0.00,7.94,0.00,0.00,0.00,9.13,0.00,0.00,0.00,7.68,0.00,0.00,0.00,7.52,0.00,0.00,0.00,7.74,0.00 +002947.SZ,0.00,0.00,0.00,58.71,0.00,0.00,0.00,65.88,0.00,0.00,0.00,76.02,0.00,0.00,0.00,79.23,0.00,0.00,0.00,71.82,0.00 +600516.SH,0.00,0.00,0.00,18.95,0.00,0.00,0.00,14.61,0.00,0.00,0.00,10.10,0.00,0.00,0.00,13.72,0.00,0.00,0.00,22.32,0.00 +600477.SH,0.00,0.00,0.00,13.99,0.00,0.00,0.00,15.65,0.00,0.00,0.00,15.28,0.00,0.00,0.00,20.05,0.00,0.00,0.00,11.96,0.00 +000980.SZ,0.00,0.00,0.00,27.40,0.00,0.00,0.00,27.97,0.00,0.00,0.00,26.47,0.00,0.00,0.00,33.99,0.00,0.00,0.00,37.65,0.00 +300736.SZ,0.00,0.00,0.00,41.75,0.00,0.00,0.00,27.73,0.00,0.00,0.00,20.28,0.00,0.00,0.00,46.15,0.00,0.00,0.00,24.59,0.00 +600825.SH,0.00,0.00,0.00,4.38,0.00,0.00,0.00,4.82,0.00,0.00,0.00,2.78,0.00,0.00,0.00,2.77,0.00,0.00,0.00,4.54,0.00 +688286.SH,55.97,0.00,0.00,45.67,0.00,0.00,0.00,41.08,0.00,0.00,0.00,45.61,0.00,0.00,0.00,41.22,0.00,0.00,0.00,45.42,0.00 +601311.SH,0.00,0.00,0.00,11.57,0.00,0.00,0.00,10.09,0.00,0.00,0.00,9.44,0.00,0.00,0.00,10.69,0.00,0.00,0.00,15.00,0.00 +605168.SH,0.00,0.00,0.00,73.81,0.00,0.00,0.00,69.58,0.00,0.00,0.00,63.28,0.00,0.00,0.00,44.00,0.00,0.00,0.00,40.80,0.00 +600787.SH,0.00,0.00,0.00,11.78,0.00,0.00,0.00,12.67,0.00,0.00,0.00,19.65,0.00,0.00,0.00,15.52,0.00,0.00,0.00,11.08,0.00 +688570.SH,0.00,0.00,0.00,60.78,0.00,0.00,0.00,53.67,0.00,55.73,0.00,56.70,0.00,0.00,0.00,60.12,0.00,0.00,0.00,48.95,0.00 +301591.SZ,0.00,0.00,0.00,42.83,0.00,0.00,0.00,40.25,0.00,43.61,0.00,41.61,0.00,35.77,35.21,33.25,0.00,0.00,0.00,30.37,0.00 +002181.SZ,0.00,0.00,0.00,11.79,0.00,0.00,0.00,12.83,0.00,0.00,0.00,9.56,0.00,0.00,0.00,10.40,0.00,0.00,0.00,10.70,0.00 +605577.SH,0.00,33.52,0.00,34.19,0.00,0.00,0.00,31.89,0.00,0.00,0.00,31.44,0.00,0.00,0.00,29.16,0.00,0.00,0.00,27.21,0.00 +002247.SZ,0.00,0.00,0.00,15.31,0.00,0.00,0.00,15.16,0.00,0.00,0.00,14.09,0.00,0.00,0.00,14.13,0.00,0.00,0.00,11.25,0.00 +300860.SZ,0.00,0.00,0.00,60.24,0.00,0.00,0.00,58.52,0.00,0.00,0.00,80.08,0.00,0.00,0.00,89.31,0.00,0.00,0.00,78.16,0.00 +601375.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +300210.SZ,0.00,0.00,0.00,42.50,0.00,0.00,0.00,34.79,0.00,0.00,0.00,40.58,0.00,0.00,0.00,38.53,0.00,0.00,0.00,35.05,0.00 +600982.SH,0.00,0.00,0.00,44.65,0.00,0.00,0.00,24.45,0.00,0.00,0.00,29.23,0.00,0.00,0.00,30.85,0.00,0.00,0.00,32.80,0.00 +600927.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +600579.SH,0.00,0.00,0.00,9.54,0.00,0.00,0.00,8.01,0.00,0.00,0.00,11.04,0.00,0.00,0.00,8.30,0.00,0.00,0.00,10.32,0.00 +002820.SZ,0.00,0.00,0.00,6.52,0.00,7.23,0.00,7.07,0.00,6.37,0.00,7.82,0.00,0.00,0.00,8.47,0.00,8.74,0.00,9.26,0.00 +605060.SH,0.00,76.57,0.00,72.53,0.00,0.00,0.00,73.60,0.00,0.00,0.00,66.83,0.00,0.00,0.00,68.00,0.00,0.00,0.00,67.88,0.00 +002154.SZ,0.00,0.00,0.00,3.54,0.00,0.00,0.00,5.32,0.00,0.00,0.00,9.98,0.00,0.00,0.00,11.26,0.00,0.00,0.00,11.78,0.00 +600771.SH,0.00,0.00,0.00,28.33,0.00,0.00,0.00,29.52,0.00,0.00,0.00,19.08,0.00,0.00,0.00,17.27,0.00,0.00,0.00,18.94,0.00 +688181.SH,0.00,0.00,0.00,88.52,0.00,0.00,0.00,90.84,0.00,0.00,0.00,91.01,0.00,0.00,0.00,87.49,0.00,0.00,0.00,82.90,0.00 +002236.SZ,0.00,0.00,0.00,6.51,0.00,0.00,0.00,8.41,0.00,0.00,0.00,11.09,0.00,0.00,0.00,10.94,0.00,0.00,0.00,11.66,0.00 +688484.SH,0.00,0.00,0.00,63.00,0.00,0.00,0.00,61.37,0.00,77.52,0.00,77.23,0.00,0.00,0.00,74.35,0.00,0.00,0.00,72.44,0.00 +300239.SZ,0.00,0.00,0.00,35.91,0.00,0.00,0.00,36.63,0.00,0.00,0.00,20.36,0.00,0.00,0.00,19.60,0.00,0.00,0.00,15.78,0.00 +301611.SZ,0.00,0.00,0.00,69.80,0.00,0.00,0.00,63.74,0.00,59.42,0.00,54.01,0.00,0.00,0.00,48.08,0.00,0.00,0.00,69.65,0.00 +300375.SZ,0.00,0.00,0.00,59.61,0.00,0.00,0.00,56.74,0.00,0.00,0.00,55.20,0.00,0.00,0.00,68.70,0.00,0.00,0.00,66.51,0.00 +300766.SZ,0.00,0.00,0.00,44.69,0.00,0.00,0.00,44.40,0.00,0.00,0.00,32.22,0.00,0.00,0.00,15.50,0.00,0.00,0.00,16.37,0.00 +002825.SZ,0.00,0.00,0.00,9.69,0.00,0.00,0.00,7.61,0.00,0.00,0.00,9.41,0.00,0.00,0.00,10.03,0.00,0.00,0.00,11.08,0.00 +600103.SH,0.00,0.00,0.00,20.68,0.00,0.00,0.00,19.38,0.00,0.00,0.00,21.06,0.00,0.00,0.00,14.42,0.00,0.00,0.00,17.42,0.00 +300707.SZ,0.00,0.00,0.00,64.99,0.00,0.00,0.00,68.58,0.00,0.00,0.00,79.82,0.00,0.00,0.00,74.35,0.00,0.00,0.00,69.08,0.00 +603218.SH,0.00,0.00,0.00,48.59,0.00,50.27,0.00,46.55,0.00,0.00,0.00,53.25,0.00,0.00,0.00,48.67,0.00,0.00,0.00,53.16,0.00 +300869.SZ,0.00,0.00,0.00,21.53,0.00,0.00,0.00,20.51,0.00,0.00,0.00,14.15,0.00,0.00,0.00,10.96,0.00,0.00,0.00,17.24,0.00 +600704.SH,0.00,0.00,0.00,2.83,0.00,0.00,0.00,3.26,0.00,0.00,0.00,2.97,0.00,0.00,0.00,4.81,0.00,0.00,0.00,4.10,0.00 +603205.SH,0.00,0.00,0.00,45.54,0.00,0.00,0.00,63.39,0.00,66.05,0.00,58.72,0.00,66.63,0.00,68.56,0.00,72.21,0.00,72.21,0.00 +688628.SH,0.00,19.73,0.00,22.41,0.00,0.00,0.00,29.47,0.00,0.00,0.00,30.32,0.00,0.00,0.00,30.98,0.00,0.00,0.00,26.18,0.00 +000926.SZ,0.00,0.00,0.00,5.67,0.00,0.00,0.00,4.38,0.00,0.00,0.00,2.08,0.00,0.00,0.00,6.74,0.00,0.00,0.00,2.96,0.00 +301023.SZ,0.00,57.82,0.00,61.89,63.79,0.00,0.00,63.62,0.00,0.00,0.00,57.39,0.00,0.00,0.00,48.36,0.00,0.00,0.00,59.73,0.00 +002125.SZ,0.00,0.00,0.00,44.12,0.00,0.00,0.00,43.32,0.00,0.00,0.00,41.37,0.00,0.00,0.00,40.83,0.00,0.00,0.00,44.53,0.00 +000737.SZ,0.00,0.00,0.00,21.41,0.00,0.00,0.00,30.01,0.00,0.00,0.00,35.19,0.00,0.00,0.00,52.56,0.00,0.00,0.00,36.94,0.00 +603050.SH,0.00,0.00,0.00,19.70,0.00,0.00,0.00,11.00,0.00,0.00,0.00,14.15,0.00,0.00,0.00,9.66,0.00,0.00,0.00,10.65,0.00 +000789.SZ,0.00,0.00,0.00,5.39,0.00,0.00,0.00,5.42,0.00,0.00,0.00,15.75,0.00,0.00,0.00,10.11,0.00,0.00,0.00,4.37,0.00 +002836.SZ,0.00,0.00,0.00,82.67,0.00,0.00,0.00,94.78,0.00,0.00,0.00,97.60,0.00,0.00,0.00,97.01,0.00,0.00,0.00,95.54,0.00 +002005.SZ,0.00,0.00,0.00,38.27,0.00,0.00,0.00,35.87,0.00,0.00,0.00,38.21,0.00,0.00,0.00,43.50,0.00,0.00,0.00,65.87,0.00 +300673.SZ,0.00,0.00,0.00,78.65,0.00,0.00,0.00,79.63,0.00,0.00,0.00,79.59,0.00,0.00,0.00,72.59,0.00,0.00,0.00,77.66,0.00 +600487.SH,0.00,0.00,0.00,20.24,0.00,0.00,0.00,20.34,0.00,0.00,0.00,22.05,0.00,0.00,0.00,19.13,0.00,0.00,0.00,16.92,0.00 +603558.SH,0.00,0.00,0.00,59.36,0.00,0.00,0.00,55.93,0.00,0.00,0.00,52.72,0.00,0.00,0.00,56.06,0.00,0.00,0.00,59.47,0.00 +000600.SZ,0.00,0.00,0.00,86.75,0.00,53.99,0.00,82.62,0.00,85.42,0.00,86.73,0.00,86.21,0.00,86.78,0.00,73.38,0.00,86.67,0.00 +002111.SZ,0.00,0.00,0.00,33.89,0.00,0.00,0.00,45.44,0.00,0.00,0.00,24.25,0.00,0.00,0.00,17.06,0.00,0.00,0.00,17.62,0.00 +002413.SZ,0.00,0.00,0.00,23.17,0.00,0.00,0.00,20.87,0.00,0.00,0.00,30.84,0.00,0.00,0.00,34.43,0.00,0.00,0.00,29.92,0.00 +600963.SH,0.00,0.00,0.00,16.73,0.00,0.00,0.00,2.18,0.00,0.00,0.00,2.60,0.00,0.00,0.00,18.86,0.00,0.00,0.00,20.68,0.00 +002678.SZ,0.00,0.00,0.00,11.48,0.00,0.00,0.00,11.64,0.00,0.00,0.00,11.22,0.00,0.00,0.00,11.19,0.00,0.00,0.00,0.00,0.00 +301211.SZ,0.00,42.67,0.00,35.55,0.00,38.99,0.00,30.63,0.00,0.00,0.00,20.19,0.00,0.00,0.00,23.63,0.00,0.00,0.00,22.79,0.00 +605111.SH,0.00,0.00,0.00,15.98,0.00,0.00,0.00,17.10,0.00,0.00,0.00,30.27,0.00,0.00,0.00,19.89,0.00,0.00,0.00,27.54,0.00 +600815.SH,0.00,0.00,0.00,34.08,0.00,0.00,0.00,27.74,0.00,0.00,0.00,22.46,0.00,0.00,0.00,34.06,0.00,0.00,0.00,39.65,0.00 +002734.SZ,0.00,0.00,0.00,11.34,0.00,0.00,0.00,9.61,0.00,0.00,0.00,9.09,0.00,0.00,0.00,9.42,0.00,0.00,0.00,8.93,0.00 +002835.SZ,0.00,0.00,0.00,32.39,0.00,0.00,0.00,37.12,0.00,0.00,0.00,37.27,0.00,0.00,0.00,32.77,0.00,0.00,0.00,36.14,0.00 +002939.SZ,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +002402.SZ,0.00,0.00,0.00,58.30,0.00,0.00,0.00,54.21,0.00,0.00,0.00,49.96,0.00,0.00,0.00,49.23,0.00,0.00,0.00,50.37,0.00 +002659.SZ,0.00,0.00,0.00,0.37,0.00,0.00,0.00,0.39,0.00,0.00,0.00,73.97,0.00,0.00,0.00,66.55,0.00,0.00,0.00,73.39,0.00 +002240.SZ,0.00,0.00,0.00,25.75,0.00,0.00,0.00,41.07,0.00,0.00,0.00,73.27,0.00,0.00,0.00,74.59,0.00,0.00,0.00,45.87,0.00 +000543.SZ,0.00,0.00,0.00,77.84,0.00,0.00,0.00,71.48,0.00,0.00,0.00,76.67,0.00,0.00,0.00,77.38,0.00,0.00,0.00,80.20,0.00 +300801.SZ,0.00,0.00,0.00,12.21,0.00,0.00,0.00,12.80,0.00,0.00,0.00,17.80,0.00,0.00,0.00,18.54,0.00,0.00,0.00,17.06,0.00 +603203.SH,0.00,0.00,0.00,25.83,0.00,0.00,0.00,27.43,0.00,0.00,0.00,34.31,0.00,0.00,0.00,24.34,0.00,0.00,0.00,24.54,0.00 +300717.SZ,0.00,0.00,0.00,27.56,0.00,0.00,0.00,23.91,0.00,0.00,0.00,24.83,0.00,0.00,0.00,27.98,0.00,0.00,0.00,32.63,0.00 +603196.SH,0.00,0.00,0.00,12.36,0.00,0.00,0.00,12.17,0.00,0.00,0.00,12.44,0.00,0.00,0.00,11.85,0.00,0.00,0.00,12.05,0.00 +000960.SZ,0.00,0.00,0.00,25.96,0.00,0.00,0.00,24.68,0.00,0.00,0.00,24.08,0.00,0.00,0.00,29.07,0.00,0.00,0.00,31.34,0.00 +301066.SZ,0.00,23.69,0.00,15.75,0.00,0.00,0.00,16.83,0.00,0.00,0.00,13.84,0.00,0.00,0.00,9.71,0.00,0.00,0.00,11.91,0.00 +600613.SH,0.00,0.00,0.00,26.09,0.00,0.00,0.00,27.05,0.00,0.00,0.00,28.08,0.00,0.00,0.00,30.54,0.00,0.00,0.00,29.93,0.00 +600568.SH,0.00,0.00,0.00,37.37,0.00,0.00,0.00,29.90,0.00,0.00,0.00,34.58,0.00,0.00,0.00,36.63,0.00,0.00,0.00,32.24,0.00 +603139.SH,0.00,0.00,0.00,13.84,0.00,0.00,0.00,9.29,0.00,0.00,0.00,12.42,0.00,0.00,0.00,24.16,0.00,0.00,0.00,17.77,0.00 +605117.SH,0.00,83.17,0.00,0.00,0.00,0.00,0.00,69.93,0.00,0.00,0.00,49.21,0.00,0.00,0.00,48.27,0.00,0.00,0.00,41.84,0.00 +688281.SH,0.00,0.00,0.00,95.99,0.00,95.49,0.00,0.00,0.00,0.00,0.00,89.30,0.00,0.00,0.00,95.11,0.00,0.00,0.00,91.63,0.00 +301598.SZ,0.00,0.00,0.00,54.47,0.00,0.00,0.00,45.83,0.00,69.16,0.00,51.84,0.00,0.00,0.00,68.39,0.00,54.58,0.00,48.08,0.00 +000603.SZ,0.00,0.00,0.00,51.66,0.00,0.00,0.00,46.30,0.00,0.00,0.00,43.25,0.00,0.00,0.00,44.39,0.00,0.00,0.00,49.81,0.00 +002982.SZ,0.00,0.00,0.00,32.80,0.00,0.00,0.00,14.90,0.00,0.00,0.00,20.80,0.00,0.00,0.00,19.32,0.00,0.00,0.00,16.10,0.00 +836208.BJ,0.00,0.00,0.00,22.50,0.00,0.00,0.00,26.04,0.00,26.88,0.00,25.93,0.00,23.27,0.00,23.79,0.00,26.97,0.00,24.79,0.00 +605567.SH,0.00,37.16,0.00,36.67,0.00,0.00,0.00,32.61,0.00,0.00,0.00,9.54,0.00,0.00,0.00,25.89,0.00,0.00,0.00,26.20,0.00 +603685.SH,0.00,0.00,0.00,26.19,0.00,0.00,0.00,24.31,0.00,0.00,0.00,20.17,0.00,0.00,0.00,14.81,0.00,0.00,0.00,19.52,0.00 +002631.SZ,0.00,0.00,0.00,6.39,0.00,0.00,0.00,6.34,0.00,0.00,0.00,5.43,0.00,0.00,0.00,5.93,0.00,0.00,0.00,5.96,0.00 +000812.SZ,0.00,0.00,0.00,61.60,0.00,0.00,0.00,52.63,0.00,0.00,0.00,47.95,0.00,0.00,0.00,37.97,0.00,0.00,0.00,40.28,0.00 +688558.SH,0.00,0.00,0.00,39.93,0.00,0.00,0.00,35.03,0.00,0.00,0.00,37.95,0.00,0.00,0.00,30.09,0.00,0.00,0.00,28.47,0.00 +002339.SZ,0.00,0.00,0.00,14.81,0.00,0.00,0.00,17.27,0.00,0.00,0.00,18.90,0.00,0.00,0.00,11.33,0.00,0.00,0.00,12.67,0.00 +002205.SZ,0.00,0.00,0.00,61.07,0.00,0.00,0.00,56.53,0.00,0.00,0.00,43.45,0.00,0.00,0.00,71.19,0.00,0.00,0.00,67.33,0.00 +301588.SZ,0.00,0.00,0.00,50.69,0.00,0.00,44.90,44.22,44.61,0.00,0.00,44.43,0.00,48.15,0.00,49.34,0.00,0.00,0.00,47.66,0.00 +688579.SH,0.00,0.00,0.00,22.71,0.00,0.00,0.00,14.91,0.00,0.00,0.00,14.64,0.00,0.00,0.00,25.94,0.00,0.00,0.00,17.01,0.00 +600429.SH,0.00,0.00,0.00,24.31,0.00,0.00,0.00,25.24,0.00,0.00,0.00,22.56,0.00,0.00,0.00,24.88,0.00,0.00,0.00,25.08,0.00 +300800.SZ,0.00,0.00,0.00,27.05,0.00,0.00,0.00,21.76,0.00,0.00,0.00,17.62,0.00,0.00,0.00,20.12,0.00,0.00,0.00,17.94,0.00 +688168.SH,0.00,0.00,0.00,47.55,0.00,0.00,0.00,39.78,0.00,0.00,0.00,38.06,0.00,0.00,0.00,28.25,0.00,0.00,0.00,53.78,0.00 +600166.SH,0.00,0.00,0.00,23.19,0.00,0.00,0.00,21.48,0.00,0.00,0.00,22.46,0.00,0.00,0.00,24.42,0.00,0.00,0.00,21.69,0.00 +002176.SZ,0.00,0.00,0.00,15.81,0.00,0.00,0.00,20.31,0.00,0.00,0.00,43.21,0.00,0.00,0.00,31.31,0.00,0.00,0.00,24.44,0.00 +603777.SH,0.00,0.00,0.00,4.08,0.00,0.00,0.00,4.73,0.00,0.00,0.00,4.23,0.00,0.00,0.00,5.42,0.00,0.00,0.00,6.47,0.00 +301201.SZ,0.00,47.52,0.00,42.94,0.00,39.71,36.23,37.11,0.00,0.00,0.00,42.26,0.00,0.00,0.00,40.81,0.00,0.00,0.00,37.40,0.00 +837242.BJ,0.00,0.00,0.00,60.82,0.00,0.00,0.00,62.33,0.00,0.00,0.00,57.57,0.00,0.00,0.00,51.23,0.00,0.00,0.00,55.50,0.00 +301349.SZ,0.00,85.28,0.00,83.88,0.00,74.44,0.00,60.71,0.00,0.00,0.00,49.12,0.00,0.00,0.00,39.18,0.00,0.00,0.00,45.41,0.00 +605169.SH,0.00,39.78,0.00,37.54,0.00,0.00,0.00,42.55,0.00,0.00,0.00,51.11,0.00,0.00,0.00,21.26,0.00,0.00,0.00,30.51,0.00 +001322.SZ,0.00,0.00,0.00,19.59,0.00,18.68,0.00,18.02,0.00,0.00,0.00,17.24,0.00,0.00,0.00,17.69,0.00,0.00,0.00,20.08,0.00 +300845.SZ,0.00,0.00,0.00,24.46,0.00,0.00,0.00,31.71,0.00,0.00,0.00,36.21,0.00,0.00,0.00,12.71,0.00,0.00,0.00,19.23,0.00 +603325.SH,0.00,0.00,0.00,91.35,0.00,83.87,0.00,66.97,97.76,0.00,86.40,62.21,0.00,92.39,0.00,69.55,0.00,0.00,0.00,74.84,0.00 +301239.SZ,0.00,0.00,10.00,11.43,6.89,8.09,0.00,8.63,5.28,0.00,0.00,6.86,0.00,0.00,0.00,10.09,0.00,0.00,0.00,11.29,0.00 +688357.SH,0.00,0.00,0.00,21.40,0.00,0.00,0.00,19.43,0.00,0.00,0.00,26.54,0.00,0.00,0.00,20.77,0.00,0.00,0.00,16.85,0.00 +603277.SH,0.00,0.00,0.00,11.39,0.00,0.00,0.00,11.80,0.00,0.00,0.00,10.38,0.00,0.00,0.00,14.15,0.00,0.00,0.00,13.55,0.00 +300358.SZ,0.00,0.00,0.00,8.28,0.00,0.00,0.00,21.57,0.00,0.00,0.00,12.82,0.00,0.00,0.00,7.16,0.00,0.00,0.00,7.91,0.00 +002793.SZ,0.00,0.00,0.00,18.26,0.00,0.00,0.00,18.27,0.00,0.00,0.00,17.90,0.00,0.00,0.00,41.08,0.00,0.00,0.00,44.20,0.00 +603198.SH,0.00,0.00,0.00,4.89,0.00,0.00,0.00,4.33,0.00,0.00,0.00,6.78,0.00,0.00,0.00,8.79,0.00,0.00,0.00,7.51,0.00 +000488.SZ,0.00,0.00,0.00,13.70,0.00,0.00,0.00,15.94,0.00,0.00,0.00,21.25,0.00,0.00,0.00,22.42,0.00,0.00,0.00,29.22,0.00 +300886.SZ,0.00,0.00,0.00,48.19,0.00,0.00,0.00,38.56,0.00,0.00,0.00,38.26,0.00,0.00,0.00,46.14,0.00,0.00,0.00,43.60,0.00 +002886.SZ,0.00,0.00,0.00,22.70,0.00,0.00,0.00,22.19,0.00,0.00,0.00,20.31,0.00,0.00,0.00,23.82,0.00,0.00,0.00,22.67,0.00 +301195.SZ,0.00,0.00,0.00,40.72,0.00,41.68,0.00,42.07,0.00,0.00,0.00,38.76,0.00,0.00,0.00,35.02,0.00,0.00,0.00,29.09,0.00 +002702.SZ,0.00,0.00,0.00,13.55,0.00,0.00,0.00,13.14,0.00,6.33,0.00,12.59,0.00,15.31,0.00,13.11,0.00,14.87,0.00,11.27,0.00 +600736.SH,0.00,0.00,0.00,2.97,0.00,0.00,0.00,2.29,0.00,0.00,0.00,0.29,0.00,0.00,0.00,6.21,0.00,0.00,0.00,8.10,0.00 +688219.SH,0.00,37.75,0.00,38.67,0.00,0.00,0.00,40.56,0.00,0.00,0.00,39.04,0.00,0.00,0.00,43.38,0.00,0.00,0.00,45.12,0.00 +688073.SH,0.00,0.00,0.00,26.92,0.00,0.00,21.07,20.95,0.00,0.00,0.00,20.26,0.00,0.00,0.00,18.31,0.00,0.00,0.00,16.93,0.00 +600651.SH,0.00,0.00,0.00,10.20,0.00,0.00,0.00,11.40,0.00,0.00,0.00,13.74,0.00,0.00,0.00,20.29,0.00,0.00,0.00,22.37,0.00 +002009.SZ,0.00,0.00,0.00,27.30,0.00,0.00,0.00,15.88,0.00,0.00,0.00,17.14,0.00,0.00,0.00,27.43,0.00,0.00,0.00,30.20,0.00 +300161.SZ,0.00,0.00,0.00,9.77,0.00,0.00,0.00,17.75,0.00,0.00,0.00,22.01,0.00,0.00,0.00,34.17,0.00,0.00,0.00,25.78,0.00 +301510.SZ,0.00,0.00,0.00,24.59,0.00,20.78,0.00,19.30,0.00,27.06,0.00,22.51,0.00,0.00,0.00,17.14,0.00,0.00,0.00,15.15,0.00 +002156.SZ,0.00,0.00,0.00,67.56,0.00,0.00,0.00,60.45,0.00,0.00,0.00,68.90,0.00,0.00,0.00,72.62,0.00,0.00,0.00,68.99,0.00 +001206.SZ,0.00,43.02,0.00,45.39,0.00,0.00,0.00,53.85,0.00,0.00,0.00,53.73,0.00,0.00,0.00,48.70,0.00,0.00,0.00,52.97,0.00 +002615.SZ,0.00,0.00,0.00,58.12,0.00,0.00,0.00,67.73,0.00,0.00,0.00,67.62,0.00,0.00,0.00,61.74,0.00,0.00,0.00,69.82,0.00 +688365.SH,0.00,0.00,0.00,3.30,0.00,0.00,0.00,2.18,0.00,0.00,0.00,4.19,0.00,0.00,0.00,7.34,0.00,0.00,0.00,6.72,0.00 +002863.SZ,0.00,0.00,0.00,41.16,0.00,41.11,0.00,41.81,0.00,45.17,0.00,38.65,0.00,40.58,0.00,46.16,0.00,43.57,0.00,46.11,0.00 +002935.SZ,0.00,0.00,0.00,77.97,0.00,0.00,0.00,67.01,0.00,0.00,0.00,71.19,0.00,0.00,0.00,62.95,0.00,0.00,0.00,75.57,0.00 +600792.SH,0.00,0.00,0.00,76.76,0.00,0.00,0.00,83.91,0.00,0.00,0.00,75.08,0.00,0.00,0.00,89.00,0.00,0.00,0.00,91.29,0.00 +600561.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +300070.SZ,0.00,0.00,0.00,15.76,0.00,0.00,0.00,18.24,0.00,0.00,0.00,20.26,0.00,0.00,0.00,22.64,0.00,0.00,0.00,20.38,0.00 +300636.SZ,0.00,0.00,0.00,34.29,0.00,0.00,0.00,34.34,0.00,0.00,0.00,37.86,0.00,0.00,0.00,43.52,0.00,0.00,0.00,42.79,0.00 +603297.SH,0.00,0.00,0.00,33.95,0.00,0.00,0.00,35.40,0.00,0.00,0.00,31.14,0.00,0.00,0.00,27.19,0.00,0.00,0.00,37.38,0.00 +300227.SZ,0.00,0.00,0.00,26.81,0.00,0.00,0.00,34.85,0.00,0.00,0.00,32.38,0.00,0.00,0.00,35.67,0.00,0.00,0.00,39.81,0.00 +688343.SH,0.00,0.00,71.44,59.70,0.00,0.00,0.00,44.77,0.00,52.19,0.00,48.98,0.00,0.00,0.00,47.52,0.00,0.00,0.00,57.33,0.00 +301076.SZ,0.00,46.02,0.00,42.88,0.00,83.11,0.00,49.96,0.00,0.00,0.00,49.25,0.00,0.00,0.00,59.34,0.00,0.00,0.00,39.04,0.00 +002726.SZ,0.00,0.00,0.00,7.31,0.00,0.00,0.00,8.94,0.00,0.00,0.00,10.39,0.00,0.00,0.00,7.70,0.00,0.00,0.00,7.67,0.00 +603856.SH,0.00,0.00,0.00,19.00,0.00,0.00,0.00,12.75,0.00,0.00,0.00,15.86,0.00,0.00,0.00,28.50,0.00,0.00,0.00,29.44,0.00 +688355.SH,0.00,73.45,0.00,60.66,0.00,0.00,0.00,54.77,0.00,0.00,0.00,67.63,0.00,0.00,0.00,63.13,0.00,0.00,0.00,55.92,0.00 +600955.SH,0.00,32.96,0.00,34.05,0.00,0.00,0.00,31.56,0.00,0.00,0.00,31.36,0.00,0.00,0.00,30.38,0.00,0.00,0.00,35.81,0.00 +000681.SZ,0.00,0.00,0.00,28.60,0.00,0.00,0.00,24.86,0.00,0.00,0.00,100.00,0.00,0.00,0.00,21.87,0.00,0.00,0.00,23.32,0.00 +000576.SZ,0.00,0.00,0.00,54.14,0.00,0.00,0.00,52.43,0.00,0.00,0.00,72.09,0.00,0.00,0.00,63.90,0.00,0.00,0.00,65.61,0.00 +600880.SH,0.00,0.00,0.00,34.47,0.00,0.00,0.00,24.02,0.00,46.78,0.00,29.48,0.00,50.30,0.00,39.05,0.00,0.00,0.00,34.86,0.00 +688257.SH,0.00,29.24,0.00,29.76,0.00,0.00,0.00,29.95,0.00,0.00,0.00,20.62,0.00,0.00,0.00,18.75,0.00,0.00,0.00,16.98,0.00 +600862.SH,0.00,0.00,0.00,67.60,0.00,0.00,0.00,63.87,0.00,0.00,0.00,65.22,0.00,0.00,0.00,59.39,0.00,0.00,0.00,64.62,0.00 +600712.SH,0.00,0.00,0.00,1.50,0.00,0.00,0.00,1.35,0.00,0.00,0.00,1.93,0.00,0.00,0.00,3.09,0.00,0.00,0.00,2.81,0.00 +605001.SH,0.00,0.00,0.00,74.88,0.00,0.00,0.00,54.65,0.00,0.00,0.00,45.93,0.00,0.00,0.00,54.21,0.00,0.00,0.00,69.82,0.00 +301165.SZ,0.00,44.53,0.00,37.47,0.00,34.26,0.00,33.97,0.00,35.19,0.00,32.97,0.00,0.00,0.00,31.49,0.00,0.00,0.00,37.17,0.00 +300318.SZ,0.00,0.00,0.00,8.18,0.00,0.00,0.00,10.77,0.00,0.00,0.00,9.69,0.00,0.00,0.00,6.66,0.00,0.00,0.00,8.21,0.00 +300514.SZ,0.00,0.00,0.00,32.98,0.00,0.00,0.00,36.87,0.00,0.00,0.00,47.72,0.00,0.00,0.00,45.68,0.00,0.00,0.00,50.56,0.00 +603117.SH,0.00,0.00,0.00,24.62,0.00,0.00,0.00,22.71,0.00,0.00,0.00,24.05,0.00,0.00,0.00,18.55,0.00,0.00,0.00,23.59,0.00 +301298.SZ,0.00,95.72,0.00,92.77,90.67,88.84,86.48,86.62,91.65,0.00,0.00,93.49,0.00,0.00,0.00,90.62,0.00,0.00,0.00,90.71,0.00 +000925.SZ,0.00,0.00,0.00,52.94,0.00,0.00,0.00,57.56,0.00,0.00,0.00,37.94,0.00,0.00,0.00,38.36,0.00,0.00,0.00,48.52,0.00 +002843.SZ,0.00,0.00,0.00,17.48,0.00,0.00,0.00,19.85,0.00,0.00,0.00,39.67,0.00,0.00,0.00,59.48,0.00,0.00,0.00,60.89,0.00 +002107.SZ,0.00,0.00,0.00,14.80,0.00,0.00,0.00,14.47,0.00,0.00,0.00,13.76,0.00,0.00,0.00,14.08,0.00,0.00,0.00,10.92,0.00 +601179.SH,0.00,0.00,0.00,47.81,0.00,0.00,0.00,51.17,0.00,0.00,0.00,38.26,0.00,0.00,0.00,41.55,0.00,0.00,0.00,51.84,0.00 +002416.SZ,0.00,0.00,0.00,25.36,0.00,0.00,0.00,16.40,0.00,0.00,0.00,12.74,0.00,0.00,0.00,14.60,0.00,0.00,0.00,16.47,0.00 +601012.SH,0.00,0.00,0.00,18.55,0.00,0.00,0.00,18.19,0.00,0.00,0.00,24.65,0.00,0.00,0.00,22.75,0.00,0.00,0.00,20.20,0.00 +300613.SZ,0.00,0.00,0.00,92.92,0.00,0.00,0.00,90.36,0.00,0.00,0.00,91.70,0.00,0.00,0.00,91.08,0.00,0.00,0.00,88.39,0.00 +601008.SH,0.00,0.00,0.00,14.87,0.00,0.00,0.00,15.87,0.00,0.00,0.00,16.56,0.00,0.00,0.00,24.75,0.00,0.00,0.00,21.27,0.00 +300722.SZ,0.00,0.00,0.00,28.34,0.00,0.00,0.00,31.63,0.00,0.00,0.00,32.91,0.00,0.00,0.00,27.21,0.00,0.00,0.00,30.14,0.00 +002273.SZ,0.00,0.00,0.00,48.39,0.00,0.00,0.00,50.09,0.00,0.00,0.00,62.01,0.00,0.00,0.00,63.83,0.00,0.00,0.00,62.23,0.00 +301045.SZ,73.70,0.00,74.19,73.58,0.00,0.00,0.00,72.64,0.00,0.00,0.00,71.10,0.00,0.00,0.00,66.99,0.00,0.00,0.00,63.40,0.00 +688530.SH,0.00,0.00,0.00,66.87,0.00,0.00,0.00,70.42,0.00,73.39,0.00,70.03,0.00,0.00,0.00,66.85,0.00,0.00,0.00,60.08,0.00 +000060.SZ,0.00,0.00,0.00,42.89,0.00,0.00,0.00,40.52,0.00,0.00,0.00,40.34,0.00,0.00,0.00,35.37,0.00,0.00,0.00,36.74,0.00 +002285.SZ,0.00,0.00,0.00,21.04,0.00,0.00,0.00,12.18,0.00,0.00,0.00,18.79,0.00,0.00,0.00,18.54,0.00,0.00,0.00,18.16,0.00 +002977.SZ,0.00,0.00,0.00,96.74,0.00,0.00,0.00,98.53,0.00,0.00,0.00,98.84,0.00,0.00,0.00,106.62,0.00,0.00,0.00,97.70,0.00 +300847.SZ,0.00,0.00,0.00,35.44,0.00,0.00,0.00,36.12,0.00,0.00,0.00,39.47,0.00,0.00,0.00,36.99,0.00,0.00,0.00,38.99,0.00 +000935.SZ,0.00,0.00,0.00,40.29,0.00,0.00,0.00,44.66,0.00,0.00,0.00,37.57,0.00,0.00,0.00,48.92,0.00,0.00,0.00,51.86,0.00 +603132.SH,0.00,0.00,0.00,96.48,0.00,92.56,0.00,92.07,0.00,0.00,0.00,89.02,0.00,0.00,0.00,71.37,0.00,0.00,0.00,79.17,0.00 +603888.SH,0.00,0.00,0.00,20.48,0.00,0.00,0.00,13.45,0.00,0.00,0.00,11.20,0.00,0.00,0.00,8.84,0.00,0.00,0.00,7.49,0.00 +600467.SH,0.00,0.00,0.00,15.35,0.00,0.00,0.00,15.25,0.00,0.00,0.00,21.58,0.00,0.00,0.00,14.02,0.00,0.00,0.00,17.95,0.00 +300582.SZ,0.00,0.00,0.00,31.70,0.00,0.00,0.00,32.72,0.00,0.00,0.00,36.41,0.00,0.00,0.00,17.25,0.00,0.00,0.00,19.35,0.00 +002133.SZ,0.00,0.00,0.00,17.82,0.00,0.00,0.00,16.19,0.00,0.00,0.00,21.88,0.00,0.00,0.00,8.53,0.00,0.00,0.00,18.00,0.00 +601099.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +688038.SH,84.48,76.62,0.00,75.67,0.00,0.00,0.00,49.31,0.00,0.00,0.00,37.46,0.00,0.00,0.00,52.59,0.00,0.00,0.00,39.42,0.00 +301559.SZ,0.00,0.00,0.00,35.24,0.00,53.87,0.00,52.94,0.00,61.77,0.00,57.50,0.00,53.95,0.00,44.16,0.00,0.00,0.00,31.21,0.00 +600346.SH,0.00,0.00,0.00,13.89,0.00,9.74,0.00,7.29,0.00,14.17,0.00,12.68,0.00,12.90,0.00,9.07,0.00,9.97,0.00,9.90,0.00 +300607.SZ,0.00,0.00,0.00,22.02,0.00,0.00,0.00,43.24,0.00,0.00,0.00,44.97,0.00,0.00,0.00,35.24,0.00,0.00,0.00,43.05,0.00 +603041.SH,0.00,0.00,0.00,33.46,0.00,0.00,0.00,30.01,0.00,0.00,0.00,28.44,0.00,0.00,0.00,32.74,0.00,0.00,0.00,36.20,0.00 +300343.SZ,0.00,0.00,0.00,18.49,0.00,0.00,0.00,40.32,0.00,0.00,0.00,48.58,0.00,0.00,0.00,27.60,0.00,0.00,0.00,16.81,0.00 +002787.SZ,0.00,0.00,0.00,53.91,0.00,0.00,0.00,53.09,0.00,0.00,0.00,53.71,0.00,0.00,0.00,56.30,0.00,0.00,0.00,59.81,0.00 +688552.SH,0.00,0.00,0.00,98.98,0.00,0.00,0.00,97.82,0.00,99.05,0.00,97.89,0.00,0.00,0.00,96.10,0.00,0.00,0.00,78.36,0.00 +605258.SH,0.00,62.98,0.00,63.54,0.00,0.00,0.00,57.91,0.00,0.00,0.00,49.55,0.00,0.00,0.00,52.29,0.00,0.00,0.00,57.65,0.00 +600664.SH,0.00,0.00,0.00,11.84,0.00,0.00,0.00,12.52,0.00,0.00,0.00,13.67,0.00,0.00,0.00,11.88,0.00,0.00,0.00,11.99,0.00 +002395.SZ,0.00,0.00,0.00,15.62,0.00,0.00,0.00,18.43,0.00,0.00,0.00,18.06,0.00,0.00,0.00,16.38,0.00,0.00,0.00,14.60,0.00 +300752.SZ,0.00,0.00,0.00,87.31,0.00,0.00,0.00,90.41,0.00,0.00,0.00,81.78,0.00,0.00,0.00,76.48,0.00,0.00,0.00,71.04,0.00 +601689.SH,0.00,0.00,0.00,62.18,0.00,0.00,0.00,62.82,0.00,0.00,0.00,63.45,0.00,0.00,0.00,63.44,0.00,0.00,0.00,67.09,0.00 +000716.SZ,0.00,0.00,0.00,31.41,0.00,0.00,0.00,35.60,0.00,0.00,0.00,29.81,0.00,29.81,0.00,26.15,0.00,26.15,0.00,25.18,0.00 +600763.SH,0.00,0.00,0.00,0.09,0.00,0.00,0.00,10.20,0.00,0.00,0.00,0.09,0.00,0.00,0.00,5.38,0.00,0.00,0.00,4.25,0.00 +301039.SZ,0.00,12.87,0.00,11.66,0.00,0.00,0.00,9.98,0.00,0.00,0.00,15.53,0.00,0.00,0.00,13.32,0.00,0.00,0.00,14.47,0.00 +002191.SZ,0.00,0.00,0.00,40.93,0.00,0.00,0.00,44.83,0.00,0.00,0.00,40.11,0.00,0.00,0.00,33.89,0.00,0.00,0.00,25.49,0.00 +600188.SH,0.00,0.00,0.00,10.80,0.00,0.00,0.00,2.22,0.00,0.00,0.00,7.10,0.00,0.00,0.00,18.00,0.00,0.00,0.00,1.10,0.00 +688478.SH,0.00,0.00,0.00,94.22,0.00,0.00,0.00,95.43,0.00,97.69,0.00,0.00,0.00,0.00,0.00,88.11,0.00,0.00,0.00,92.74,0.00 +300955.SZ,0.00,73.28,0.00,73.66,0.00,0.00,0.00,76.64,0.00,0.00,0.00,80.26,0.00,0.00,0.00,75.28,0.00,0.00,0.00,67.65,0.00 +603032.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,61.58,0.00,0.00,0.00,76.21,0.00,0.00,0.00,79.14,0.00,0.00,0.00,45.94,0.00 +300674.SZ,0.00,0.00,0.00,45.99,0.00,0.00,0.00,46.22,0.00,0.00,0.00,45.25,0.00,0.00,0.00,44.42,0.00,0.00,0.00,42.27,0.00 +605058.SH,0.00,72.85,0.00,75.37,0.00,0.00,0.00,68.07,0.00,0.00,0.00,67.39,0.00,0.00,0.00,62.24,0.00,0.00,0.00,57.91,0.00 +603648.SH,0.00,0.00,0.00,38.22,0.00,0.00,0.00,31.25,0.00,0.00,0.00,31.69,0.00,0.00,0.00,29.64,0.00,0.00,0.00,29.84,0.00 +430510.BJ,0.00,75.92,0.00,74.17,0.00,74.26,0.00,75.92,0.00,72.35,0.00,85.55,0.00,0.00,0.00,78.26,0.00,0.00,0.00,79.13,0.00 +300627.SZ,0.00,0.00,0.00,10.97,0.00,0.00,0.00,4.81,0.00,0.00,0.00,6.25,0.00,0.00,0.00,8.04,0.00,0.00,0.00,8.71,0.00 +301355.SZ,0.00,0.00,0.00,54.47,0.00,47.19,0.00,47.70,0.00,51.72,0.00,52.64,0.00,0.00,0.00,49.05,0.00,0.00,0.00,50.88,0.00 +688586.SH,0.00,0.00,0.00,85.29,0.00,0.00,0.00,88.75,0.00,0.00,0.00,82.23,0.00,0.00,0.00,85.83,0.00,0.00,0.00,83.18,0.00 +301028.SZ,15.63,0.00,13.88,13.17,0.00,0.00,0.00,12.56,0.00,0.00,0.00,12.10,0.00,0.00,0.00,14.02,0.00,0.00,0.00,12.94,0.00 +300456.SZ,0.00,0.00,0.00,45.77,0.00,0.00,0.00,36.21,0.00,0.00,0.00,34.94,0.00,0.00,0.00,49.23,0.00,0.00,0.00,37.14,0.00 +301207.SZ,0.00,44.53,0.00,5.99,0.00,54.15,0.00,5.90,0.00,0.00,0.00,6.32,0.00,0.00,0.00,4.14,0.00,0.00,0.00,5.73,0.00 +002965.SZ,0.00,0.00,0.00,45.12,0.00,0.00,0.00,40.16,0.00,0.00,0.00,53.52,0.00,0.00,0.00,55.48,0.00,0.00,0.00,54.02,0.00 +603087.SH,0.00,0.00,0.00,11.71,0.00,0.00,0.00,11.57,0.00,0.00,0.00,12.16,0.00,0.00,0.00,14.74,0.00,0.00,0.00,11.69,0.00 +688328.SH,0.00,40.74,0.00,39.13,0.00,0.00,0.00,41.89,0.00,0.00,0.00,25.64,0.00,0.00,0.00,36.12,0.00,0.00,0.00,24.26,0.00 +603080.SH,0.00,0.00,0.00,12.09,0.00,0.00,0.00,9.01,0.00,0.00,0.00,6.26,0.00,0.00,0.00,8.30,0.00,11.45,0.00,6.24,0.00 +002099.SZ,0.00,0.00,0.00,23.02,0.00,0.00,0.00,19.69,0.00,0.00,0.00,29.41,0.00,0.00,0.00,23.99,0.00,0.00,0.00,23.89,0.00 +002415.SZ,0.00,0.00,0.00,3.09,0.00,0.00,0.00,3.39,0.00,0.00,0.00,2.43,0.00,0.00,0.00,2.26,0.00,0.00,0.00,2.53,0.00 +000016.SZ,0.00,0.00,0.00,42.39,0.00,0.00,0.00,31.76,0.00,0.00,0.00,36.90,0.00,0.00,0.00,28.17,0.00,0.00,0.00,31.58,0.00 +603085.SH,0.00,0.00,0.00,57.08,0.00,0.00,0.00,52.99,0.00,0.00,0.00,54.32,0.00,0.00,0.00,51.44,0.00,0.00,0.00,60.86,0.00 +600682.SH,0.00,0.00,0.00,19.77,0.00,0.00,0.00,41.99,0.00,0.00,0.00,37.17,0.00,0.00,0.00,33.79,0.00,0.00,0.00,33.75,0.00 +002968.SZ,0.00,0.00,0.00,11.60,0.00,0.00,0.00,8.12,0.00,0.00,0.00,10.38,0.00,0.00,0.00,9.60,0.00,0.00,0.00,9.15,0.00 +603311.SH,0.00,0.00,0.00,53.41,0.00,0.00,0.00,27.17,0.00,0.00,0.00,31.38,0.00,0.00,0.00,33.83,0.00,0.00,0.00,33.60,0.00 +688368.SH,0.00,0.00,0.00,36.59,0.00,0.00,0.00,34.49,0.00,0.00,0.00,30.37,0.00,0.00,0.00,30.54,0.00,0.00,0.00,30.24,0.00 +300993.SZ,0.00,24.84,0.00,25.49,0.00,0.00,0.00,25.36,0.00,0.00,0.00,23.03,0.00,0.00,0.00,22.31,0.00,0.00,0.00,19.69,0.00 +600222.SH,0.00,0.00,0.00,15.12,0.00,0.00,0.00,17.21,0.00,0.00,0.00,17.27,0.00,0.00,0.00,16.35,0.00,0.00,0.00,10.51,0.00 +301456.SZ,0.00,0.00,0.00,74.60,0.00,71.51,0.00,66.23,0.00,55.59,0.00,57.86,0.00,0.00,0.00,52.12,0.00,0.00,0.00,57.44,0.00 +301050.SZ,100.01,99.89,98.67,98.28,0.00,0.00,0.00,99.81,0.00,0.00,0.00,99.69,0.00,0.00,0.00,100.01,0.00,0.00,0.00,100.00,0.00 +002196.SZ,0.00,0.00,0.00,43.62,0.00,0.00,0.00,46.16,0.00,0.00,0.00,51.33,0.00,0.00,0.00,67.49,0.00,0.00,0.00,59.74,0.00 +603788.SH,0.00,0.00,0.00,62.59,0.00,0.00,0.00,58.70,0.00,0.00,0.00,56.74,0.00,0.00,0.00,48.98,0.00,0.00,0.00,43.92,0.00 +600699.SH,0.00,0.00,0.00,60.00,0.00,0.00,0.00,57.00,0.00,0.00,0.00,58.00,0.00,0.00,0.00,53.00,0.00,0.00,0.00,48.00,0.00 +001215.SZ,0.00,36.98,0.00,34.05,0.00,0.00,0.00,32.97,0.00,9.60,0.00,28.17,0.00,6.63,0.00,35.59,0.00,5.90,0.00,34.21,0.00 +300940.SZ,0.00,84.23,0.00,75.99,0.00,0.00,0.00,86.36,0.00,0.00,0.00,76.16,0.00,0.00,0.00,78.57,0.00,0.00,0.00,77.74,0.00 +688390.SH,0.00,0.00,0.00,23.21,0.00,0.00,0.00,18.89,0.00,0.00,0.00,35.87,0.00,0.00,0.00,25.74,0.00,0.00,0.00,11.25,0.00 +300978.SZ,0.00,30.73,0.00,30.24,0.00,0.00,0.00,25.62,0.00,0.00,0.00,30.62,0.00,0.00,0.00,36.34,0.00,0.00,0.00,37.94,0.00 +300105.SZ,0.00,0.00,0.00,82.93,0.00,0.00,0.00,67.09,0.00,0.00,0.00,76.39,0.00,0.00,0.00,72.38,0.00,0.00,0.00,89.26,0.00 +002531.SZ,0.00,0.00,0.00,40.86,0.00,0.00,0.00,55.27,0.00,0.00,0.00,55.58,0.00,0.00,0.00,67.25,0.00,0.00,0.00,61.73,0.00 +300987.SZ,0.00,35.23,0.00,28.52,0.00,0.00,0.00,29.48,0.00,0.00,0.00,32.42,0.00,0.00,0.00,37.12,0.00,0.00,0.00,38.61,0.00 +301505.SZ,0.00,0.00,0.00,13.46,0.00,16.62,0.00,13.54,0.00,13.08,0.00,15.32,0.00,0.00,0.00,17.09,0.00,0.00,0.00,15.53,0.00 +300234.SZ,0.00,0.00,0.00,22.03,0.00,0.00,0.00,37.91,0.00,0.00,0.00,29.01,0.00,0.00,0.00,30.54,0.00,0.00,0.00,28.21,0.00 +002838.SZ,0.00,0.00,0.00,28.59,0.00,0.00,0.00,44.58,0.00,0.00,0.00,40.94,0.00,0.00,0.00,36.22,0.00,0.00,0.00,37.08,0.00 +301551.SZ,0.00,0.00,0.00,99.28,0.00,99.24,0.00,98.92,0.00,97.88,0.00,98.17,0.00,96.13,0.00,97.35,0.00,0.00,0.00,98.23,0.00 +300929.SZ,0.00,68.09,0.00,59.71,0.00,0.00,0.00,58.37,0.00,0.00,0.00,48.10,0.00,0.00,0.00,64.49,0.00,0.00,0.00,53.63,0.00 +300257.SZ,0.00,0.00,0.00,12.50,0.00,0.00,0.00,12.57,0.00,0.00,0.00,23.23,0.00,0.00,0.00,24.66,0.00,0.00,0.00,21.84,0.00 +301391.SZ,0.00,0.00,0.00,56.06,64.63,0.00,60.16,60.55,0.00,52.43,0.00,49.30,0.00,0.00,0.00,45.18,0.00,0.00,0.00,64.14,0.00 +301133.SZ,0.00,86.99,0.00,82.54,0.00,78.16,0.00,77.76,0.00,0.00,0.00,71.02,0.00,0.00,0.00,73.19,0.00,0.00,0.00,73.56,0.00 +301362.SZ,0.00,17.26,0.00,15.49,0.00,0.00,0.00,14.44,0.00,0.00,0.00,16.11,0.00,0.00,0.00,14.07,0.00,0.00,0.00,14.30,0.00 +300221.SZ,0.00,0.00,0.00,28.24,0.00,0.00,0.00,30.18,0.00,0.00,0.00,23.49,0.00,0.00,0.00,20.14,0.00,0.00,0.00,19.31,0.00 +301580.SZ,0.00,0.00,0.00,9.27,0.00,0.00,9.15,8.78,0.00,12.12,0.00,11.15,0.00,12.46,0.00,10.61,0.00,0.00,0.00,10.08,0.00 +603229.SH,0.00,0.00,0.00,53.77,0.00,0.00,0.00,57.59,0.00,0.00,0.00,55.85,0.00,0.00,0.00,56.34,0.00,0.00,0.00,56.08,0.00 +600733.SH,0.00,0.00,0.00,41.91,0.00,0.00,0.00,35.24,0.00,0.00,0.00,39.63,0.00,0.00,0.00,64.13,0.00,0.00,0.00,34.41,0.00 +601700.SH,0.00,0.00,0.00,19.17,0.00,0.00,0.00,30.00,0.00,0.00,0.00,24.50,0.00,0.00,0.00,34.13,0.00,0.00,0.00,45.64,0.00 +300982.SZ,0.00,61.10,0.00,0.00,0.00,0.00,0.00,43.87,0.00,0.00,0.00,48.80,0.00,0.00,0.00,33.97,0.00,0.00,0.00,41.74,0.00 +603639.SH,0.00,0.00,0.00,10.16,0.00,0.00,0.00,5.65,0.00,0.00,0.00,17.78,0.00,0.00,0.00,28.20,0.00,0.00,0.00,17.41,0.00 +688026.SH,0.00,0.00,0.00,34.56,0.00,0.00,0.00,41.19,0.00,0.00,0.00,36.58,0.00,0.00,0.00,44.32,0.00,0.00,0.00,39.36,0.00 +002003.SZ,0.00,0.00,0.00,7.25,0.00,0.00,0.00,7.30,0.00,0.00,0.00,7.06,0.00,0.00,0.00,8.58,0.00,0.00,0.00,9.04,0.00 +002960.SZ,0.00,0.00,0.00,16.89,0.00,0.00,0.00,12.16,0.00,0.00,0.00,11.66,0.00,0.00,0.00,8.65,0.00,0.00,0.00,7.97,0.00 +002397.SZ,0.00,0.00,0.00,5.20,0.00,0.00,0.00,6.03,0.00,0.00,0.00,3.89,0.00,0.00,0.00,3.65,0.00,0.00,0.00,5.13,0.00 +688031.SH,0.00,0.00,0.00,16.16,0.00,31.48,0.00,20.31,0.00,25.74,0.00,15.62,0.00,0.00,0.00,16.44,0.00,0.00,0.00,14.32,0.00 +603153.SH,0.00,0.00,0.00,11.87,0.00,14.16,0.00,11.03,0.00,13.04,0.00,11.47,0.00,0.00,0.00,11.09,0.00,0.00,0.00,11.83,0.00 +301508.SZ,0.00,0.00,0.00,26.72,0.00,0.00,0.00,26.93,0.00,25.68,0.00,23.58,0.00,21.78,0.00,24.30,0.00,0.00,0.00,24.48,0.00 +600057.SH,0.00,0.00,0.00,11.40,0.00,0.00,0.00,8.71,0.00,0.00,0.00,8.68,0.00,0.00,0.00,8.03,0.00,0.00,0.00,7.28,0.00 +300639.SZ,0.00,0.00,0.00,10.74,0.00,0.00,0.00,30.31,0.00,0.00,0.00,31.55,0.00,0.00,0.00,10.03,0.00,0.00,0.00,6.39,0.00 +002317.SZ,0.00,0.00,0.00,48.02,0.00,0.00,0.00,52.58,0.00,0.00,0.00,50.87,0.00,0.00,0.00,56.27,0.00,0.00,0.00,54.50,0.00 +000155.SZ,0.00,0.00,0.00,94.55,0.00,0.00,0.00,82.87,0.00,0.00,0.00,60.63,0.00,0.00,0.00,72.93,0.00,0.00,0.00,82.72,0.00 +301098.SZ,0.00,55.81,0.00,41.43,0.00,42.83,0.00,52.56,0.00,0.00,0.00,55.05,0.00,0.00,0.00,46.33,0.00,0.00,0.00,42.05,0.00 +688479.SH,0.00,0.00,0.00,34.29,0.00,48.31,0.00,43.46,0.00,47.77,0.00,46.93,0.00,0.00,0.00,41.92,0.00,0.00,0.00,38.78,0.00 +002623.SZ,0.00,0.00,0.00,76.64,0.00,0.00,0.00,69.17,0.00,0.00,0.00,73.46,0.00,0.00,0.00,77.44,0.00,0.00,0.00,72.35,0.00 +603312.SH,0.00,0.00,0.00,59.78,0.00,0.00,0.00,84.39,0.00,88.73,0.00,89.27,0.00,87.40,0.00,88.17,0.00,0.00,0.00,89.27,0.00 +301291.SZ,0.00,0.00,0.00,47.13,0.00,51.60,0.00,45.54,0.00,53.68,0.00,44.67,0.00,0.00,0.00,43.35,0.00,0.00,0.00,42.25,0.00 +000722.SZ,0.00,0.00,0.00,81.70,0.00,0.00,0.00,78.67,0.00,0.00,0.00,78.80,0.00,0.00,0.00,85.54,0.00,0.00,0.00,86.29,0.00 +002961.SZ,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +300305.SZ,0.00,0.00,0.00,50.29,0.00,47.68,0.00,49.19,0.00,59.52,0.00,60.46,0.00,61.92,0.00,56.62,0.00,42.44,0.00,32.84,0.00 +603717.SH,0.00,0.00,0.00,47.00,0.00,0.00,0.00,69.29,0.00,0.00,0.00,43.53,0.00,0.00,0.00,33.88,0.00,0.00,0.00,24.09,0.00 +301167.SZ,0.00,27.72,0.00,21.72,0.00,23.69,17.96,17.02,0.00,0.00,0.00,23.31,0.00,0.00,0.00,26.20,0.00,0.00,0.00,11.45,0.00 +300509.SZ,0.00,0.00,0.00,30.50,0.00,0.00,0.00,24.85,0.00,0.00,0.00,33.87,0.00,0.00,0.00,30.69,0.00,0.00,0.00,30.38,0.00 +603123.SH,0.00,0.00,0.00,1.44,0.00,0.00,0.00,4.29,0.00,0.00,0.00,3.17,0.00,0.00,0.00,1.77,0.00,0.00,0.00,0.00,0.00 +600375.SH,0.00,0.00,0.00,19.78,0.00,0.00,0.00,20.28,0.00,0.00,0.00,55.69,0.00,0.00,0.00,66.59,0.00,0.00,0.00,81.95,0.00 +688695.SH,0.00,0.00,0.00,43.77,0.00,0.00,0.00,28.84,0.00,56.26,0.00,32.39,0.00,47.71,0.00,26.87,0.00,0.00,0.00,0.00,0.00 +002146.SZ,0.00,0.00,0.00,0.17,0.00,29.78,0.00,0.18,0.00,0.00,0.00,0.34,0.00,0.00,0.00,0.19,0.00,0.00,0.00,0.23,0.00 +600379.SH,0.00,0.00,0.00,35.68,0.00,0.00,0.00,40.82,0.00,0.00,0.00,35.12,0.00,0.00,0.00,33.25,0.00,0.00,0.00,30.22,0.00 +002795.SZ,0.00,0.00,0.00,40.00,0.00,0.00,0.00,40.90,0.00,0.00,0.00,34.62,0.00,0.00,0.00,43.40,0.00,0.00,0.00,48.09,0.00 +688779.SH,0.00,0.00,0.00,78.38,0.00,0.00,0.00,83.98,0.00,0.00,0.00,81.38,0.00,0.00,0.00,87.17,0.00,0.00,0.00,77.05,0.00 +002478.SZ,0.00,0.00,0.00,27.56,0.00,0.00,0.00,31.68,0.00,0.00,0.00,33.97,0.00,0.00,0.00,25.59,0.00,0.00,0.00,0.00,0.00 +301234.SZ,0.00,20.69,0.00,23.11,0.00,19.55,0.00,21.62,0.00,0.00,0.00,31.32,0.00,0.00,0.00,29.02,0.00,0.00,0.00,24.89,0.00 +600864.SH,0.00,0.00,0.00,13.69,0.00,0.00,0.00,13.06,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +601136.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +002110.SZ,0.00,0.00,0.00,16.74,0.00,0.00,0.00,17.63,0.00,0.00,0.00,18.86,0.00,0.00,0.00,22.55,0.00,0.00,0.00,21.52,0.00 +002628.SZ,0.00,0.00,0.00,66.60,0.00,0.00,0.00,65.51,0.00,0.00,0.00,58.91,0.00,0.00,0.00,59.94,0.00,0.00,0.00,47.12,0.00 +300616.SZ,0.00,0.00,0.00,3.72,0.00,0.00,0.00,3.30,0.00,0.00,0.00,3.52,0.00,0.00,0.00,4.01,0.00,0.00,0.00,5.17,0.00 +603360.SH,0.00,0.00,0.00,18.54,0.00,0.00,0.00,17.25,0.00,0.00,0.00,23.92,0.00,0.00,0.00,23.26,0.00,0.00,0.00,22.41,0.00 +603650.SH,0.00,0.00,0.00,30.02,0.00,0.00,0.00,27.07,0.00,0.00,0.00,25.83,0.00,0.00,0.00,26.92,0.00,0.00,0.00,27.40,0.00 +603606.SH,0.00,0.00,0.00,42.78,0.00,0.00,0.00,36.70,0.00,0.00,0.00,29.43,0.00,0.00,0.00,39.02,0.00,0.00,0.00,35.15,0.00 +600802.SH,0.00,0.00,0.00,11.99,0.00,0.00,0.00,14.31,0.00,0.00,0.00,8.81,0.00,0.00,0.00,15.95,0.00,0.00,0.00,19.21,0.00 +688107.SH,0.00,0.00,0.00,96.87,0.00,96.18,0.00,95.37,0.00,0.00,0.00,95.72,0.00,0.00,0.00,89.62,0.00,0.00,0.00,78.00,0.00 +605222.SH,0.00,0.00,0.00,18.37,0.00,0.00,0.00,13.85,0.00,0.00,0.00,9.62,0.00,0.00,0.00,11.73,0.00,0.00,0.00,11.36,0.00 +000546.SZ,0.00,0.00,0.00,48.84,0.00,0.00,0.00,49.01,0.00,0.00,0.00,36.55,0.00,0.00,0.00,57.68,0.00,0.00,0.00,69.68,0.00 +300653.SZ,0.00,0.00,0.00,17.89,0.00,0.00,0.00,13.20,0.00,0.00,0.00,13.62,0.00,0.00,0.00,10.89,0.00,0.00,0.00,10.42,0.00 +301421.SZ,0.00,0.00,0.00,26.03,0.00,26.01,0.00,24.20,0.00,0.00,0.00,23.24,0.00,0.00,0.00,27.30,0.00,0.00,0.00,23.82,0.00 +600822.SH,0.00,0.00,0.00,38.96,0.00,0.00,0.00,40.23,0.00,0.00,0.00,0.00,0.00,0.00,0.00,88.82,0.00,0.00,0.00,0.00,0.00 +301107.SZ,0.00,0.00,60.36,56.88,0.00,50.92,0.00,52.43,0.00,0.00,0.00,53.56,0.00,0.00,0.00,51.61,0.00,0.00,0.00,47.53,0.00 +300135.SZ,0.00,0.00,0.00,19.67,0.00,0.00,0.00,17.01,0.00,0.00,0.00,35.87,0.00,0.00,0.00,28.91,0.00,0.00,0.00,24.24,0.00 +301600.SZ,0.00,0.00,0.00,78.74,0.00,0.00,0.00,77.67,82.41,0.00,80.99,81.52,0.00,0.00,0.00,80.77,0.00,0.00,0.00,82.14,0.00 +601858.SH,0.00,0.00,0.00,9.61,0.00,0.00,0.00,7.50,0.00,0.00,0.00,10.49,0.00,0.00,0.00,10.41,0.00,0.00,0.00,9.02,0.00 +836260.BJ,0.00,0.00,0.00,62.58,0.00,69.07,0.00,65.30,0.00,0.00,0.00,73.24,0.00,0.00,0.00,72.64,0.00,0.00,0.00,78.07,0.00 +000886.SZ,0.00,0.00,0.00,60.02,0.00,0.00,0.00,8.38,0.00,0.00,0.00,5.78,0.00,0.00,0.00,14.83,0.00,0.00,0.00,32.00,0.00 +605122.SH,0.00,28.86,0.00,45.99,0.00,0.00,0.00,44.80,0.00,0.00,0.00,49.09,0.00,0.00,0.00,54.43,0.00,0.00,0.00,60.45,0.00 +600829.SH,0.00,0.00,0.00,15.94,0.00,0.00,0.00,17.12,0.00,0.00,0.00,14.82,0.00,0.00,0.00,17.13,0.00,0.00,0.00,17.46,0.00 +002643.SZ,0.00,0.00,0.00,61.64,0.00,0.00,0.00,57.35,0.00,0.00,0.00,66.18,0.00,0.00,0.00,60.75,0.00,0.00,0.00,60.30,0.00 +300692.SZ,0.00,0.00,0.00,50.09,0.00,0.00,0.00,41.37,0.00,0.00,0.00,50.37,0.00,0.00,0.00,38.81,0.00,0.00,0.00,31.15,0.00 +688383.SH,0.00,56.92,0.00,35.92,0.00,0.00,0.00,29.19,0.00,0.00,0.00,33.30,0.00,0.00,0.00,28.60,0.00,0.00,0.00,41.42,0.00 +301059.SZ,0.00,75.47,0.00,134.86,0.00,0.00,0.00,68.86,0.00,0.00,0.00,70.95,0.00,0.00,0.00,67.45,0.00,0.00,0.00,71.88,0.00 +300615.SZ,0.00,0.00,0.00,58.43,0.00,0.00,0.00,53.38,0.00,0.00,0.00,75.17,0.00,0.00,0.00,77.64,0.00,0.00,0.00,60.81,0.00 +300696.SZ,0.00,0.00,0.00,99.54,0.00,0.00,0.00,99.40,0.00,0.00,0.00,99.59,0.00,0.00,0.00,97.43,0.00,0.00,0.00,89.78,0.00 +300432.SZ,0.00,0.00,0.00,66.21,0.00,0.00,0.00,59.25,0.00,0.00,0.00,76.40,0.00,0.00,0.00,70.01,0.00,0.00,0.00,69.95,0.00 +300596.SZ,0.00,0.00,0.00,10.96,0.00,0.00,0.00,9.78,0.00,0.00,0.00,9.52,0.00,0.00,0.00,10.49,0.00,0.00,0.00,13.51,0.00 +600195.SH,0.00,0.00,0.00,15.69,0.00,0.00,0.00,15.50,0.00,0.00,0.00,21.58,0.00,0.00,0.00,15.96,0.00,0.00,0.00,14.33,0.00 +603105.SH,0.00,0.00,0.00,17.47,0.00,0.00,0.00,50.77,0.00,0.00,0.00,45.05,0.00,0.00,0.00,43.33,0.00,0.00,0.00,42.66,0.00 +002040.SZ,0.00,0.00,0.00,25.62,0.00,0.00,0.00,23.59,0.00,0.00,0.00,22.17,0.00,0.00,0.00,22.08,0.00,0.00,0.00,25.02,0.00 +000581.SZ,0.00,0.00,0.00,52.01,0.00,50.29,0.00,51.77,0.00,0.00,0.00,37.04,0.00,0.00,0.00,43.95,0.00,0.00,0.00,46.95,0.00 +301170.SZ,0.00,0.00,0.00,88.14,0.00,88.39,0.00,89.34,0.00,87.70,0.00,88.91,0.00,0.00,0.00,86.01,0.00,0.00,0.00,82.26,0.00 +301359.SZ,0.00,0.00,0.00,39.89,0.00,40.23,0.00,39.03,0.00,40.30,0.00,37.08,0.00,0.00,0.00,39.41,0.00,0.00,0.00,39.18,0.00 +002192.SZ,0.00,0.00,0.00,74.61,0.00,0.00,0.00,83.45,0.00,0.00,0.00,86.50,0.00,0.00,0.00,95.87,0.00,0.00,0.00,98.62,0.00 +300718.SZ,0.00,0.00,0.00,17.38,0.00,0.00,0.00,16.46,0.00,0.00,0.00,14.50,0.00,0.00,0.00,19.03,0.00,0.00,0.00,18.49,0.00 +600739.SH,0.00,0.00,0.00,32.08,0.00,0.00,0.00,29.27,0.00,0.00,0.00,30.39,0.00,0.00,0.00,26.36,0.00,0.00,0.00,27.80,0.00 +603968.SH,0.00,0.00,0.00,16.09,0.00,0.00,0.00,15.62,0.00,0.00,0.00,15.92,0.00,0.00,0.00,16.45,0.00,0.00,0.00,15.25,0.00 +301079.SZ,0.00,0.00,49.80,48.74,0.00,54.04,0.00,48.89,0.00,0.00,0.00,27.01,0.00,0.00,0.00,26.99,0.00,0.00,0.00,28.11,0.00 +301067.SZ,0.00,56.87,0.00,61.83,0.00,58.99,0.00,57.40,0.00,0.00,0.00,51.49,0.00,0.00,0.00,53.61,0.00,0.00,0.00,53.53,0.00 +001231.SZ,0.00,0.00,0.00,11.36,0.00,11.81,0.00,12.56,12.99,0.00,0.00,9.46,0.00,0.00,0.00,9.40,0.00,0.00,0.00,7.20,0.00 +001378.SZ,0.00,15.76,0.00,17.71,0.00,0.00,15.01,16.76,0.00,12.64,0.00,15.12,0.00,17.93,0.00,14.64,0.00,0.00,0.00,16.16,0.00 +600373.SH,0.00,0.00,0.00,15.11,0.00,0.00,0.00,0.61,0.00,0.00,0.00,14.88,0.00,0.00,0.00,9.63,0.00,0.00,0.00,8.96,0.00 +600456.SH,0.00,0.00,0.00,26.98,0.00,0.00,0.00,22.22,0.00,0.00,0.00,26.50,0.00,0.00,0.00,28.93,0.00,0.00,0.00,26.23,0.00 +000505.SZ,0.00,0.00,0.00,14.96,0.00,6.98,0.00,19.41,0.00,4.19,0.00,21.50,0.00,5.91,0.00,20.15,0.00,2.86,0.00,16.24,0.00 +600340.SH,0.00,0.00,0.00,16.62,0.00,0.00,0.00,8.79,0.00,0.00,0.00,4.93,0.00,0.00,0.00,3.65,0.00,0.00,0.00,10.13,0.00 +300378.SZ,0.00,0.00,0.00,1.91,0.00,0.00,0.00,1.71,0.00,0.00,0.00,3.01,0.00,0.00,0.00,2.03,0.00,0.00,0.00,1.73,0.00 +300743.SZ,0.00,0.00,0.00,10.60,0.00,0.00,0.00,9.56,0.00,0.00,0.00,8.98,0.00,0.00,0.00,10.10,0.00,0.00,0.00,13.32,0.00 +300133.SZ,0.00,0.00,0.00,68.71,0.00,0.00,0.00,71.62,0.00,0.00,0.00,61.14,0.00,0.00,0.00,73.31,0.00,0.00,0.00,65.61,0.00 +002351.SZ,0.00,0.00,0.00,52.10,0.00,0.00,0.00,49.62,0.00,0.00,0.00,48.85,0.00,0.00,0.00,48.19,0.00,0.00,0.00,47.25,0.00 +002029.SZ,0.00,0.00,0.00,15.38,0.00,0.00,0.00,14.21,0.00,0.00,0.00,14.38,0.00,0.00,0.00,15.75,0.00,0.00,0.00,14.06,0.00 +300642.SZ,0.00,0.00,0.00,30.20,0.00,14.55,0.00,29.38,0.00,0.00,0.00,28.82,0.00,0.00,0.00,29.39,0.00,0.00,0.00,26.54,0.00 +002873.SZ,0.00,0.00,0.00,41.10,0.00,0.00,0.00,41.79,0.00,0.00,0.00,45.14,0.00,0.00,0.00,46.00,0.00,0.00,0.00,46.56,0.00 +603078.SH,0.00,0.00,0.00,45.39,0.00,0.00,0.00,35.22,0.00,0.00,0.00,29.79,0.00,0.00,0.00,30.68,0.00,0.00,0.00,41.83,0.00 +603839.SH,0.00,0.00,0.00,24.31,0.00,0.00,0.00,21.88,0.00,0.00,0.00,28.25,0.00,0.00,0.00,31.85,0.00,0.00,0.00,32.06,0.00 +000408.SZ,0.00,0.00,0.00,48.41,0.00,0.00,0.00,43.99,0.00,0.00,0.00,39.29,0.00,0.00,0.00,41.80,0.00,0.00,0.00,47.82,0.00 +603161.SH,0.00,0.00,0.00,92.03,0.00,0.00,0.00,89.82,0.00,0.00,0.00,90.39,0.00,0.00,0.00,92.03,0.00,0.00,0.00,85.22,0.00 +603697.SH,0.00,0.00,0.00,11.55,0.00,0.00,0.00,12.77,0.00,0.00,0.00,17.39,0.00,0.00,0.00,16.69,0.00,0.00,0.00,23.01,0.00 +688093.SH,0.00,0.00,0.00,77.97,0.00,0.00,0.00,77.38,0.00,0.00,0.00,74.80,0.00,0.00,0.00,77.53,0.00,0.00,0.00,67.70,0.00 +300782.SZ,0.00,0.00,0.00,80.85,0.00,0.00,0.00,72.92,0.00,0.00,0.00,78.10,0.00,0.00,0.00,76.37,0.00,0.00,0.00,77.05,0.00 +600784.SH,0.00,0.00,0.00,15.88,0.00,0.00,0.00,10.36,0.00,0.00,0.00,12.28,0.00,0.00,0.00,15.05,0.00,0.00,0.00,12.78,0.00 +301629.SZ,0.00,0.00,0.00,61.79,0.00,0.00,0.00,59.74,0.00,83.57,0.00,77.00,0.00,0.00,0.00,66.48,0.00,55.82,0.00,50.40,0.00 +301035.SZ,0.00,21.95,0.00,26.03,0.00,0.00,0.00,31.58,0.00,0.00,0.00,22.89,0.00,0.00,0.00,11.74,0.00,0.00,0.00,8.70,0.00 +600633.SH,0.00,0.00,0.00,12.32,0.00,0.00,0.00,15.74,0.00,0.00,0.00,4.57,0.00,0.00,0.00,15.84,0.00,0.00,0.00,17.54,0.00 +300259.SZ,0.00,0.00,0.00,8.00,0.00,0.00,0.00,9.59,0.00,0.00,0.00,7.22,0.00,0.00,0.00,11.85,0.00,0.00,0.00,11.86,0.00 +600280.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,2.18,0.00,0.00,0.00,2.00,0.00,0.00,0.00,0.86,0.00,0.00,0.00,2.98,0.00 +002419.SZ,0.00,0.00,0.00,0.83,0.00,0.00,0.00,1.20,0.00,0.00,0.00,1.63,0.00,0.00,0.00,1.85,0.00,0.00,0.00,1.83,0.00 +600779.SH,0.00,0.00,0.00,40.44,0.00,0.00,0.00,39.55,0.00,0.00,0.00,37.75,0.00,0.00,0.00,37.25,0.00,0.00,0.00,34.97,0.00 +002712.SZ,0.00,0.00,0.00,20.94,0.00,0.00,0.00,21.05,0.00,0.00,0.00,17.48,0.00,0.00,0.00,21.86,0.00,0.00,0.00,29.71,0.00 +002044.SZ,0.00,0.00,0.00,6.26,0.00,0.00,0.00,6.05,0.00,0.00,0.00,6.31,0.00,0.00,0.00,5.63,0.00,0.00,0.00,4.58,0.00 +600979.SH,0.00,0.00,0.00,14.79,0.00,0.00,0.00,16.65,0.00,0.00,0.00,17.06,0.00,0.00,0.00,19.80,0.00,0.00,0.00,15.29,0.00 +301081.SZ,0.00,13.36,0.00,12.26,0.00,12.43,0.00,10.40,0.00,0.00,0.00,14.23,0.00,0.00,0.00,15.24,0.00,0.00,0.00,12.37,0.00 +836699.BJ,0.00,0.00,0.00,80.29,0.00,0.00,0.00,75.42,75.65,70.60,71.56,68.20,0.00,64.98,0.00,64.21,0.00,66.88,0.00,68.10,0.00 +002758.SZ,0.00,0.00,0.00,1.97,0.00,0.00,0.00,3.06,0.00,0.00,0.00,3.22,0.00,0.00,0.00,2.43,0.00,0.00,0.00,2.04,0.00 +600179.SH,0.00,0.00,0.00,14.34,0.00,0.00,0.00,24.56,0.00,0.00,0.00,33.08,0.00,0.00,0.00,15.05,0.00,0.00,0.00,12.78,0.00 +002797.SZ,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +002674.SZ,0.00,0.00,0.00,14.52,0.00,0.00,0.00,23.19,0.00,0.00,0.00,18.72,0.00,0.00,0.00,23.64,0.00,0.00,0.00,24.10,0.00 +300072.SZ,0.00,0.00,0.00,48.72,0.00,0.00,0.00,46.77,0.00,0.00,0.00,34.20,0.00,0.00,0.00,44.88,0.00,0.00,0.00,39.29,0.00 +689009.SH,0.00,0.00,0.00,55.79,0.00,0.00,0.00,45.26,0.00,0.00,0.00,29.19,0.00,0.00,0.00,16.47,0.00,0.00,0.00,9.94,0.00 +301149.SZ,0.00,23.53,0.00,19.63,0.00,15.48,0.00,13.31,0.00,0.00,0.00,14.34,0.00,0.00,0.00,14.42,0.00,0.00,0.00,15.65,0.00 +301469.SZ,0.00,26.36,0.00,27.56,0.00,32.40,0.00,29.25,0.00,27.24,0.00,28.49,0.00,0.00,0.00,22.26,0.00,0.00,0.00,22.70,0.00 +300658.SZ,0.00,0.00,0.00,62.59,0.00,0.00,0.00,83.54,0.00,0.00,0.00,81.73,0.00,0.00,0.00,79.63,0.00,0.00,0.00,83.76,0.00 +688568.SH,0.00,0.00,0.00,47.25,0.00,0.00,0.00,24.52,0.00,0.00,0.00,23.77,0.00,0.00,0.00,16.22,0.00,0.00,0.00,12.01,0.00 +688603.SH,0.00,0.00,0.00,53.28,0.00,0.00,0.00,56.47,52.13,0.00,51.46,51.06,0.00,0.00,0.00,49.27,0.00,0.00,0.00,49.84,0.00 +600459.SH,0.00,0.00,0.00,18.82,0.00,0.00,0.00,21.77,0.00,0.00,0.00,17.11,0.00,0.00,0.00,18.92,0.00,0.00,0.00,21.89,0.00 +300207.SZ,0.00,0.00,0.00,62.27,0.00,0.00,0.00,58.28,0.00,0.00,0.00,57.07,0.00,0.00,0.00,47.81,0.00,0.00,0.00,44.34,0.00 +300991.SZ,0.00,52.26,0.00,51.26,0.00,0.00,0.00,48.68,0.00,0.00,0.00,44.65,0.00,0.00,0.00,44.35,0.00,0.00,0.00,46.16,0.00 +002888.SZ,0.00,0.00,0.00,33.58,0.00,0.00,0.00,32.04,0.00,0.00,0.00,37.80,0.00,0.00,0.00,32.90,0.00,0.00,0.00,34.95,0.00 +688049.SH,0.00,0.00,76.39,77.93,0.00,79.58,79.59,79.20,0.00,0.00,0.00,76.64,0.00,0.00,0.00,61.92,0.00,0.00,0.00,56.68,0.00 +600061.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +600072.SH,0.00,0.00,0.00,28.12,0.00,0.00,0.00,27.55,0.00,43.38,0.00,48.68,0.00,56.37,0.00,27.82,0.00,0.00,0.00,20.19,0.00 +002144.SZ,0.00,0.00,0.00,29.94,0.00,0.00,0.00,34.90,0.00,0.00,0.00,42.37,0.00,0.00,0.00,39.08,0.00,0.00,0.00,37.79,0.00 +001207.SZ,0.00,35.16,0.00,34.68,0.00,0.00,0.00,29.96,0.00,0.00,0.00,34.65,0.00,0.00,0.00,32.79,0.00,0.00,0.00,27.27,0.00 +688116.SH,0.00,0.00,0.00,65.29,0.00,0.00,0.00,67.71,0.00,0.00,0.00,63.89,0.00,0.00,0.00,64.13,0.00,0.00,0.00,65.98,0.00 +603291.SH,0.00,0.00,0.00,19.78,0.00,16.25,0.00,15.42,0.00,13.39,0.00,0.00,0.00,0.00,0.00,13.88,0.00,0.00,0.00,15.08,0.00 +002127.SZ,0.00,0.00,0.00,27.18,0.00,0.00,0.00,25.03,0.00,0.00,0.00,28.32,0.00,0.00,0.00,32.49,0.00,0.00,0.00,22.32,0.00 +603477.SH,0.00,0.00,0.00,32.57,0.00,0.00,0.00,30.78,0.00,0.00,0.00,31.87,0.00,0.00,0.00,37.87,0.00,0.00,0.00,28.62,0.00 +603903.SH,0.00,0.00,0.00,23.86,0.00,0.00,0.00,23.53,0.00,0.00,0.00,24.19,0.00,0.00,0.00,25.23,0.00,0.00,0.00,30.07,0.00 +002183.SZ,0.00,0.00,0.00,18.61,0.00,0.00,0.00,11.69,0.00,0.00,0.00,18.69,0.00,0.00,0.00,23.37,0.00,0.00,0.00,14.41,0.00 +301499.SZ,0.00,0.00,0.00,89.08,0.00,85.96,0.00,85.53,0.00,0.00,0.00,81.57,0.00,0.00,0.00,79.87,0.00,0.00,0.00,72.43,0.00 +000547.SZ,0.00,0.00,0.00,41.12,0.00,0.00,0.00,37.57,0.00,0.00,0.00,37.99,0.00,0.00,0.00,52.35,0.00,0.00,0.00,50.16,0.00 +300726.SZ,0.00,0.00,0.00,62.49,0.00,0.00,0.00,61.01,0.00,0.00,0.00,63.16,0.00,0.00,0.00,56.96,0.00,0.00,0.00,58.13,0.00 +603529.SH,0.00,0.00,0.00,10.30,0.00,0.00,0.00,6.83,0.00,0.00,0.00,4.97,0.00,0.00,0.00,6.65,0.00,0.00,0.00,5.70,0.00 +603103.SH,0.00,0.00,0.00,54.13,0.00,0.00,0.00,59.90,0.00,0.00,0.00,58.82,0.00,0.00,0.00,66.22,0.00,0.00,0.00,65.94,0.00 +300712.SZ,0.00,0.00,0.00,50.94,0.00,0.00,0.00,60.50,0.00,0.00,0.00,56.58,0.00,0.00,0.00,50.02,0.00,0.00,0.00,47.99,0.00 +301057.SZ,0.00,17.92,0.00,18.62,0.00,0.00,0.00,12.86,0.00,0.00,0.00,10.05,0.00,0.00,0.00,12.15,0.00,0.00,0.00,11.48,0.00 +603202.SH,0.00,0.00,0.00,76.16,0.00,0.00,0.00,73.25,0.00,0.00,0.00,84.73,0.00,0.00,0.00,83.13,0.00,85.57,0.00,83.87,0.00 +603013.SH,0.00,0.00,0.00,65.44,0.00,0.00,0.00,56.06,0.00,0.00,0.00,54.91,0.00,0.00,0.00,52.05,0.00,0.00,0.00,43.37,0.00 +688416.SH,0.00,0.00,0.00,45.97,0.00,37.50,0.00,33.53,0.00,0.00,0.00,32.93,0.00,0.00,0.00,30.79,0.00,0.00,0.00,29.88,0.00 +688718.SH,35.98,0.00,36.30,39.32,0.00,0.00,0.00,35.83,0.00,0.00,0.00,30.99,0.00,0.00,0.00,32.12,0.00,0.00,0.00,34.75,0.00 +300059.SZ,0.00,0.00,0.00,12.51,0.00,0.00,0.00,12.20,0.00,0.00,0.00,10.04,0.00,0.00,0.00,9.46,0.00,0.00,0.00,6.99,0.00 +301368.SZ,0.00,0.00,0.00,64.30,0.00,65.71,0.00,64.41,0.00,64.60,63.45,60.87,0.00,0.00,0.00,59.27,0.00,0.00,0.00,58.95,0.00 +603037.SH,0.00,0.00,0.00,36.40,0.00,0.00,0.00,33.00,0.00,0.00,0.00,30.90,0.00,0.00,0.00,37.70,0.00,0.00,0.00,50.74,0.00 +301397.SZ,0.00,0.00,0.00,73.79,0.00,73.34,0.00,74.67,0.00,69.75,0.00,68.77,77.87,0.00,0.00,68.07,0.00,0.00,0.00,67.47,0.00 +300483.SZ,0.00,0.00,0.00,83.80,0.00,0.00,0.00,81.87,0.00,0.00,0.00,87.79,0.00,0.00,0.00,90.34,0.00,0.00,0.00,80.37,0.00 +300622.SZ,0.00,0.00,0.00,11.92,0.00,0.00,0.00,16.48,0.00,0.00,0.00,19.13,0.00,0.00,0.00,22.09,0.00,0.00,0.00,26.27,0.00 +002011.SZ,0.00,0.00,0.00,32.75,0.00,0.00,0.00,40.90,0.00,0.00,0.00,40.30,0.00,0.00,0.00,42.70,0.00,0.00,0.00,44.84,0.00 +688276.SH,0.00,6.91,0.00,6.25,0.00,0.00,0.00,6.37,0.00,0.00,0.00,7.85,0.00,0.00,0.00,5.20,0.00,0.00,0.00,8.78,0.00 +000338.SZ,0.00,0.00,0.00,14.20,0.00,0.00,0.00,16.39,0.00,0.00,0.00,10.81,0.00,0.00,0.00,17.58,0.00,0.00,0.00,19.35,0.00 +002026.SZ,0.00,0.00,0.00,56.50,0.00,0.00,0.00,63.82,0.00,0.00,0.00,69.87,0.00,0.00,0.00,65.98,0.00,0.00,0.00,61.15,0.00 +003016.SZ,0.00,20.84,0.00,19.97,0.00,0.00,0.00,22.57,0.00,0.00,0.00,23.40,0.00,0.00,0.00,18.52,0.00,0.00,0.00,16.59,0.00 +000905.SZ,0.00,0.00,0.00,20.43,0.00,0.00,0.00,21.40,0.00,0.00,0.00,22.00,0.00,0.00,0.00,22.23,0.00,0.00,0.00,23.80,0.00 +002452.SZ,0.00,0.00,0.00,38.14,0.00,0.00,0.00,32.87,0.00,0.00,0.00,37.85,0.00,0.00,0.00,44.29,0.00,0.00,0.00,41.00,0.00 +001201.SZ,0.00,72.94,0.00,74.80,0.00,0.00,0.00,69.15,0.00,0.00,0.00,67.60,0.00,0.00,0.00,57.10,0.00,0.00,0.00,60.02,0.00 +000823.SZ,0.00,0.00,0.00,47.62,0.00,0.00,0.00,43.08,0.00,0.00,0.00,44.88,0.00,0.00,0.00,45.91,0.00,0.00,0.00,46.13,0.00 +688109.SH,0.00,7.71,0.00,20.92,0.00,0.00,0.00,21.51,0.00,0.00,0.00,22.08,0.00,0.00,0.00,22.69,0.00,0.00,0.00,21.36,0.00 +600199.SH,0.00,0.00,0.00,14.82,0.00,0.00,0.00,23.43,0.00,0.00,0.00,17.07,0.00,0.00,0.00,13.03,0.00,0.00,0.00,12.52,0.00 +002777.SZ,0.00,0.00,0.00,18.91,0.00,0.00,0.00,16.68,0.00,0.00,0.00,19.74,0.00,0.00,0.00,20.10,0.00,0.00,0.00,20.98,0.00 +600118.SH,0.00,0.00,0.00,73.74,0.00,0.00,0.00,71.31,0.00,0.00,0.00,73.46,0.00,0.00,0.00,74.16,0.00,0.00,0.00,0.00,0.00 +000665.SZ,0.00,0.00,0.00,17.51,0.00,0.00,0.00,15.33,0.00,0.00,0.00,15.61,0.00,0.00,0.00,11.80,0.00,0.00,0.00,11.17,0.00 +601236.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +002753.SZ,0.00,0.00,0.00,28.70,0.00,0.00,0.00,30.53,0.00,0.00,0.00,24.69,0.00,0.00,0.00,25.37,0.00,0.00,0.00,26.45,0.00 +300680.SZ,0.00,0.00,0.00,41.52,0.00,0.00,0.00,47.04,0.00,0.00,0.00,67.14,0.00,0.00,0.00,65.17,0.00,0.00,0.00,61.16,0.00 +603237.SH,0.00,0.00,0.00,16.69,0.00,10.28,0.00,16.75,0.00,14.27,0.00,19.97,0.00,0.00,0.00,18.47,0.00,0.00,0.00,19.15,0.00 +300564.SZ,0.00,0.00,0.00,40.01,0.00,0.00,0.00,38.26,0.00,0.00,0.00,34.92,0.00,0.00,0.00,36.84,0.00,0.00,0.00,39.52,0.00 +603097.SH,0.00,0.00,0.00,22.37,0.00,28.65,0.00,27.41,0.00,0.00,0.00,26.16,0.00,0.00,0.00,34.20,0.00,0.00,0.00,33.83,0.00 +003023.SZ,0.00,23.72,0.00,20.20,0.00,0.00,0.00,17.88,0.00,0.00,0.00,17.21,0.00,0.00,0.00,17.89,0.00,0.00,0.00,18.52,0.00 +600906.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +300443.SZ,0.00,0.00,0.00,70.48,0.00,0.00,0.00,73.59,0.00,0.00,0.00,57.78,0.00,0.00,0.00,56.82,0.00,0.00,0.00,49.71,0.00 +300272.SZ,0.00,0.00,0.00,9.20,0.00,0.00,0.00,10.32,0.00,0.00,0.00,14.93,0.00,0.00,0.00,13.03,0.00,0.00,0.00,16.04,0.00 +688179.SH,0.00,0.00,0.00,19.02,0.00,0.00,0.00,19.72,0.00,0.00,0.00,19.09,0.00,0.00,0.00,19.98,0.00,0.00,0.00,16.40,0.00 +688393.SH,7.80,0.00,0.00,10.94,0.00,0.00,0.00,12.08,0.00,0.00,0.00,11.01,0.00,0.00,0.00,11.74,0.00,0.00,0.00,9.13,0.00 +002051.SZ,0.00,0.00,0.00,13.28,0.00,0.00,0.00,22.92,0.00,0.00,0.00,27.74,0.00,0.00,0.00,36.54,0.00,0.00,0.00,41.03,0.00 +300527.SZ,0.00,0.00,0.00,76.04,0.00,0.00,0.00,62.36,0.00,0.00,0.00,65.38,0.00,0.00,0.00,41.51,0.00,0.00,0.00,61.95,0.00 +000702.SZ,0.00,0.00,0.00,6.90,0.00,0.00,0.00,9.23,0.00,0.00,0.00,11.95,0.00,0.00,0.00,13.09,0.00,0.00,0.00,19.45,0.00 +002249.SZ,0.00,0.00,0.00,30.73,0.00,0.00,0.00,31.49,0.00,0.00,0.00,31.55,0.00,0.00,0.00,34.80,0.00,0.00,0.00,35.58,0.00 +300389.SZ,0.00,0.00,0.00,5.68,0.00,0.00,0.00,6.98,0.00,0.00,0.00,8.82,0.00,0.00,0.00,11.17,0.00,0.00,0.00,15.77,0.00 +002423.SZ,0.00,0.00,0.00,5.53,0.00,0.00,0.00,46.45,0.00,0.00,0.00,7.69,0.00,0.00,0.00,4.57,0.00,0.00,0.00,2.61,0.00 +000554.SZ,0.00,0.00,0.00,0.00,0.00,0.00,0.00,13.96,0.00,0.00,0.00,12.07,0.00,0.00,0.00,10.81,0.00,0.00,0.00,5.74,0.00 +600168.SH,0.00,0.00,0.00,98.73,0.00,0.00,0.00,85.73,0.00,0.00,0.00,60.29,0.00,0.00,0.00,85.96,0.00,0.00,0.00,88.11,0.00 +600547.SH,0.00,0.00,0.00,93.94,0.00,0.00,0.00,56.07,0.00,0.00,0.00,77.19,0.00,0.00,0.00,80.21,0.00,0.00,0.00,75.93,0.00 +002303.SZ,0.00,0.00,0.00,19.43,0.00,0.00,0.00,16.23,0.00,0.00,0.00,15.16,0.00,0.00,0.00,19.24,0.00,0.00,0.00,20.44,0.00 +001336.SZ,0.00,0.00,0.00,29.25,0.00,35.58,0.00,19.00,51.71,0.00,0.00,22.05,0.00,0.00,0.00,22.57,0.00,0.00,0.00,18.55,0.00 +001360.SZ,0.00,0.00,0.00,28.65,0.00,0.00,0.00,28.10,0.00,36.71,0.00,0.00,0.00,0.00,0.00,26.83,0.00,0.00,0.00,32.11,0.00 +300474.SZ,0.00,0.00,0.00,89.16,0.00,0.00,0.00,75.91,0.00,0.00,0.00,65.32,0.00,0.00,0.00,76.82,0.00,0.00,0.00,58.54,0.00 +002802.SZ,0.00,0.00,0.00,47.61,0.00,0.00,0.00,58.72,0.00,0.00,0.00,48.91,0.00,0.00,0.00,32.27,0.00,0.00,0.00,42.94,0.00 +300624.SZ,0.00,0.00,0.00,75.67,0.00,0.00,0.00,67.56,0.00,0.00,0.00,66.31,0.00,0.00,0.00,66.96,0.00,0.00,0.00,68.33,0.00 +301395.SZ,0.00,0.00,0.00,38.59,0.00,39.98,0.00,36.53,0.00,0.00,0.00,33.30,0.00,0.00,0.00,38.43,0.00,0.00,0.00,41.36,0.00 +600857.SH,0.00,0.00,0.00,26.95,0.00,0.00,0.00,20.16,0.00,0.00,0.00,16.77,0.00,0.00,0.00,14.60,0.00,0.00,0.00,11.48,0.00 +605287.SH,0.00,0.00,0.00,20.31,19.74,0.00,0.00,18.68,0.00,0.00,0.00,6.95,0.00,0.00,0.00,37.82,0.00,0.00,0.00,32.69,0.00 +000927.SZ,0.00,0.00,0.00,60.72,0.00,0.00,0.00,59.80,0.00,0.00,0.00,64.01,0.00,0.00,0.00,68.83,0.00,0.00,0.00,72.26,0.00 +600540.SH,0.00,0.00,0.00,38.26,0.00,0.00,0.00,36.69,0.00,0.00,0.00,10.70,0.00,0.00,0.00,55.75,0.00,0.00,0.00,28.38,0.00 +000599.SZ,0.00,0.00,0.00,60.05,0.00,0.00,0.00,21.93,0.00,0.00,0.00,19.83,0.00,0.00,0.00,22.18,0.00,0.00,0.00,22.69,0.00 +300586.SZ,0.00,0.00,0.00,14.76,0.00,0.00,0.00,22.36,0.00,0.00,0.00,25.88,0.00,0.00,0.00,20.59,0.00,0.00,0.00,21.24,0.00 +603173.SH,0.00,0.00,0.00,62.87,0.00,57.06,0.00,42.10,0.00,42.39,0.00,34.11,0.00,0.00,0.00,34.60,0.00,0.00,0.00,34.27,0.00 +300396.SZ,0.00,0.00,0.00,13.91,0.00,0.00,0.00,16.67,0.00,0.00,0.00,20.38,0.00,0.00,0.00,15.50,0.00,0.00,0.00,26.13,0.00 +000952.SZ,0.00,0.00,0.00,16.85,0.00,0.00,0.00,32.32,0.00,0.00,0.00,46.91,0.00,0.00,0.00,30.13,0.00,0.00,0.00,21.68,0.00 +300013.SZ,0.00,0.00,0.00,27.67,0.00,0.00,0.00,41.81,0.00,0.00,0.00,44.67,0.00,0.00,0.00,41.69,0.00,0.00,0.00,44.03,0.00 +600495.SH,0.00,0.00,0.00,68.95,0.00,0.00,0.00,72.41,0.00,0.00,0.00,68.58,0.00,0.00,0.00,69.49,0.00,0.00,0.00,66.02,0.00 +603867.SH,0.00,0.00,0.00,19.02,0.00,0.00,0.00,23.92,0.00,0.00,0.00,25.12,0.00,0.00,0.00,22.82,0.00,0.00,0.00,23.05,0.00 +688229.SH,0.00,0.00,0.00,30.64,0.00,0.00,0.00,27.27,0.00,0.00,0.00,26.13,0.00,0.00,0.00,19.41,0.00,0.00,0.00,20.06,0.00 +600593.SH,0.00,0.00,0.00,28.36,0.00,0.00,0.00,36.31,0.00,0.00,0.00,30.59,0.00,0.00,0.00,31.82,0.00,0.00,0.00,28.80,0.00 +603021.SH,0.00,0.00,0.00,10.05,0.00,0.00,0.00,8.64,0.00,0.00,0.00,14.25,0.00,0.00,0.00,14.64,0.00,0.00,0.00,19.00,0.00 +603566.SH,0.00,0.00,0.00,8.11,0.00,0.00,0.00,8.03,0.00,0.00,0.00,7.86,0.00,0.00,0.00,7.01,0.00,0.00,0.00,8.33,0.00 +002926.SZ,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +603589.SH,0.00,0.00,0.00,13.80,0.00,0.00,0.00,13.12,0.00,0.00,0.00,19.84,0.00,0.00,0.00,13.97,0.00,0.00,0.00,15.37,0.00 +601599.SH,0.00,0.00,0.00,31.64,0.00,0.00,0.00,18.74,0.00,0.00,0.00,20.51,0.00,0.00,0.00,17.17,0.00,0.00,0.00,21.30,0.00 +300710.SZ,0.00,0.00,0.00,31.51,0.00,0.00,0.00,53.48,0.00,0.00,0.00,44.24,0.00,0.00,0.00,53.73,0.00,0.00,0.00,64.81,0.00 +603708.SH,0.00,0.00,0.00,0.96,0.00,0.00,0.00,0.51,0.00,0.00,0.00,1.03,0.00,0.00,0.00,1.82,0.00,0.00,0.00,12.72,0.00 +600895.SH,0.00,0.00,0.00,10.53,0.00,0.00,0.00,60.89,0.00,0.00,0.00,59.97,0.00,0.00,0.00,50.44,0.00,0.00,0.00,48.18,0.00 +300621.SZ,0.00,0.00,0.00,24.14,0.00,0.00,0.00,80.64,0.00,0.00,0.00,87.57,0.00,0.00,0.00,87.38,0.00,0.00,0.00,86.53,0.00 +601633.SH,0.00,0.00,0.00,10.17,0.00,0.00,0.00,9.46,0.00,0.00,0.00,7.31,0.00,0.00,0.00,6.25,0.00,0.00,0.00,4.90,0.00 +300194.SZ,0.00,0.00,0.00,8.40,0.00,10.34,0.00,7.32,0.00,0.00,0.00,11.44,0.00,12.23,0.00,10.82,0.00,0.00,0.00,14.06,0.00 +688291.SH,0.00,0.00,0.00,23.84,0.00,26.26,0.00,24.65,0.00,0.00,0.00,21.87,0.00,0.00,0.00,21.83,0.00,0.00,0.00,19.92,0.00 +605177.SH,0.00,42.17,0.00,42.34,0.00,45.82,0.00,39.27,0.00,39.55,0.00,37.28,0.00,43.40,0.00,41.46,0.00,44.96,0.00,40.97,0.00 +600885.SH,0.00,0.00,0.00,18.10,0.00,0.00,0.00,21.92,0.00,0.00,0.00,18.60,0.00,0.00,0.00,19.90,0.00,0.00,0.00,23.37,0.00 +603350.SH,0.00,0.00,0.00,71.20,0.00,0.00,0.00,70.66,0.00,73.36,0.00,73.76,0.00,83.76,0.00,85.28,0.00,0.00,0.00,77.31,0.00 +300334.SZ,0.00,0.00,0.00,35.23,0.00,0.00,0.00,47.01,0.00,0.00,0.00,49.91,0.00,0.00,0.00,39.96,0.00,0.00,0.00,33.61,0.00 +688510.SH,0.00,91.43,0.00,88.29,0.00,0.00,0.00,92.90,0.00,0.00,0.00,94.77,0.00,0.00,0.00,90.26,0.00,0.00,0.00,87.51,0.00 +301015.SZ,0.00,27.19,0.00,30.80,21.40,0.00,0.00,23.70,0.00,0.00,0.00,24.15,0.00,0.00,0.00,24.49,0.00,0.00,0.00,26.78,0.00 +301287.SZ,0.00,0.00,0.00,58.32,0.00,59.98,0.00,57.74,0.00,67.34,0.00,56.83,53.08,0.00,0.00,35.39,0.00,0.00,0.00,35.17,0.00 +300684.SZ,0.00,0.00,0.00,59.53,0.00,0.00,0.00,54.63,0.00,0.00,0.00,67.37,0.00,0.00,0.00,56.78,0.00,0.00,0.00,65.30,0.00 +688015.SH,0.00,0.00,0.00,37.53,0.00,0.00,0.00,46.51,0.00,0.00,0.00,52.15,0.00,0.00,0.00,61.37,0.00,0.00,0.00,53.73,0.00 +600527.SH,0.00,0.00,0.00,32.45,0.00,0.00,0.00,49.49,0.00,0.00,0.00,45.76,0.00,0.00,0.00,49.91,0.00,0.00,0.00,37.81,0.00 +300660.SZ,0.00,0.00,0.00,39.90,0.00,0.00,0.00,36.50,0.00,0.00,0.00,32.05,0.00,0.00,0.00,33.77,0.00,0.00,0.00,32.67,0.00 +600586.SH,0.00,0.00,0.00,8.37,0.00,0.00,0.00,22.98,0.00,0.00,0.00,13.00,0.00,0.00,0.00,11.37,0.00,0.00,0.00,14.50,0.00 +301068.SZ,0.00,63.94,0.00,57.17,0.00,0.00,0.00,58.94,0.00,0.00,0.00,51.33,0.00,0.00,0.00,42.82,0.00,0.00,0.00,55.55,0.00 +301215.SZ,0.00,60.59,0.00,59.51,0.00,60.42,0.00,57.82,0.00,0.00,0.00,57.56,0.00,0.00,0.00,60.82,0.00,0.00,0.00,62.34,0.00 +603259.SH,0.00,0.00,0.00,18.80,0.00,0.00,0.00,15.99,0.00,0.00,0.00,36.26,0.00,0.00,0.00,30.41,0.00,0.00,0.00,33.16,0.00 +600617.SH,0.00,0.00,0.00,29.33,0.00,0.00,0.00,27.87,0.00,0.00,0.00,31.68,0.00,0.00,0.00,31.94,0.00,0.00,0.00,35.09,0.00 +688308.SH,0.00,15.02,15.30,15.22,0.00,0.00,0.00,16.62,0.00,0.00,0.00,18.46,0.00,0.00,0.00,17.01,0.00,0.00,0.00,17.92,0.00 +301386.SZ,0.00,0.00,0.00,67.01,0.00,62.11,0.00,57.10,0.00,54.90,0.00,59.55,0.00,0.00,0.00,64.91,0.00,0.00,0.00,58.34,0.00 +603876.SH,0.00,0.00,0.00,18.92,0.00,0.00,0.00,23.29,0.00,0.00,0.00,23.91,0.00,0.00,0.00,28.22,0.00,0.00,0.00,24.56,0.00 +300203.SZ,0.00,0.00,0.00,5.84,0.00,0.00,0.00,5.04,0.00,0.00,0.00,5.77,0.00,0.00,0.00,5.35,0.00,0.00,0.00,6.89,0.00 +603329.SH,0.00,0.00,0.00,39.04,0.00,32.70,0.00,27.39,0.00,24.95,0.00,22.86,0.00,28.85,0.00,32.08,0.00,38.71,0.00,61.92,0.00 +301110.SZ,0.00,52.86,0.00,41.99,0.00,37.73,0.00,41.97,0.00,0.00,0.00,33.56,0.00,0.00,0.00,35.00,0.00,0.00,0.00,30.45,0.00 +600497.SH,0.00,0.00,0.00,31.06,0.00,0.00,0.00,32.40,0.00,0.00,0.00,28.61,0.00,0.00,0.00,16.99,0.00,0.00,0.00,23.34,0.00 +603207.SH,0.00,0.00,0.00,57.01,0.00,0.00,0.00,60.76,0.00,62.46,0.00,61.92,0.00,0.00,0.00,62.17,0.00,0.00,0.00,59.37,0.00 +000739.SZ,0.00,0.00,0.00,11.08,0.00,0.00,0.00,13.61,0.00,0.00,0.00,11.61,0.00,0.00,0.00,15.71,0.00,0.00,0.00,14.61,0.00 +300211.SZ,0.00,0.00,0.00,17.07,0.00,52.50,0.00,73.93,0.00,0.00,0.00,81.59,0.00,74.22,0.00,69.75,0.00,42.89,0.00,66.84,0.00 +300633.SZ,0.00,0.00,0.00,6.99,0.00,0.00,0.00,7.38,0.00,0.00,0.00,12.00,0.00,0.00,0.00,7.74,0.00,0.00,0.00,8.79,0.00 +002563.SZ,0.00,0.00,0.00,3.88,0.00,0.00,0.00,4.88,0.00,0.00,0.00,4.47,0.00,0.00,0.00,2.63,0.00,0.00,0.00,2.71,0.00 +002246.SZ,0.00,0.00,0.00,36.11,0.00,0.00,0.00,26.94,0.00,0.00,0.00,22.39,0.00,0.00,0.00,41.01,0.00,0.00,0.00,44.55,0.00 +600052.SH,0.00,0.00,0.00,83.98,0.00,0.00,0.00,58.38,0.00,0.00,0.00,16.73,0.00,0.00,0.00,11.25,0.00,0.00,0.00,16.10,0.00 +002501.SZ,0.00,0.00,0.00,98.47,0.00,0.00,0.00,71.91,0.00,0.00,0.00,72.59,0.00,0.00,0.00,55.19,0.00,0.00,0.00,59.57,0.00 +601992.SH,0.00,0.00,0.00,5.16,0.00,0.00,0.00,3.15,0.00,0.00,0.00,3.88,0.00,0.00,0.00,7.22,0.00,0.00,0.00,9.98,0.00 +300314.SZ,0.00,0.00,0.00,17.26,0.00,0.00,0.00,21.11,0.00,0.00,0.00,16.91,0.00,0.00,0.00,14.97,0.00,0.00,0.00,15.06,0.00 +603816.SH,0.00,0.00,0.00,11.85,0.00,0.00,0.00,7.08,0.00,0.00,0.00,7.39,0.00,0.00,0.00,8.46,0.00,0.00,0.00,10.50,0.00 +688108.SH,0.00,0.00,0.00,15.86,0.00,0.00,0.00,20.73,0.00,0.00,0.00,16.52,0.00,0.00,0.00,51.66,0.00,0.00,0.00,48.85,0.00 +002363.SZ,0.00,0.00,0.00,47.06,0.00,0.00,0.00,51.37,0.00,0.00,0.00,46.81,0.00,0.00,0.00,54.48,0.00,0.00,0.00,56.30,0.00 +002015.SZ,0.00,0.00,0.00,70.67,0.00,0.00,0.00,59.15,0.00,0.00,0.00,54.50,0.00,0.00,0.00,54.57,0.00,0.00,0.00,49.71,0.00 +000863.SZ,0.00,0.00,0.00,5.23,0.00,0.00,0.00,6.09,0.00,0.00,0.00,9.33,0.00,0.00,0.00,18.32,0.00,0.00,0.00,15.05,0.00 +002959.SZ,0.00,0.00,0.00,39.47,0.00,0.00,0.00,41.84,0.00,0.00,0.00,37.43,0.00,0.00,0.00,36.64,0.00,0.00,0.00,30.21,0.00 +603353.SH,0.00,0.00,0.00,8.92,0.00,0.00,0.00,25.76,0.00,0.00,0.00,32.42,0.00,0.00,0.00,17.97,0.00,0.00,0.00,12.95,0.00 +300834.SZ,0.00,0.00,0.00,28.82,0.00,31.30,0.00,32.20,0.00,0.00,0.00,29.37,0.00,0.00,0.00,26.52,0.00,0.00,0.00,22.65,0.00 +603806.SH,0.00,0.00,0.00,57.33,0.00,0.00,0.00,5.66,0.00,0.00,0.00,49.53,0.00,0.00,0.00,50.75,0.00,0.00,0.00,38.53,0.00 +603878.SH,0.00,0.00,0.00,33.04,0.00,0.00,0.00,39.66,0.00,0.00,0.00,28.22,0.00,0.00,0.00,27.13,0.00,0.00,0.00,35.29,0.00 +600438.SH,0.00,0.00,0.00,23.33,0.00,0.00,0.00,26.94,0.00,0.00,0.00,37.56,0.00,0.00,0.00,29.05,0.00,0.00,0.00,16.93,0.00 +603186.SH,0.00,0.00,0.00,19.78,0.00,0.00,0.00,17.51,0.00,0.00,0.00,15.53,0.00,0.00,0.00,16.26,0.00,0.00,0.00,16.92,0.00 +603817.SH,0.00,0.00,0.00,81.96,0.00,0.00,0.00,76.33,0.00,0.00,0.00,74.95,0.00,0.00,0.00,68.31,0.00,0.00,0.00,75.32,0.00 +603887.SH,0.00,0.00,0.00,41.50,0.00,0.00,0.00,39.40,0.00,0.00,0.00,38.65,0.00,0.00,0.00,60.77,0.00,0.00,0.00,48.43,0.00 +600851.SH,0.00,0.00,0.00,8.43,0.00,0.00,0.00,17.26,0.00,0.00,0.00,15.37,0.00,0.00,0.00,15.86,0.00,0.00,0.00,23.79,0.00 +300761.SZ,0.00,0.00,0.00,4.87,0.00,0.00,0.00,3.92,0.00,0.00,0.00,4.25,0.00,0.00,0.00,4.27,0.00,0.00,0.00,5.95,0.00 +600824.SH,0.00,0.00,0.00,34.41,0.00,0.00,0.00,28.91,0.00,0.00,0.00,26.90,0.00,0.00,0.00,30.55,0.00,0.00,0.00,19.75,0.00 +688019.SH,0.00,0.00,0.00,84.99,0.00,0.00,0.00,84.45,0.00,0.00,0.00,82.46,0.00,0.00,0.00,80.48,0.00,0.00,0.00,74.67,0.00 +002594.SZ,0.00,0.00,0.00,33.56,0.00,0.00,0.00,33.00,0.00,0.00,0.00,18.86,0.00,0.00,0.00,17.34,0.00,0.00,0.00,18.35,0.00 +300837.SZ,0.00,0.00,0.00,31.32,0.00,0.00,0.00,31.06,0.00,0.00,0.00,26.85,0.00,0.00,0.00,31.82,0.00,0.00,0.00,51.34,0.00 +301053.SZ,0.00,27.52,0.00,20.04,0.00,0.00,0.00,18.36,0.00,0.00,0.00,23.82,0.00,0.00,0.00,23.18,0.00,0.00,0.00,21.86,0.00 +600371.SH,0.00,0.00,0.00,10.57,0.00,0.00,0.00,9.10,0.00,0.00,0.00,7.66,0.00,0.00,0.00,10.22,0.00,0.00,0.00,9.47,0.00 +301138.SZ,0.00,47.64,0.00,41.07,0.00,51.01,50.10,47.81,0.00,0.00,0.00,56.76,0.00,0.00,0.00,41.61,0.00,0.00,0.00,44.04,0.00 +600759.SH,0.00,0.00,0.00,96.84,0.00,0.00,0.00,86.05,0.00,0.00,0.00,76.83,0.00,0.00,0.00,81.05,0.00,0.00,0.00,70.73,0.00 +603281.SH,0.00,0.00,0.00,26.80,31.52,0.00,28.28,26.66,0.00,30.06,29.96,6.66,0.00,0.00,0.00,29.68,0.00,0.00,0.00,28.74,0.00 +000156.SZ,0.00,0.00,0.00,4.92,0.00,0.00,0.00,4.72,0.00,0.00,0.00,5.11,0.00,0.00,0.00,5.82,0.00,0.00,0.00,5.04,0.00 +000531.SZ,0.00,0.00,0.00,62.38,0.00,0.00,0.00,66.21,0.00,0.00,0.00,74.16,0.00,0.00,0.00,80.46,0.00,0.00,0.00,79.20,0.00 +600702.SH,0.00,0.00,0.00,11.05,0.00,0.00,0.00,9.77,0.00,0.00,0.00,8.79,0.00,0.00,0.00,7.56,0.00,0.00,0.00,8.53,0.00 +605011.SH,0.00,0.00,0.00,40.91,43.24,0.00,0.00,39.09,0.00,0.00,0.00,35.67,0.00,0.00,0.00,36.94,0.00,0.00,0.00,37.74,0.00 +301269.SZ,0.00,0.00,0.00,50.07,0.00,50.64,0.00,45.39,0.00,0.00,0.00,37.27,0.00,0.00,0.00,48.78,0.00,0.00,0.00,50.19,0.00 +603728.SH,0.00,0.00,0.00,14.07,0.00,0.00,0.00,15.01,0.00,0.00,0.00,16.89,0.00,0.00,0.00,16.00,0.00,0.00,0.00,14.23,0.00 +300926.SZ,0.00,51.36,51.51,53.88,0.00,0.00,0.00,53.05,0.00,0.00,0.00,54.37,0.00,0.00,0.00,71.92,0.00,0.00,0.00,70.85,0.00 +601566.SH,0.00,0.00,0.00,12.83,0.00,0.00,0.00,11.47,0.00,0.00,0.00,10.27,0.00,0.00,0.00,7.16,0.00,0.00,0.00,6.88,0.00 +001296.SZ,0.00,0.00,0.00,0.00,0.00,0.00,0.00,28.96,0.00,0.00,0.00,32.44,0.00,0.00,0.00,32.15,0.00,0.00,0.00,30.88,0.00 +002479.SZ,0.00,0.00,0.00,27.50,0.00,0.00,0.00,21.65,0.00,0.00,0.00,20.71,0.00,0.00,0.00,22.32,0.00,0.00,0.00,20.34,0.00 +600748.SH,0.00,0.00,0.00,16.14,0.00,0.00,0.00,3.21,0.00,0.00,0.00,2.84,0.00,0.00,0.00,26.22,0.00,0.00,0.00,16.47,0.00 +002050.SZ,0.00,0.00,0.00,35.43,0.00,0.00,0.00,34.98,0.00,0.00,0.00,35.94,0.00,0.00,0.00,35.51,0.00,0.00,0.00,32.89,0.00 +002731.SZ,0.00,0.00,0.00,37.53,0.00,0.00,0.00,29.12,0.00,0.00,0.00,58.66,0.00,0.00,0.00,41.01,0.00,0.00,0.00,37.90,0.00 +300781.SZ,0.00,0.00,0.00,55.24,0.00,0.00,0.00,43.11,0.00,0.00,0.00,40.01,0.00,0.00,0.00,38.97,0.00,0.00,0.00,32.08,0.00 +300413.SZ,0.00,0.00,0.00,35.48,0.00,0.00,0.00,39.60,0.00,0.00,0.00,35.26,0.00,0.00,0.00,32.40,0.00,0.00,0.00,31.31,0.00 +603709.SH,0.00,0.00,0.00,20.99,0.00,0.00,0.00,26.07,0.00,0.00,0.00,24.35,0.00,0.00,0.00,38.55,0.00,0.00,0.00,48.29,0.00 +688610.SH,0.00,0.00,0.00,92.20,0.00,0.00,0.00,68.70,0.00,61.94,0.00,54.47,0.00,0.00,0.00,47.07,0.00,0.00,0.00,37.23,0.00 +301021.SZ,0.00,37.60,0.00,39.53,0.00,0.00,0.00,42.75,0.00,0.00,0.00,35.20,0.00,0.00,0.00,31.36,0.00,0.00,0.00,27.84,0.00 +688127.SH,0.00,70.63,0.00,68.10,0.00,0.00,0.00,48.73,0.00,0.00,0.00,41.92,0.00,0.00,0.00,68.00,0.00,0.00,0.00,69.15,0.00 +688486.SH,0.00,49.24,0.00,36.58,0.00,0.00,0.00,34.81,0.00,41.61,0.00,46.98,0.00,0.00,0.00,49.36,0.00,0.00,0.00,51.60,0.00 +300629.SZ,0.00,0.00,0.00,55.63,0.00,0.00,0.00,87.53,0.00,0.00,0.00,88.21,0.00,0.00,0.00,88.15,0.00,0.00,0.00,86.91,0.00 +600511.SH,0.00,0.00,0.00,9.17,0.00,0.00,0.00,9.47,0.00,0.00,0.00,10.08,0.00,0.00,0.00,12.13,0.00,0.00,0.00,12.96,0.00 +300354.SZ,0.00,0.00,0.00,9.56,0.00,0.00,0.00,9.97,0.00,0.00,0.00,9.91,0.00,0.00,0.00,9.22,0.00,0.00,0.00,19.24,0.00 +603937.SH,0.00,0.00,0.00,12.52,0.00,0.00,0.00,15.57,0.00,0.00,0.00,22.14,0.00,0.00,0.00,21.74,0.00,0.00,0.00,19.08,0.00 +300381.SZ,0.00,0.00,0.00,11.43,0.00,0.00,0.00,19.94,0.00,0.00,0.00,17.77,0.00,0.00,0.00,14.58,0.00,0.00,0.00,13.75,0.00 +605300.SH,0.00,27.72,28.91,0.00,0.00,0.00,0.00,34.57,0.00,0.00,0.00,40.82,0.00,0.00,0.00,38.16,0.00,0.00,0.00,23.33,0.00 +603776.SH,0.00,0.00,0.00,21.27,0.00,0.00,0.00,22.07,0.00,0.00,0.00,24.66,0.00,0.00,0.00,19.73,0.00,0.00,0.00,23.63,0.00 +603035.SH,0.00,0.00,0.00,58.93,0.00,0.00,0.00,58.59,0.00,0.00,0.00,48.39,0.00,0.00,0.00,49.45,0.00,0.00,0.00,58.86,0.00 +002601.SZ,0.00,0.00,0.00,11.04,0.00,0.00,0.00,16.83,0.00,0.00,0.00,14.75,0.00,0.00,0.00,9.39,0.00,0.00,0.00,8.50,0.00 +300317.SZ,0.00,0.00,0.00,69.01,0.00,0.00,0.00,74.95,0.00,0.00,0.00,78.27,0.00,0.00,0.00,84.53,0.00,0.00,0.00,62.09,0.00 +603577.SH,0.00,0.00,0.00,25.56,0.00,0.00,0.00,26.21,0.00,0.00,0.00,38.38,0.00,0.00,0.00,74.99,0.00,0.00,0.00,66.87,0.00 +301181.SZ,0.00,89.24,0.00,89.38,0.00,85.94,0.00,86.77,0.00,0.00,0.00,85.81,0.00,0.00,0.00,80.24,0.00,0.00,0.00,79.24,0.00 +300143.SZ,0.00,0.00,0.00,28.24,0.00,0.00,0.00,4.04,0.00,0.00,0.00,11.92,0.00,0.00,0.00,5.95,0.00,0.00,0.00,6.14,0.00 +002405.SZ,0.00,0.00,0.00,40.01,0.00,0.00,0.00,33.08,0.00,0.00,0.00,24.37,0.00,0.00,0.00,33.71,0.00,0.00,0.00,36.06,0.00 +000403.SZ,0.00,0.00,0.00,11.36,0.00,0.00,0.00,15.47,0.00,0.00,0.00,14.84,0.00,0.00,0.00,14.41,0.00,0.00,0.00,11.61,0.00 +688289.SH,0.00,0.00,0.00,32.04,0.00,0.00,0.00,29.81,0.00,0.00,0.00,15.03,0.00,0.00,0.00,15.41,0.00,0.00,0.00,16.78,0.00 +600526.SH,0.00,0.00,0.00,19.32,0.00,0.00,0.00,29.11,0.00,0.00,0.00,18.74,0.00,0.00,0.00,28.13,0.00,0.00,0.00,27.03,0.00 +600000.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +688020.SH,0.00,0.00,0.00,51.23,0.00,0.00,0.00,47.20,0.00,0.00,0.00,42.74,0.00,0.00,0.00,36.33,0.00,0.00,0.00,36.06,0.00 +002316.SZ,0.00,0.00,0.00,8.40,0.00,0.00,0.00,13.96,0.00,0.00,0.00,17.30,0.00,0.00,0.00,29.80,0.00,0.00,0.00,21.85,0.00 +833575.BJ,0.00,100.00,0.00,100.00,0.00,97.25,0.00,100.00,100.00,0.00,100.00,100.00,0.00,0.00,0.00,100.00,0.00,0.00,0.00,96.09,0.00 +601878.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +600834.SH,0.00,0.00,0.00,81.79,0.00,0.00,0.00,9.44,0.00,0.00,0.00,81.67,0.00,0.00,0.00,77.32,0.00,0.00,0.00,62.49,0.00 +301119.SZ,0.00,44.86,0.00,46.26,0.00,43.31,43.66,44.08,0.00,0.00,0.00,47.21,0.00,0.00,0.00,44.84,0.00,0.00,0.00,45.16,0.00 +000159.SZ,0.00,0.00,0.00,67.18,0.00,0.00,0.00,50.70,0.00,0.00,0.00,31.39,0.00,0.00,0.00,38.53,0.00,0.00,0.00,44.68,0.00 +601199.SH,0.00,0.00,0.00,9.99,0.00,0.00,0.00,12.03,0.00,0.00,0.00,19.29,0.00,0.00,0.00,18.60,0.00,0.00,0.00,24.48,0.00 +001376.SZ,0.00,52.10,0.00,49.16,55.84,0.00,46.53,45.21,0.00,0.00,0.00,43.45,0.00,46.76,0.00,44.93,0.00,0.00,0.00,43.75,0.00 +601601.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +605598.SH,0.00,69.05,0.00,66.75,0.00,0.00,0.00,43.74,0.00,0.00,0.00,30.23,0.00,0.00,0.00,37.75,0.00,0.00,0.00,38.81,0.00 +600272.SH,0.00,0.00,0.00,11.27,0.00,0.00,0.00,13.27,0.00,0.00,0.00,33.67,0.00,0.00,0.00,29.18,0.00,0.00,0.00,44.41,0.00 +301005.SZ,0.00,46.09,0.00,43.10,33.26,0.00,0.00,40.31,0.00,0.00,0.00,38.28,0.00,0.00,0.00,30.00,0.00,0.00,0.00,33.49,0.00 +000819.SZ,0.00,0.00,0.00,49.20,0.00,0.00,0.00,57.64,0.00,0.00,0.00,60.89,0.00,0.00,0.00,70.16,0.00,0.00,0.00,61.47,0.00 +688096.SH,0.00,0.00,0.00,63.48,0.00,0.00,0.00,68.85,0.00,0.00,0.00,63.91,0.00,0.00,0.00,53.75,0.00,0.00,0.00,57.87,0.00 +002871.SZ,0.00,0.00,0.00,21.21,0.00,24.74,0.00,23.07,0.00,0.00,0.00,23.81,0.00,0.00,0.00,29.16,0.00,0.00,0.00,22.79,0.00 +300829.SZ,0.00,0.00,0.00,18.93,0.00,5.67,0.00,22.65,0.00,6.90,0.00,16.48,0.00,4.19,0.00,14.78,0.00,5.31,0.00,17.57,0.00 +688105.SH,0.00,43.18,0.00,43.77,0.00,47.09,0.00,38.87,0.00,0.00,0.00,34.82,0.00,0.00,0.00,4.64,0.00,0.00,0.00,5.93,0.00 +920029.BJ,0.00,0.00,0.00,83.01,0.00,0.00,0.00,73.86,0.00,0.00,0.00,68.99,0.00,62.72,0.00,55.85,0.00,42.86,0.00,46.58,0.00 +300441.SZ,0.00,0.00,0.00,9.33,0.00,0.00,0.00,8.41,0.00,6.27,0.00,6.14,0.00,12.21,0.00,13.80,0.00,17.01,0.00,16.76,0.00 +301102.SZ,40.79,33.55,0.00,28.89,0.00,29.39,0.00,23.37,0.00,0.00,0.00,24.39,0.00,0.00,0.00,23.66,0.00,0.00,0.00,22.03,0.00 +301150.SZ,0.00,39.29,0.00,41.78,0.00,52.86,0.00,0.00,0.00,0.00,0.00,64.72,0.00,0.00,0.00,61.69,0.00,0.00,0.00,63.75,0.00 +002407.SZ,0.00,0.00,0.00,19.73,0.00,0.00,0.00,27.52,0.00,0.00,0.00,30.16,0.00,0.00,0.00,34.22,0.00,0.00,0.00,28.71,0.00 +000682.SZ,0.00,0.00,0.00,9.27,0.00,0.00,0.00,12.25,0.00,0.00,0.00,13.05,0.00,0.00,0.00,13.12,0.00,0.00,0.00,13.28,0.00 +002913.SZ,0.00,0.00,0.00,25.31,0.00,0.00,0.00,30.80,0.00,0.00,0.00,22.24,0.00,0.00,0.00,20.44,0.00,0.00,0.00,20.09,0.00 +600080.SH,0.00,0.00,0.00,11.28,0.00,0.00,0.00,13.89,0.00,0.00,0.00,12.19,0.00,0.00,0.00,13.33,0.00,0.00,0.00,14.29,0.00 +688047.SH,0.00,0.00,0.00,70.24,0.00,71.19,0.00,60.87,0.00,0.00,0.00,32.96,0.00,0.00,0.00,37.26,0.00,0.00,0.00,39.17,0.00 +603387.SH,0.00,0.00,0.00,15.50,0.00,0.00,0.00,9.80,0.00,0.00,0.00,11.10,0.00,0.00,0.00,5.32,0.00,0.00,0.00,5.69,0.00 +601949.SH,0.00,0.00,0.00,31.35,0.00,0.00,0.00,22.89,0.00,0.00,0.00,22.74,0.00,0.00,0.00,22.29,0.00,0.00,0.00,23.77,0.00 +002785.SZ,0.00,0.00,0.00,16.24,0.00,0.00,0.00,30.58,0.00,0.00,0.00,41.77,0.00,0.00,0.00,48.78,0.00,0.00,0.00,39.17,0.00 +002521.SZ,0.00,0.00,0.00,7.68,0.00,0.00,0.00,7.19,0.00,0.00,0.00,5.35,0.00,0.00,0.00,6.02,0.00,0.00,0.00,6.75,0.00 +688001.SH,0.00,0.00,0.00,46.44,0.00,0.00,0.00,46.65,0.00,0.00,0.00,55.68,0.00,0.00,0.00,56.55,0.00,0.00,0.00,50.44,0.00 +002832.SZ,0.00,0.00,0.00,10.88,0.00,0.00,0.00,15.46,0.00,0.00,0.00,12.09,0.00,0.00,0.00,11.89,0.00,0.00,0.00,14.77,0.00 +603950.SH,0.00,0.00,0.00,96.77,0.00,0.00,0.00,54.91,0.00,0.00,0.00,90.47,0.00,0.00,0.00,89.69,0.00,0.00,0.00,85.69,0.00 +300357.SZ,0.00,0.00,0.00,43.54,0.00,0.00,0.00,44.87,0.00,0.00,0.00,45.34,0.00,0.00,0.00,46.21,0.00,0.00,0.00,49.73,0.00 +002381.SZ,0.00,0.00,0.00,11.06,0.00,0.00,0.00,10.24,0.00,0.00,0.00,12.57,0.00,0.00,0.00,12.64,0.00,0.00,0.00,14.90,0.00 +002532.SZ,0.00,0.00,0.00,62.78,0.00,0.00,0.00,47.95,0.00,0.00,0.00,38.28,0.00,0.00,0.00,39.47,0.00,0.00,0.00,37.01,0.00 +300937.SZ,0.00,10.67,0.00,10.10,0.00,0.00,0.00,9.22,0.00,0.00,0.00,5.94,0.00,0.00,0.00,6.30,0.00,0.00,0.00,7.20,0.00 +601901.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +002853.SZ,0.00,0.00,0.00,34.26,0.00,0.00,0.00,38.82,0.00,0.00,0.00,27.52,0.00,0.00,0.00,20.02,0.00,0.00,0.00,14.21,0.00 +301093.SZ,0.00,21.05,0.00,21.58,0.00,0.00,0.00,35.61,0.00,0.00,0.00,28.87,0.00,0.00,0.00,27.00,0.00,0.00,0.00,26.57,0.00 +688501.SH,74.78,58.97,0.00,49.87,53.79,0.00,0.00,44.41,0.00,0.00,0.00,49.77,0.00,0.00,0.00,43.69,0.00,0.00,0.00,54.02,0.00 +605066.SH,19.59,0.00,0.00,18.59,0.00,0.00,0.00,18.19,0.00,0.00,0.00,21.01,0.00,0.00,0.00,15.21,0.00,0.00,0.00,12.51,0.00 +600757.SH,0.00,0.00,0.00,22.00,0.00,13.05,0.00,13.00,0.00,0.00,0.00,14.00,0.00,0.00,0.00,14.00,0.00,0.00,0.00,15.00,0.00 +603337.SH,0.00,0.00,0.00,13.42,0.00,0.00,0.00,12.66,0.00,0.00,0.00,13.14,0.00,0.00,0.00,14.63,0.00,0.00,0.00,13.31,0.00 +002657.SZ,0.00,0.00,0.00,27.85,0.00,0.00,0.00,20.45,0.00,0.00,0.00,29.39,0.00,0.00,0.00,37.41,0.00,0.00,0.00,34.79,0.00 +300562.SZ,0.00,0.00,0.00,33.46,0.00,0.00,0.00,37.08,0.00,0.00,0.00,30.54,0.00,0.00,0.00,36.31,0.00,0.00,0.00,40.72,0.00 +002723.SZ,0.00,0.00,0.00,44.68,0.00,0.00,0.00,48.60,0.00,0.00,0.00,46.30,0.00,0.00,0.00,24.55,0.00,0.00,0.00,25.63,0.00 +300923.SZ,0.00,96.24,0.00,94.95,0.00,0.00,0.00,94.87,0.00,0.00,0.00,96.25,0.00,0.00,0.00,93.02,0.00,0.00,0.00,92.36,0.00 +603602.SH,0.00,0.00,0.00,55.78,0.00,0.00,0.00,64.09,0.00,0.00,0.00,51.93,0.00,0.00,0.00,59.35,0.00,0.00,0.00,45.32,0.00 +300039.SZ,0.00,0.00,0.00,18.74,0.00,0.00,0.00,18.66,0.00,0.00,0.00,15.96,0.00,0.00,0.00,13.43,0.00,0.00,0.00,13.45,0.00 +300796.SZ,0.00,0.00,0.00,50.99,0.00,0.00,0.00,47.84,0.00,0.00,0.00,60.51,0.00,0.00,0.00,59.77,0.00,0.00,0.00,19.15,0.00 +002330.SZ,0.00,0.00,0.00,39.31,0.00,36.16,0.00,32.26,0.00,8.13,0.00,14.32,0.00,5.90,0.00,11.80,0.00,6.11,0.00,10.49,0.00 +601975.SH,0.00,0.00,0.00,38.47,0.00,0.00,0.00,47.11,0.00,0.00,0.00,46.81,0.00,0.00,0.00,43.86,0.00,0.00,0.00,50.01,0.00 +000027.SZ,0.00,0.00,0.00,68.79,0.00,0.00,0.00,67.41,0.00,0.00,0.00,60.11,0.00,0.00,0.00,62.45,0.00,0.00,0.00,68.86,0.00 +000030.SZ,0.00,0.00,0.00,73.51,0.00,0.00,0.00,66.49,0.00,0.00,0.00,58.47,0.00,0.00,0.00,64.89,0.00,0.00,0.00,60.90,0.00 +002721.SZ,0.00,0.00,0.00,24.11,0.00,0.00,0.00,35.46,0.00,0.00,0.00,38.41,0.00,0.00,0.00,41.07,0.00,0.00,0.00,14.33,0.00 +002810.SZ,0.00,0.00,0.00,19.64,0.00,0.00,0.00,23.43,0.00,0.00,0.00,27.52,0.00,0.00,0.00,18.97,0.00,0.00,0.00,26.82,0.00 +605118.SH,0.00,0.00,0.00,46.71,0.00,0.00,0.00,44.12,0.00,0.00,0.00,41.19,0.00,0.00,0.00,42.23,0.00,0.00,0.00,40.91,0.00 +603090.SH,0.00,0.00,0.00,35.83,0.00,0.00,0.00,39.36,0.00,0.00,0.00,41.36,0.00,0.00,0.00,39.18,0.00,0.00,0.00,43.63,0.00 +300898.SZ,0.00,0.00,0.00,20.66,0.00,20.26,0.00,17.59,0.00,0.00,0.00,17.28,0.00,15.50,0.00,18.29,0.00,10.37,0.00,17.68,0.00 +603386.SH,0.00,0.00,0.00,27.20,0.00,0.00,0.00,21.85,0.00,0.00,0.00,23.82,0.00,0.00,0.00,23.59,0.00,0.00,0.00,22.03,0.00 +301108.SZ,0.00,93.21,0.00,90.02,0.00,86.60,85.49,82.41,0.00,0.00,0.00,78.84,0.00,0.00,0.00,78.70,0.00,0.00,0.00,77.56,0.00 +300775.SZ,0.00,0.00,0.00,98.30,0.00,0.00,0.00,98.81,0.00,0.00,0.00,98.14,0.00,0.00,0.00,98.00,0.00,0.00,0.00,95.80,0.00 +600738.SH,0.00,0.00,0.00,8.33,0.00,0.00,0.00,0.00,0.00,0.00,0.00,54.18,0.00,0.00,0.00,23.40,0.00,0.00,0.00,7.55,0.00 +000850.SZ,0.00,0.00,0.00,22.74,0.00,0.00,0.00,18.82,0.00,0.00,0.00,21.35,0.00,0.00,0.00,11.32,0.00,0.00,0.00,10.39,0.00 +002320.SZ,0.00,0.00,0.00,0.91,0.00,0.00,0.00,6.58,0.00,0.00,0.00,2.47,0.00,0.00,0.00,3.82,0.00,0.00,0.00,5.71,0.00 +300668.SZ,0.00,0.00,0.00,12.61,0.00,0.00,0.00,23.82,0.00,0.00,0.00,31.77,0.00,0.00,0.00,54.34,0.00,0.00,0.00,55.94,0.00 +603100.SH,0.00,0.00,0.00,15.91,0.00,14.72,0.00,3.72,0.00,11.54,0.00,3.18,0.00,13.83,0.00,12.98,0.00,16.99,0.00,16.05,0.00 +002938.SZ,0.00,0.00,0.00,82.02,0.00,0.00,0.00,86.45,0.00,0.00,0.00,87.74,0.00,0.00,0.00,89.41,0.00,0.00,0.00,91.23,0.00 +603948.SH,0.00,0.00,0.00,8.72,0.00,0.00,0.00,9.11,0.00,0.00,0.00,7.83,0.00,0.00,0.00,8.42,0.00,0.00,0.00,8.12,0.00 +600517.SH,0.00,0.00,0.00,66.78,0.00,0.00,0.00,68.72,0.00,0.00,0.00,75.72,0.00,0.00,0.00,79.57,0.00,0.00,0.00,86.79,0.00 +600032.SH,0.00,0.00,0.00,94.57,0.00,0.00,0.00,87.62,0.00,0.00,0.00,84.22,0.00,0.00,0.00,82.73,0.00,0.00,0.00,85.02,0.00 +000008.SZ,0.00,0.00,0.00,28.88,0.00,0.00,0.00,32.45,0.00,0.00,0.00,35.08,0.00,0.00,0.00,24.43,0.00,0.00,0.00,59.26,0.00 +601615.SH,0.00,0.00,0.00,53.65,0.00,0.00,0.00,61.26,0.00,0.00,0.00,61.35,0.00,0.00,0.00,61.24,0.00,0.00,0.00,41.46,0.00 +003043.SZ,0.00,0.00,0.00,60.13,0.00,0.00,0.00,68.86,0.00,0.00,0.00,73.83,0.00,0.00,0.00,66.61,0.00,0.00,0.00,53.56,0.00 +601636.SH,0.00,0.00,0.00,8.60,0.00,0.00,0.00,7.92,0.00,0.00,0.00,7.54,0.00,0.00,0.00,6.76,0.00,0.00,0.00,18.48,0.00 +688677.SH,0.00,88.27,0.00,83.54,0.00,0.00,0.00,76.56,0.00,0.00,0.00,78.69,0.00,0.00,0.00,74.97,0.00,0.00,0.00,76.06,0.00 +688507.SH,0.00,0.00,0.00,67.94,0.00,0.00,0.00,73.14,0.00,100.00,0.00,56.21,0.00,0.00,0.00,30.01,0.00,0.00,0.00,27.21,0.00 +688187.SH,0.00,0.00,58.78,61.77,0.00,0.00,0.00,63.40,0.00,0.00,0.00,52.67,0.00,0.00,0.00,48.28,0.00,0.00,0.00,53.15,0.00 +300286.SZ,0.00,0.00,0.00,10.52,0.00,0.00,0.00,9.44,0.00,0.00,0.00,9.65,0.00,0.00,0.00,9.00,0.00,0.00,0.00,7.53,0.00 +600866.SH,0.00,0.00,0.00,48.92,0.00,0.00,0.00,52.52,0.00,0.00,0.00,8.62,0.00,0.00,0.00,8.92,0.00,0.00,0.00,7.40,0.00 +688016.SH,0.00,0.00,0.00,43.66,0.00,0.00,0.00,53.98,0.00,0.00,0.00,64.78,0.00,0.00,0.00,82.06,0.00,0.00,0.00,70.11,0.00 +300897.SZ,0.00,32.82,0.00,28.36,0.00,0.00,0.00,31.38,0.00,0.00,0.00,30.48,0.00,0.00,0.00,29.30,0.00,0.00,0.00,25.81,0.00 +002918.SZ,0.00,0.00,0.00,29.30,0.00,0.00,0.00,31.26,0.00,0.00,0.00,23.95,0.00,0.00,0.00,22.49,0.00,0.00,0.00,16.21,0.00 +003006.SZ,0.00,0.00,0.00,23.14,0.00,0.00,0.00,21.05,0.00,0.00,0.00,19.89,0.00,0.00,0.00,17.48,0.00,0.00,0.00,10.58,0.00 +002849.SZ,0.00,0.00,0.00,37.93,0.00,0.00,0.00,39.63,0.00,0.00,0.00,37.49,0.00,0.00,0.00,34.34,0.00,0.00,0.00,35.86,0.00 +600162.SH,0.00,0.00,0.00,0.86,0.00,0.00,0.00,4.20,0.00,0.00,0.00,5.18,0.00,0.00,0.00,5.82,0.00,0.00,0.00,8.00,0.00 +300158.SZ,0.00,0.00,0.00,25.38,0.00,0.00,0.00,25.42,0.00,0.00,0.00,36.63,0.00,0.00,0.00,32.64,0.00,0.00,0.00,34.84,0.00 +603209.SH,0.00,0.00,0.00,70.68,0.00,0.00,0.00,71.64,0.00,0.00,0.00,56.63,0.00,0.00,0.00,36.45,0.00,0.00,0.00,40.19,0.00 +002867.SZ,0.00,0.00,0.00,2.68,0.00,0.00,0.00,2.77,0.00,0.00,0.00,4.58,0.00,0.00,0.00,5.28,0.00,0.00,0.00,5.00,0.00 +600563.SH,0.00,0.00,0.00,30.19,0.00,0.00,0.00,28.64,0.00,0.00,0.00,34.91,0.00,0.00,0.00,33.30,0.00,0.00,0.00,33.30,0.00 +603615.SH,0.00,0.00,0.00,32.62,0.00,0.00,0.00,26.99,0.00,0.00,0.00,27.13,0.00,0.00,0.00,24.35,0.00,0.00,0.00,27.29,0.00 +300198.SZ,0.00,0.00,0.00,12.23,0.00,0.00,0.00,38.32,0.00,0.00,0.00,25.30,0.00,0.00,0.00,31.36,0.00,0.00,0.00,38.83,0.00 +001234.SZ,0.00,92.38,0.00,92.21,0.00,91.32,0.00,84.98,0.00,0.00,0.00,91.29,0.00,0.00,0.00,89.01,0.00,0.00,0.00,90.81,0.00 +688312.SH,0.00,0.00,0.00,93.20,0.00,0.00,0.00,94.95,0.00,0.00,0.00,83.66,0.00,0.00,0.00,77.79,0.00,0.00,0.00,82.16,0.00 +601966.SH,0.00,0.00,0.00,21.31,0.00,0.00,0.00,21.38,0.00,0.00,0.00,16.68,0.00,0.00,0.00,17.75,0.00,0.00,0.00,16.93,0.00 +600850.SH,0.00,0.00,0.00,15.20,0.00,0.00,0.00,24.19,0.00,0.00,0.00,19.02,0.00,0.00,0.00,11.72,0.00,0.00,0.00,18.22,0.00 +603958.SH,0.00,0.00,0.00,16.79,0.00,0.00,0.00,20.68,0.00,0.00,0.00,4.09,0.00,0.00,0.00,25.07,0.00,0.00,0.00,24.52,0.00 +600512.SH,0.00,0.00,0.00,50.74,0.00,0.00,0.00,27.94,0.00,0.00,0.00,42.43,0.00,0.00,0.00,49.69,0.00,0.00,0.00,37.66,0.00 +603017.SH,0.00,0.00,0.00,24.82,0.00,0.00,0.00,26.64,0.00,0.00,0.00,31.83,0.00,0.00,0.00,30.84,0.00,0.00,0.00,22.76,0.00 +688261.SH,0.00,0.00,0.00,36.00,0.00,34.47,0.00,28.93,0.00,0.00,0.00,56.42,0.00,0.00,0.00,56.44,0.00,0.00,0.00,46.04,0.00 +300685.SZ,0.00,0.00,0.00,17.73,0.00,0.00,0.00,13.74,0.00,0.00,0.00,13.44,0.00,0.00,0.00,20.68,0.00,0.00,0.00,20.52,0.00 +000811.SZ,0.00,0.00,0.00,7.10,0.00,0.00,0.00,6.69,0.00,0.00,0.00,6.45,0.00,0.00,0.00,6.09,0.00,0.00,0.00,4.69,0.00 +601022.SH,0.00,0.00,0.00,25.11,25.53,24.16,0.00,23.03,0.00,25.41,0.00,28.89,0.00,0.00,0.00,33.88,0.00,0.00,0.00,23.29,0.00 +688169.SH,0.00,0.00,0.00,56.19,0.00,0.00,0.00,51.69,0.00,0.00,0.00,46.38,0.00,0.00,0.00,41.34,0.00,0.00,0.00,36.26,0.00 +600604.SH,0.00,0.00,0.00,66.72,0.00,0.00,0.00,45.15,0.00,0.00,0.00,21.16,0.00,0.00,0.00,22.24,0.00,0.00,0.00,20.09,0.00 +600354.SH,0.00,0.00,0.00,21.74,0.00,0.00,0.00,19.90,0.00,0.00,0.00,14.81,0.00,0.00,0.00,13.44,0.00,0.00,0.00,14.74,0.00 +002485.SZ,0.00,0.00,0.00,33.98,0.00,0.00,0.00,78.37,0.00,0.00,0.00,86.37,0.00,0.00,0.00,84.97,0.00,0.00,0.00,74.35,0.00 +301370.SZ,0.00,8.98,0.00,4.72,0.00,8.15,0.00,3.62,0.00,3.68,0.00,4.19,0.00,0.00,0.00,7.22,0.00,0.00,0.00,7.08,0.00 +300664.SZ,0.00,0.00,0.00,36.69,0.00,0.00,0.00,39.50,0.00,0.00,0.00,22.21,0.00,0.00,0.00,28.96,0.00,0.00,0.00,26.66,0.00 +600773.SH,0.00,0.00,0.00,3.33,0.00,0.00,0.00,2.40,0.00,0.00,0.00,2.61,0.00,0.00,0.00,37.18,0.00,0.00,0.00,6.26,0.00 +601588.SH,0.00,0.00,0.00,3.65,0.00,0.00,0.00,3.24,0.00,0.00,0.00,1.74,0.00,0.00,0.00,0.81,0.00,0.00,0.00,0.00,0.00 +832023.BJ,0.00,0.00,0.00,44.61,0.00,0.00,0.00,68.17,0.00,74.77,75.57,75.53,0.00,76.46,0.00,73.68,0.00,61.47,0.00,51.03,0.00 +688499.SH,79.53,0.00,82.80,86.43,0.00,0.00,0.00,95.47,0.00,0.00,0.00,74.36,0.00,0.00,0.00,75.39,0.00,0.00,0.00,67.83,0.00 +600217.SH,0.00,0.00,0.00,21.40,0.00,0.00,0.00,22.28,0.00,0.00,0.00,18.10,0.00,0.00,0.00,22.40,0.00,0.00,0.00,29.42,0.00 +600322.SH,0.00,0.00,0.00,2.23,0.00,0.00,0.00,3.31,0.00,0.00,0.00,2.13,0.00,0.00,0.00,20.55,0.00,0.00,0.00,25.61,0.00 +000548.SZ,0.00,0.00,0.00,2.52,0.00,0.00,0.00,4.51,0.00,0.00,0.00,3.58,0.00,0.00,0.00,2.60,0.00,0.00,0.00,5.73,0.00 +002230.SZ,0.00,0.00,0.00,16.50,0.00,0.00,0.00,11.74,0.00,0.00,0.00,14.99,0.00,0.00,0.00,17.47,0.00,0.00,0.00,19.48,0.00 +603798.SH,0.00,0.00,0.00,20.90,0.00,0.00,0.00,19.73,0.00,0.00,0.00,20.75,0.00,0.00,0.00,26.59,0.00,0.00,0.00,26.09,0.00 +300425.SZ,0.00,0.00,0.00,23.77,0.00,0.00,0.00,25.08,0.00,0.00,0.00,16.56,0.00,0.00,0.00,28.17,0.00,0.00,0.00,14.61,0.00 +603066.SH,0.00,0.00,0.00,25.06,0.00,0.00,0.00,24.13,0.00,0.00,0.00,23.62,0.00,0.00,0.00,31.90,0.00,0.00,0.00,23.72,0.00 +002933.SZ,0.00,0.00,0.00,98.70,0.00,0.00,0.00,98.07,0.00,0.00,0.00,95.76,0.00,0.00,0.00,94.29,0.00,0.00,0.00,98.89,0.00 +600399.SH,0.00,0.00,0.00,30.45,0.00,0.00,0.00,21.13,0.00,0.00,0.00,23.47,0.00,0.00,0.00,29.09,0.00,0.00,0.00,24.34,0.00 +002483.SZ,0.00,0.00,0.00,53.43,0.00,0.00,0.00,35.76,0.00,0.00,0.00,44.13,0.00,0.00,0.00,65.10,0.00,0.00,0.00,68.19,0.00 +688359.SH,0.00,49.92,48.22,46.64,0.00,0.00,0.00,46.30,0.00,0.00,0.00,39.19,0.00,0.00,0.00,38.11,0.00,0.00,0.00,35.30,0.00 +002048.SZ,0.00,0.00,0.00,42.94,0.00,0.00,0.00,39.86,0.00,0.00,0.00,46.65,0.00,0.00,0.00,38.74,0.00,0.00,0.00,33.12,0.00 +002408.SZ,0.00,0.00,0.00,10.79,0.00,0.00,0.00,12.13,0.00,0.00,0.00,16.39,0.00,0.00,0.00,15.57,0.00,0.00,0.00,20.15,0.00 +688231.SH,0.00,0.00,0.00,25.91,0.00,25.74,0.00,23.94,37.32,0.00,0.00,26.44,0.00,0.00,0.00,23.72,0.00,0.00,0.00,21.14,0.00 +000878.SZ,0.00,0.00,0.00,26.06,0.00,0.00,0.00,39.11,0.00,0.00,0.00,34.84,0.00,0.00,0.00,32.14,0.00,0.00,0.00,36.55,0.00 +002270.SZ,0.00,0.00,0.00,29.18,0.00,0.00,0.00,25.62,0.00,0.00,0.00,27.70,0.00,0.00,0.00,28.95,0.00,0.00,0.00,32.89,0.00 +600716.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,11.45,0.00,0.00,0.00,6.98,0.00,0.00,0.00,8.60,0.00 +600333.SH,0.00,0.00,0.00,5.79,0.00,0.00,0.00,7.65,0.00,0.00,0.00,11.78,0.00,0.00,0.00,11.97,0.00,0.00,0.00,11.46,0.00 +002393.SZ,0.00,0.00,0.00,21.04,0.00,0.00,0.00,23.42,0.00,0.00,0.00,19.36,0.00,0.00,0.00,28.84,0.00,0.00,0.00,19.79,0.00 +300901.SZ,0.00,0.00,0.00,80.38,0.00,0.00,0.00,72.10,0.00,0.00,0.00,72.76,0.00,0.00,0.00,76.46,0.00,0.00,0.00,76.42,0.00 +603239.SH,0.00,0.00,0.00,80.24,0.00,0.00,0.00,77.10,0.00,0.00,0.00,53.02,0.00,0.00,0.00,84.41,0.00,0.00,0.00,86.72,0.00 +002494.SZ,0.00,0.00,0.00,16.77,0.00,14.09,0.00,13.77,0.00,0.00,0.00,15.27,0.00,0.00,0.00,12.04,0.00,0.00,0.00,9.86,0.00 +605123.SH,0.00,0.00,0.00,41.27,0.00,0.00,0.00,47.32,0.00,0.00,0.00,48.31,0.00,0.00,0.00,41.35,0.00,0.00,0.00,31.29,0.00 +688082.SH,0.00,0.00,0.00,83.36,0.00,78.96,0.00,54.97,0.00,62.97,0.00,57.03,0.00,44.84,0.00,47.93,0.00,0.00,0.00,52.24,0.00 +600675.SH,0.00,0.00,0.00,32.08,0.00,3.53,0.00,2.59,0.00,7.32,0.00,14.28,0.00,24.47,0.00,5.56,0.00,11.57,0.00,3.16,0.00 +603982.SH,0.00,0.00,0.00,77.84,0.00,0.00,0.00,69.54,0.00,0.00,0.00,58.94,0.00,0.00,0.00,59.86,0.00,0.00,0.00,54.11,0.00 +300191.SZ,0.00,0.00,0.00,96.21,0.00,0.00,0.00,98.11,0.00,0.00,0.00,99.42,0.00,0.00,0.00,100.00,0.00,0.00,0.00,100.00,0.00 +300453.SZ,0.00,0.00,0.00,9.94,0.00,0.00,0.00,11.59,0.00,0.00,0.00,15.19,0.00,0.00,0.00,8.16,0.00,0.00,0.00,9.71,0.00 +300001.SZ,0.00,0.00,0.00,5.07,0.00,0.00,0.00,9.22,0.00,0.00,0.00,12.03,0.00,0.00,0.00,8.87,0.00,0.00,0.00,8.76,0.00 +002980.SZ,0.00,0.00,0.00,37.06,0.00,0.00,0.00,48.76,0.00,0.00,0.00,47.01,0.00,0.00,0.00,42.60,0.00,0.00,0.00,45.35,0.00 +603077.SH,0.00,0.00,0.00,26.24,0.00,0.00,0.00,35.45,0.00,0.00,0.00,34.92,0.00,0.00,0.00,27.34,0.00,0.00,0.00,32.17,0.00 +000582.SZ,0.00,0.00,0.00,24.28,0.00,0.00,0.00,26.78,0.00,0.00,0.00,24.25,0.00,0.00,0.00,22.97,0.00,0.00,0.00,22.54,0.00 +300917.SZ,0.00,53.57,50.45,62.41,0.00,0.00,0.00,75.43,0.00,0.00,0.00,72.27,0.00,0.00,0.00,68.27,0.00,0.00,0.00,62.29,0.00 +300880.SZ,0.00,0.00,0.00,55.42,0.00,0.00,0.00,56.11,0.00,0.00,0.00,63.37,0.00,0.00,0.00,59.39,0.00,0.00,0.00,46.19,0.00 +688396.SH,0.00,0.00,0.00,11.07,0.00,0.00,0.00,12.48,0.00,0.00,0.00,15.04,0.00,0.00,0.00,11.48,0.00,0.00,0.00,12.28,0.00 +000778.SZ,0.00,0.00,0.00,8.36,0.00,0.00,0.00,10.23,0.00,0.00,0.00,7.14,0.00,0.00,0.00,6.44,0.00,0.00,0.00,7.32,0.00 +300859.SZ,0.00,0.00,0.00,7.08,0.00,0.00,0.00,12.34,0.00,0.00,0.00,7.91,0.00,0.00,0.00,9.47,0.00,0.00,0.00,4.47,0.00 +000975.SZ,0.00,0.00,0.00,43.83,0.00,0.00,0.00,53.91,0.00,0.00,0.00,46.70,0.00,0.00,0.00,67.74,0.00,0.00,0.00,39.96,0.00 +000985.SZ,0.00,0.00,0.00,25.26,0.00,0.00,0.00,19.62,0.00,0.00,0.00,25.53,0.00,0.00,0.00,27.76,0.00,0.00,0.00,27.18,0.00 +688581.SH,0.00,29.81,0.00,30.88,0.00,0.00,0.00,34.06,0.00,32.64,0.00,33.26,0.00,0.00,0.00,31.09,0.00,0.00,0.00,40.23,0.00 +300376.SZ,0.00,0.00,0.00,29.56,0.00,0.00,0.00,31.40,0.00,0.00,0.00,39.56,0.00,0.00,0.00,20.19,0.00,0.00,0.00,19.97,0.00 +002042.SZ,0.00,0.00,0.00,10.45,0.00,0.00,0.00,17.49,0.00,0.00,0.00,32.03,0.00,0.00,0.00,24.32,0.00,0.00,0.00,18.51,0.00 +688011.SH,0.00,0.00,0.00,36.52,0.00,0.00,0.00,62.80,0.00,0.00,0.00,67.85,0.00,0.00,0.00,37.65,0.00,0.00,0.00,48.16,0.00 +000410.SZ,0.00,0.00,0.00,22.36,0.00,0.00,0.00,25.05,0.00,0.00,0.00,31.74,0.00,0.00,0.00,29.03,0.00,0.00,0.00,37.81,0.00 +688051.SH,0.00,0.00,0.00,59.30,0.00,0.00,0.00,36.00,0.00,0.00,0.00,43.12,0.00,0.00,0.00,40.30,0.00,0.00,0.00,41.57,0.00 +000876.SZ,0.00,0.00,0.00,3.33,0.00,0.00,0.00,2.77,0.00,0.00,0.00,3.55,0.00,0.00,0.00,5.53,0.00,0.00,0.00,9.17,0.00 +603517.SH,0.00,0.00,0.00,3.53,0.00,0.00,0.00,3.44,0.00,0.00,0.00,3.20,0.00,0.00,0.00,4.98,0.00,0.00,0.00,4.92,0.00 +600523.SH,0.00,0.00,0.00,25.82,0.00,0.00,0.00,23.92,0.00,0.00,0.00,24.95,0.00,0.00,0.00,23.14,0.00,0.00,0.00,26.44,0.00 +300552.SZ,0.00,0.00,0.00,18.24,0.00,0.00,0.00,16.80,0.00,0.00,0.00,18.05,0.00,0.00,0.00,14.35,0.00,0.00,0.00,19.72,0.00 +000411.SZ,0.00,0.00,0.00,8.88,0.00,0.00,0.00,10.22,0.00,0.00,0.00,9.26,0.00,0.00,0.00,9.94,0.00,0.00,0.00,9.40,0.00 +688433.SH,0.00,0.00,0.00,41.89,0.00,0.00,0.00,53.05,0.00,51.09,0.00,0.00,0.00,0.00,0.00,44.27,0.00,0.00,0.00,31.71,0.00 +300360.SZ,0.00,0.00,0.00,31.86,0.00,0.00,0.00,28.64,0.00,0.00,0.00,31.22,0.00,0.00,0.00,30.52,0.00,0.00,0.00,25.32,0.00 +300015.SZ,0.00,0.00,0.00,0.50,0.00,0.00,0.00,0.78,0.00,0.00,0.00,0.71,0.00,0.00,0.00,0.48,0.00,0.00,0.00,0.41,0.00 +002117.SZ,0.00,0.00,0.00,9.19,0.00,0.00,0.00,16.09,0.00,0.00,0.00,10.29,0.00,0.00,0.00,20.46,0.00,0.00,0.00,9.10,0.00 +300037.SZ,0.00,0.00,0.00,27.93,0.00,0.00,0.00,37.96,0.00,0.00,0.00,43.29,0.00,0.00,0.00,41.77,0.00,0.00,0.00,33.95,0.00 +600724.SH,0.00,0.00,0.00,21.44,0.00,15.66,0.00,14.19,0.00,35.34,0.00,37.16,0.00,35.43,0.00,37.38,0.00,19.14,0.00,19.17,0.00 +300946.SZ,0.00,16.29,0.00,19.10,0.00,0.00,0.00,19.66,0.00,0.00,0.00,17.18,0.00,0.00,0.00,15.60,0.00,0.00,0.00,13.93,0.00 +601500.SH,0.00,0.00,0.00,11.45,0.00,0.00,0.00,15.35,0.00,0.00,0.00,27.44,0.00,0.00,0.00,27.01,0.00,0.00,0.00,29.34,0.00 +000078.SZ,0.00,0.00,0.00,6.11,0.00,0.00,0.00,7.07,0.00,0.00,0.00,6.21,0.00,0.00,0.00,5.51,0.00,0.00,0.00,7.16,0.00 +300694.SZ,0.00,0.00,0.00,91.45,0.00,0.00,0.00,86.17,0.00,0.00,0.00,87.37,0.00,0.00,0.00,87.29,0.00,0.00,0.00,83.49,0.00 +300788.SZ,0.00,0.00,0.00,38.69,0.00,0.00,0.00,34.29,0.00,0.00,0.00,29.89,0.00,0.00,0.00,26.50,0.00,0.00,0.00,28.80,0.00 +002418.SZ,0.00,0.00,0.00,56.83,0.00,0.00,0.00,58.04,0.00,0.00,0.00,80.43,0.00,0.00,0.00,62.70,0.00,0.00,0.00,57.78,0.00 +002996.SZ,0.00,21.60,0.00,22.60,0.00,0.00,0.00,20.21,0.00,0.00,0.00,19.96,0.00,0.00,0.00,19.85,0.00,0.00,0.00,22.03,0.00 +001368.SZ,0.00,0.00,0.00,90.29,0.00,90.19,0.00,89.59,0.00,90.24,0.00,89.25,0.00,0.00,0.00,89.71,0.00,0.00,0.00,89.32,0.00 +002297.SZ,0.00,0.00,0.00,30.11,0.00,0.00,0.00,33.98,0.00,0.00,0.00,40.07,0.00,0.00,0.00,27.38,0.00,0.00,0.00,26.66,0.00 +600201.SH,0.00,0.00,0.00,18.20,0.00,0.00,0.00,25.21,0.00,0.00,0.00,27.82,0.00,0.00,0.00,25.19,0.00,0.00,0.00,18.40,0.00 +600097.SH,0.00,0.00,0.00,57.00,0.00,0.00,0.00,58.00,0.00,0.00,0.00,43.00,0.00,0.00,0.00,43.00,0.00,0.00,0.00,43.00,0.00 +301024.SZ,0.00,69.57,0.00,62.49,0.00,0.00,0.00,67.71,0.00,0.00,0.00,73.35,0.00,0.00,0.00,58.73,0.00,0.00,0.00,48.79,0.00 +603213.SH,30.94,0.00,28.01,26.86,0.00,28.51,0.00,25.03,0.00,0.00,0.00,23.98,0.00,0.00,0.00,19.50,0.00,0.00,0.00,13.99,0.00 +688391.SH,0.00,0.00,0.00,85.83,0.00,76.63,0.00,79.75,0.00,0.00,0.00,83.95,0.00,0.00,0.00,92.39,0.00,0.00,0.00,94.15,0.00 +300277.SZ,0.00,0.00,0.00,32.74,0.00,0.00,0.00,53.81,0.00,0.00,0.00,44.98,0.00,0.00,0.00,50.71,0.00,0.00,0.00,51.89,0.00 +600027.SH,0.00,0.00,0.00,54.04,0.00,52.60,0.00,56.36,0.00,64.86,0.00,65.73,0.00,91.94,0.00,57.74,0.00,0.00,0.00,58.77,0.00 +300705.SZ,0.00,0.00,0.00,25.71,0.00,0.00,0.00,31.91,0.00,0.00,0.00,38.95,0.00,0.00,0.00,38.86,0.00,0.00,0.00,31.42,0.00 +301026.SZ,0.00,67.48,0.00,73.32,86.70,0.00,0.00,81.72,0.00,0.00,0.00,65.31,0.00,0.00,0.00,64.97,0.00,0.00,0.00,65.55,0.00 +603511.SH,0.00,17.00,0.00,16.01,0.00,0.00,0.00,14.85,0.00,0.00,0.00,13.98,0.00,0.00,0.00,13.66,0.00,0.00,0.00,13.02,0.00 +603194.SH,0.00,0.00,0.00,20.16,0.00,0.00,0.00,21.01,0.00,22.50,0.00,20.55,0.00,15.48,0.00,13.98,0.00,13.60,0.00,14.01,0.00 +002187.SZ,0.00,0.00,0.00,2.13,0.00,0.00,0.00,1.09,0.00,0.00,0.00,0.90,0.00,0.00,0.00,5.29,0.00,0.00,0.00,2.24,0.00 +002629.SZ,0.00,0.00,0.00,52.84,0.00,0.00,0.00,42.02,0.00,0.00,0.00,37.98,0.00,0.00,0.00,31.66,0.00,0.00,0.00,62.99,0.00 +600845.SH,0.00,0.00,0.00,33.78,0.00,0.00,0.00,34.60,0.00,0.00,0.00,29.61,0.00,0.00,0.00,30.23,0.00,0.00,0.00,31.41,0.00 +600970.SH,0.00,0.00,0.00,13.40,0.00,0.00,0.00,11.68,0.00,0.00,0.00,14.25,0.00,0.00,0.00,11.45,0.00,0.00,0.00,12.72,0.00 +000756.SZ,0.00,0.00,0.00,10.31,0.00,0.00,0.00,11.54,0.00,0.00,0.00,14.69,0.00,0.00,0.00,13.85,0.00,0.00,0.00,12.34,0.00 +002390.SZ,0.00,0.00,0.00,25.20,0.00,0.00,0.00,27.73,0.00,0.00,0.00,26.43,0.00,0.00,0.00,29.30,0.00,0.00,0.00,28.71,0.00 +001387.SZ,0.00,0.00,0.00,79.63,0.00,0.00,0.00,72.02,70.75,0.00,67.73,68.85,0.00,73.21,0.00,69.39,0.00,0.00,0.00,57.39,0.00 +600283.SH,0.00,0.00,0.00,16.43,0.00,0.00,0.00,18.82,0.00,0.00,0.00,19.81,0.00,0.00,0.00,25.07,0.00,0.00,0.00,20.88,0.00 +002698.SZ,0.00,0.00,0.00,52.03,0.00,0.00,0.00,45.65,0.00,0.00,0.00,40.63,0.00,0.00,0.00,34.58,0.00,0.00,0.00,37.91,0.00 +601798.SH,0.00,0.00,0.00,41.05,0.00,0.00,0.00,9.52,0.00,0.00,0.00,25.95,0.00,0.00,0.00,30.01,0.00,0.00,0.00,37.83,0.00 +301519.SZ,0.00,0.00,0.00,56.20,0.00,58.69,0.00,60.91,0.00,0.00,0.00,64.12,0.00,0.00,0.00,53.22,0.00,0.00,0.00,41.18,0.00 +002054.SZ,0.00,0.00,0.00,6.61,0.00,0.00,0.00,9.34,0.00,0.00,0.00,31.22,0.00,0.00,0.00,24.79,0.00,0.00,0.00,18.23,0.00 +002488.SZ,0.00,0.00,0.00,41.74,0.00,0.00,0.00,33.02,0.00,0.00,0.00,49.95,0.00,0.00,0.00,34.48,0.00,0.00,0.00,21.32,0.00 +000751.SZ,0.00,0.00,0.00,29.01,0.00,0.00,0.00,46.86,0.00,0.00,0.00,35.67,0.00,0.00,0.00,36.31,0.00,0.00,0.00,36.23,0.00 +002074.SZ,0.00,0.00,0.00,35.80,0.00,0.00,0.00,35.81,0.00,0.00,0.00,41.34,0.00,0.00,0.00,32.41,0.00,0.00,0.00,37.54,0.00 +603160.SH,0.00,0.00,0.00,84.34,0.00,0.00,0.00,60.62,0.00,0.00,0.00,52.92,0.00,0.00,0.00,67.47,0.00,0.00,0.00,66.63,0.00 +601016.SH,0.00,0.00,0.00,79.41,0.00,0.00,0.00,64.85,0.00,0.00,0.00,57.16,0.00,0.00,0.00,58.28,0.00,0.00,0.00,60.20,0.00 +601788.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +688203.SH,0.00,0.00,0.00,48.27,34.23,35.54,0.00,40.89,0.00,0.00,0.00,37.15,0.00,0.00,0.00,37.27,0.00,0.00,0.00,36.66,0.00 +601121.SH,0.00,0.00,0.00,85.87,0.00,75.50,0.00,84.81,0.00,86.29,0.00,87.03,0.00,0.00,0.00,85.98,0.00,0.00,0.00,92.53,0.00 +601958.SH,0.00,0.00,0.00,47.79,0.00,0.00,0.00,27.00,0.00,0.00,0.00,25.45,0.00,0.00,0.00,27.04,0.00,0.00,0.00,29.89,0.00 +000006.SZ,0.00,0.00,0.00,1.82,0.00,0.00,0.00,2.92,0.00,0.00,0.00,1.50,0.00,0.00,0.00,1.46,0.00,0.00,0.00,0.76,0.00 +600226.SH,0.00,0.00,0.00,32.88,0.00,0.00,0.00,43.70,0.00,0.00,0.00,45.99,0.00,0.00,0.00,39.65,0.00,0.00,0.00,22.26,0.00 +600765.SH,0.00,0.00,0.00,48.18,0.00,0.00,0.00,52.38,0.00,0.00,0.00,58.58,0.00,0.00,0.00,55.11,0.00,0.00,0.00,49.26,0.00 +300232.SZ,0.00,0.00,0.00,7.69,0.00,0.00,0.00,5.72,0.00,0.00,0.00,9.06,0.00,0.00,0.00,5.29,0.00,0.00,0.00,10.83,0.00 +600278.SH,0.00,0.00,0.00,14.25,0.00,0.00,0.00,9.08,0.00,0.00,0.00,6.04,0.00,0.00,0.00,9.08,0.00,0.00,0.00,5.51,0.00 +600606.SH,0.00,0.00,0.00,1.28,0.00,0.00,0.00,1.40,0.00,0.00,0.00,2.61,0.00,0.00,0.00,2.23,0.00,0.00,0.00,3.49,0.00 +600575.SH,0.00,0.00,0.00,42.01,0.00,0.00,0.00,35.70,0.00,0.00,0.00,31.46,0.00,0.00,0.00,38.56,0.00,0.00,0.00,39.28,0.00 +000404.SZ,0.00,0.00,0.00,21.69,0.00,33.79,0.00,31.32,0.00,0.00,0.00,32.25,0.00,0.00,0.00,31.48,0.00,0.00,0.00,36.28,0.00 +603167.SH,0.00,0.00,0.00,6.44,0.00,0.00,0.00,12.94,0.00,0.00,0.00,19.33,0.00,0.00,0.00,11.59,0.00,0.00,0.00,14.54,0.00 +002135.SZ,0.00,0.00,0.00,32.05,0.00,0.00,0.00,28.76,0.00,0.00,0.00,22.71,0.00,0.00,0.00,24.83,0.00,0.00,0.00,20.66,0.00 +601899.SH,0.00,0.00,0.00,61.60,0.00,0.00,0.00,49.22,0.00,0.00,0.00,43.60,0.00,0.00,0.00,41.90,0.00,0.00,0.00,44.64,0.00 +839493.BJ,0.00,0.00,0.00,20.69,0.00,0.00,0.00,20.55,0.00,0.00,0.00,16.70,0.00,26.44,0.00,20.47,0.00,0.00,0.00,26.48,0.00 +600758.SH,0.00,0.00,0.00,46.26,0.00,0.00,0.00,41.45,0.00,0.00,0.00,44.20,0.00,0.00,0.00,43.90,0.00,0.00,0.00,44.54,0.00 +300289.SZ,0.00,0.00,0.00,9.00,0.00,0.00,0.00,11.06,0.00,0.00,0.00,12.18,0.00,0.00,0.00,15.29,0.00,0.00,0.00,14.43,0.00 +002941.SZ,0.00,0.00,0.00,0.00,0.00,0.00,0.00,48.12,0.00,0.00,0.00,36.02,0.00,0.00,0.00,41.82,0.00,0.00,0.00,33.74,0.00 +688468.SH,0.00,18.01,0.00,0.00,0.00,0.00,0.00,16.63,0.00,0.00,0.00,18.86,0.00,0.00,0.00,15.52,0.00,0.00,0.00,16.14,0.00 +301042.SZ,62.09,62.16,0.00,64.96,51.74,0.00,0.00,56.86,0.00,0.00,0.00,55.11,0.00,0.00,0.00,43.72,0.00,0.00,0.00,43.98,0.00 +688596.SH,37.54,0.00,0.00,29.75,0.00,0.00,0.00,27.65,0.00,0.00,0.00,29.46,0.00,0.00,0.00,24.82,0.00,0.00,0.00,26.36,0.00 +301309.SZ,0.00,0.00,0.00,62.12,0.00,58.89,0.00,58.95,0.00,57.95,0.00,60.24,0.00,0.00,0.00,56.71,0.00,0.00,0.00,61.56,0.00 +601368.SH,0.00,0.00,0.00,44.32,0.00,0.00,0.00,53.39,0.00,0.00,0.00,61.92,0.00,0.00,0.00,62.86,0.00,0.00,0.00,63.77,0.00 +002749.SZ,0.00,0.00,0.00,9.61,0.00,0.00,0.00,7.34,0.00,0.00,0.00,8.66,0.00,0.00,0.00,7.14,0.00,0.00,0.00,5.60,0.00 +301468.SZ,0.00,0.00,0.00,28.41,0.00,64.01,60.03,53.93,0.00,66.53,0.00,52.13,0.00,0.00,0.00,68.57,0.00,0.00,0.00,54.68,0.00 +603799.SH,0.00,0.00,0.00,41.25,0.00,0.00,0.00,12.00,0.00,0.00,0.00,53.68,0.00,0.00,0.00,48.62,0.00,0.00,0.00,39.34,0.00 +600463.SH,0.00,0.00,0.00,51.98,0.00,0.00,0.00,43.57,0.00,0.00,0.00,67.59,0.00,0.00,0.00,44.50,0.00,0.00,0.00,62.99,0.00 +002517.SZ,0.00,0.00,0.00,25.32,0.00,0.00,0.00,39.76,0.00,0.00,0.00,36.36,0.00,0.00,0.00,33.56,0.00,0.00,0.00,19.46,0.00 +002671.SZ,0.00,0.00,0.00,48.59,0.00,0.00,0.00,47.51,0.00,0.00,0.00,35.12,0.00,0.00,0.00,36.40,0.00,0.00,0.00,62.69,0.00 +603530.SH,0.00,0.00,0.00,56.60,0.00,0.00,0.00,53.79,0.00,0.00,0.00,57.36,0.00,0.00,0.00,56.29,0.00,0.00,0.00,51.00,0.00 +301548.SZ,0.00,0.00,0.00,48.57,0.00,47.40,0.00,44.41,0.00,0.00,0.00,44.36,0.00,44.28,0.00,37.78,0.00,0.00,0.00,33.63,0.00 +600790.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +603909.SH,0.00,0.00,0.00,17.67,0.00,0.00,0.00,18.96,0.00,0.00,0.00,45.83,0.00,0.00,0.00,84.02,0.00,0.00,0.00,90.82,0.00 +600030.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +002545.SZ,0.00,0.00,0.00,29.16,0.00,0.00,0.00,36.03,0.00,0.00,0.00,31.92,0.00,0.00,0.00,48.60,0.00,0.00,0.00,46.46,0.00 +300831.SZ,0.00,0.00,0.00,75.38,0.00,0.00,0.00,72.68,0.00,0.00,0.00,70.51,0.00,0.00,0.00,60.60,0.00,0.00,0.00,85.98,0.00 +000529.SZ,0.00,0.00,0.00,11.13,0.00,0.00,0.00,10.86,0.00,0.00,0.00,16.63,0.00,0.00,0.00,23.65,0.00,0.00,0.00,21.17,0.00 +688197.SH,0.00,0.00,100.00,100.00,0.00,100.00,100.00,100.00,0.00,0.00,0.00,99.96,0.00,0.00,0.00,100.00,0.00,0.00,0.00,100.00,0.00 +603970.SH,0.00,0.00,0.00,9.08,0.00,0.00,0.00,9.65,0.00,0.00,0.00,13.69,0.00,0.00,0.00,13.20,0.00,0.00,0.00,14.69,0.00 +603779.SH,0.00,0.00,0.00,29.12,0.00,0.00,0.00,23.52,0.00,0.00,0.00,35.76,0.00,0.00,0.00,37.33,0.00,0.00,0.00,38.38,0.00 +688253.SH,0.00,0.00,0.00,23.06,0.00,41.21,0.00,34.36,37.89,0.00,0.00,38.57,0.00,0.00,0.00,24.46,0.00,0.00,0.00,24.18,0.00 +600257.SH,0.00,0.00,0.00,24.21,0.00,0.00,0.00,21.72,0.00,0.00,0.00,32.33,0.00,0.00,0.00,26.26,0.00,0.00,0.00,38.13,0.00 +600961.SH,0.00,0.00,0.00,16.84,0.00,0.00,0.00,23.90,0.00,0.00,0.00,24.10,0.00,0.00,0.00,21.11,0.00,0.00,0.00,31.97,0.00 +300625.SZ,0.00,0.00,0.00,15.25,0.00,0.00,0.00,14.09,0.00,0.00,0.00,12.67,0.00,0.00,0.00,13.79,0.00,0.00,0.00,12.92,0.00 +300737.SZ,0.00,0.00,0.00,14.02,0.00,0.00,0.00,17.67,0.00,0.00,0.00,17.42,0.00,0.00,0.00,18.69,0.00,0.00,0.00,18.93,0.00 +688061.SH,0.00,0.00,0.00,41.85,0.00,42.43,0.00,42.18,0.00,0.00,0.00,51.85,0.00,0.00,0.00,48.24,0.00,0.00,0.00,38.48,0.00 +600833.SH,0.00,0.00,0.00,9.79,0.00,0.00,0.00,10.04,0.00,0.00,0.00,31.86,0.00,0.00,0.00,9.46,0.00,0.00,0.00,9.30,0.00 +300981.SZ,38.81,23.51,0.00,0.00,0.00,0.00,0.00,48.71,0.00,0.00,0.00,30.46,0.00,0.00,0.00,15.76,0.00,0.00,0.00,12.54,0.00 +605365.SH,0.00,55.40,0.00,53.62,0.00,0.00,0.00,48.96,0.00,0.00,0.00,51.45,0.00,0.00,0.00,43.54,0.00,0.00,0.00,44.06,0.00 +300003.SZ,0.00,0.00,0.00,7.01,0.00,0.00,0.00,11.71,0.00,0.00,0.00,5.02,0.00,0.00,0.00,5.49,0.00,0.00,0.00,5.61,0.00 +300628.SZ,0.00,0.00,0.00,34.41,0.00,0.00,0.00,37.04,0.00,0.00,0.00,34.44,0.00,0.00,0.00,31.87,0.00,0.00,0.00,32.10,0.00 +688321.SH,0.00,0.00,0.00,81.81,0.00,0.00,0.00,81.67,0.00,0.00,0.00,80.13,0.00,0.00,0.00,77.85,0.00,0.00,0.00,76.02,0.00 +300856.SZ,0.00,0.00,0.00,62.33,0.00,0.00,0.00,57.08,0.00,0.00,0.00,61.87,0.00,0.00,0.00,63.86,0.00,0.00,0.00,61.32,0.00 +002746.SZ,0.00,0.00,0.00,36.05,0.00,6.33,0.00,32.51,0.00,0.00,0.00,28.51,0.00,4.24,0.00,26.76,0.00,3.69,0.00,30.83,0.00 +002172.SZ,0.00,0.00,0.00,5.76,0.00,0.00,0.00,8.17,0.00,0.00,0.00,7.91,0.00,0.00,0.00,9.25,0.00,0.00,0.00,10.70,0.00 +603929.SH,0.00,0.00,0.00,50.20,0.00,0.00,0.00,53.06,0.00,0.00,0.00,65.41,0.00,0.00,0.00,79.28,0.00,0.00,0.00,87.77,0.00 +000738.SZ,0.00,0.00,0.00,85.22,0.00,0.00,0.00,88.48,0.00,0.00,0.00,91.25,0.00,0.00,0.00,91.02,0.00,0.00,0.00,91.71,0.00 +000421.SZ,0.00,0.00,0.00,1.65,0.00,0.44,0.00,5.53,0.00,0.00,0.00,4.87,0.00,0.00,0.00,7.02,0.00,0.00,0.00,5.10,0.00 +600500.SH,0.00,0.00,0.00,8.27,0.00,0.00,0.00,7.30,0.00,0.00,0.00,8.93,0.00,0.00,0.00,0.00,0.00,0.00,0.00,7.95,0.00 +603058.SH,0.00,0.00,0.00,93.62,0.00,0.00,0.00,72.26,0.00,0.00,0.00,86.44,0.00,0.00,0.00,82.54,0.00,0.00,0.00,90.32,0.00 +603701.SH,0.00,0.00,0.00,70.72,0.00,0.00,0.00,64.69,0.00,0.00,0.00,16.78,0.00,0.00,0.00,53.70,0.00,0.00,0.00,51.95,0.00 +002803.SZ,0.00,0.00,0.00,25.78,0.00,0.00,0.00,30.49,0.00,0.00,0.00,25.76,0.00,0.00,0.00,24.27,0.00,0.00,0.00,27.15,0.00 +603612.SH,0.00,0.00,0.00,57.56,0.00,0.00,0.00,55.32,0.00,0.00,0.00,50.04,0.00,0.00,0.00,52.86,0.00,0.00,0.00,46.40,0.00 +688337.SH,0.00,0.00,0.00,26.23,0.00,27.45,0.00,0.00,0.00,0.00,0.00,28.67,0.00,0.00,0.00,32.36,0.00,0.00,0.00,30.88,0.00 +001309.SZ,0.00,66.45,0.00,82.88,0.00,64.43,0.00,79.13,0.00,0.00,0.00,43.70,0.00,0.00,0.00,24.92,0.00,0.00,0.00,51.21,0.00 +002906.SZ,0.00,0.00,0.00,46.00,0.00,0.00,0.00,43.25,0.00,0.00,0.00,38.05,0.00,0.00,0.00,37.87,0.00,0.00,0.00,46.08,0.00 +603707.SH,0.00,0.00,0.00,41.14,0.00,0.00,0.00,46.80,0.00,0.00,0.00,46.36,0.00,0.00,0.00,56.98,0.00,0.00,0.00,57.96,0.00 +600936.SH,0.00,0.00,0.00,11.47,0.00,0.00,0.00,34.53,0.00,0.00,0.00,11.88,0.00,0.00,0.00,8.75,0.00,0.00,0.00,17.08,0.00 +002752.SZ,0.00,0.00,0.00,40.46,0.00,0.00,0.00,46.36,0.00,0.00,0.00,37.96,0.00,0.00,0.00,38.81,0.00,0.00,0.00,36.89,0.00 +301275.SZ,0.00,0.00,0.00,72.47,0.00,0.00,0.00,39.17,0.00,0.00,0.00,56.36,0.00,65.72,0.00,55.14,0.00,55.08,0.00,49.50,0.00 +688369.SH,0.00,0.00,0.00,3.49,0.00,0.00,0.00,4.34,0.00,0.00,0.00,3.63,0.00,0.00,0.00,5.55,0.00,0.00,0.00,4.73,0.00 +603866.SH,0.00,0.00,0.00,10.03,0.00,0.00,0.00,9.18,0.00,0.00,0.00,8.84,0.00,0.00,0.00,7.58,0.00,0.00,0.00,7.72,0.00 +603282.SH,0.00,0.00,0.00,29.33,0.00,34.09,0.00,25.04,0.00,0.00,0.00,40.58,0.00,0.00,0.00,44.82,0.00,0.00,0.00,49.29,0.00 +300557.SZ,0.00,0.00,0.00,33.87,0.00,0.00,0.00,40.09,0.00,0.00,0.00,27.59,0.00,0.00,0.00,33.09,0.00,0.00,0.00,25.86,0.00 +603181.SH,0.00,0.00,0.00,14.68,0.00,0.00,0.00,13.11,0.00,0.00,0.00,12.24,0.00,0.00,0.00,13.47,0.00,0.00,0.00,12.80,0.00 +300247.SZ,0.00,0.00,0.00,36.48,0.00,0.00,0.00,30.05,0.00,0.00,0.00,36.08,0.00,0.00,0.00,36.25,0.00,0.00,0.00,34.30,0.00 +688466.SH,0.00,0.00,0.00,58.68,0.00,0.00,0.00,51.74,0.00,0.00,0.00,56.91,0.00,0.00,0.00,57.66,0.00,0.00,0.00,62.73,0.00 +600433.SH,0.00,0.00,0.00,19.41,0.00,0.00,0.00,11.79,0.00,0.00,0.00,12.93,0.00,0.00,0.00,14.52,0.00,0.00,0.00,14.62,0.00 +301185.SZ,0.00,69.97,45.49,42.72,0.00,47.80,0.00,46.48,0.00,0.00,0.00,42.01,0.00,0.00,0.00,40.87,0.00,0.00,0.00,39.16,0.00 +603275.SH,0.00,0.00,0.00,22.31,0.00,0.00,0.00,19.87,0.00,21.19,0.00,23.90,0.00,0.00,0.00,24.84,0.00,0.00,0.00,24.50,0.00 +300027.SZ,0.00,0.00,0.00,98.81,0.00,94.62,0.00,91.44,0.00,0.00,0.00,55.74,0.00,0.00,0.00,87.84,0.00,0.00,0.00,74.83,0.00 +300482.SZ,0.00,0.00,0.00,18.88,0.00,0.00,0.00,11.37,0.00,0.00,0.00,43.90,0.00,0.00,0.00,10.05,0.00,0.00,0.00,11.50,0.00 +603182.SH,0.00,0.00,0.00,21.03,0.00,26.30,0.00,23.63,0.00,28.77,0.00,25.44,0.00,0.00,0.00,24.19,0.00,0.00,0.00,21.10,0.00 +600239.SH,0.00,0.00,0.00,5.14,0.00,0.00,0.00,1.61,0.00,0.00,0.00,3.75,0.00,0.00,0.00,3.37,0.00,0.00,0.00,3.18,0.00 +002880.SZ,0.00,0.00,0.00,24.14,0.00,0.00,0.00,30.22,0.00,0.00,0.00,30.63,0.00,0.00,0.00,23.12,0.00,0.00,0.00,27.95,0.00 +603227.SH,0.00,0.00,0.00,38.75,0.00,36.87,0.00,32.46,0.00,30.35,0.00,22.70,0.00,25.36,0.00,27.96,0.00,26.50,0.00,28.00,0.00 +600378.SH,0.00,0.00,0.00,9.70,0.00,0.00,0.00,8.90,0.00,0.00,0.00,13.55,0.00,0.00,0.00,13.51,0.00,0.00,0.00,11.63,0.00 +832145.BJ,0.00,0.00,0.00,77.71,0.00,75.85,0.00,72.89,0.00,0.00,0.00,81.30,0.00,0.00,0.00,82.88,0.00,0.00,0.00,85.76,0.00 +600237.SH,0.00,0.00,0.00,17.89,0.00,0.00,0.00,16.16,0.00,0.00,0.00,17.80,0.00,0.00,0.00,18.81,0.00,0.00,0.00,23.28,0.00 +002572.SZ,0.00,0.00,0.00,16.66,0.00,0.00,0.00,17.52,0.00,0.00,0.00,13.38,0.00,0.00,0.00,13.50,0.00,0.00,0.00,11.97,0.00 +300529.SZ,0.00,0.00,0.00,11.29,0.00,0.00,0.00,11.72,0.00,0.00,0.00,20.45,0.00,0.00,0.00,12.58,0.00,0.00,0.00,13.39,0.00 +000707.SZ,0.00,0.00,0.00,17.25,0.00,0.00,0.00,14.24,0.00,0.00,0.00,22.83,0.00,0.00,0.00,23.80,0.00,0.00,0.00,24.60,0.00 +600310.SH,0.00,0.00,0.00,55.80,0.00,0.00,0.00,31.95,0.00,0.00,0.00,35.68,0.00,0.00,0.00,38.04,0.00,0.00,0.00,45.64,0.00 +600320.SH,0.00,0.00,0.00,19.00,0.00,0.00,0.00,17.78,0.00,0.00,0.00,18.09,0.00,0.00,0.00,16.04,0.00,0.00,0.00,18.00,0.00 +300767.SZ,0.00,0.00,0.00,54.31,0.00,0.00,0.00,40.65,0.00,0.00,0.00,44.56,0.00,0.00,0.00,30.98,0.00,0.00,0.00,33.83,0.00 +000019.SZ,0.00,0.00,0.00,35.68,0.00,0.00,0.00,27.80,0.00,0.00,0.00,29.21,0.00,0.00,0.00,26.87,0.00,0.00,0.00,26.69,0.00 +688101.SH,0.00,0.00,0.00,27.14,0.00,0.00,0.00,100.00,0.00,0.00,0.00,22.40,0.00,0.00,0.00,37.03,0.00,0.00,0.00,23.26,0.00 +688766.SH,50.72,0.00,46.02,47.50,0.00,0.00,0.00,38.78,0.00,0.00,0.00,40.09,0.00,0.00,0.00,39.10,0.00,0.00,0.00,40.00,0.00 +300610.SZ,0.00,0.00,0.00,12.93,0.00,0.00,0.00,12.22,0.00,0.00,0.00,10.74,0.00,0.00,0.00,12.04,0.00,0.00,0.00,11.36,0.00 +300953.SZ,0.00,58.87,0.00,65.22,0.00,0.00,0.00,73.68,0.00,0.00,0.00,71.95,0.00,0.00,0.00,69.17,0.00,0.00,0.00,67.17,0.00 +000652.SZ,0.00,0.00,0.00,38.21,0.00,3.15,0.00,42.57,0.00,0.00,0.00,32.25,0.00,0.00,0.00,49.20,0.00,0.00,0.00,58.16,0.00 +000050.SZ,0.00,0.00,0.00,50.91,0.00,0.00,0.00,41.50,0.00,0.00,0.00,31.29,0.00,0.00,0.00,38.21,0.00,0.00,0.00,36.30,0.00 +603667.SH,0.00,0.00,0.00,52.96,0.00,0.00,0.00,51.90,0.00,0.00,0.00,50.85,0.00,0.00,0.00,44.78,0.00,0.00,0.00,43.92,0.00 +603656.SH,0.00,0.00,0.00,18.17,0.00,0.00,0.00,4.27,0.00,0.00,0.00,3.89,0.00,0.00,0.00,16.89,0.00,0.00,0.00,14.36,0.00 +002169.SZ,0.00,0.00,0.00,28.90,0.00,0.00,0.00,22.87,0.00,0.00,0.00,20.73,0.00,0.00,0.00,27.19,0.00,0.00,0.00,22.27,0.00 +002441.SZ,0.00,0.00,0.00,3.37,0.00,0.00,0.00,2.89,0.00,0.00,0.00,2.34,0.00,0.00,0.00,3.82,0.00,0.00,0.00,3.07,0.00 +688508.SH,39.85,0.00,0.00,38.02,0.00,0.00,0.00,36.76,0.00,0.00,0.00,35.35,0.00,0.00,0.00,40.91,0.00,0.00,0.00,43.16,0.00 +300804.SZ,0.00,0.00,0.00,27.37,0.00,34.23,0.00,34.40,0.00,46.17,0.00,42.84,60.33,0.00,0.00,42.72,0.00,0.00,0.00,40.43,0.00 +688366.SH,0.00,0.00,0.00,18.30,0.00,0.00,0.00,13.56,0.00,0.00,0.00,9.94,0.00,0.00,0.00,9.83,0.00,0.00,0.00,9.21,0.00 +603180.SH,0.00,0.00,0.00,8.34,0.00,0.00,0.00,7.43,0.00,0.00,0.00,7.29,0.00,0.00,0.00,7.88,0.00,0.00,0.00,7.00,0.00 +002984.SZ,0.00,0.00,0.00,43.63,0.00,0.00,0.00,44.76,0.00,0.00,0.00,43.19,0.00,0.00,0.00,41.96,0.00,0.00,0.00,46.30,0.00 +300699.SZ,0.00,0.00,0.00,82.98,0.00,0.00,0.00,77.77,0.00,0.00,0.00,74.75,0.00,0.00,0.00,74.54,0.00,0.00,0.00,76.45,0.00 +000089.SZ,0.00,0.00,0.00,46.39,0.00,0.00,0.00,46.48,0.00,0.00,0.00,41.91,0.00,0.00,0.00,46.39,0.00,0.00,0.00,57.46,0.00 +000020.SZ,0.00,0.00,0.00,69.72,0.00,0.00,0.00,67.13,0.00,0.00,0.00,65.91,0.00,0.00,0.00,78.08,0.00,0.00,0.00,89.72,0.00 +603060.SH,0.00,0.00,0.00,6.48,0.00,0.00,0.00,9.75,0.00,0.00,0.00,7.00,0.00,0.00,0.00,10.46,0.00,0.00,0.00,8.38,0.00 +603319.SH,0.00,0.00,0.00,54.69,0.00,0.00,0.00,50.81,0.00,0.00,0.00,47.58,0.00,0.00,0.00,46.50,0.00,0.00,0.00,45.01,0.00 +002412.SZ,0.00,0.00,0.00,16.40,0.00,0.00,0.00,12.38,0.00,0.00,0.00,15.54,0.00,0.00,0.00,14.93,0.00,0.00,0.00,15.35,0.00 +002687.SZ,0.00,0.00,0.00,5.34,0.00,0.00,0.00,12.07,0.00,0.00,0.00,7.57,0.00,0.00,0.00,7.05,0.00,0.00,0.00,6.17,0.00 +002160.SZ,0.00,0.00,0.00,22.79,0.00,0.00,0.00,18.28,0.00,0.00,0.00,19.86,0.00,0.00,0.00,18.23,0.00,0.00,0.00,15.33,0.00 +603331.SH,0.00,0.00,0.00,65.52,0.00,0.00,0.00,64.16,0.00,0.00,0.00,68.98,0.00,0.00,0.00,71.11,0.00,0.00,0.00,70.06,0.00 +003018.SZ,0.00,92.84,0.00,91.52,0.00,89.33,0.00,86.89,0.00,84.62,0.00,83.30,0.00,82.10,0.00,81.66,0.00,78.20,0.00,76.71,0.00 +603800.SH,0.00,0.00,0.00,36.95,0.00,0.00,0.00,32.32,0.00,0.00,0.00,17.49,0.00,0.00,0.00,45.03,0.00,0.00,0.00,59.25,0.00 +603456.SH,0.00,0.00,0.00,51.16,0.00,0.00,0.00,56.75,0.00,0.00,0.00,57.24,0.00,0.00,0.00,61.75,0.00,0.00,0.00,64.31,0.00 +603718.SH,0.00,0.00,0.00,14.43,0.00,0.00,0.00,18.84,0.00,0.00,0.00,24.51,0.00,0.00,0.00,29.92,0.00,0.00,0.00,19.62,0.00 +002271.SZ,0.00,0.00,0.00,17.57,0.00,0.00,0.00,14.16,0.00,0.00,0.00,8.64,0.00,0.00,0.00,4.88,0.00,0.00,0.00,3.92,0.00 +002210.SZ,0.00,0.00,0.00,94.12,0.00,0.00,0.00,96.27,0.00,0.00,0.00,93.23,0.00,0.00,0.00,93.56,0.00,0.00,0.00,79.96,0.00 +000788.SZ,0.00,0.00,0.00,42.15,0.00,0.00,0.00,46.46,0.00,0.00,0.00,49.32,0.00,0.00,0.00,51.97,0.00,0.00,0.00,59.03,0.00 +002224.SZ,0.00,0.00,0.00,20.68,0.00,0.00,0.00,22.63,0.00,0.00,0.00,30.25,0.00,0.00,0.00,22.00,0.00,0.00,0.00,20.68,0.00 +688690.SH,34.46,0.00,27.03,25.67,0.00,0.00,0.00,32.61,0.00,0.00,0.00,22.33,0.00,0.00,0.00,15.60,0.00,0.00,0.00,16.34,0.00 +001210.SZ,0.00,16.83,0.00,16.29,16.27,0.00,0.00,15.63,0.00,0.00,0.00,15.55,0.00,0.00,0.00,13.34,0.00,0.00,0.00,12.02,0.00 +603113.SH,0.00,0.00,0.00,37.48,0.00,0.00,0.00,3.32,0.00,0.00,0.00,8.07,0.00,0.00,0.00,23.42,0.00,0.00,0.00,0.00,0.00 +002690.SZ,0.00,0.00,0.00,12.88,0.00,0.00,0.00,12.78,0.00,0.00,0.00,12.24,0.00,0.00,0.00,9.35,0.00,0.00,0.00,8.52,0.00 +301305.SZ,0.00,0.00,0.00,78.24,0.00,66.36,0.00,61.72,0.00,67.33,0.00,61.93,0.00,0.00,0.00,32.96,0.00,0.00,0.00,42.16,0.00 +301332.SZ,0.00,0.00,0.00,43.64,0.00,47.77,0.00,47.23,0.00,39.02,0.00,39.60,0.00,0.00,0.00,35.36,0.00,0.00,0.00,42.29,0.00 +301246.SZ,0.00,0.00,0.00,18.20,0.00,30.53,0.00,26.70,0.00,24.95,0.00,31.40,0.00,0.00,0.00,27.74,0.00,0.00,0.00,22.33,0.00 +300436.SZ,0.00,0.00,0.00,44.17,0.00,0.00,0.00,45.14,0.00,0.00,0.00,44.89,0.00,0.00,0.00,46.77,0.00,0.00,0.00,48.59,0.00 +002648.SZ,0.00,0.00,0.00,10.16,0.00,0.00,0.00,9.54,0.00,0.00,0.00,11.44,0.00,0.00,0.00,8.01,0.00,0.00,0.00,10.27,0.00 +002374.SZ,0.00,0.00,0.00,37.83,0.00,0.00,0.00,43.90,0.00,0.00,0.00,38.69,0.00,0.00,0.00,41.27,0.00,0.00,0.00,45.01,0.00 +688092.SH,0.00,8.63,0.00,8.47,0.00,0.00,0.00,12.59,0.00,0.00,0.00,15.79,0.00,0.00,0.00,20.52,0.00,0.00,0.00,15.99,0.00 +301115.SZ,0.00,0.00,0.00,20.57,0.00,19.61,0.00,18.47,0.00,0.00,0.00,11.76,0.00,0.00,0.00,10.87,0.00,0.00,0.00,11.34,0.00 +002082.SZ,0.00,0.00,0.00,17.42,0.00,0.00,0.00,38.12,0.00,0.00,0.00,11.78,0.00,0.00,0.00,10.60,0.00,0.00,0.00,16.09,0.00 +603955.SH,0.00,0.00,0.00,69.38,0.00,0.00,0.00,55.95,0.00,0.00,0.00,44.30,0.00,0.00,0.00,72.76,0.00,0.00,0.00,54.05,0.00 +300777.SZ,0.00,0.00,0.00,99.61,0.00,0.00,0.00,99.25,0.00,0.00,0.00,98.51,0.00,0.00,0.00,99.98,0.00,0.00,0.00,99.55,0.00 +301233.SZ,0.00,47.09,0.00,45.46,0.00,43.41,42.47,41.38,44.42,0.00,0.00,41.21,0.00,0.00,0.00,45.10,0.00,0.00,0.00,48.76,0.00 +688114.SH,0.00,0.00,46.94,34.72,0.00,0.00,0.00,25.95,0.00,0.00,0.00,32.01,0.00,47.96,0.00,46.63,0.00,41.49,0.00,43.58,0.00 +002705.SZ,0.00,0.00,0.00,24.92,0.00,0.00,0.00,25.11,0.00,0.00,0.00,23.24,0.00,0.00,0.00,22.78,0.00,0.00,0.00,24.49,0.00 +300190.SZ,0.00,0.00,0.00,14.13,0.00,0.00,0.00,22.85,0.00,0.00,0.00,25.69,0.00,0.00,0.00,25.24,0.00,0.00,0.00,22.46,0.00 +603096.SH,0.00,0.00,0.00,66.61,0.00,0.00,0.00,59.55,0.00,0.00,0.00,55.07,0.00,0.00,0.00,56.14,0.00,0.00,0.00,54.09,0.00 +603989.SH,0.00,0.00,0.00,14.74,0.00,0.00,0.00,16.58,0.00,0.00,0.00,21.56,0.00,0.00,0.00,20.23,0.00,0.00,0.00,17.74,0.00 +002808.SZ,0.00,0.00,0.00,19.00,0.00,0.00,0.00,25.11,0.00,0.00,0.00,18.73,0.00,0.00,0.00,23.67,0.00,0.00,0.00,25.69,0.00 +002969.SZ,0.00,0.00,0.00,71.78,0.00,0.00,0.00,77.07,0.00,0.00,0.00,70.74,0.00,0.00,0.00,78.89,0.00,0.00,0.00,68.68,0.00 +601999.SH,0.00,0.00,0.00,23.39,0.00,0.00,0.00,19.62,0.00,0.00,0.00,24.30,0.00,0.00,0.00,24.40,0.00,0.00,0.00,28.44,0.00 +600778.SH,0.00,0.00,0.00,0.91,0.00,0.00,0.00,0.79,0.00,0.00,0.00,0.39,0.00,0.00,0.00,3.46,0.00,0.00,0.00,1.14,0.00 +301267.SZ,0.12,0.00,0.03,0.02,0.00,0.04,0.00,0.02,0.00,0.04,0.00,0.00,0.00,0.00,0.00,0.02,0.00,0.00,0.00,0.02,0.00 +002019.SZ,0.00,0.00,0.00,32.38,0.00,0.00,0.00,21.13,0.00,0.00,0.00,19.70,0.00,0.00,0.00,21.43,0.00,0.00,0.00,33.98,0.00 +002234.SZ,0.00,0.00,0.00,24.79,0.00,0.00,0.00,28.37,0.00,0.00,0.00,16.04,0.00,0.00,0.00,13.45,0.00,0.00,0.00,13.52,0.00 +000560.SZ,0.00,0.00,0.00,1.75,0.00,0.00,0.00,1.72,0.00,0.00,0.00,1.48,0.00,0.00,0.00,1.05,0.00,0.00,0.00,1.48,0.00 +002382.SZ,0.00,0.00,0.00,22.43,0.00,0.00,0.00,23.24,0.00,0.00,0.00,15.54,0.00,0.00,0.00,11.50,0.00,0.00,0.00,13.95,0.00 +002560.SZ,0.00,0.00,0.00,51.51,0.00,0.00,0.00,60.71,0.00,0.00,0.00,26.33,0.00,0.00,0.00,27.51,0.00,0.00,0.00,30.65,0.00 +600596.SH,0.00,0.00,0.00,12.25,0.00,0.00,0.00,12.36,0.00,0.00,0.00,15.37,0.00,0.00,0.00,16.10,0.00,0.00,0.00,12.45,0.00 +000630.SZ,0.00,0.00,0.00,17.39,0.00,24.03,0.00,24.25,0.00,0.00,0.00,28.62,0.00,0.00,0.00,25.84,0.00,0.00,0.00,28.27,0.00 +000998.SZ,0.00,0.00,0.00,4.64,0.00,0.00,0.00,8.59,0.00,0.00,0.00,5.04,0.00,0.00,0.00,7.56,0.00,0.00,0.00,5.94,0.00 +301217.SZ,0.00,58.69,0.00,55.73,0.00,57.56,58.63,60.11,0.00,0.00,0.00,56.26,0.00,0.00,0.00,59.22,0.00,0.00,0.00,66.89,0.00 +000061.SZ,0.00,0.00,0.00,12.10,0.00,0.00,0.00,17.58,0.00,0.00,0.00,20.41,0.00,0.00,0.00,19.23,0.00,0.00,0.00,14.91,0.00 +600197.SH,0.00,0.00,0.00,74.61,0.00,0.00,0.00,67.26,0.00,0.00,0.00,62.31,0.00,0.00,0.00,69.25,0.00,0.00,0.00,69.25,0.00 +605336.SH,4.09,0.00,0.00,3.71,0.00,0.00,0.00,8.56,0.00,0.00,0.00,20.63,0.00,0.00,0.00,10.85,0.00,0.00,0.00,9.29,0.00 +000523.SZ,0.00,0.00,0.00,22.52,0.00,0.00,0.00,33.27,0.00,0.00,0.00,30.86,0.00,0.00,0.00,26.11,0.00,0.00,0.00,37.07,0.00 +000615.SZ,0.00,0.00,0.00,5.76,0.00,0.00,0.00,8.69,0.00,0.00,0.00,16.06,0.00,0.00,0.00,13.10,0.00,0.00,0.00,11.65,0.00 +603725.SH,0.00,0.00,0.00,16.42,0.00,0.00,0.00,14.63,0.00,0.00,0.00,11.87,0.00,0.00,0.00,8.96,0.00,0.00,0.00,8.79,0.00 +001259.SZ,0.00,0.00,0.00,62.09,0.00,60.51,0.00,57.58,0.00,60.04,0.00,60.99,0.00,0.00,0.00,42.55,0.00,0.00,0.00,37.78,0.00 +600496.SH,0.00,0.00,0.00,16.18,0.00,0.00,0.00,19.28,0.00,0.00,0.00,13.38,0.00,0.00,0.00,13.79,0.00,0.00,0.00,17.98,0.00 +603877.SH,0.00,0.00,0.00,8.22,0.00,0.00,0.00,6.30,0.00,0.00,0.00,6.50,0.00,0.00,0.00,7.20,0.00,0.00,0.00,6.97,0.00 +000750.SZ,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +603059.SH,0.00,0.00,0.00,27.64,0.00,0.00,0.00,43.27,0.00,0.00,0.00,32.92,0.00,0.00,0.00,31.71,0.00,0.00,0.00,31.98,0.00 +000909.SZ,0.00,0.00,0.00,72.02,0.00,0.00,0.00,53.44,0.00,45.35,0.00,65.03,0.00,71.93,0.00,56.21,0.00,19.67,0.00,15.00,0.00 +603357.SH,0.00,0.00,0.00,37.94,0.00,0.00,0.00,43.29,0.00,0.00,0.00,28.34,0.00,0.00,0.00,28.07,0.00,0.00,0.00,28.69,0.00 +603613.SH,0.00,0.00,0.00,16.54,0.00,0.00,0.00,12.22,0.00,0.00,0.00,12.94,0.00,0.00,0.00,10.57,0.00,0.00,0.00,11.22,0.00 +000153.SZ,0.00,0.00,0.00,11.12,0.00,0.00,0.00,10.67,0.00,0.00,0.00,10.67,0.00,0.00,0.00,11.39,0.00,0.00,0.00,22.26,0.00 +601005.SH,0.00,0.00,0.00,31.48,0.00,0.00,0.00,24.77,0.00,0.00,0.00,30.28,0.00,0.00,0.00,32.45,0.00,0.00,0.00,33.11,0.00 +603238.SH,0.00,0.00,0.00,21.83,0.00,0.00,0.00,27.22,0.00,0.00,0.00,31.36,0.00,0.00,0.00,26.78,0.00,0.00,0.00,38.18,0.00 +688716.SH,57.40,57.38,0.00,59.36,0.00,0.00,0.00,52.98,60.23,0.00,0.00,59.66,0.00,0.00,0.00,43.99,0.00,0.00,0.00,36.84,0.00 +002333.SZ,0.00,0.00,0.00,20.47,0.00,0.00,0.00,26.10,0.00,0.00,0.00,23.32,0.00,0.00,0.00,41.30,0.00,0.00,0.00,45.05,0.00 +002038.SZ,0.00,0.00,0.00,9.31,0.00,0.00,0.00,10.64,0.00,0.00,0.00,11.72,0.00,0.00,0.00,11.29,0.00,0.00,0.00,13.11,0.00 +300977.SZ,0.00,33.56,0.00,31.02,0.00,0.00,0.00,29.39,0.00,0.00,0.00,27.39,0.00,0.00,0.00,26.19,0.00,0.00,0.00,22.30,0.00 +002551.SZ,0.00,0.00,0.00,65.83,0.00,72.83,0.00,66.04,0.00,78.77,0.00,64.67,0.00,64.36,0.00,64.55,0.00,71.04,0.00,70.57,0.00 +603676.SH,0.00,0.00,0.00,67.27,0.00,0.00,0.00,70.87,0.00,0.00,0.00,70.82,0.00,0.00,0.00,77.71,0.00,0.00,0.00,90.62,0.00 +603711.SH,0.00,0.00,0.00,3.97,0.00,0.00,0.00,4.29,0.00,0.00,0.00,4.20,0.00,0.00,0.00,4.61,0.00,0.00,0.00,0.00,0.00 +600559.SH,0.00,0.00,0.00,6.17,0.00,0.00,0.00,7.43,0.00,0.00,0.00,7.74,0.00,0.00,0.00,7.94,0.00,0.00,0.00,6.89,0.00 +688267.SH,0.00,0.00,0.00,88.12,0.00,89.94,0.00,87.40,0.00,0.00,0.00,86.73,0.00,0.00,0.00,81.95,0.00,0.00,0.00,86.84,0.00 +601995.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +601718.SH,0.00,0.00,0.00,20.63,0.00,0.00,0.00,20.33,0.00,0.00,0.00,36.66,0.00,0.00,0.00,44.30,0.00,0.00,0.00,40.40,0.00 +001211.SZ,0.00,0.00,0.00,30.93,0.00,0.00,0.00,32.13,0.00,0.00,0.00,37.42,0.00,0.00,0.00,25.88,0.00,0.00,0.00,27.73,0.00 +001218.SZ,0.00,39.55,0.00,38.73,0.00,0.00,0.00,37.42,0.00,0.00,0.00,33.05,0.00,0.00,0.00,31.73,0.00,0.00,0.00,30.38,0.00 +600036.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +603500.SH,0.00,0.00,0.00,68.20,0.00,0.00,0.00,45.87,0.00,0.00,0.00,45.90,0.00,0.00,0.00,47.11,0.00,0.00,0.00,47.01,0.00 +002876.SZ,0.00,0.00,0.00,57.03,0.00,0.00,0.00,53.67,0.00,0.00,0.00,64.27,0.00,0.00,0.00,63.23,0.00,0.00,0.00,60.37,0.00 +603931.SH,0.00,0.00,0.00,38.34,0.00,0.00,0.00,64.82,0.00,0.00,0.00,74.38,0.00,0.00,0.00,80.58,0.00,0.00,0.00,86.75,0.00 +601001.SH,0.00,0.00,0.00,41.86,0.00,0.00,0.00,50.02,0.00,0.00,0.00,49.81,0.00,0.00,0.00,54.57,0.00,0.00,0.00,62.74,0.00 +688222.SH,0.00,0.00,0.00,63.38,0.00,0.00,0.00,51.12,0.00,0.00,0.00,39.36,0.00,0.00,0.00,32.43,0.00,0.00,0.00,34.65,0.00 +688439.SH,0.00,0.00,0.00,91.89,0.00,90.96,0.00,90.53,0.00,0.00,0.00,54.64,0.00,0.00,0.00,64.59,0.00,0.00,0.00,53.43,0.00 +601366.SH,0.00,0.00,0.00,3.19,0.00,0.00,0.00,4.50,0.00,0.00,0.00,4.45,0.00,0.00,0.00,3.48,0.00,0.00,0.00,3.62,0.00 +603336.SH,0.00,0.00,0.00,31.53,0.00,0.00,0.00,27.57,0.00,0.00,0.00,25.95,0.00,0.00,0.00,19.67,0.00,0.00,0.00,21.54,0.00 +603380.SH,0.00,0.00,0.00,54.90,0.00,0.00,0.00,50.87,0.00,0.00,0.00,48.71,0.00,0.00,0.00,51.75,0.00,0.00,0.00,53.06,0.00 +301111.SZ,0.00,0.00,44.95,40.69,0.00,34.29,32.24,32.04,0.00,0.00,0.00,34.29,0.00,0.00,0.00,32.06,0.00,0.00,0.00,33.94,0.00 +002930.SZ,0.00,0.00,0.00,13.76,0.00,0.00,0.00,13.36,0.00,0.00,0.00,22.05,0.00,0.00,0.00,21.87,0.00,0.00,0.00,21.43,0.00 +600518.SH,0.00,0.00,0.00,23.08,0.00,0.00,0.00,27.76,0.00,0.00,0.00,26.34,0.00,0.00,0.00,22.76,0.00,0.00,0.00,25.57,0.00 +600022.SH,0.00,0.00,0.00,28.82,0.00,0.00,0.00,28.83,0.00,0.00,0.00,25.59,0.00,0.00,0.00,28.25,0.00,0.00,0.00,30.80,0.00 +002084.SZ,0.00,0.00,0.00,37.97,0.00,0.00,0.00,36.89,0.00,0.00,0.00,35.23,0.00,0.00,0.00,34.84,0.00,0.00,0.00,34.61,0.00 +000705.SZ,0.00,0.00,0.00,11.33,0.00,0.00,0.00,13.71,0.00,0.00,0.00,11.14,0.00,0.00,0.00,12.54,0.00,0.00,0.00,13.22,0.00 +600285.SH,0.00,0.00,0.00,15.86,0.00,0.00,0.00,14.58,0.00,0.00,0.00,11.58,0.00,0.00,0.00,12.71,0.00,0.00,0.00,14.29,0.00 +300246.SZ,0.00,0.00,0.00,25.15,0.00,0.00,0.00,13.24,0.00,0.00,0.00,10.47,0.00,0.00,0.00,9.48,0.00,0.00,0.00,6.47,0.00 +600598.SH,0.00,0.00,0.00,0.96,0.00,0.00,0.00,1.58,0.00,0.00,0.00,0.22,0.00,0.00,0.00,2.02,0.00,0.00,0.00,4.14,0.00 +300266.SZ,0.00,0.00,0.00,65.85,0.00,0.00,0.00,48.99,0.00,39.05,0.00,35.80,0.00,38.34,0.00,44.31,0.00,27.54,0.00,34.25,0.00 +688385.SH,0.00,20.01,0.00,18.04,0.00,0.00,0.00,21.86,0.00,0.00,0.00,32.86,0.00,0.00,0.00,36.42,0.00,0.00,0.00,37.24,0.00 +002679.SZ,0.00,0.00,0.00,83.08,0.00,0.00,0.00,64.04,0.00,0.00,0.00,55.72,0.00,0.00,0.00,61.77,0.00,0.00,0.00,72.48,0.00 +688575.SH,0.00,20.81,0.00,16.83,0.00,0.00,0.00,18.39,0.00,0.00,0.00,41.44,0.00,0.00,0.00,12.68,0.00,0.00,0.00,15.81,0.00 +002858.SZ,0.00,0.00,0.00,40.45,0.00,0.00,0.00,30.58,0.00,0.00,0.00,29.00,0.00,0.00,0.00,22.79,0.00,0.00,0.00,21.32,0.00 +300174.SZ,0.00,0.00,0.00,24.24,0.00,0.00,0.00,23.94,0.00,0.00,0.00,20.87,0.00,0.00,0.00,21.18,0.00,0.00,0.00,15.53,0.00 +688728.SH,51.49,0.00,42.84,41.89,0.00,0.00,0.00,36.68,0.00,0.00,0.00,40.68,0.00,0.00,0.00,37.11,0.00,0.00,0.00,39.35,0.00 +605077.SH,0.00,59.32,55.63,54.71,0.00,0.00,0.00,45.88,0.00,0.00,0.00,46.07,0.00,0.00,0.00,41.29,0.00,0.00,0.00,37.38,0.00 +002424.SZ,0.00,0.00,0.00,17.00,0.00,0.00,0.00,12.16,0.00,0.00,0.00,37.27,0.00,0.00,0.00,40.92,0.00,0.00,0.00,39.14,0.00 +002543.SZ,0.00,0.00,0.00,44.00,0.00,0.00,0.00,51.54,0.00,0.00,0.00,55.07,0.00,0.00,0.00,41.90,0.00,0.00,0.00,45.05,0.00 +301479.SZ,0.00,0.00,0.00,58.60,0.00,0.00,0.00,48.79,0.00,0.00,0.00,59.46,0.00,80.37,0.00,77.65,0.00,78.43,0.00,75.46,0.00 +002223.SZ,0.00,0.00,0.00,20.68,0.00,0.00,0.00,17.42,0.00,0.00,0.00,19.82,0.00,0.00,0.00,19.88,0.00,0.00,0.00,20.05,0.00 +002827.SZ,0.00,0.00,0.00,50.28,0.00,0.00,0.00,55.46,0.00,0.00,0.00,35.38,0.00,0.00,0.00,24.67,0.00,0.00,0.00,29.30,0.00 +688097.SH,49.80,0.00,69.29,0.00,0.00,0.00,0.00,58.17,0.00,0.00,0.00,61.52,0.00,0.00,0.00,61.15,0.00,0.00,0.00,68.56,0.00 +301151.SZ,0.00,17.26,0.00,12.74,0.00,16.05,0.00,12.95,0.00,0.00,0.00,15.69,0.00,0.00,0.00,18.06,0.00,0.00,0.00,18.67,0.00 +000700.SZ,0.00,0.00,0.00,60.86,0.00,0.00,0.00,58.56,0.00,0.00,0.00,62.86,0.00,0.00,0.00,62.05,0.00,0.00,0.00,59.54,0.00 +002826.SZ,0.00,0.00,0.00,60.42,0.00,0.00,0.00,56.56,0.00,0.00,0.00,55.43,0.00,0.00,0.00,50.20,0.00,0.00,0.00,38.09,0.00 +600391.SH,0.00,0.00,0.00,65.92,0.00,0.00,0.00,57.00,0.00,0.00,0.00,74.00,0.00,0.00,0.00,75.00,0.00,0.00,0.00,70.81,0.00 +000797.SZ,0.00,0.00,0.00,17.65,0.00,0.00,0.00,14.76,0.00,0.00,0.00,37.06,0.00,0.00,0.00,13.55,0.00,0.00,0.00,25.36,0.00 +300463.SZ,0.00,0.00,0.00,12.11,0.00,0.00,0.00,9.54,0.00,0.00,0.00,13.78,0.00,0.00,0.00,12.95,0.00,0.00,0.00,17.62,0.00 +002971.SZ,0.00,0.00,0.00,22.04,0.00,0.00,0.00,15.87,0.00,0.00,0.00,22.48,0.00,0.00,0.00,26.60,0.00,0.00,0.00,21.38,0.00 +600888.SH,0.00,0.00,0.00,25.87,0.00,0.00,0.00,6.58,0.00,0.00,0.00,19.14,0.00,23.46,0.00,21.16,0.00,26.54,0.00,26.65,0.00 +301097.SZ,0.00,42.81,0.00,37.34,0.00,47.94,0.00,51.79,0.00,0.00,0.00,48.27,0.00,0.00,0.00,46.98,0.00,0.00,0.00,44.12,0.00 +603659.SH,0.00,0.00,0.00,55.02,0.00,0.00,0.00,72.36,0.00,0.00,0.00,76.67,0.00,0.00,0.00,70.75,0.00,0.00,0.00,65.90,0.00 +603163.SH,0.00,0.00,0.00,42.37,0.00,65.83,0.00,58.45,0.00,0.00,0.00,44.20,0.00,0.00,0.00,44.25,0.00,0.00,0.00,38.11,0.00 +002905.SZ,0.00,0.00,0.00,65.47,0.00,0.00,0.00,65.51,0.00,0.00,0.00,59.60,0.00,0.00,0.00,57.98,0.00,0.00,0.00,68.76,0.00 +002708.SZ,0.00,0.00,0.00,48.26,0.00,0.00,0.00,39.73,0.00,0.00,0.00,32.94,0.00,0.00,0.00,34.08,0.00,0.00,0.00,34.77,0.00 +002556.SZ,0.00,0.00,0.00,5.32,0.00,0.00,0.00,9.99,0.00,0.00,0.00,8.05,0.00,0.00,0.00,6.81,0.00,0.00,0.00,4.37,0.00 +001230.SZ,0.00,0.00,0.00,36.03,0.00,33.57,0.00,34.68,36.07,0.00,0.00,33.44,0.00,0.00,0.00,33.59,0.00,0.00,0.00,30.55,0.00 +002709.SZ,0.00,0.00,0.00,43.47,0.00,0.00,0.00,66.89,0.00,0.00,0.00,70.82,0.00,0.00,0.00,71.23,0.00,0.00,0.00,58.66,0.00 +000007.SZ,0.00,0.00,0.00,44.62,0.00,0.00,0.00,31.62,0.00,0.00,0.00,17.90,0.00,0.00,0.00,17.19,0.00,0.00,0.00,11.13,0.00 +600157.SH,0.00,0.00,0.00,54.69,0.00,0.00,0.00,47.22,0.00,0.00,0.00,47.75,0.00,0.00,0.00,56.12,0.00,0.00,0.00,64.90,0.00 +600359.SH,0.00,0.00,0.00,38.34,0.00,0.00,0.00,39.36,0.00,0.00,0.00,32.35,0.00,0.00,0.00,44.15,0.00,0.00,0.00,45.94,0.00 +000301.SZ,0.00,0.00,0.00,12.24,0.00,0.00,0.00,10.79,0.00,0.00,0.00,13.63,0.00,0.00,0.00,18.19,0.00,0.00,0.00,20.13,0.00 +301088.SZ,0.00,0.23,0.00,0.20,0.00,0.00,0.00,0.22,0.00,0.00,0.00,0.33,0.00,0.00,0.00,0.45,0.00,0.00,0.00,0.35,0.00 +002688.SZ,0.00,0.00,0.00,22.10,0.00,0.00,0.00,21.89,0.00,0.00,0.00,16.09,0.00,0.00,0.00,20.98,0.00,0.00,0.00,19.47,0.00 +002889.SZ,0.00,0.00,0.00,41.35,0.00,0.00,0.00,44.29,0.00,0.00,0.00,37.16,0.00,0.00,0.00,37.99,0.00,0.00,0.00,47.62,0.00 +600993.SH,0.00,0.00,0.00,34.31,0.00,0.00,0.00,31.90,0.00,0.00,0.00,37.81,0.00,0.00,0.00,33.14,0.00,35.74,0.00,41.55,0.00 +301200.SZ,0.00,0.00,0.00,33.72,0.00,23.43,0.00,28.82,0.00,0.00,0.00,36.43,0.00,0.00,0.00,25.01,0.00,0.00,0.00,22.60,0.00 +300388.SZ,0.00,0.00,0.00,24.47,0.00,0.00,0.00,30.55,0.00,0.00,0.00,32.17,0.00,0.00,0.00,32.67,0.00,0.00,0.00,29.62,0.00 +688636.SH,0.00,97.63,0.00,0.00,0.00,0.00,0.00,93.68,0.00,0.00,0.00,87.90,0.00,0.00,0.00,97.52,0.00,0.00,0.00,93.39,0.00 +002371.SZ,0.00,0.00,0.00,43.66,0.00,0.00,0.00,30.55,0.00,0.00,0.00,25.67,0.00,0.00,0.00,28.35,0.00,0.00,0.00,27.88,0.00 +000521.SZ,0.00,0.00,0.00,42.79,0.00,53.53,0.00,52.46,0.00,60.21,0.00,58.33,0.00,59.29,0.00,55.82,0.00,0.00,0.00,55.11,0.00 +600785.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,9.96,0.00 +688819.SH,0.00,17.07,0.00,17.31,0.00,0.00,0.00,18.35,0.00,0.00,0.00,20.77,0.00,0.00,0.00,20.70,0.00,0.00,0.00,20.31,0.00 +002340.SZ,0.00,0.00,0.00,33.12,0.00,0.00,0.00,41.57,0.00,0.00,0.00,43.61,0.00,0.00,0.00,42.38,0.00,0.00,0.00,33.20,0.00 +600343.SH,0.00,0.00,0.00,38.56,0.00,0.00,0.00,18.75,0.00,0.00,0.00,24.01,0.00,0.00,0.00,13.52,0.00,0.00,0.00,19.78,0.00 +600629.SH,0.00,0.00,0.00,12.40,0.00,16.35,0.00,11.95,0.00,0.00,0.00,9.39,0.00,0.00,0.00,8.72,0.00,0.00,0.00,10.11,0.00 +300125.SZ,0.00,0.00,0.00,80.79,0.00,0.00,0.00,52.04,0.00,0.00,0.00,41.03,0.00,0.00,0.00,47.99,0.00,0.00,0.00,84.83,0.00 +300363.SZ,0.00,0.00,0.00,43.05,0.00,0.00,0.00,50.07,0.00,0.00,0.00,77.90,0.00,0.00,0.00,55.25,0.00,0.00,0.00,44.24,0.00 +300206.SZ,0.00,0.00,0.00,33.66,0.00,0.00,0.00,10.16,0.00,0.00,0.00,10.28,0.00,0.00,0.00,8.76,0.00,0.00,0.00,13.02,0.00 +600143.SH,0.00,0.00,0.00,8.41,0.00,5.39,0.00,6.06,0.00,0.00,0.00,7.22,0.00,9.85,0.00,8.72,0.00,0.00,0.00,4.85,0.00 +601033.SH,0.00,0.00,0.00,90.31,0.00,0.00,0.00,86.12,89.91,0.00,86.16,85.51,0.00,87.18,0.00,86.14,0.00,0.00,0.00,86.00,0.00 +600307.SH,0.00,0.00,0.00,13.41,0.00,0.00,0.00,11.86,0.00,0.00,0.00,12.87,0.00,0.00,0.00,14.55,0.00,0.00,0.00,15.28,0.00 +600299.SH,0.00,0.00,0.00,6.00,0.00,0.00,0.00,7.00,0.00,0.00,0.00,9.00,0.00,0.00,0.00,11.00,0.00,0.00,0.00,12.00,0.00 +300450.SZ,0.00,0.00,0.00,54.80,0.00,0.00,0.00,70.76,0.00,0.00,0.00,73.29,0.00,0.00,0.00,56.54,0.00,0.00,0.00,45.18,0.00 +000762.SZ,0.00,0.00,0.00,90.99,0.00,0.00,0.00,53.26,0.00,0.00,0.00,70.17,0.00,0.00,0.00,88.14,0.00,0.00,0.00,77.75,0.00 +300415.SZ,0.00,0.00,0.00,8.02,0.00,0.00,0.00,6.51,0.00,0.00,0.00,8.30,0.00,0.00,0.00,9.04,0.00,0.00,0.00,6.95,0.00 +600369.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +002157.SZ,0.00,0.00,0.00,5.43,0.00,0.00,0.00,2.29,0.00,0.00,0.00,7.99,0.00,0.00,0.00,17.37,0.00,0.00,0.00,28.54,0.00 +000631.SZ,0.00,0.00,0.00,15.39,0.00,37.63,0.00,33.06,0.00,0.00,0.00,37.24,0.00,0.00,0.00,4.38,0.00,0.00,0.00,31.54,0.00 +002612.SZ,0.00,0.00,0.00,11.43,0.00,0.00,0.00,15.63,0.00,0.00,0.00,17.60,0.00,0.00,0.00,13.64,0.00,0.00,0.00,12.00,0.00 +000906.SZ,0.00,0.00,0.00,9.23,0.00,0.00,0.00,9.23,0.00,0.00,0.00,7.47,0.00,0.00,0.00,6.41,0.00,0.00,0.00,7.57,0.00 +600250.SH,0.00,0.00,0.00,50.43,0.00,0.00,0.00,4.47,0.00,0.00,0.00,5.68,0.00,0.00,0.00,11.73,0.00,0.00,0.00,15.46,0.00 +600409.SH,0.00,0.00,0.00,6.84,0.00,0.00,0.00,7.34,0.00,0.00,0.00,8.79,0.00,0.00,0.00,7.71,0.00,0.00,0.00,8.18,0.00 +600740.SH,0.00,0.00,0.00,27.48,0.00,0.00,0.00,34.59,0.00,0.00,0.00,30.75,0.00,0.00,0.00,31.68,0.00,0.00,0.00,34.90,0.00 +001226.SZ,0.00,0.00,0.00,82.41,0.00,84.69,0.00,71.31,87.35,0.00,0.00,85.62,0.00,0.00,0.00,84.40,0.00,0.00,0.00,81.19,0.00 +601989.SH,0.00,0.00,0.00,38.24,0.00,0.00,0.00,33.66,0.00,0.00,0.00,36.39,0.00,0.00,0.00,35.09,0.00,0.00,0.00,52.25,0.00 +603025.SH,0.00,0.00,0.00,27.20,0.00,0.00,0.00,28.20,0.00,0.00,0.00,19.99,0.00,0.00,0.00,23.08,0.00,0.00,0.00,18.38,0.00 +600893.SH,0.00,0.00,0.00,66.21,0.00,0.00,0.00,72.95,0.00,0.00,0.00,73.26,0.00,0.00,0.00,69.69,0.00,0.00,0.00,73.53,0.00 +300810.SZ,0.00,0.00,0.00,96.40,0.00,0.00,0.00,93.75,0.00,0.00,0.00,92.69,0.00,0.00,0.00,81.17,0.00,0.00,0.00,94.01,0.00 +688202.SH,0.00,0.00,0.00,17.28,0.00,0.00,0.00,22.09,0.00,0.00,0.00,15.58,0.00,0.00,0.00,17.34,0.00,0.00,0.00,17.84,0.00 +688687.SH,0.00,46.12,0.00,47.11,0.00,0.00,0.00,52.79,0.00,0.00,0.00,56.69,0.00,0.00,0.00,64.93,0.00,0.00,0.00,67.17,0.00 +301371.SZ,0.00,0.00,0.00,6.20,6.63,0.00,7.13,7.67,0.00,0.00,0.00,9.51,0.00,0.00,0.00,11.83,0.00,0.00,0.00,9.60,0.00 +301060.SZ,0.00,14.93,0.00,13.43,0.00,0.00,0.00,16.29,0.00,0.00,0.00,25.87,0.00,0.00,0.00,19.50,0.00,0.00,0.00,18.42,0.00 +605566.SH,0.00,0.00,0.00,29.91,0.00,29.56,0.00,31.73,0.00,0.00,0.00,29.22,0.00,0.00,0.00,22.57,0.00,0.00,0.00,27.11,0.00 +002182.SZ,0.00,0.00,0.00,12.66,0.00,0.00,0.00,11.45,0.00,0.00,0.00,10.14,0.00,0.00,0.00,11.34,0.00,0.00,0.00,17.26,0.00 +000573.SZ,0.00,0.00,0.00,28.15,0.00,0.00,0.00,24.76,0.00,0.00,0.00,66.32,0.00,0.00,0.00,38.93,0.00,0.00,0.00,74.06,0.00 +603027.SH,0.00,0.00,0.00,14.50,0.00,0.00,0.00,13.33,0.00,0.00,0.00,12.89,0.00,0.00,0.00,9.20,0.00,0.00,0.00,9.03,0.00 +300172.SZ,0.00,0.00,0.00,25.50,0.00,0.00,0.00,27.64,0.00,0.00,0.00,45.35,0.00,0.00,0.00,38.10,0.00,0.00,0.00,32.68,0.00 +300452.SZ,0.00,0.00,0.00,10.71,0.00,0.00,0.00,8.52,0.00,0.00,0.00,6.53,0.00,0.00,0.00,6.98,0.00,0.00,0.00,8.70,0.00 +001366.SZ,0.00,0.00,0.00,6.10,0.00,6.57,0.00,6.20,0.00,7.01,0.00,5.38,0.00,0.00,0.00,5.74,0.00,0.00,0.00,4.38,0.00 +600125.SH,0.00,0.00,0.00,54.55,0.00,0.00,0.00,75.14,0.00,0.00,0.00,73.48,0.00,0.00,0.00,78.86,0.00,0.00,0.00,74.98,0.00 +002500.SZ,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +301515.SZ,0.00,0.00,0.00,28.20,0.00,51.87,0.00,30.69,0.00,0.00,0.00,40.03,0.00,0.00,0.00,37.58,0.00,0.00,0.00,38.10,0.00 +000825.SZ,0.00,0.00,0.00,20.40,0.00,0.00,0.00,27.43,0.00,0.00,0.00,27.99,0.00,0.00,0.00,29.30,0.00,0.00,0.00,24.77,0.00 +603616.SH,0.00,0.00,0.00,49.49,0.00,0.00,0.00,67.83,0.00,0.00,0.00,58.51,0.00,0.00,0.00,55.30,0.00,0.00,0.00,70.19,0.00 +600335.SH,0.00,0.00,0.00,19.12,0.00,0.00,0.00,20.92,0.00,0.00,0.00,23.45,0.00,0.00,0.00,31.02,0.00,0.00,0.00,28.33,0.00 +300528.SZ,0.00,0.00,0.00,25.45,0.00,0.00,0.00,16.46,0.00,0.00,0.00,14.83,0.00,0.00,0.00,17.10,0.00,0.00,0.00,8.41,0.00 +600958.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +300776.SZ,0.00,0.00,0.00,51.91,0.00,0.00,0.00,61.14,0.00,0.00,0.00,55.18,0.00,0.00,0.00,68.42,0.00,0.00,0.00,63.30,0.00 +002302.SZ,0.00,0.00,0.00,64.87,0.00,0.00,0.00,62.42,0.00,0.00,0.00,62.13,0.00,0.00,0.00,56.54,0.00,0.00,0.00,53.61,0.00 +002180.SZ,0.00,0.00,0.00,18.60,0.00,0.00,0.00,15.07,0.00,0.00,0.00,16.92,0.00,0.00,0.00,3.13,0.00,0.00,0.00,22.36,0.00 +688707.SH,0.00,0.00,89.87,89.56,95.39,0.00,0.00,95.35,0.00,0.00,0.00,95.37,0.00,0.00,0.00,92.32,0.00,0.00,0.00,93.71,0.00 +002022.SZ,0.00,0.00,0.00,8.60,0.00,0.00,0.00,9.89,0.00,0.00,0.00,11.70,0.00,0.00,0.00,12.44,0.00,0.00,0.00,11.30,0.00 +000713.SZ,0.00,0.00,0.00,9.99,0.00,0.00,0.00,5.98,0.00,0.00,0.00,8.49,0.00,0.00,0.00,5.92,0.00,0.00,0.00,13.35,0.00 +601600.SH,0.00,0.00,0.00,17.24,0.00,0.00,0.00,14.22,0.00,0.00,0.00,9.72,0.00,0.00,0.00,8.57,0.00,0.00,0.00,12.38,0.00 +600108.SH,0.00,0.00,0.00,8.56,0.00,0.00,0.00,14.53,0.00,0.00,0.00,6.22,0.00,0.00,0.00,7.37,0.00,0.00,0.00,5.88,0.00 +603098.SH,0.00,0.00,0.00,44.25,0.00,0.00,0.00,38.57,0.00,0.00,0.00,8.13,0.00,0.00,0.00,27.93,0.00,0.00,0.00,21.14,0.00 +603111.SH,0.00,0.00,0.00,41.52,0.00,0.00,0.00,41.82,0.00,0.00,0.00,40.05,0.00,0.00,0.00,41.57,0.00,0.00,0.00,28.67,0.00 +603185.SH,0.00,0.00,0.00,69.42,0.00,0.00,0.00,58.89,0.00,0.00,0.00,39.26,0.00,0.00,0.00,50.44,0.00,0.00,0.00,43.25,0.00 +301262.SZ,0.00,97.50,0.00,97.46,0.00,98.25,0.00,98.37,0.00,98.38,0.00,97.86,0.00,0.00,0.00,97.37,0.00,0.00,0.00,96.88,0.00 +002864.SZ,0.00,0.00,0.00,30.73,0.00,0.00,0.00,29.19,0.00,0.00,0.00,28.92,0.00,0.00,0.00,30.30,0.00,0.00,0.00,37.98,0.00 +300087.SZ,0.00,0.00,0.00,16.19,0.00,0.00,0.00,10.89,0.00,0.00,0.00,13.32,0.00,0.00,0.00,8.61,0.00,0.00,0.00,12.89,0.00 +002738.SZ,0.00,0.00,0.00,26.36,0.00,0.00,0.00,38.11,0.00,0.00,0.00,44.70,0.00,0.00,0.00,52.13,0.00,0.00,0.00,26.19,0.00 +688160.SH,0.00,16.65,0.00,19.11,0.00,0.00,0.00,15.45,0.00,0.00,0.00,16.09,0.00,0.00,0.00,19.17,0.00,0.00,0.00,18.74,0.00 +688349.SH,0.00,0.00,81.61,78.70,0.00,88.51,0.00,69.32,0.00,0.00,0.00,60.70,0.00,0.00,0.00,54.65,0.00,0.00,0.00,46.62,0.00 +688375.SH,0.00,0.00,0.00,89.14,0.00,95.49,0.00,93.48,99.14,0.00,0.00,96.94,0.00,0.00,0.00,96.95,0.00,0.00,0.00,89.43,0.00 +002647.SZ,0.00,0.00,0.00,27.06,0.00,0.00,0.00,4.37,0.00,0.00,0.00,2.77,0.00,0.00,0.00,3.55,0.00,0.00,0.00,4.40,0.00 +300983.SZ,0.00,55.27,0.00,55.53,0.00,0.00,0.00,50.73,0.00,0.00,0.00,48.53,0.00,0.00,0.00,35.80,0.00,0.00,0.00,30.04,0.00 +000539.SZ,0.00,0.00,0.00,99.45,0.00,0.00,0.00,98.60,0.00,0.00,0.00,95.68,0.00,0.00,0.00,99.25,0.00,0.00,0.00,99.40,0.00 +000568.SZ,0.00,0.00,0.00,74.79,0.00,67.65,0.00,68.46,0.00,66.54,0.00,67.10,0.00,62.38,0.00,62.28,0.00,67.28,0.00,67.54,0.00 +000902.SZ,0.00,0.00,0.00,6.84,0.00,0.00,0.00,8.82,0.00,0.00,0.00,8.76,0.00,0.00,0.00,6.79,0.00,0.00,0.00,6.35,0.00 +688083.SH,0.00,12.51,0.00,11.73,0.00,0.00,0.00,9.11,0.00,0.00,0.00,7.58,0.00,0.00,0.00,13.91,0.00,0.00,0.00,20.88,0.00 +688657.SH,0.00,0.00,0.00,35.10,0.00,37.00,0.00,28.83,0.00,0.00,0.00,25.61,0.00,0.00,0.00,28.12,0.00,0.00,0.00,29.32,0.00 +000571.SZ,0.00,0.00,0.00,8.87,0.00,0.00,0.00,19.88,0.00,0.00,0.00,36.90,0.00,55.49,0.00,31.82,0.00,0.00,0.00,49.47,0.00 +601006.SH,0.00,0.00,0.00,37.68,0.00,0.00,0.00,36.32,0.00,0.00,0.00,35.24,0.00,0.00,0.00,32.96,0.00,0.00,0.00,34.88,0.00 +301047.SZ,19.93,0.00,54.97,60.80,0.00,0.00,0.00,45.76,0.00,0.00,0.00,18.60,0.00,0.00,0.00,24.80,0.00,0.00,0.00,21.49,0.00 +000919.SZ,0.00,0.00,0.00,38.95,0.00,0.00,0.00,44.17,0.00,0.00,0.00,30.44,0.00,0.00,0.00,41.44,0.00,0.00,0.00,40.08,0.00 +000892.SZ,0.00,133.17,0.00,87.68,0.00,85.87,0.00,69.98,0.00,91.62,0.00,82.11,0.00,83.34,0.00,81.86,0.00,74.17,0.00,90.98,0.00 +002540.SZ,0.00,0.00,0.00,16.86,0.00,0.00,0.00,13.93,0.00,0.00,0.00,11.30,0.00,0.00,0.00,17.28,0.00,0.00,0.00,15.90,0.00 +002728.SZ,0.00,0.00,0.00,18.69,0.00,0.00,0.00,16.50,0.00,0.00,0.00,18.91,0.00,0.00,0.00,13.39,0.00,0.00,0.00,20.41,0.00 +000959.SZ,0.00,0.00,0.00,12.53,0.00,0.00,0.00,10.97,0.00,0.00,0.00,7.46,0.00,0.00,0.00,15.62,0.00,0.00,0.00,14.93,0.00 +601919.SH,0.00,0.00,0.00,4.98,0.00,0.00,0.00,4.57,0.00,0.00,0.00,4.38,0.00,0.00,0.00,3.69,0.00,0.00,0.00,3.74,0.00 +600282.SH,0.00,0.00,0.00,10.21,0.00,0.00,0.00,3.99,0.00,0.00,0.00,7.83,0.00,0.00,0.00,9.66,0.00,0.00,0.00,12.02,0.00 +600058.SH,0.00,0.00,0.00,13.48,0.00,0.00,0.00,16.98,0.00,0.00,0.00,13.29,0.00,0.00,0.00,13.48,0.00,0.00,0.00,13.80,0.00 +002102.SZ,0.00,0.00,0.00,14.68,0.00,0.00,0.00,17.38,0.00,0.00,0.00,17.30,0.00,0.00,0.00,24.29,0.00,0.00,0.00,31.10,0.00 +300677.SZ,0.00,0.00,0.00,20.52,0.00,0.00,0.00,25.04,0.00,0.00,0.00,22.50,0.00,0.00,0.00,19.17,0.00,0.00,0.00,18.65,0.00 +300815.SZ,0.00,0.00,0.00,23.12,0.00,0.00,0.00,19.97,0.00,0.00,0.00,18.07,0.00,0.00,0.00,15.65,0.00,0.00,0.00,13.25,0.00 +000516.SZ,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +002967.SZ,0.00,0.00,0.00,14.29,0.00,0.00,0.00,10.41,0.00,0.00,0.00,10.74,0.00,0.00,0.00,12.09,0.00,0.00,0.00,13.85,0.00 +000709.SZ,0.00,0.00,0.00,47.51,0.00,0.00,0.00,58.79,0.00,0.00,0.00,57.49,0.00,0.00,0.00,53.54,0.00,0.00,0.00,57.58,0.00 +601618.SH,0.00,5.39,0.00,4.40,0.00,4.40,0.00,3.55,0.00,3.90,0.00,3.60,0.00,3.70,0.00,2.79,0.00,3.29,0.00,3.04,0.00 +001229.SZ,0.00,0.00,0.00,18.82,0.00,20.44,0.00,14.73,0.00,0.00,0.00,17.55,0.00,0.00,0.00,16.75,0.00,0.00,0.00,11.46,0.00 +002201.SZ,0.00,0.00,0.00,39.60,0.00,0.00,0.00,22.20,0.00,0.00,0.00,24.81,0.00,0.00,0.00,47.38,0.00,0.00,0.00,47.28,0.00 +603826.SH,0.00,0.00,0.00,24.61,0.00,0.00,0.00,26.91,0.00,0.00,0.00,24.48,0.00,0.00,0.00,21.07,0.00,0.00,0.00,20.85,0.00 +301001.SZ,41.25,0.00,48.19,46.21,0.00,0.00,0.00,35.17,0.00,0.00,0.00,33.87,0.00,0.00,0.00,32.67,0.00,0.00,0.00,42.86,0.00 +300928.SZ,0.00,74.54,0.00,77.62,0.00,0.00,0.00,59.08,0.00,0.00,0.00,63.94,0.00,0.00,0.00,60.75,0.00,0.00,0.00,66.77,0.00 +002282.SZ,0.00,0.00,0.00,19.80,0.00,0.00,0.00,20.01,0.00,0.00,0.00,19.19,0.00,0.00,0.00,24.67,0.00,0.00,0.00,27.80,0.00 +600665.SH,0.00,0.00,0.00,3.10,0.00,0.00,0.00,0.93,0.00,0.00,0.00,1.61,0.00,0.00,0.00,1.44,0.00,0.00,0.00,3.28,0.00 +600033.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +000860.SZ,0.00,0.00,0.00,14.67,0.00,0.00,0.00,16.35,0.00,0.00,0.00,14.83,0.00,17.35,0.00,14.14,0.00,20.08,0.00,15.95,0.00 +002166.SZ,0.00,0.00,0.00,53.68,0.00,0.00,0.00,56.66,0.00,0.00,0.00,60.00,0.00,0.00,0.00,54.93,0.00,0.00,0.00,53.05,0.00 +603408.SH,0.00,0.00,0.00,39.43,0.00,0.00,0.00,39.07,0.00,0.00,0.00,40.20,0.00,0.00,0.00,40.47,0.00,0.00,0.00,38.87,0.00 +688298.SH,0.00,0.00,0.00,55.93,0.00,0.00,0.00,84.73,0.00,0.00,0.00,69.69,0.00,0.00,0.00,20.68,0.00,0.00,0.00,18.49,0.00 +000635.SZ,0.00,0.00,0.00,45.34,0.00,0.00,0.00,51.53,0.00,0.00,0.00,39.47,0.00,0.00,0.00,43.95,0.00,0.00,0.00,33.87,0.00 +300016.SZ,0.00,0.00,0.00,17.80,0.00,0.00,0.00,18.22,0.00,0.00,0.00,19.22,0.00,0.00,0.00,19.34,0.00,0.00,0.00,18.72,0.00 +605337.SH,0.00,6.01,6.24,5.95,0.00,0.00,0.00,5.76,0.00,0.00,0.00,5.77,0.00,0.00,0.00,5.70,0.00,5.74,0.00,6.35,0.00 +601010.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +000592.SZ,0.00,0.00,0.00,32.24,0.00,0.00,0.00,32.70,0.00,0.00,0.00,23.31,0.00,0.00,0.00,20.91,0.00,0.00,0.00,13.17,0.00 +001367.SZ,0.00,0.00,0.00,30.26,0.00,33.15,0.00,31.18,0.00,35.87,0.00,0.00,0.00,0.00,0.00,28.66,0.00,0.00,0.00,0.00,0.00 +688584.SH,0.00,0.00,0.00,76.12,0.00,0.00,0.00,73.44,0.00,71.10,0.00,71.05,0.00,73.84,0.00,76.85,0.00,0.00,0.00,78.01,0.00 +000065.SZ,0.00,0.00,0.00,34.95,0.00,0.00,0.00,29.94,0.00,0.00,0.00,14.25,0.00,0.00,0.00,26.99,0.00,0.00,0.00,35.36,0.00 +002151.SZ,0.00,0.00,0.00,38.76,0.00,0.00,0.00,34.31,0.00,0.00,0.00,44.10,0.00,0.00,0.00,51.04,0.00,0.00,0.00,25.14,0.00 +002372.SZ,0.00,0.00,0.00,4.34,0.00,0.00,0.00,3.11,0.00,0.00,0.00,3.89,0.00,0.00,0.00,3.94,0.00,0.00,0.00,4.56,0.00 +600637.SH,0.00,0.00,0.00,10.65,0.00,24.95,0.00,17.01,0.00,17.30,0.00,13.16,0.00,14.80,0.00,12.16,0.00,0.00,0.00,12.60,0.00 +003009.SZ,0.00,0.00,0.00,45.80,0.00,0.00,0.00,48.66,0.00,0.00,0.00,40.01,0.00,0.00,0.00,37.82,0.00,0.00,0.00,43.29,0.00 +600316.SH,0.00,0.00,0.00,97.57,0.00,0.00,0.00,98.87,0.00,0.00,0.00,99.95,0.00,0.00,0.00,99.87,0.00,0.00,0.00,99.97,0.00 +601933.SH,0.00,0.00,0.00,1.54,0.00,0.00,0.00,0.93,0.00,0.00,0.00,0.70,0.00,0.00,0.00,0.67,0.00,0.00,0.00,0.59,0.00 +002911.SZ,0.00,0.00,0.00,26.00,0.00,0.00,0.00,25.62,0.00,0.00,0.00,25.25,0.00,0.00,0.00,20.68,0.00,0.00,0.00,24.84,0.00 +300391.SZ,0.00,0.00,0.00,41.19,0.00,0.00,0.00,32.44,0.00,0.00,0.00,44.47,0.00,0.00,0.00,40.73,0.00,0.00,0.00,44.30,0.00 +600769.SH,0.00,0.00,0.00,69.51,0.00,0.00,0.00,67.55,0.00,0.00,0.00,98.77,0.00,0.00,0.00,85.08,0.00,0.00,0.00,77.55,0.00 +300009.SZ,0.00,0.00,0.00,12.12,0.00,0.00,0.00,11.24,0.00,0.00,0.00,11.95,0.00,0.00,0.00,16.58,0.00,0.00,0.00,0.00,0.00 +000897.SZ,0.00,0.00,0.00,17.28,0.00,60.95,0.00,7.13,0.00,0.00,0.00,6.28,0.00,0.00,0.00,2.42,0.00,0.00,0.00,2.86,0.00 +688582.SH,0.00,0.00,0.00,73.00,0.00,0.00,0.00,70.05,0.00,77.32,0.00,67.85,0.00,0.00,0.00,74.62,0.00,0.00,0.00,80.42,0.00 +603260.SH,0.00,0.00,0.00,15.16,0.00,0.00,0.00,18.93,0.00,0.00,0.00,15.73,0.00,0.00,0.00,20.40,0.00,0.00,0.00,26.23,0.00 +688683.SH,0.00,37.48,0.00,24.80,0.00,0.00,0.00,27.48,0.00,0.00,0.00,27.84,0.00,0.00,0.00,29.64,0.00,0.00,0.00,22.38,0.00 +603916.SH,0.00,0.00,0.00,12.41,0.00,0.00,0.00,14.75,0.00,0.00,0.00,12.82,0.00,0.00,0.00,16.28,0.00,0.00,0.00,21.89,0.00 +603587.SH,0.00,0.00,0.00,9.24,0.00,0.00,0.00,8.98,0.00,0.00,0.00,9.76,0.00,0.00,0.00,8.89,0.00,0.00,0.00,6.63,0.00 +688522.SH,0.00,0.00,0.00,95.75,0.00,97.27,0.00,69.19,0.00,86.77,0.00,57.99,0.00,0.00,0.00,73.80,0.00,0.00,0.00,54.89,0.00 +601628.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +301292.SZ,0.00,0.00,0.00,35.92,0.00,46.89,0.00,52.76,0.00,52.24,0.00,55.14,0.00,0.00,0.00,54.02,0.00,0.00,0.00,53.96,0.00 +688052.SH,0.00,0.00,0.00,46.45,0.00,56.83,0.00,46.36,0.00,0.00,0.00,40.31,0.00,0.00,0.00,43.21,0.00,0.00,0.00,37.11,0.00 +002812.SZ,0.00,0.00,0.00,52.34,0.00,0.00,0.00,58.92,0.00,0.00,0.00,60.19,0.00,0.00,0.00,53.29,0.00,0.00,0.00,49.51,0.00 +002292.SZ,0.00,0.00,0.00,41.53,0.00,0.00,0.00,41.44,0.00,0.00,0.00,45.88,0.00,0.00,0.00,44.43,0.00,0.00,0.00,48.66,0.00 +002568.SZ,0.00,0.00,0.00,13.33,0.00,15.90,0.00,16.04,0.00,0.00,0.00,12.87,0.00,0.00,0.00,8.85,0.00,0.00,0.00,14.02,0.00 +688163.SH,0.00,57.87,0.00,55.56,0.00,54.75,0.00,32.54,0.00,0.00,0.00,26.43,0.00,0.00,0.00,31.81,0.00,0.00,0.00,31.94,0.00 +301017.SZ,0.00,3.28,0.00,49.48,0.00,0.00,0.00,4.12,0.00,0.00,0.00,6.01,0.00,0.00,0.00,6.75,0.00,0.00,0.00,3.80,0.00 +002497.SZ,0.00,0.00,0.00,9.18,0.00,0.00,0.00,22.75,0.00,0.00,0.00,44.60,0.00,0.00,0.00,52.45,0.00,0.00,0.00,43.69,0.00 +601866.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,60.90,0.00,0.00,0.00,44.49,0.00,0.00,0.00,42.80,0.00,0.00,0.00,52.39,0.00 +000731.SZ,0.00,0.00,0.00,14.16,0.00,0.00,0.00,20.61,0.00,0.00,0.00,21.63,0.00,0.00,0.00,22.43,0.00,0.00,0.00,22.59,0.00 +003039.SZ,0.00,34.40,0.00,33.02,0.00,0.00,0.00,31.88,0.00,0.00,0.00,32.75,0.00,0.00,0.00,37.68,0.00,0.00,0.00,36.21,0.00 +688293.SH,0.00,0.00,0.00,56.74,0.00,0.00,43.68,44.78,0.00,0.00,0.00,40.56,0.00,0.00,0.00,36.81,0.00,0.00,0.00,48.03,0.00 +002548.SZ,0.00,0.00,0.00,15.74,0.00,0.00,0.00,15.37,0.00,0.00,0.00,9.90,0.00,0.00,0.00,13.16,0.00,0.00,0.00,11.81,0.00 +301199.SZ,0.00,84.60,0.00,59.21,0.00,52.88,0.00,54.91,0.00,0.00,0.00,71.08,0.00,0.00,0.00,59.39,0.00,0.00,0.00,82.30,0.00 +688302.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,100.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,100.00,0.00 +603170.SH,0.00,0.00,0.00,44.78,0.00,44.50,0.00,36.71,31.45,0.00,0.00,27.94,0.00,0.00,0.00,31.87,0.00,0.00,0.00,29.85,0.00 +688139.SH,0.00,0.00,0.00,14.34,0.00,0.00,0.00,17.64,0.00,0.00,0.00,25.65,0.00,0.00,0.00,18.40,0.00,0.00,0.00,12.66,0.00 +000507.SZ,0.00,0.00,0.00,28.12,0.00,0.00,0.00,27.07,0.00,0.00,0.00,18.59,0.00,0.00,0.00,21.09,0.00,0.00,0.00,25.97,0.00 +600690.SH,0.00,0.00,0.00,21.55,0.00,0.00,0.00,22.26,0.00,0.00,0.00,22.20,0.00,0.00,0.00,23.30,0.00,0.00,0.00,20.30,0.00 +000607.SZ,0.00,0.00,0.00,8.01,0.00,0.00,0.00,7.60,0.00,0.00,0.00,8.13,0.00,0.00,0.00,8.72,0.00,0.00,0.00,5.64,0.00 +600017.SH,0.00,0.00,0.00,22.02,0.00,0.00,0.00,21.42,0.00,0.00,0.00,19.18,0.00,0.00,0.00,20.03,0.00,0.00,0.00,19.30,0.00 +601369.SH,0.00,0.00,0.00,30.84,0.00,0.00,0.00,10.47,0.00,0.00,0.00,19.06,0.00,0.00,0.00,19.61,0.00,0.00,0.00,22.38,0.00 +688376.SH,26.28,0.00,34.20,37.40,31.75,0.00,0.00,36.97,0.00,29.98,0.00,26.50,0.00,0.00,0.00,37.11,0.00,0.00,0.00,30.42,0.00 +688087.SH,24.52,0.00,32.93,30.76,21.40,0.00,0.00,19.50,0.00,0.00,0.00,16.93,0.00,0.00,0.00,14.56,0.00,0.00,0.00,14.99,0.00 +002817.SZ,0.00,0.00,0.00,23.14,0.00,0.00,0.00,24.92,0.00,0.00,0.00,26.67,0.00,0.00,0.00,19.76,0.00,0.00,0.00,16.49,0.00 +000572.SZ,0.00,0.00,0.00,58.41,0.00,0.00,0.00,76.10,0.00,0.00,0.00,79.50,0.00,0.00,0.00,90.98,0.00,0.00,0.00,92.81,0.00 +603214.SH,0.00,0.00,0.00,2.80,0.00,0.00,0.00,2.71,0.00,0.00,0.00,14.15,0.00,0.00,0.00,10.82,0.00,0.00,0.00,9.56,0.00 +301229.SZ,0.00,86.84,0.00,84.53,0.00,82.96,81.06,77.15,0.00,0.00,0.00,71.33,0.00,0.00,0.00,69.99,0.00,0.00,0.00,65.59,0.00 +000786.SZ,0.00,0.00,0.00,2.77,0.00,0.00,0.00,2.72,0.00,0.00,0.00,2.36,0.00,0.00,0.00,1.89,0.00,0.00,0.00,1.60,0.00 +603662.SH,0.00,0.00,0.00,5.35,0.00,0.00,0.00,5.73,0.00,0.00,0.00,5.71,0.00,0.00,0.00,5.18,0.00,0.00,0.00,5.69,0.00 +300329.SZ,0.00,0.00,0.00,18.44,0.00,0.00,0.00,17.56,0.00,0.00,0.00,17.72,0.00,0.00,0.00,0.17,0.00,0.00,0.00,21.27,0.00 +600760.SH,0.00,0.00,0.00,98.59,0.00,0.00,0.00,98.75,0.00,0.00,0.00,97.71,0.00,0.00,0.00,98.58,0.00,0.00,0.00,98.24,0.00 +603171.SH,0.00,0.00,0.00,25.71,8.81,0.00,0.00,24.10,0.00,0.00,0.00,22.58,0.00,0.00,0.00,20.86,0.00,0.00,0.00,20.36,0.00 +002129.SZ,0.00,0.00,0.00,28.50,0.00,0.00,0.00,54.92,0.00,0.00,0.00,46.58,0.00,0.00,0.00,33.97,0.00,0.00,0.00,27.60,0.00 +688173.SH,0.00,0.00,0.00,90.50,0.00,93.23,0.00,89.44,0.00,0.00,0.00,86.35,0.00,0.00,0.00,70.39,0.00,0.00,0.00,67.08,0.00 +002701.SZ,0.00,0.00,0.00,67.17,0.00,0.00,0.00,58.30,0.00,0.00,0.00,56.69,0.00,0.00,0.00,56.09,0.00,0.00,0.00,56.97,0.00 +600339.SH,0.00,0.00,0.00,61.27,0.00,0.00,0.00,58.50,0.00,0.00,0.00,56.56,0.00,0.00,0.00,48.72,0.00,0.00,0.00,59.29,0.00 +603898.SH,0.00,0.00,0.00,6.57,0.00,17.33,0.00,15.11,0.00,0.00,0.00,6.56,0.00,0.00,0.00,9.09,0.00,0.00,0.00,10.02,0.00 +603520.SH,0.00,0.00,0.00,57.45,0.00,0.00,0.00,8.37,0.00,0.00,0.00,50.73,0.00,0.00,0.00,53.37,0.00,0.00,0.00,36.49,0.00 +688789.SH,0.00,11.23,0.00,10.88,0.00,0.00,0.00,13.54,0.00,0.00,0.00,13.86,0.00,0.00,0.00,14.55,0.00,0.00,0.00,13.31,0.00 +605266.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +000875.SZ,0.00,0.00,0.00,71.61,0.00,0.00,0.00,65.32,0.00,0.00,0.00,65.21,0.00,0.00,0.00,64.45,0.00,0.00,0.00,66.51,0.00 +301507.SZ,0.00,0.00,0.00,67.63,0.00,67.16,0.00,64.48,0.00,0.00,0.00,64.47,0.00,0.00,0.00,62.51,0.00,0.00,0.00,57.00,0.00 +688338.SH,0.00,0.00,0.00,36.39,0.00,0.00,0.00,34.92,0.00,0.00,0.00,35.00,0.00,0.00,0.00,34.16,0.00,0.00,0.00,35.58,0.00 +600612.SH,0.00,0.00,0.00,49.43,0.00,0.00,0.00,44.20,0.00,0.00,0.00,43.29,0.00,0.00,0.00,39.68,0.00,0.00,0.00,39.01,0.00 +688147.SH,0.00,0.00,0.00,85.38,0.00,0.00,80.69,69.52,0.00,92.28,0.00,66.85,0.00,0.00,0.00,77.67,0.00,0.00,0.00,50.78,0.00 +603519.SH,0.00,0.00,0.00,58.47,0.00,0.00,0.00,57.85,0.00,0.00,0.00,64.90,0.00,0.00,0.00,65.35,0.00,0.00,0.00,63.61,0.00 +002492.SZ,0.00,0.00,0.00,25.93,0.00,0.00,0.00,26.62,0.00,0.00,0.00,26.31,0.00,0.00,0.00,30.20,0.00,0.00,0.00,37.00,0.00 +300587.SZ,0.00,0.00,0.00,71.15,0.00,0.00,0.00,64.86,0.00,0.00,0.00,54.05,0.00,0.00,0.00,39.62,0.00,0.00,0.00,37.66,0.00 +002945.SZ,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +688700.SH,0.00,34.75,0.00,31.54,0.00,0.00,0.00,26.12,0.00,0.00,0.00,19.88,0.00,0.00,0.00,40.63,0.00,0.00,0.00,33.06,0.00 +002625.SZ,0.00,0.00,0.00,61.45,0.00,0.00,0.00,73.88,0.00,0.00,0.00,82.94,0.00,0.00,0.00,93.28,0.00,0.00,0.00,90.35,0.00 +605488.SH,0.00,16.22,0.00,15.77,0.00,0.00,0.00,13.95,0.00,0.00,0.00,14.84,0.00,0.00,0.00,14.41,0.00,0.00,0.00,16.53,0.00 +301070.SZ,0.00,11.21,0.00,10.18,0.00,0.00,0.00,13.12,0.00,0.00,0.00,14.35,0.00,0.00,0.00,10.52,0.00,0.00,0.00,10.43,0.00 +688301.SH,0.00,0.00,0.00,34.30,0.00,0.00,0.00,33.71,0.00,0.00,0.00,28.03,0.00,0.00,0.00,21.54,0.00,0.00,0.00,18.97,0.00 +600388.SH,0.00,0.00,0.00,7.98,0.00,0.00,0.00,13.09,0.00,0.00,0.00,9.49,0.00,0.00,0.00,11.98,0.00,0.00,0.00,9.11,0.00 +002066.SZ,0.00,0.00,0.00,51.22,0.00,0.00,0.00,47.35,0.00,0.00,0.00,46.76,0.00,0.00,0.00,47.93,0.00,0.00,0.00,48.42,0.00 +300864.SZ,0.00,0.00,0.00,7.61,0.00,0.00,0.00,15.58,0.00,0.00,0.00,7.61,0.00,0.00,0.00,9.71,0.00,0.00,0.00,8.55,0.00 +688129.SH,0.00,0.00,0.00,21.32,0.00,0.00,0.00,25.98,0.00,0.00,0.00,21.71,0.00,0.00,0.00,25.09,0.00,0.00,0.00,28.51,0.00 +002286.SZ,0.00,0.00,0.00,18.76,0.00,0.00,0.00,16.37,0.00,0.00,0.00,18.91,0.00,0.00,0.00,14.63,0.00,0.00,0.00,13.66,0.00 +601990.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +301303.SZ,0.00,0.00,0.00,36.95,0.00,37.10,0.00,29.93,0.00,30.98,34.32,34.20,0.00,0.00,0.00,31.73,0.00,0.00,0.00,35.51,0.00 +002349.SZ,0.00,0.00,0.00,14.30,0.00,0.00,0.00,14.25,0.00,0.00,0.00,13.66,0.00,0.00,0.00,15.94,0.00,0.00,0.00,15.72,0.00 +688006.SH,0.00,0.00,0.00,76.95,0.00,0.00,0.00,57.32,0.00,0.00,0.00,67.56,0.00,0.00,0.00,62.13,0.00,0.00,0.00,41.61,0.00 +601969.SH,0.00,0.00,0.00,39.25,0.00,0.00,0.00,47.88,0.00,0.00,0.00,45.37,0.00,0.00,0.00,49.38,0.00,0.00,0.00,63.87,0.00 +301265.SZ,0.00,54.34,0.00,46.12,0.00,46.99,0.00,40.61,0.00,41.01,0.00,36.94,0.00,0.00,0.00,37.52,0.00,0.00,0.00,30.78,0.00 +688576.SH,0.00,0.00,0.00,14.56,0.00,0.00,0.00,15.11,0.00,18.81,0.00,17.78,0.00,0.00,0.00,16.96,0.00,0.00,0.00,28.41,0.00 +300584.SZ,0.00,0.00,0.00,13.68,0.00,0.00,0.00,11.65,0.00,0.00,0.00,49.87,0.00,0.00,0.00,65.08,0.00,0.00,0.00,70.73,0.00 +000049.SZ,0.00,0.00,0.00,73.73,0.00,0.00,0.00,65.58,0.00,67.53,0.00,67.84,0.00,65.95,0.00,65.17,0.00,56.65,0.00,59.09,0.00 +688141.SH,0.00,0.00,0.00,33.32,0.00,0.00,0.00,51.32,0.00,51.50,50.65,53.27,0.00,0.00,0.00,46.46,0.00,0.00,0.00,40.70,0.00 +002041.SZ,0.00,0.00,0.00,6.01,0.00,0.00,0.00,4.63,0.00,0.00,0.00,4.04,0.00,0.00,0.00,3.70,0.00,0.00,0.00,3.85,0.00 +002370.SZ,0.00,0.00,0.00,19.44,0.00,0.00,0.00,13.55,0.00,0.00,0.00,13.07,0.00,0.00,0.00,18.40,0.00,0.00,0.00,22.52,0.00 +600210.SH,0.00,0.00,0.00,15.13,0.00,14.64,0.00,14.21,0.00,16.68,0.00,17.45,0.00,19.22,0.00,18.33,0.00,14.92,0.00,12.76,0.00 +000552.SZ,0.00,0.00,0.00,49.09,0.00,0.00,0.00,47.13,0.00,0.00,0.00,24.60,0.00,0.00,0.00,23.61,0.00,0.00,0.00,31.36,0.00 +688098.SH,0.00,0.00,0.00,47.75,0.00,0.00,0.00,37.25,0.00,0.00,0.00,36.54,0.00,0.00,0.00,34.36,0.00,0.00,0.00,35.49,0.00 +600182.SH,0.00,0.00,0.00,99.64,0.00,0.00,0.00,99.25,0.00,0.00,0.00,99.38,0.00,0.00,0.00,98.85,0.00,0.00,0.00,98.63,0.00 +600621.SH,0.00,0.00,0.00,2.13,0.00,0.00,0.00,1.73,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +600452.SH,0.00,0.00,0.00,23.00,0.00,0.00,0.00,18.79,0.00,0.00,0.00,19.82,0.00,0.00,0.00,20.84,0.00,0.00,0.00,18.90,0.00 +605333.SH,0.00,0.00,0.00,77.71,0.00,0.00,0.00,78.95,0.00,0.00,0.00,76.00,0.00,0.00,0.00,78.98,0.00,0.00,0.00,80.11,0.00 +600131.SH,0.00,0.00,0.00,85.31,0.00,0.00,0.00,80.11,0.00,0.00,0.00,84.58,0.00,0.00,0.00,94.30,0.00,0.00,0.00,96.36,0.00 +002174.SZ,0.00,0.00,0.00,67.24,0.00,0.00,0.00,61.72,0.00,0.00,0.00,56.54,0.00,0.00,0.00,41.25,0.00,0.00,0.00,36.00,0.00 +002884.SZ,0.00,0.00,0.00,13.99,0.00,0.00,0.00,18.52,0.00,0.00,0.00,20.05,0.00,0.00,0.00,15.34,0.00,0.00,0.00,16.62,0.00 +600987.SH,0.00,0.00,0.00,6.93,0.00,0.00,0.00,9.38,0.00,0.00,0.00,6.32,0.00,0.00,0.00,5.66,0.00,0.00,0.00,11.46,0.00 +600909.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +300720.SZ,0.00,0.00,0.00,20.81,0.00,0.00,0.00,20.51,0.00,0.00,0.00,25.06,0.00,0.00,0.00,24.75,0.00,0.00,0.00,24.62,0.00 +000900.SZ,0.00,0.00,0.00,8.18,0.00,0.00,0.00,14.78,0.00,0.00,0.00,17.30,0.00,0.00,0.00,7.73,0.00,0.00,0.00,10.18,0.00 +688353.SH,0.00,0.00,0.00,75.47,0.00,75.72,0.00,73.60,80.04,0.00,0.00,75.85,0.00,0.00,0.00,78.89,0.00,0.00,0.00,80.31,0.00 +300291.SZ,0.00,0.00,0.00,55.01,0.00,0.00,0.00,52.73,0.00,0.00,0.00,56.95,0.00,0.00,0.00,55.68,0.00,0.00,0.00,73.62,0.00 +688018.SH,0.00,0.00,0.00,42.18,0.00,0.00,0.00,29.05,0.00,0.00,0.00,26.37,0.00,0.00,0.00,28.14,0.00,0.00,0.00,23.91,0.00 +688177.SH,0.00,0.00,0.00,58.44,0.00,0.00,0.00,79.14,0.00,0.00,0.00,64.77,0.00,0.00,0.00,69.69,0.00,0.00,0.00,68.71,0.00 +600163.SH,0.00,0.00,0.00,100.00,0.00,0.00,0.00,100.00,0.00,0.00,0.00,100.00,0.00,0.00,0.00,100.00,0.00,0.00,0.00,100.00,0.00 +603318.SH,0.00,0.00,0.00,48.36,0.00,0.00,0.00,42.97,0.00,0.00,0.00,26.98,0.00,0.00,0.00,22.55,0.00,0.00,0.00,24.80,0.00 +003027.SZ,0.00,60.12,55.54,54.48,0.00,0.00,0.00,35.74,0.00,0.00,0.00,28.98,0.00,0.00,0.00,49.39,0.00,0.00,0.00,42.47,0.00 +603919.SH,0.00,0.00,0.00,11.41,0.00,0.00,0.00,9.26,0.00,0.00,0.00,7.76,0.00,0.00,0.00,8.33,0.00,0.00,0.00,7.37,0.00 +600562.SH,0.00,0.00,0.00,76.17,0.00,0.00,0.00,64.62,0.00,0.00,0.00,57.10,0.00,0.00,0.00,70.90,0.00,0.00,0.00,65.84,0.00 +603619.SH,0.00,0.00,0.00,51.65,0.00,0.00,0.00,46.64,0.00,0.00,0.00,67.80,0.00,0.00,0.00,72.37,0.00,0.00,0.00,52.51,0.00 +600483.SH,0.00,0.00,0.00,75.80,0.00,0.00,0.00,64.40,0.00,0.00,0.00,81.72,0.00,0.00,0.00,81.22,0.00,0.00,0.00,82.36,0.00 +605005.SH,0.00,56.08,51.18,60.29,0.00,0.00,0.00,57.97,0.00,0.00,0.00,55.48,0.00,0.00,0.00,56.87,0.00,0.00,0.00,52.73,0.00 +002893.SZ,0.00,0.00,0.00,13.85,0.00,0.00,0.00,13.57,0.00,0.00,0.00,13.31,0.00,0.00,0.00,13.12,0.00,0.00,0.00,13.45,0.00 +000498.SZ,0.00,0.00,0.00,54.90,0.00,0.00,0.00,53.03,0.00,0.00,0.00,47.94,0.00,0.00,0.00,48.47,0.00,0.00,0.00,47.08,0.00 +301100.SZ,0.00,60.67,0.00,55.97,0.00,53.01,0.00,50.85,0.00,0.00,0.00,44.31,0.00,0.00,0.00,27.45,0.00,0.00,0.00,21.60,0.00 +601606.SH,0.00,0.00,0.00,65.74,0.00,0.00,0.00,66.23,0.00,0.00,0.00,66.68,0.00,0.00,0.00,57.10,0.00,0.00,0.00,49.51,0.00 +600877.SH,0.00,0.00,0.00,76.05,0.00,0.00,0.00,38.71,0.00,0.00,0.00,44.74,0.00,0.00,0.00,46.10,0.00,0.00,0.00,41.40,0.00 +600196.SH,0.00,0.00,0.00,18.38,0.00,0.00,0.00,22.11,0.00,0.00,0.00,25.20,0.00,0.00,0.00,26.27,0.00,0.00,0.00,24.52,0.00 +002646.SZ,0.00,0.00,0.00,24.32,0.00,41.03,0.00,37.05,0.00,0.00,0.00,34.97,0.00,31.00,0.00,28.20,0.00,32.06,0.00,28.19,0.00 +300683.SZ,0.00,0.00,0.00,13.71,0.00,0.00,0.00,22.22,0.00,0.00,0.00,20.58,0.00,0.00,0.00,10.24,0.00,0.00,0.00,8.16,0.00 +301327.SZ,0.00,0.00,0.00,14.04,0.00,9.84,0.00,10.39,0.00,15.39,0.00,12.16,0.00,0.00,0.00,10.74,0.00,0.00,0.00,9.50,0.00 +603583.SH,0.00,0.00,0.00,47.35,0.00,0.00,0.00,36.14,0.00,0.00,0.00,26.17,0.00,0.00,0.00,23.75,0.00,0.00,0.00,19.51,0.00 +603633.SH,0.00,0.00,0.00,47.13,0.00,0.00,0.00,45.47,0.00,0.00,0.00,46.60,0.00,0.00,0.00,45.45,0.00,0.00,0.00,48.51,0.00 +002821.SZ,0.00,0.00,0.00,58.00,0.00,0.00,0.00,58.92,0.00,0.00,0.00,71.76,0.00,0.00,0.00,60.35,0.00,0.00,0.00,39.34,0.00 +603099.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +605007.SH,0.00,41.70,0.00,38.32,0.00,0.00,0.00,46.27,0.00,0.00,0.00,29.19,0.00,0.00,0.00,36.96,0.00,0.00,0.00,32.65,0.00 +601108.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +000407.SZ,0.00,0.00,0.00,12.70,0.00,0.00,0.00,7.15,0.00,0.00,0.00,8.70,0.00,0.00,0.00,8.47,0.00,0.00,0.00,8.09,0.00 +600021.SH,0.00,0.00,0.00,73.65,0.00,0.00,0.00,77.55,0.00,0.00,0.00,74.86,0.00,0.00,0.00,77.43,0.00,0.00,0.00,74.02,0.00 +600528.SH,0.00,0.00,0.00,30.63,0.00,0.00,0.00,16.18,0.00,0.00,0.00,15.02,0.00,0.00,0.00,13.67,0.00,0.00,0.00,15.50,0.00 +601231.SH,0.00,0.00,0.00,71.58,0.00,0.00,0.00,59.63,0.00,0.00,0.00,47.74,0.00,0.00,0.00,50.59,0.00,0.00,0.00,52.93,0.00 +603969.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,17.60,0.00,0.00,0.00,18.25,0.00,0.00,0.00,19.72,0.00 +603458.SH,0.00,0.00,0.00,38.50,0.00,0.00,0.00,47.46,0.00,0.00,0.00,36.22,0.00,0.00,0.00,29.74,0.00,0.00,0.00,25.19,0.00 +603020.SH,0.00,0.00,0.00,23.33,0.00,0.00,0.00,22.99,0.00,0.00,0.00,28.58,0.00,0.00,0.00,25.16,0.00,0.00,0.00,23.54,0.00 +300805.SZ,0.00,0.00,0.00,35.61,0.00,0.00,0.00,34.00,0.00,0.00,0.00,34.54,0.00,0.00,0.00,33.41,0.00,0.00,0.00,43.83,0.00 +688146.SH,0.00,0.00,0.00,46.79,0.00,0.00,0.00,49.89,0.00,44.27,0.00,0.00,0.00,0.00,0.00,44.37,0.00,0.00,0.00,43.04,0.00 +688548.SH,0.00,0.00,0.00,44.52,0.00,0.00,0.00,33.11,0.00,35.28,0.00,36.09,40.16,0.00,0.00,34.71,0.00,0.00,0.00,39.05,0.00 +600444.SH,0.00,0.00,0.00,62.07,0.00,0.00,0.00,11.25,0.00,0.00,0.00,65.89,0.00,0.00,0.00,58.77,0.00,0.00,0.00,67.65,0.00 +603036.SH,0.00,0.00,0.00,32.00,0.00,0.00,0.00,25.99,0.00,0.00,0.00,24.77,0.00,0.00,0.00,27.44,0.00,0.00,0.00,28.52,0.00 +601666.SH,0.00,0.00,0.00,71.56,0.00,0.00,0.00,62.46,0.00,0.00,0.00,69.14,0.00,0.00,0.00,57.57,0.00,0.00,0.00,61.76,0.00 +601696.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +688248.SH,0.00,0.00,0.00,67.37,0.00,64.65,0.00,68.46,0.00,0.00,0.00,71.39,0.00,0.00,0.00,82.45,0.00,0.00,0.00,71.79,0.00 +002124.SZ,0.00,0.00,0.00,34.89,0.00,0.00,0.00,10.52,0.00,0.00,0.00,15.35,0.00,0.00,0.00,20.58,0.00,0.00,0.00,13.72,0.00 +600597.SH,0.00,0.00,0.00,17.11,0.00,0.00,0.00,8.27,0.00,0.00,0.00,13.28,0.00,0.00,0.00,7.92,0.00,0.00,0.00,7.13,0.00 +002344.SZ,0.00,0.00,0.00,7.21,0.00,0.00,0.00,25.31,0.00,0.00,0.00,6.47,0.00,0.00,0.00,9.72,0.00,0.00,0.00,6.70,0.00 +002243.SZ,0.00,0.00,0.00,32.37,0.00,0.00,0.00,26.48,0.00,0.00,0.00,29.06,0.00,0.00,0.00,29.83,0.00,0.00,0.00,22.02,0.00 +600256.SH,0.00,0.00,0.00,24.16,0.00,24.31,0.00,22.73,0.00,35.81,0.00,38.09,0.00,48.62,0.00,43.90,0.00,0.00,0.00,11.04,0.00 +001203.SZ,0.00,78.99,0.00,73.41,0.00,0.00,0.00,62.24,0.00,0.00,0.00,57.28,0.00,0.00,0.00,59.74,0.00,0.00,0.00,64.94,0.00 +002831.SZ,0.00,0.00,0.00,37.59,0.00,0.00,0.00,30.31,0.00,0.00,0.00,38.43,0.00,0.00,0.00,37.46,0.00,0.00,0.00,38.26,0.00 +601339.SH,0.00,0.00,0.00,32.08,0.00,0.00,0.00,40.76,0.00,0.00,0.00,44.14,0.00,0.00,0.00,39.92,0.00,0.00,0.00,41.41,0.00 +688619.SH,0.00,68.98,0.00,63.44,0.00,0.00,0.00,48.68,0.00,0.00,0.00,61.92,0.00,0.00,0.00,85.70,0.00,0.00,0.00,87.08,0.00 +600231.SH,0.00,0.00,0.00,17.53,0.00,0.00,0.00,14.25,0.00,0.00,0.00,16.18,0.00,0.00,0.00,20.32,0.00,0.00,0.00,32.92,0.00 +000766.SZ,0.00,0.00,0.00,11.38,0.00,0.00,0.00,12.40,0.00,0.00,0.00,13.01,0.00,0.00,0.00,14.03,0.00,0.00,0.00,17.52,0.00 +688519.SH,45.36,0.00,0.00,40.73,0.00,0.00,0.00,38.97,0.00,0.00,0.00,36.14,0.00,0.00,0.00,37.20,0.00,0.00,0.00,37.73,0.00 +603976.SH,0.00,0.00,0.00,22.77,0.00,0.00,0.00,9.25,0.00,0.00,0.00,12.51,0.00,0.00,0.00,28.39,0.00,0.00,0.00,24.03,0.00 +605028.SH,0.00,0.00,0.00,66.17,63.66,0.00,0.00,56.43,0.00,0.00,0.00,49.94,0.00,0.00,0.00,52.71,0.00,0.00,0.00,50.71,0.00 +002263.SZ,0.00,0.00,0.00,18.19,0.00,0.00,0.00,21.65,0.00,0.00,0.00,19.39,0.00,0.00,0.00,13.52,0.00,0.00,0.00,14.37,0.00 +600372.SH,0.00,0.00,0.00,21.89,0.00,0.00,0.00,30.65,0.00,0.00,0.00,39.80,0.00,0.00,0.00,44.47,0.00,0.00,0.00,38.00,0.00 +002706.SZ,0.00,0.00,0.00,24.74,0.00,0.00,0.00,23.12,0.00,0.00,0.00,24.52,0.00,0.00,0.00,24.59,0.00,0.00,0.00,26.01,0.00 +002673.SZ,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +300501.SZ,0.00,0.00,0.00,13.14,0.00,0.00,0.00,12.75,0.00,0.00,0.00,13.04,0.00,0.00,0.00,12.10,0.00,0.00,0.00,13.47,0.00 +003013.SZ,0.00,0.00,0.00,56.02,0.00,0.00,0.00,54.30,0.00,0.00,0.00,52.32,0.00,0.00,0.00,56.53,0.00,0.00,0.00,47.73,0.00 +688347.SH,0.00,0.00,0.00,22.98,0.00,0.00,0.00,27.61,32.86,0.00,0.00,27.10,0.00,0.00,0.00,25.66,0.00,0.00,0.00,30.09,0.00 +603068.SH,0.00,0.00,0.00,79.61,0.00,0.00,0.00,83.28,0.00,0.00,0.00,78.10,0.00,0.00,0.00,80.91,0.00,0.00,0.00,80.85,0.00 +603515.SH,0.00,0.00,0.00,8.07,0.00,0.00,0.00,9.02,0.00,0.00,0.00,9.42,0.00,0.00,0.00,9.17,0.00,0.00,0.00,9.01,0.00 +688588.SH,0.00,0.00,0.00,75.15,0.00,0.00,0.00,77.07,0.00,0.00,0.00,72.77,0.00,0.00,0.00,72.86,0.00,0.00,0.00,84.02,0.00 +002668.SZ,0.00,0.00,0.00,21.86,0.00,0.00,0.00,21.07,0.00,0.00,0.00,28.10,0.00,0.00,0.00,33.79,0.00,0.00,0.00,30.67,0.00 +600657.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,1.74,0.00,0.00,0.00,0.99,0.00,0.00,0.00,1.12,0.00,0.00,0.00,1.38,0.00 +000951.SZ,0.00,0.00,0.00,30.08,0.00,0.00,0.00,36.05,0.00,0.00,0.00,51.82,0.00,0.00,0.00,56.76,0.00,0.00,0.00,59.03,0.00 +000735.SZ,0.00,0.00,0.00,22.97,0.00,0.00,0.00,23.38,0.00,0.00,0.00,17.48,0.00,0.00,0.00,10.39,0.00,0.00,0.00,9.23,0.00 +600099.SH,0.00,0.00,0.00,59.90,0.00,0.00,0.00,45.77,0.00,0.00,0.00,37.43,0.00,0.00,0.00,35.18,0.00,0.00,0.00,30.19,0.00 +600189.SH,0.00,0.00,0.00,29.34,0.00,0.00,0.00,30.55,0.00,0.00,0.00,26.43,0.00,0.00,0.00,19.78,0.00,0.00,0.00,28.14,0.00 +600903.SH,0.00,0.00,0.00,12.70,0.00,0.00,0.00,16.70,0.00,0.00,0.00,18.06,0.00,0.00,0.00,12.92,0.00,0.00,0.00,12.70,0.00 +300725.SZ,0.00,0.00,0.00,44.49,0.00,0.00,0.00,33.55,0.00,0.00,0.00,27.75,0.00,0.00,0.00,20.14,0.00,0.00,0.00,25.72,0.00 +301130.SZ,0.00,33.10,0.00,32.06,0.00,32.97,0.00,32.78,0.00,0.00,0.00,30.65,0.00,0.00,0.00,26.63,0.00,0.00,0.00,28.98,0.00 +603345.SH,0.00,0.00,0.00,9.72,0.00,0.00,0.00,8.41,0.00,0.00,0.00,7.94,0.00,0.00,0.00,6.32,0.00,0.00,0.00,6.25,0.00 +603303.SH,0.00,0.00,0.00,42.00,0.00,0.00,0.00,46.76,0.00,0.00,0.00,47.46,0.00,0.00,0.00,46.34,0.00,0.00,0.00,46.68,0.00 +300020.SZ,0.00,0.00,0.00,19.21,0.00,0.00,0.00,18.51,0.00,0.00,0.00,17.62,0.00,0.00,0.00,22.31,0.00,0.00,0.00,44.15,0.00 +300908.SZ,0.00,7.96,0.00,8.49,0.00,3.67,0.00,8.60,0.00,3.73,0.00,9.08,0.00,2.38,0.00,7.45,0.00,2.92,0.00,7.12,0.00 +601163.SH,0.00,0.00,0.00,24.71,0.00,0.00,0.00,21.05,0.00,0.00,0.00,19.87,0.00,0.00,0.00,20.33,0.00,0.00,0.00,19.85,0.00 +002661.SZ,0.00,0.00,0.00,6.25,0.00,5.71,0.00,6.73,0.00,0.00,0.00,6.36,0.00,5.94,0.00,5.29,0.00,7.36,0.00,5.47,0.00 +600588.SH,0.00,0.00,0.00,2.00,0.00,0.00,0.00,3.10,0.00,0.00,0.00,3.71,0.00,0.00,0.00,3.98,0.00,0.00,0.00,3.55,0.00 +601728.SH,0.00,0.00,0.00,4.61,0.00,0.00,0.00,0.41,0.00,0.00,0.00,5.16,0.00,0.00,0.00,4.44,0.00,0.00,0.00,5.20,0.00 +600801.SH,0.00,0.00,0.00,2.60,0.00,0.00,0.00,2.80,0.00,0.00,0.00,4.10,0.00,0.00,0.00,3.80,0.00,0.00,0.00,3.90,0.00 +002457.SZ,0.00,0.00,0.00,21.94,0.00,0.00,0.00,36.67,0.00,0.00,0.00,23.86,0.00,0.00,0.00,15.36,0.00,0.00,0.00,22.31,0.00 +600508.SH,0.00,0.00,0.00,41.64,0.00,0.00,0.00,37.34,0.00,0.00,0.00,44.50,0.00,0.00,0.00,44.80,0.00,0.00,0.00,45.99,0.00 +603661.SH,0.00,0.00,0.00,36.19,0.00,0.00,0.00,35.95,0.00,0.00,0.00,27.33,0.00,0.00,0.00,43.73,0.00,0.00,0.00,44.37,0.00 +600460.SH,0.00,0.00,0.00,15.15,0.00,14.33,0.00,15.63,0.00,0.00,0.00,14.55,0.00,0.00,0.00,14.22,0.00,0.00,0.00,16.41,0.00 +601007.SH,0.00,0.00,0.00,9.96,0.00,0.00,0.00,16.72,0.00,0.00,0.00,7.75,0.00,0.00,0.00,12.28,0.00,0.00,0.00,13.01,0.00 +002487.SZ,0.00,0.00,0.00,29.86,0.00,0.00,0.00,38.39,0.00,0.00,0.00,35.83,0.00,0.00,0.00,50.71,0.00,0.00,0.00,54.92,0.00 +002327.SZ,0.00,0.00,0.00,35.55,0.00,0.00,0.00,38.13,0.00,0.00,0.00,36.94,0.00,0.00,0.00,34.99,0.00,0.00,0.00,32.25,0.00 +600975.SH,0.00,0.00,0.00,32.99,0.00,0.00,0.00,32.52,0.00,0.00,0.00,20.35,0.00,0.00,0.00,21.78,0.00,0.00,0.00,15.13,0.00 +603081.SH,0.00,0.00,0.00,21.31,0.00,0.00,0.00,2.27,0.00,0.00,0.00,21.96,0.00,0.00,0.00,13.40,0.00,0.00,0.00,23.86,0.00 +000031.SZ,0.00,0.00,0.00,8.53,0.00,52.13,0.00,2.07,0.00,0.00,0.00,16.60,0.00,0.00,0.00,2.65,0.00,0.00,0.00,4.80,0.00 +000589.SZ,0.00,0.00,0.00,8.96,0.00,0.00,0.00,10.60,0.00,0.00,0.00,10.33,0.00,0.00,0.00,11.10,0.00,0.00,0.00,11.68,0.00 +601555.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +002318.SZ,0.00,0.00,0.00,26.78,0.00,0.00,0.00,18.72,0.00,0.00,0.00,27.64,0.00,0.00,0.00,18.69,0.00,0.00,0.00,30.20,0.00 +600368.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +603162.SH,0.00,0.00,0.00,33.72,0.00,0.00,0.00,32.30,0.00,30.12,0.00,32.74,0.00,0.00,0.00,26.96,0.00,0.00,0.00,17.84,0.00 +688787.SH,61.42,0.00,46.01,50.24,0.00,0.00,0.00,41.51,0.00,0.00,0.00,44.89,0.00,0.00,0.00,33.41,0.00,0.00,0.00,43.59,0.00 +600882.SH,0.00,0.00,0.00,11.23,0.00,0.00,0.00,10.29,0.00,0.00,0.00,12.20,0.00,0.00,0.00,9.75,0.00,0.00,0.00,6.60,0.00 +003017.SZ,0.00,15.40,0.00,14.80,0.00,20.54,0.00,16.87,0.00,0.00,0.00,17.52,0.00,0.00,0.00,14.84,0.00,0.00,0.00,13.95,0.00 +002380.SZ,0.00,0.00,0.00,18.76,0.00,0.00,0.00,22.89,0.00,0.00,0.00,8.37,0.00,0.00,0.00,10.07,0.00,0.00,0.00,11.22,0.00 +688297.SH,0.00,0.00,0.00,99.94,100.00,0.00,100.00,100.00,0.00,0.00,0.00,100.00,0.00,0.00,0.00,99.64,0.00,0.00,0.00,96.35,0.00 +688057.SH,0.00,71.45,0.00,52.13,0.00,0.00,0.00,35.58,0.00,0.00,0.00,40.32,0.00,0.00,0.00,48.74,0.00,0.00,0.00,55.39,0.00 +688030.SH,0.00,0.00,0.00,77.38,0.00,0.00,0.00,81.40,0.00,0.00,0.00,68.79,0.00,0.00,0.00,73.09,0.00,0.00,0.00,79.81,0.00 +688005.SH,0.00,0.00,0.00,84.97,0.00,0.00,0.00,84.17,0.00,0.00,0.00,83.38,0.00,0.00,0.00,85.91,0.00,0.00,0.00,79.10,0.00 +002895.SZ,0.00,0.00,0.00,19.83,0.00,0.00,0.00,22.60,0.00,0.00,0.00,22.42,0.00,0.00,0.00,22.56,0.00,0.00,0.00,31.14,0.00 +600071.SH,0.00,0.00,0.00,38.73,0.00,0.00,0.00,34.58,0.00,0.00,0.00,30.67,0.00,0.00,0.00,27.36,0.00,0.00,0.00,26.24,0.00 +003816.SZ,0.00,0.00,0.00,99.11,0.00,0.00,0.00,98.24,0.00,0.00,0.00,97.58,0.00,0.00,0.00,97.95,0.00,0.00,0.00,97.48,0.00 +002140.SZ,0.00,0.00,0.00,69.99,0.00,0.00,0.00,68.84,0.00,0.00,0.00,42.81,0.00,0.00,0.00,45.90,0.00,0.00,0.00,51.55,0.00 +600309.SH,0.00,0.00,0.00,7.37,0.00,0.00,0.00,6.21,0.00,0.00,0.00,7.14,0.00,0.00,0.00,5.68,0.00,0.00,0.00,6.21,0.00 +600006.SH,0.00,0.00,0.00,20.54,0.00,0.00,0.00,25.91,0.00,0.00,0.00,27.72,0.00,0.00,0.00,20.84,0.00,0.00,0.00,16.92,0.00 +001400.SZ,0.00,0.00,0.00,24.95,33.52,0.00,31.19,29.90,0.00,34.63,0.00,29.45,0.00,34.64,0.00,29.47,0.00,28.69,0.00,27.61,0.00 +600084.SH,0.00,0.00,0.00,27.85,0.00,0.00,0.00,23.72,0.00,0.00,0.00,24.28,0.00,0.00,0.00,26.38,0.00,0.00,0.00,27.38,0.00 +001338.SZ,0.00,0.00,0.00,69.70,0.00,69.95,0.00,73.19,0.00,73.37,0.00,67.85,0.00,0.00,0.00,65.33,0.00,0.00,0.00,64.82,0.00 +600023.SH,0.00,0.00,0.00,78.99,0.00,0.00,0.00,69.95,0.00,0.00,0.00,72.62,0.00,0.00,0.00,78.35,0.00,0.00,0.00,81.72,0.00 +000625.SZ,0.00,0.00,0.00,8.58,0.00,0.00,0.00,9.26,0.00,0.00,0.00,9.10,0.00,0.00,0.00,7.84,0.00,0.00,0.00,8.51,0.00 +000679.SZ,0.00,0.00,0.00,5.69,0.00,0.00,0.00,5.04,0.00,0.00,0.00,6.98,0.00,0.00,0.00,6.76,0.00,47.39,0.00,1.92,0.00 +300986.SZ,0.00,32.33,0.00,27.07,0.00,0.00,0.00,24.16,0.00,0.00,0.00,29.71,0.00,0.00,0.00,30.97,0.00,0.00,0.00,28.42,0.00 +601038.SH,0.00,0.00,0.00,6.32,0.00,0.00,0.00,3.37,0.00,0.00,0.00,6.48,0.00,0.00,0.00,6.95,0.00,0.00,0.00,5.60,0.00 +603755.SH,0.00,0.00,0.00,40.65,0.00,0.00,0.00,48.96,0.00,0.00,0.00,36.84,0.00,0.00,0.00,41.72,0.00,0.00,0.00,45.47,0.00 +000519.SZ,0.00,0.00,0.00,52.06,0.00,0.00,0.00,50.56,0.00,0.00,0.00,46.28,0.00,0.00,0.00,58.41,0.00,0.00,0.00,45.66,0.00 +600901.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +600668.SH,0.00,0.00,0.00,10.81,0.00,0.00,0.00,9.41,0.00,0.00,0.00,7.90,0.00,0.00,0.00,10.28,0.00,0.00,0.00,10.22,0.00 +601921.SH,0.00,20.53,0.00,19.70,27.40,0.00,0.00,18.30,0.00,0.00,0.00,17.74,0.00,0.00,0.00,17.52,0.00,0.00,0.00,18.64,0.00 +688411.SH,0.00,0.00,0.00,50.87,0.00,0.00,0.00,78.16,0.00,0.00,0.00,83.70,0.00,0.00,0.00,74.36,0.00,58.43,0.00,40.17,0.00 +600616.SH,0.00,0.00,0.00,19.30,0.00,0.00,0.00,14.30,0.00,0.00,0.00,17.27,0.00,0.00,0.00,14.71,0.00,0.00,0.00,23.96,0.00 +603687.SH,0.00,0.00,0.00,26.35,0.00,0.00,0.00,28.97,0.00,0.00,0.00,4.28,0.00,0.00,0.00,31.60,0.00,0.00,0.00,31.06,0.00 +000715.SZ,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +603868.SH,0.00,0.00,0.00,36.94,0.00,20.99,0.00,21.64,0.00,18.98,0.00,18.52,0.00,15.72,0.00,16.05,0.00,17.40,0.00,17.61,0.00 +000721.SZ,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +688311.SH,0.00,0.00,0.00,93.05,0.00,85.17,0.00,85.31,0.00,0.00,0.00,82.48,0.00,0.00,0.00,78.64,0.00,0.00,0.00,78.34,0.00 +600089.SH,0.00,0.00,0.00,15.31,0.00,0.00,0.00,17.46,0.00,0.00,0.00,8.74,0.00,0.00,0.00,18.01,0.00,0.00,0.00,9.23,0.00 +300932.SZ,0.00,40.42,36.30,32.99,0.00,0.00,0.00,32.41,0.00,0.00,0.00,28.80,0.00,0.00,0.00,26.03,0.00,0.00,0.00,25.12,0.00 +301408.SZ,0.00,0.00,0.00,2.11,0.00,1.85,0.00,1.73,0.00,1.52,0.00,1.01,0.00,0.00,0.00,1.23,0.00,0.00,0.00,1.49,0.00 +002461.SZ,0.00,0.00,0.00,17.39,0.00,17.69,0.00,17.41,0.00,0.00,0.00,16.22,0.00,0.00,0.00,16.73,0.00,0.00,0.00,16.54,0.00 +603110.SH,0.00,0.00,0.00,10.37,0.00,0.00,0.00,1.75,0.00,0.00,0.00,2.92,0.00,0.00,0.00,11.69,0.00,0.00,0.00,12.57,0.00 +002226.SZ,0.00,0.00,0.00,24.86,0.00,0.00,0.00,14.97,0.00,0.00,0.00,16.57,0.00,0.00,0.00,15.71,0.00,0.00,0.00,20.02,0.00 +002557.SZ,0.00,0.00,0.00,12.03,0.00,0.00,0.00,11.26,0.00,0.00,0.00,9.41,0.00,0.00,0.00,9.10,0.00,0.00,0.00,10.10,0.00 +000937.SZ,0.00,0.00,0.00,32.74,0.00,0.00,0.00,23.84,0.00,0.00,0.00,20.64,0.00,0.00,0.00,28.84,0.00,0.00,0.00,31.23,0.00 +001219.SZ,0.00,19.94,0.00,20.84,0.00,0.00,0.00,22.03,0.00,18.07,0.00,24.69,0.00,23.14,0.00,25.82,0.00,17.06,0.00,24.07,0.00 +300485.SZ,0.00,0.00,0.00,9.45,0.00,0.00,0.00,9.82,0.00,0.00,0.00,11.01,0.00,0.00,0.00,9.44,0.00,0.00,0.00,10.38,0.00 +300802.SZ,0.00,0.00,0.00,44.86,0.00,0.00,0.00,43.59,0.00,47.99,0.00,43.67,0.00,47.29,0.00,38.46,0.00,43.49,0.00,39.17,0.00 +603848.SH,0.00,0.00,0.00,5.92,0.00,0.00,0.00,9.78,0.00,0.00,0.00,12.85,0.00,0.00,0.00,51.34,0.00,0.00,0.00,52.36,0.00 +000698.SZ,0.00,0.00,0.00,20.09,0.00,0.00,0.00,9.36,0.00,0.00,0.00,20.64,0.00,0.00,0.00,13.14,0.00,0.00,0.00,13.96,0.00 +600063.SH,0.00,0.00,0.00,11.46,0.00,10.35,0.00,10.40,0.00,9.53,0.00,7.78,0.00,9.38,0.00,9.03,0.00,0.00,0.00,14.40,0.00 +002466.SZ,0.00,0.00,0.00,55.58,0.00,0.00,0.00,49.35,0.00,0.00,0.00,60.09,0.00,0.00,0.00,76.66,0.00,0.00,0.00,61.80,0.00 +000564.SZ,0.00,0.00,0.00,6.77,0.00,0.00,0.00,2.93,0.00,0.00,0.00,2.41,0.00,0.00,0.00,6.55,0.00,0.00,0.00,7.47,0.00 +002859.SZ,0.00,0.00,0.00,65.49,0.00,0.00,0.00,62.92,0.00,0.00,0.00,56.50,0.00,0.00,0.00,56.72,0.00,0.00,0.00,54.28,0.00 +300301.SZ,0.00,0.00,0.00,19.31,0.00,0.00,0.00,19.98,0.00,0.00,0.00,19.34,0.00,0.00,0.00,18.88,0.00,0.00,0.00,20.33,0.00 +605338.SH,0.00,0.00,0.00,3.18,0.00,0.00,0.00,3.67,0.00,0.00,0.00,4.44,0.00,0.00,0.00,3.58,0.00,0.00,0.00,3.44,0.00 +002662.SZ,0.00,0.00,0.00,60.97,0.00,0.00,0.00,59.16,0.00,0.00,0.00,62.29,0.00,0.00,0.00,57.91,0.00,0.00,0.00,56.95,0.00 +688209.SH,0.00,0.00,0.00,37.35,0.00,40.35,0.00,0.00,0.00,0.00,0.00,36.44,0.00,0.00,0.00,34.69,0.00,0.00,0.00,32.17,0.00 +600711.SH,0.00,0.00,0.00,22.40,0.00,0.00,0.00,5.34,0.00,0.00,0.00,32.78,0.00,0.00,0.00,34.15,0.00,0.00,0.00,50.84,0.00 +688317.SH,16.28,0.00,16.40,22.17,0.00,0.00,0.00,16.31,0.00,0.00,0.00,18.50,0.00,0.00,0.00,22.68,0.00,0.00,0.00,23.48,0.00 +600917.SH,0.00,0.00,0.00,4.27,0.00,0.00,0.00,5.06,0.00,0.00,0.00,5.96,0.00,0.00,0.00,6.74,0.00,0.00,0.00,4.83,0.00 +000930.SZ,0.00,0.00,0.00,36.95,0.00,0.00,0.00,35.44,0.00,0.00,0.00,39.12,0.00,0.00,0.00,45.59,0.00,0.00,0.00,39.97,0.00 +600628.SH,0.00,0.00,0.00,23.27,0.00,0.00,0.00,25.71,0.00,0.00,0.00,31.20,0.00,0.00,0.00,29.24,0.00,0.00,0.00,25.00,0.00 +603556.SH,0.00,0.00,0.00,18.51,0.00,0.00,0.00,18.80,0.00,0.00,0.00,17.22,0.00,0.00,0.00,19.00,0.00,0.00,0.00,19.30,0.00 +600038.SH,0.00,0.00,0.00,94.12,0.00,0.00,0.00,93.12,0.00,0.00,0.00,91.75,0.00,0.00,0.00,95.78,0.00,0.00,0.00,81.84,0.00 +600838.SH,0.00,0.00,0.00,47.84,0.00,0.00,0.00,42.80,0.00,0.00,0.00,34.19,0.00,0.00,0.00,27.63,0.00,0.00,0.00,30.93,0.00 +603231.SH,0.00,0.00,0.00,19.49,0.00,0.00,0.00,18.42,0.00,17.52,0.00,17.70,0.00,22.89,0.00,23.13,0.00,0.00,0.00,21.66,0.00 +000036.SZ,0.00,0.00,0.00,27.66,0.00,0.00,0.00,13.25,0.00,0.00,0.00,81.10,0.00,0.00,0.00,17.35,0.00,0.00,0.00,8.74,0.00 +000524.SZ,0.00,0.00,0.00,3.85,0.00,0.00,0.00,8.39,0.00,0.00,0.00,13.59,0.00,0.00,0.00,7.20,0.00,0.00,0.00,6.30,0.00 +002561.SZ,0.00,0.00,0.00,0.71,0.00,0.00,0.00,0.38,0.00,0.00,0.00,0.24,0.00,0.00,0.00,0.24,0.00,0.00,0.00,3.65,0.00 +600821.SH,0.00,0.00,0.00,71.00,0.00,0.00,0.00,84.00,0.00,0.00,0.00,65.66,0.00,0.00,0.00,59.51,0.00,0.00,0.00,52.57,0.00 +603595.SH,0.00,0.00,0.00,75.68,0.00,0.00,0.00,70.59,0.00,0.00,0.00,55.55,0.00,0.00,0.00,52.60,0.00,0.00,0.00,56.30,0.00 +688625.SH,0.00,50.09,0.00,44.20,0.00,0.00,0.00,39.41,0.00,0.00,0.00,40.15,0.00,0.00,0.00,30.50,0.00,0.00,0.00,31.54,0.00 +688223.SH,0.00,0.00,0.00,20.43,0.00,17.54,15.77,15.44,0.00,0.00,0.00,15.40,0.00,0.00,0.00,16.85,0.00,0.00,0.00,18.57,0.00 +600916.SH,0.00,16.00,0.00,16.08,0.00,0.00,0.00,25.54,0.00,0.00,0.00,36.46,0.00,0.00,0.00,32.27,0.00,0.00,0.00,50.15,0.00 +600871.SH,0.00,0.00,0.00,81.10,0.00,0.00,0.00,83.80,0.00,0.00,0.00,83.00,0.00,0.00,0.00,81.90,0.00,0.00,0.00,79.70,0.00 +300146.SZ,0.00,0.00,0.00,14.37,0.00,19.71,0.00,19.71,0.00,17.75,0.00,19.98,0.00,20.88,0.00,19.30,0.00,16.60,0.00,17.29,0.00 +300294.SZ,0.00,0.00,0.00,13.32,0.00,0.00,0.00,11.86,0.00,0.00,0.00,10.15,0.00,0.00,0.00,10.23,0.00,0.00,0.00,13.50,0.00 +601881.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +300395.SZ,0.00,0.00,0.00,26.78,0.00,0.00,0.00,33.10,0.00,0.00,0.00,35.96,0.00,0.00,0.00,31.91,0.00,0.00,0.00,19.42,0.00 +688099.SH,0.00,0.00,0.00,64.59,0.00,0.00,0.00,59.07,0.00,0.00,0.00,55.73,0.00,0.00,0.00,65.52,0.00,0.00,0.00,63.19,0.00 +688553.SH,0.00,73.76,0.00,75.16,0.00,71.80,0.00,71.80,0.00,0.00,0.00,74.65,0.00,0.00,0.00,68.02,0.00,0.00,0.00,62.40,0.00 +600743.SH,0.00,0.00,0.00,8.47,0.00,0.00,0.00,3.20,0.00,0.00,0.00,3.42,0.00,0.00,0.00,3.82,0.00,0.00,0.00,6.67,0.00 +603122.SH,0.00,43.09,0.00,37.29,0.00,40.44,0.00,40.62,0.00,0.00,0.00,37.60,0.00,0.00,0.00,36.22,0.00,0.00,0.00,41.13,0.00 +688652.SH,0.00,0.00,0.00,84.97,0.00,0.00,0.00,87.77,0.00,76.31,0.00,73.45,0.00,70.39,0.00,61.84,0.00,0.00,0.00,74.80,0.00 +000768.SZ,0.00,0.00,0.00,96.01,0.00,0.00,0.00,99.02,0.00,0.00,0.00,98.67,0.00,0.00,0.00,97.43,0.00,0.00,0.00,99.19,0.00 +605368.SH,0.00,38.30,0.00,37.98,0.00,0.00,0.00,40.77,0.00,0.00,0.00,38.20,0.00,0.00,0.00,37.37,0.00,0.00,0.00,37.81,0.00 +000883.SZ,0.00,0.00,0.00,80.85,0.00,0.00,0.00,66.19,0.00,0.00,0.00,78.90,0.00,0.00,0.00,84.25,0.00,0.00,0.00,91.13,0.00 +600522.SH,0.00,0.00,0.00,26.05,0.00,0.00,0.00,34.27,0.00,0.00,0.00,39.35,0.00,0.00,0.00,32.77,0.00,0.00,0.00,30.30,0.00 +600622.SH,0.00,0.00,0.00,5.67,0.00,0.00,0.00,17.84,0.00,0.00,0.00,3.20,0.00,0.00,0.00,3.24,0.00,0.00,0.00,8.49,0.00 +002138.SZ,0.00,0.00,0.00,23.78,0.00,0.00,0.00,17.29,0.00,0.00,0.00,15.35,0.00,0.00,0.00,18.46,0.00,0.00,0.00,19.59,0.00 +600569.SH,0.00,0.00,0.00,22.43,0.00,0.00,0.00,23.86,0.00,0.00,0.00,25.12,0.00,0.00,0.00,25.42,0.00,0.00,0.00,21.78,0.00 +600425.SH,0.00,0.00,0.00,18.78,0.00,0.00,0.00,16.07,0.00,0.00,0.00,15.56,0.00,0.00,0.00,17.39,0.00,0.00,0.00,21.48,0.00 +603208.SH,0.00,0.00,0.00,24.58,0.00,0.00,0.00,15.48,0.00,0.00,0.00,7.59,0.00,0.00,0.00,8.54,0.00,0.00,0.00,10.30,0.00 +600683.SH,0.00,0.00,0.00,39.56,0.00,4.37,0.00,24.61,0.00,4.74,0.00,9.34,0.00,0.59,0.00,1.16,0.00,0.00,0.00,4.50,0.00 +688166.SH,0.00,0.00,0.00,42.51,0.00,0.00,0.00,36.25,0.00,0.00,0.00,31.78,0.00,0.00,0.00,27.32,0.00,0.00,0.00,35.21,0.00 +600479.SH,0.00,0.00,0.00,14.11,0.00,0.00,0.00,9.43,0.00,0.00,0.00,8.66,0.00,0.00,0.00,6.59,0.00,0.00,0.00,7.28,0.00 +688310.SH,0.00,0.00,0.00,41.72,0.00,0.00,0.00,54.12,0.00,0.00,0.00,63.27,0.00,0.00,0.00,55.55,0.00,0.00,0.00,60.61,0.00 +002588.SZ,0.00,0.00,0.00,2.48,0.00,0.00,0.00,2.12,0.00,0.00,0.00,3.55,0.00,0.00,0.00,2.39,0.00,0.00,0.00,2.37,0.00 +000517.SZ,0.00,0.00,0.00,5.99,0.00,61.09,0.00,3.14,0.00,0.00,0.00,2.45,0.00,0.00,0.00,0.76,0.00,0.00,0.00,0.46,0.00 +600817.SH,0.00,0.00,0.00,26.83,0.00,0.00,0.00,15.17,0.00,0.00,0.00,12.92,0.00,0.00,0.00,11.88,0.00,0.00,0.00,18.00,0.00 +603655.SH,0.00,0.00,0.00,41.29,0.00,0.00,0.00,35.56,0.00,0.00,0.00,48.25,0.00,0.00,0.00,24.75,0.00,0.00,0.00,23.04,0.00 +002983.SZ,0.00,0.00,0.00,51.08,0.00,0.00,0.00,50.33,0.00,0.00,0.00,48.74,0.00,0.00,0.00,67.75,0.00,0.00,0.00,63.94,0.00 +603069.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,15.94,0.00,0.00,0.00,13.21,0.00,0.00,0.00,27.14,0.00 +603368.SH,0.00,0.00,0.00,13.44,0.00,0.00,0.00,14.79,0.00,0.00,0.00,15.18,0.00,0.00,0.00,14.96,0.00,0.00,0.00,14.59,0.00 +600150.SH,0.00,0.00,0.00,50.26,0.00,0.00,0.00,48.86,0.00,0.00,0.00,39.89,0.00,0.00,0.00,40.85,0.00,0.00,0.00,42.56,0.00 +605277.SH,0.00,23.60,24.02,23.23,0.00,0.00,0.00,19.61,0.00,0.00,0.00,30.27,0.00,0.00,0.00,51.71,0.00,0.00,0.00,39.66,0.00 +000417.SZ,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +603938.SH,0.00,0.00,0.00,15.75,0.00,0.00,0.00,21.38,0.00,0.00,0.00,19.29,0.00,0.00,0.00,16.58,0.00,0.00,0.00,15.86,0.00 +600216.SH,0.00,0.00,0.00,10.12,0.00,0.00,0.00,12.39,0.00,0.00,0.00,11.20,0.00,0.00,0.00,14.87,0.00,0.00,0.00,15.02,0.00 +000012.SZ,0.00,0.00,0.00,9.17,0.00,0.00,0.00,8.73,0.00,0.00,0.00,15.73,0.00,0.00,0.00,20.24,0.00,0.00,0.00,16.28,0.00 +002697.SZ,0.00,0.00,0.00,0.44,0.00,0.00,0.00,0.47,0.00,0.00,0.00,0.40,0.00,0.00,0.00,0.58,0.00,0.00,0.00,0.61,0.00 +601609.SH,0.00,0.00,0.00,11.33,0.00,0.00,0.00,12.43,0.00,0.00,0.00,9.51,0.00,0.00,0.00,9.21,0.00,0.00,0.00,6.53,0.00 +002896.SZ,0.00,0.00,0.00,17.59,0.00,0.00,0.00,17.70,0.00,0.00,0.00,24.48,0.00,0.00,0.00,26.74,0.00,0.00,0.00,18.38,0.00 +603299.SH,0.00,0.00,0.00,10.12,0.00,0.00,0.00,12.71,0.00,0.00,0.00,14.57,0.00,0.00,0.00,17.91,0.00,0.00,0.00,15.62,0.00 +688563.SH,0.00,0.00,0.00,87.41,0.00,0.00,0.00,86.24,0.00,89.90,0.00,85.58,0.00,0.00,0.00,80.22,0.00,0.00,0.00,84.93,0.00 +000725.SZ,0.00,0.00,0.00,45.72,0.00,0.00,0.00,37.79,0.00,0.00,0.00,40.73,0.00,0.00,0.00,35.76,0.00,0.00,0.00,37.50,0.00 +002116.SZ,0.00,0.00,0.00,25.66,0.00,0.00,0.00,23.30,0.00,0.00,0.00,21.26,0.00,0.00,0.00,23.18,0.00,0.00,0.00,27.24,0.00 +600653.SH,0.00,0.00,0.00,4.17,0.00,0.00,0.00,2.21,0.00,0.00,0.00,2.28,0.00,0.00,0.00,3.00,0.00,0.00,0.00,3.95,0.00 +688455.SH,0.00,0.00,0.00,90.98,0.00,90.37,0.00,82.05,0.00,0.00,0.00,87.25,0.00,0.00,0.00,72.14,0.00,0.00,0.00,66.88,0.00 +600123.SH,0.00,0.00,0.00,21.91,0.00,0.00,0.00,19.88,0.00,0.00,0.00,22.86,0.00,0.00,0.00,26.19,0.00,0.00,0.00,31.99,0.00 +000798.SZ,0.00,0.00,0.00,62.81,0.00,0.00,0.00,63.86,0.00,0.00,0.00,74.36,0.00,0.00,0.00,22.41,0.00,0.00,0.00,14.07,0.00 +688156.SH,0.00,0.00,0.00,50.88,0.00,0.00,0.00,55.65,0.00,0.00,0.00,44.21,0.00,0.00,0.00,49.03,0.00,0.00,0.00,47.62,0.00 +002202.SZ,0.00,0.00,0.00,38.17,0.00,0.00,0.00,41.27,0.00,0.00,0.00,34.73,0.00,0.00,0.00,31.62,0.00,0.00,0.00,31.98,0.00 +603998.SH,0.00,0.00,0.00,23.11,0.00,0.00,0.00,20.22,0.00,0.00,0.00,25.29,0.00,0.00,0.00,28.34,0.00,0.00,0.00,29.89,0.00 +600623.SH,0.00,0.00,0.00,12.71,0.00,10.09,0.00,10.41,0.00,9.39,0.00,9.13,0.00,8.98,0.00,8.35,0.00,9.17,0.00,9.31,0.00 +003031.SZ,0.00,44.49,0.00,39.42,0.00,0.00,0.00,51.28,0.00,0.00,0.00,52.92,0.00,0.00,0.00,64.29,0.00,0.00,0.00,58.09,0.00 +688686.SH,0.00,27.37,0.00,41.34,0.00,0.00,0.00,35.34,0.00,0.00,0.00,46.09,0.00,0.00,0.00,30.34,0.00,0.00,0.00,27.20,0.00 +002772.SZ,0.00,0.00,0.00,9.87,0.00,0.00,0.00,10.05,0.00,0.00,0.00,9.94,0.00,0.00,0.00,11.81,0.00,0.00,0.00,12.31,0.00 +688271.SH,0.00,0.00,0.00,9.27,0.00,11.14,0.00,8.80,0.00,0.00,0.00,12.42,0.00,0.00,0.00,9.91,0.00,0.00,0.00,10.61,0.00 +688425.SH,0.00,68.44,0.00,67.38,0.00,0.00,0.00,61.25,0.00,0.00,0.00,61.87,0.00,0.00,0.00,48.19,0.00,0.00,0.00,53.36,0.00 +601777.SH,0.00,0.00,0.00,16.29,0.00,0.00,0.00,5.90,0.00,0.00,0.00,47.02,0.00,0.00,0.00,37.06,0.00,0.00,0.00,41.50,0.00 +000932.SZ,0.00,0.00,0.00,15.03,0.00,0.00,0.00,15.24,0.00,0.00,0.00,13.02,0.00,0.00,0.00,12.25,0.00,0.00,0.00,12.22,0.00 +601336.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +603107.SH,0.00,70.87,0.00,53.06,0.00,0.00,0.00,48.79,0.00,49.54,0.00,47.86,0.00,44.28,0.00,60.77,0.00,0.00,0.00,57.94,0.00 +301331.SZ,36.74,0.00,33.50,33.85,0.00,36.67,0.00,37.31,0.00,0.00,0.00,39.08,0.00,0.00,0.00,38.09,0.00,0.00,0.00,39.95,0.00 +301203.SZ,0.00,95.35,0.00,94.50,0.00,93.99,0.00,89.62,0.00,84.88,0.00,84.60,0.00,0.00,0.00,84.01,0.00,0.00,0.00,88.32,0.00 +002589.SZ,0.00,0.00,0.00,5.88,0.00,0.00,0.00,7.05,0.00,0.00,0.00,10.17,0.00,0.00,0.00,16.23,0.00,0.00,0.00,15.17,0.00 +000915.SZ,0.00,0.00,0.00,17.34,0.00,0.00,0.00,18.66,0.00,0.00,0.00,26.18,0.00,0.00,0.00,19.47,0.00,0.00,0.00,40.69,0.00 +688389.SH,0.00,0.00,0.00,32.51,0.00,0.00,0.00,29.58,0.00,0.00,0.00,24.49,0.00,0.00,0.00,17.76,0.00,0.00,0.00,25.89,0.00 +300877.SZ,0.00,26.86,0.00,29.02,0.00,0.00,0.00,30.80,0.00,0.00,0.00,30.61,0.00,0.00,0.00,27.54,0.00,0.00,0.00,28.81,0.00 +600685.SH,0.00,0.00,0.00,57.21,0.00,51.40,0.00,9.02,0.00,56.73,0.00,61.18,0.00,59.96,0.00,61.54,0.00,84.02,0.00,88.08,0.00 +600158.SH,0.00,0.00,0.00,35.56,0.00,0.00,0.00,36.75,0.00,0.00,0.00,36.68,0.00,0.00,0.00,21.36,0.00,0.00,0.00,26.37,0.00 +603439.SH,0.00,0.00,0.00,15.82,0.00,0.00,0.00,14.62,0.00,0.00,0.00,11.89,0.00,0.00,0.00,11.34,0.00,0.00,0.00,12.39,0.00 +603192.SH,0.00,0.00,0.00,21.63,0.00,0.00,0.00,13.63,0.00,0.00,0.00,14.38,0.00,0.00,0.00,15.24,0.00,0.00,0.00,13.51,0.00 +002034.SZ,0.00,0.00,0.00,28.95,0.00,0.00,0.00,24.86,0.00,0.00,0.00,19.92,0.00,0.00,0.00,35.37,0.00,0.00,0.00,35.91,0.00 +002541.SZ,0.00,0.00,0.00,12.68,0.00,0.00,0.00,19.46,0.00,0.00,0.00,19.52,0.00,0.00,0.00,22.85,0.00,0.00,0.00,30.61,0.00 +002053.SZ,0.00,0.00,0.00,40.39,0.00,0.00,0.00,41.34,0.00,0.00,0.00,40.24,0.00,0.00,0.00,41.09,0.00,0.00,0.00,48.24,0.00 +688100.SH,0.00,0.00,0.00,71.83,0.00,0.00,0.00,69.02,0.00,0.00,0.00,70.86,0.00,0.00,0.00,64.67,0.00,0.00,0.00,68.88,0.00 +603815.SH,0.00,0.00,0.00,39.33,0.00,0.00,0.00,30.49,0.00,0.00,0.00,43.42,0.00,0.00,0.00,33.02,0.00,0.00,0.00,47.02,0.00 +002783.SZ,0.00,0.00,0.00,16.04,0.00,0.00,0.00,16.25,0.00,0.00,0.00,17.48,0.00,0.00,0.00,15.06,0.00,0.00,0.00,15.11,0.00 +603095.SH,0.00,0.00,0.00,7.27,0.00,0.00,0.00,6.94,0.00,0.00,0.00,14.41,0.00,0.00,0.00,19.04,0.00,0.00,0.00,10.35,0.00 +605318.SH,22.63,0.00,0.00,3.26,0.00,0.00,0.00,3.34,0.00,0.00,0.00,8.08,0.00,0.00,0.00,6.95,0.00,0.00,0.00,9.32,0.00 +000782.SZ,0.00,0.00,0.00,15.93,0.00,0.00,0.00,16.15,0.00,0.00,0.00,17.61,0.00,0.00,0.00,18.48,0.00,0.00,0.00,15.68,0.00 +688739.SH,0.00,10.75,0.00,10.84,0.00,0.00,0.00,9.09,0.00,0.00,0.00,10.89,0.00,0.00,0.00,11.64,0.00,0.00,0.00,13.54,0.00 +001213.SZ,0.00,62.49,0.00,62.30,56.21,59.81,0.00,58.10,0.00,0.00,0.00,55.45,0.00,0.00,0.00,52.86,0.00,0.00,0.00,43.67,0.00 +600328.SH,0.00,0.00,0.00,11.11,0.00,0.00,0.00,10.88,0.00,0.00,0.00,13.46,0.00,0.00,0.00,12.33,0.00,0.00,0.00,11.99,0.00 +002332.SZ,0.00,0.00,0.00,6.50,0.00,0.00,0.00,7.37,0.00,0.00,0.00,6.86,0.00,0.00,0.00,5.98,0.00,0.00,0.00,7.85,0.00 +688230.SH,0.00,0.00,0.00,54.18,0.00,49.72,0.00,50.21,0.00,0.00,0.00,47.42,0.00,0.00,0.00,43.54,0.00,0.00,0.00,48.47,0.00 +002004.SZ,0.00,0.00,0.00,16.98,0.00,0.00,0.00,18.25,0.00,0.00,0.00,20.72,0.00,0.00,0.00,15.72,0.00,0.00,0.00,15.26,0.00 +688050.SH,0.00,0.00,0.00,24.06,0.00,0.00,0.00,20.21,0.00,0.00,0.00,18.61,0.00,0.00,0.00,16.40,0.00,0.00,0.00,14.90,0.00 +600109.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +688120.SH,0.00,99.57,0.00,85.71,0.00,0.00,0.00,92.98,0.00,0.00,0.00,61.86,0.00,0.00,0.00,64.19,0.00,0.00,0.00,68.54,0.00 +601808.SH,0.00,0.00,0.00,86.60,0.00,0.00,0.00,84.20,0.00,0.00,0.00,85.80,0.00,0.00,0.00,87.10,0.00,0.00,0.00,86.30,0.00 +002385.SZ,0.00,0.00,0.00,8.16,0.00,0.00,0.00,9.21,0.00,0.00,0.00,5.38,0.00,0.00,0.00,4.66,0.00,0.00,0.00,5.86,0.00 +300209.SZ,0.00,0.00,0.00,74.92,0.00,0.00,0.00,69.31,0.00,0.00,0.00,72.69,0.00,0.00,0.00,66.69,0.00,0.00,0.00,71.41,0.00 +600918.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +300979.SZ,0.00,89.47,0.00,0.00,0.00,91.16,0.00,91.65,0.00,0.00,0.00,91.27,0.00,0.00,0.00,82.37,0.00,0.00,0.00,79.13,0.00 +600879.SH,0.00,0.00,0.00,26.82,0.00,0.00,0.00,28.49,0.00,0.00,0.00,27.99,0.00,0.00,0.00,29.56,0.00,0.00,0.00,35.08,0.00 +002091.SZ,0.00,0.00,0.00,17.78,0.00,0.00,0.00,20.14,0.00,0.00,0.00,21.63,0.00,0.00,0.00,18.77,0.00,0.00,0.00,18.63,0.00 +834599.BJ,0.00,34.07,0.00,30.04,0.00,30.27,0.00,39.38,0.00,48.14,0.00,43.21,0.00,42.95,0.00,37.79,0.00,0.00,0.00,32.19,0.00 +688070.SH,0.00,21.76,0.00,21.42,0.00,0.00,0.00,16.57,0.00,0.00,0.00,17.09,0.00,0.00,0.00,31.46,0.00,0.00,0.00,32.24,0.00 +603893.SH,0.00,0.00,0.00,74.15,0.00,0.00,0.00,75.17,0.00,0.00,0.00,59.58,0.00,0.00,0.00,57.56,0.00,0.00,0.00,59.83,0.00 +688182.SH,0.00,97.03,0.00,95.87,0.00,86.62,0.00,87.35,0.00,0.00,0.00,89.93,0.00,0.00,0.00,89.37,0.00,0.00,0.00,91.31,0.00 +601228.SH,0.00,0.00,0.00,19.65,0.00,0.00,0.00,27.78,0.00,0.00,0.00,22.72,0.00,0.00,0.00,17.25,0.00,0.00,0.00,16.34,0.00 +002737.SZ,0.00,0.00,0.00,32.97,0.00,0.00,0.00,46.50,0.00,0.00,0.00,51.71,0.00,0.00,0.00,51.84,0.00,0.00,0.00,60.41,0.00 +600791.SH,0.00,0.00,0.00,1.77,0.00,0.00,0.00,8.12,0.00,0.00,0.00,1.85,0.00,0.00,0.00,1.37,0.00,0.00,0.00,4.19,0.00 +300687.SZ,0.00,0.00,0.00,50.08,0.00,0.00,0.00,45.96,0.00,0.00,0.00,46.84,0.00,0.00,0.00,39.02,0.00,0.00,0.00,38.22,0.00 +000720.SZ,0.00,0.00,0.00,64.35,0.00,0.00,0.00,58.85,0.00,0.00,0.00,38.64,0.00,0.00,0.00,40.99,0.00,0.00,0.00,42.54,0.00 +600510.SH,0.00,0.00,0.00,18.68,0.00,0.00,0.00,5.76,0.00,0.00,0.00,26.36,0.00,0.00,0.00,53.49,0.00,0.00,0.00,45.75,0.00 +300181.SZ,0.00,0.00,0.00,36.92,0.00,0.00,0.00,50.98,0.00,0.00,0.00,50.57,0.00,0.00,0.00,51.61,0.00,0.00,0.00,48.58,0.00 +300900.SZ,0.00,0.00,0.00,78.79,0.00,0.00,0.00,80.32,0.00,0.00,0.00,77.92,0.00,0.00,0.00,79.15,0.00,0.00,0.00,87.20,0.00 +603698.SH,0.00,0.00,0.00,79.88,0.00,0.00,0.00,81.12,0.00,0.00,0.00,78.08,0.00,0.00,0.00,81.73,0.00,0.00,0.00,72.67,0.00 +688041.SH,0.00,0.00,0.00,92.22,0.00,91.73,0.00,91.23,0.00,0.00,0.00,97.35,0.00,0.00,0.00,99.13,0.00,0.00,0.00,98.17,0.00 +301301.SZ,0.00,0.00,0.00,34.43,59.57,0.00,50.20,48.06,0.00,47.80,47.48,43.56,0.00,0.00,0.00,45.02,0.00,0.00,0.00,37.84,0.00 +603217.SH,0.00,0.00,0.00,13.34,0.00,0.00,0.00,14.01,0.00,0.00,0.00,16.07,0.00,0.00,0.00,14.29,0.00,0.00,0.00,11.93,0.00 +002228.SZ,0.00,0.00,0.00,13.27,0.00,0.00,0.00,11.98,0.00,0.00,0.00,13.80,0.00,0.00,0.00,15.48,0.00,0.00,0.00,15.59,0.00 +688981.SH,0.00,0.00,0.00,46.30,0.00,0.00,0.00,11.30,0.00,0.00,0.00,29.20,0.00,0.00,0.00,37.10,0.00,0.00,0.00,0.00,0.00 +600261.SH,0.00,0.00,0.00,36.90,0.00,0.00,0.00,23.12,0.00,0.00,0.00,21.86,0.00,0.00,0.00,20.62,0.00,0.00,0.00,20.95,0.00 +002891.SZ,0.00,0.00,0.00,45.94,0.00,0.00,0.00,44.63,0.00,0.00,0.00,44.51,0.00,0.00,0.00,45.26,0.00,0.00,0.00,44.30,0.00 +605208.SH,0.00,88.16,88.02,86.69,0.00,0.00,0.00,61.24,0.00,0.00,0.00,82.55,0.00,0.00,0.00,72.40,0.00,0.00,0.00,59.13,0.00 +002833.SZ,0.00,0.00,0.00,18.06,0.00,0.00,0.00,19.00,0.00,0.00,0.00,21.68,0.00,0.00,0.00,19.10,0.00,0.00,0.00,22.82,0.00 +601139.SH,0.00,0.00,0.00,14.67,0.00,0.00,0.00,11.39,0.00,0.00,0.00,15.21,0.00,0.00,0.00,20.13,0.00,0.00,0.00,18.09,0.00 +600251.SH,0.00,0.00,0.00,18.31,0.00,0.00,0.00,21.45,0.00,0.00,0.00,22.85,0.00,0.00,0.00,46.26,0.00,0.00,0.00,28.27,0.00 +000830.SZ,0.00,0.00,0.00,15.46,0.00,0.00,0.00,13.48,0.00,0.00,0.00,11.55,0.00,0.00,0.00,12.51,0.00,0.00,0.00,12.72,0.00 +000728.SZ,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +002225.SZ,0.00,0.00,0.00,37.19,0.00,0.00,0.00,30.83,0.00,0.00,0.00,26.76,0.00,0.00,0.00,28.06,0.00,0.00,0.00,29.22,0.00 +600380.SH,0.00,0.00,0.00,7.44,0.00,0.00,0.00,8.63,0.00,9.24,0.00,8.89,0.00,9.30,0.00,9.03,0.00,8.75,0.00,8.53,0.00 +600313.SH,0.00,0.00,0.00,50.45,0.00,0.00,0.00,43.13,0.00,0.00,0.00,35.96,0.00,0.00,0.00,41.79,0.00,0.00,0.00,32.55,0.00 +600905.SH,44.21,0.00,42.81,0.00,0.00,0.00,0.00,97.70,0.00,0.00,0.00,99.42,0.00,0.00,0.00,98.66,0.00,0.00,0.00,98.68,0.00 +603018.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,12.93,0.00,0.00,0.00,15.15,0.00,0.00,0.00,10.64,0.00,0.00,0.00,11.54,0.00 +301043.SZ,0.00,22.96,0.00,22.22,0.00,0.00,0.00,20.44,0.00,0.00,0.00,17.03,0.00,0.00,0.00,14.34,0.00,0.00,0.00,15.99,0.00 +000708.SZ,0.00,0.00,0.00,8.93,0.00,0.00,0.00,10.17,0.00,0.00,0.00,7.93,0.00,0.00,0.00,9.06,0.00,0.00,0.00,9.83,0.00 +605136.SH,0.00,0.00,0.00,3.54,0.00,0.00,0.00,4.33,0.00,0.00,0.00,4.68,0.00,0.00,0.00,3.33,0.00,0.00,0.00,4.73,0.00 +000591.SZ,0.00,0.00,0.00,83.80,0.00,0.00,0.00,81.47,0.00,0.00,0.00,76.84,0.00,0.00,0.00,73.44,0.00,0.00,0.00,85.18,0.00 +603599.SH,0.00,0.00,0.00,19.61,0.00,0.00,0.00,23.41,0.00,0.00,0.00,25.39,0.00,0.00,0.00,22.08,0.00,0.00,0.00,18.08,0.00 +002852.SZ,0.00,0.00,0.00,8.31,0.00,4.63,0.00,9.15,0.00,0.00,0.00,8.58,0.00,5.82,0.00,11.11,0.00,8.11,0.00,11.26,0.00 +603713.SH,0.00,0.00,0.00,33.01,0.00,0.00,0.00,24.02,0.00,0.00,0.00,20.86,0.00,0.00,0.00,14.94,0.00,0.00,0.00,14.88,0.00 +300401.SZ,0.00,0.00,0.00,49.35,0.00,0.00,0.00,30.60,0.00,0.00,0.00,36.55,0.00,0.00,0.00,35.51,0.00,0.00,0.00,34.29,0.00 +601677.SH,0.00,0.00,0.00,8.85,0.00,9.59,0.00,9.46,0.00,9.65,0.00,8.26,0.00,9.07,0.00,9.24,0.00,0.00,0.00,8.46,0.00 +605358.SH,40.29,39.07,0.00,38.95,0.00,0.00,0.00,34.02,0.00,37.93,0.00,15.75,0.00,0.00,0.00,44.02,0.00,0.00,0.00,38.70,0.00 +002025.SZ,0.00,0.00,0.00,62.32,0.00,0.00,0.00,68.01,0.00,0.00,0.00,69.30,0.00,0.00,0.00,66.36,0.00,0.00,0.00,50.88,0.00 +000680.SZ,0.00,0.00,0.00,18.76,0.00,0.00,0.00,20.38,0.00,0.00,0.00,25.22,0.00,0.00,0.00,28.89,0.00,0.00,0.00,28.03,0.00 +688538.SH,0.00,75.72,0.00,64.01,0.00,0.00,0.00,64.17,0.00,0.00,0.00,74.03,0.00,0.00,0.00,78.59,0.00,0.00,0.00,81.52,0.00 +002508.SZ,0.00,0.00,0.00,35.02,0.00,0.00,0.00,32.34,0.00,0.00,0.00,33.29,0.00,0.00,0.00,29.08,0.00,0.00,0.00,25.28,0.00 +688569.SH,0.00,0.00,0.00,42.63,0.00,0.00,0.00,45.37,0.00,0.00,0.00,57.94,0.00,0.00,0.00,92.03,0.00,0.00,0.00,92.75,0.00 +603995.SH,0.00,0.00,0.00,42.21,0.00,0.00,0.00,36.63,0.00,0.00,0.00,34.00,0.00,0.00,0.00,23.12,0.00,0.00,0.00,20.96,0.00 +300808.SZ,0.00,0.00,0.00,33.72,0.00,0.00,0.00,39.78,0.00,0.00,0.00,32.86,0.00,0.00,0.00,29.49,0.00,0.00,0.00,29.88,0.00 +600984.SH,0.00,0.00,0.00,49.46,0.00,0.00,0.00,50.67,0.00,0.00,0.00,49.41,0.00,0.00,0.00,52.31,0.00,0.00,0.00,49.50,0.00 +601868.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,3.19,0.00,0.00,0.00,7.51,0.00,0.00,0.00,7.13,0.00,0.00,0.00,7.01,0.00 +001205.SZ,0.00,58.11,0.00,58.55,61.60,0.00,0.00,58.69,0.00,0.00,0.00,60.36,0.00,55.82,0.00,56.01,0.00,33.71,0.00,37.20,0.00 +601918.SH,0.00,0.00,0.00,66.17,0.00,0.00,0.00,58.45,0.00,0.00,0.00,67.62,0.00,0.00,0.00,64.10,0.00,0.00,0.00,64.17,0.00 +603129.SH,0.00,0.00,0.00,16.65,0.00,0.00,0.00,22.06,0.00,0.00,0.00,18.65,0.00,0.00,0.00,17.67,0.00,0.00,0.00,18.11,0.00 +603383.SH,0.00,0.00,0.00,17.50,0.00,0.00,0.00,14.08,0.00,0.00,0.00,18.67,0.00,0.00,0.00,15.20,0.00,0.00,0.00,19.66,0.00 +601177.SH,0.00,0.00,0.00,17.22,0.00,0.00,0.00,27.24,0.00,0.00,0.00,31.45,0.00,0.00,0.00,25.60,0.00,0.00,0.00,35.62,0.00 +600717.SH,0.00,0.00,0.00,17.97,0.00,0.00,0.00,24.09,0.00,0.00,0.00,15.35,0.00,0.00,0.00,15.50,0.00,0.00,0.00,21.72,0.00 +002940.SZ,0.00,0.00,0.00,44.38,0.00,0.00,0.00,37.99,0.00,0.00,0.00,31.96,0.00,0.00,0.00,24.62,0.00,0.00,0.00,25.75,0.00 +002096.SZ,0.00,0.00,0.00,16.49,0.00,0.00,0.00,16.42,0.00,0.00,0.00,13.79,0.00,0.00,0.00,39.01,0.00,0.00,0.00,45.18,0.00 +688333.SH,0.00,0.00,0.00,39.72,0.00,0.00,0.00,57.60,0.00,0.00,0.00,68.76,0.00,0.00,0.00,45.28,0.00,0.00,0.00,47.44,0.00 +001358.SZ,0.00,48.58,0.00,45.69,0.00,51.88,0.00,49.24,0.00,44.84,0.00,44.03,0.00,36.98,0.00,33.89,0.00,0.00,0.00,35.30,0.00 +301339.SZ,0.00,76.51,0.00,73.57,0.00,0.00,0.00,70.53,0.00,0.00,0.00,66.78,0.00,0.00,0.00,69.30,0.00,0.00,0.00,60.77,0.00 +688543.SH,0.00,0.00,0.00,88.38,0.00,0.00,0.00,83.00,0.00,84.83,0.00,85.82,0.00,77.21,0.00,78.96,0.00,65.37,0.00,76.44,0.00 +688505.SH,0.00,0.00,0.00,48.09,0.00,0.00,0.00,51.47,0.00,0.00,0.00,50.43,0.00,0.00,0.00,54.89,0.00,0.00,0.00,0.00,0.00 +300026.SZ,0.00,0.00,0.00,9.43,0.00,0.00,0.00,12.49,0.00,0.00,0.00,11.55,0.00,0.00,0.00,11.64,0.00,0.00,0.00,9.36,0.00 +301606.SZ,0.00,0.00,0.00,18.14,0.00,0.00,0.00,21.53,0.00,22.57,0.00,23.40,0.00,21.08,0.00,20.95,0.00,0.00,0.00,17.81,0.00 +300439.SZ,0.00,0.00,0.00,10.99,0.00,0.00,0.00,12.79,0.00,0.00,0.00,14.03,0.00,0.00,0.00,16.50,0.00,0.00,0.00,16.05,0.00 +000663.SZ,0.00,0.00,0.00,22.52,0.00,0.00,0.00,56.20,0.00,0.00,0.00,73.67,0.00,0.00,0.00,75.89,0.00,0.00,0.00,41.90,0.00 +000026.SZ,0.00,0.00,0.00,18.69,0.00,0.00,0.00,20.50,0.00,0.00,0.00,19.29,0.00,0.00,0.00,18.35,0.00,0.00,0.00,21.04,0.00 +002321.SZ,0.00,0.00,0.00,8.09,0.00,0.00,0.00,17.30,0.00,0.00,0.00,16.65,0.00,0.00,0.00,17.57,0.00,0.00,0.00,23.46,0.00 +001227.SZ,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +300920.SZ,0.00,72.57,0.00,70.99,0.00,0.00,0.00,67.17,0.00,0.00,0.00,62.01,0.00,0.00,0.00,45.20,0.00,0.00,0.00,48.66,0.00 +605090.SH,0.00,32.12,0.00,30.32,0.00,0.00,0.00,37.09,0.00,0.00,0.00,40.78,0.00,0.00,0.00,40.67,0.00,0.00,0.00,17.91,0.00 +600814.SH,0.00,0.00,0.00,0.78,0.00,0.00,0.00,0.79,0.00,0.00,0.00,0.90,0.00,0.00,0.00,11.66,0.00,0.00,0.00,0.92,0.00 +300851.SZ,0.00,0.00,0.00,72.58,0.00,0.00,0.00,78.78,0.00,0.00,0.00,76.11,0.00,0.00,0.00,71.76,0.00,0.00,0.00,70.58,0.00 +600308.SH,0.00,0.00,0.00,8.53,0.00,0.00,0.00,9.35,0.00,0.00,0.00,10.77,0.00,0.00,0.00,13.48,0.00,0.00,0.00,19.27,0.00 +600874.SH,0.00,0.00,0.00,55.00,0.00,0.00,0.00,46.38,0.00,0.00,0.00,49.79,0.00,0.00,0.00,49.64,0.00,0.00,0.00,50.75,0.00 +002624.SZ,0.00,0.00,0.00,11.93,0.00,0.00,0.00,8.21,0.00,0.00,0.00,13.64,0.00,0.00,0.00,14.69,0.00,0.00,0.00,8.00,0.00 +300271.SZ,0.00,0.00,0.00,8.50,0.00,0.00,0.00,17.47,0.00,0.00,0.00,16.76,0.00,0.00,0.00,11.40,0.00,0.00,0.00,14.85,0.00 +601377.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +002060.SZ,0.00,0.00,0.00,20.19,0.00,0.00,0.00,38.41,0.00,0.00,0.00,38.57,0.00,0.00,0.00,12.43,0.00,0.00,0.00,12.07,0.00 +603136.SH,0.00,0.00,0.00,14.54,0.00,0.00,0.00,17.64,0.00,0.00,0.00,20.25,0.00,0.00,0.00,19.40,0.00,0.00,0.00,9.59,0.00 +001267.SZ,0.00,69.91,0.00,65.64,0.00,0.00,0.00,47.65,0.00,0.00,0.00,57.31,0.00,73.23,0.00,67.59,0.00,0.00,0.00,49.81,0.00 +002043.SZ,0.00,0.00,0.00,10.64,0.00,0.00,0.00,10.56,0.00,0.00,0.00,10.61,0.00,0.00,0.00,10.78,0.00,0.00,0.00,11.57,0.00 +603959.SH,0.00,0.00,0.00,88.85,0.00,0.00,0.00,37.34,0.00,0.00,0.00,51.15,0.00,0.00,0.00,54.20,0.00,0.00,0.00,58.50,0.00 +002098.SZ,0.00,0.00,0.00,3.88,0.00,0.00,0.00,4.69,0.00,0.00,0.00,5.87,0.00,0.00,0.00,5.52,0.00,0.00,0.00,5.21,0.00 +603601.SH,0.00,0.00,0.00,22.54,0.00,0.00,0.00,26.58,0.00,0.00,0.00,25.96,0.00,0.00,0.00,25.44,0.00,0.00,0.00,29.42,0.00 +600104.SH,0.00,0.00,0.00,9.51,0.00,0.00,0.00,9.17,0.00,0.00,0.00,11.03,0.00,0.00,0.00,12.43,0.00,0.00,0.00,13.33,0.00 +688228.SH,0.00,0.00,0.00,37.62,0.00,0.00,0.00,35.39,0.00,0.00,0.00,34.73,0.00,0.00,0.00,38.44,0.00,0.00,0.00,54.04,0.00 +301127.SZ,0.00,51.85,0.00,42.89,0.00,59.23,57.19,52.05,0.00,0.00,0.00,79.45,0.00,0.00,0.00,46.11,0.00,0.00,0.00,55.57,0.00 +002555.SZ,0.00,0.00,0.00,32.92,0.00,0.00,0.00,43.75,0.00,0.00,0.00,45.80,0.00,0.00,0.00,42.55,0.00,0.00,0.00,37.96,0.00 +600266.SH,0.00,0.00,0.00,9.28,0.00,0.00,0.00,23.23,0.00,0.00,0.00,43.76,0.00,0.00,0.00,6.19,0.00,0.00,0.00,29.56,0.00 +688076.SH,0.00,62.64,0.00,61.09,0.00,0.00,0.00,44.22,0.00,0.00,0.00,49.58,0.00,0.00,0.00,45.08,0.00,0.00,0.00,47.62,0.00 +000069.SZ,0.00,0.00,0.00,2.50,0.00,0.00,0.00,13.99,0.00,0.00,0.00,5.70,0.00,0.00,0.00,3.27,0.00,0.00,0.00,3.71,0.00 +601168.SH,0.00,0.00,0.00,28.00,0.00,0.00,0.00,37.00,0.00,0.00,0.00,30.00,0.00,0.00,0.00,28.00,0.00,0.00,0.00,34.00,0.00 +001914.SZ,0.00,0.00,0.00,3.57,0.00,2.81,0.00,2.92,0.00,0.00,0.00,4.98,0.00,0.00,0.00,8.32,0.00,0.00,0.00,9.85,0.00 +600262.SH,0.00,0.00,0.00,64.05,0.00,0.00,0.00,8.34,0.00,0.00,0.00,42.49,0.00,0.00,0.00,60.30,0.00,0.00,0.00,62.80,0.00 +603075.SH,0.00,0.00,0.00,36.67,0.00,0.00,0.00,34.28,0.00,34.65,0.00,32.87,0.00,36.16,0.00,35.77,0.00,0.00,0.00,38.82,0.00 +002566.SZ,0.00,0.00,0.00,10.22,0.00,0.00,0.00,10.94,0.00,0.00,0.00,10.34,0.00,0.00,0.00,9.63,0.00,0.00,0.00,8.67,0.00 +000848.SZ,0.00,0.00,0.00,7.44,0.00,7.42,0.00,7.02,0.00,7.46,0.00,6.82,0.00,6.62,0.00,6.20,0.00,5.88,0.00,6.26,0.00 +603056.SH,0.00,0.00,0.00,2.01,0.00,0.00,0.00,2.39,0.00,0.00,0.00,1.75,0.00,0.00,0.00,10.69,0.00,0.00,0.00,16.24,0.00 +000166.SZ,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +600376.SH,0.00,0.00,0.00,1.37,0.00,0.00,0.00,0.68,0.00,0.00,0.00,1.99,0.00,0.00,0.00,0.76,0.00,0.00,0.00,0.47,0.00 +002768.SZ,0.00,0.00,0.00,49.66,0.00,0.00,0.00,52.80,0.00,0.00,0.00,40.91,0.00,0.00,0.00,25.67,0.00,0.00,0.00,23.34,0.00 +600170.SH,0.00,0.00,0.00,3.24,0.00,3.86,0.00,3.31,0.00,0.00,0.00,6.71,0.00,0.00,0.00,4.25,0.00,0.00,0.00,7.69,0.00 +920002.BJ,0.00,0.00,0.00,56.93,0.00,0.00,0.00,52.69,0.00,0.00,0.00,48.82,0.00,52.81,0.00,51.94,0.00,0.00,0.00,51.23,0.00 +301073.SZ,0.00,22.50,20.96,19.15,0.00,0.00,0.00,21.83,0.00,0.00,0.00,30.32,0.00,0.00,0.00,22.28,0.00,0.00,0.00,24.46,0.00 +300498.SZ,0.00,0.00,0.00,4.70,0.00,0.00,0.00,4.12,0.00,0.00,0.00,5.40,0.00,0.00,0.00,4.35,0.00,0.00,0.00,4.30,0.00 +302132.SZ,0.00,0.00,0.00,18.46,0.00,0.00,0.00,20.24,0.00,0.00,0.00,33.57,0.00,0.00,0.00,26.15,0.00,0.00,0.00,22.89,0.00 +000028.SZ,0.00,0.00,0.00,4.30,0.00,0.00,0.00,4.80,0.00,0.00,0.00,4.93,0.00,0.00,0.00,4.86,0.00,0.00,0.00,5.02,0.00 +600351.SH,0.00,0.00,0.00,11.18,0.00,0.00,0.00,15.38,0.00,0.00,0.00,16.35,0.00,0.00,0.00,16.47,0.00,0.00,0.00,19.48,0.00 +603033.SH,0.00,0.00,0.00,16.94,0.00,0.00,0.00,21.52,0.00,0.00,0.00,18.27,0.00,0.00,0.00,20.34,0.00,0.00,0.00,19.71,0.00 +600219.SH,0.00,0.00,0.00,21.11,0.00,20.28,0.00,20.87,0.00,0.00,0.00,22.17,0.00,0.00,0.00,0.00,0.00,0.00,0.00,28.32,0.00 +300167.SZ,0.00,0.00,0.00,49.74,0.00,0.00,0.00,39.33,0.00,0.00,0.00,40.21,0.00,0.00,0.00,47.56,0.00,0.00,0.00,51.22,0.00 +600252.SH,0.00,0.00,0.00,10.30,0.00,0.00,0.00,9.56,0.00,0.00,0.00,5.35,0.00,0.00,0.00,11.45,0.00,0.00,0.00,11.94,0.00 +603235.SH,0.00,0.00,0.00,13.17,0.00,15.97,0.00,17.98,0.00,0.00,0.00,13.28,0.00,0.00,0.00,14.38,0.00,0.00,0.00,18.47,0.00 +603801.SH,0.00,0.00,0.00,13.29,0.00,0.00,0.00,10.17,0.00,0.00,0.00,8.20,0.00,0.00,0.00,11.99,0.00,0.00,0.00,10.54,0.00 +300187.SZ,0.00,0.00,0.00,42.48,0.00,0.00,0.00,34.22,0.00,0.00,0.00,47.32,0.00,0.00,0.00,49.40,0.00,0.00,0.00,43.06,0.00 +600745.SH,0.00,0.00,0.00,77.31,0.00,0.00,0.00,61.63,0.00,0.00,0.00,60.69,0.00,0.00,0.00,65.55,0.00,0.00,0.00,71.80,0.00 +688373.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,95.18,0.00,0.00,0.00,90.50,0.00,0.00,0.00,93.96,0.00,0.00,0.00,93.48,0.00 +000719.SZ,0.00,0.00,0.00,7.18,0.00,0.00,0.00,4.13,0.00,0.00,0.00,5.06,0.00,0.00,0.00,1.23,0.00,0.00,0.00,2.94,0.00 +002211.SZ,0.00,0.00,0.00,51.79,0.00,0.00,0.00,22.34,0.00,0.00,0.00,9.46,0.00,0.00,0.00,8.99,0.00,0.00,0.00,8.50,0.00 +300147.SZ,0.00,0.00,0.00,17.69,0.00,0.00,0.00,19.51,0.00,0.00,0.00,20.74,0.00,0.00,0.00,24.09,0.00,0.00,0.00,31.05,0.00 +600352.SH,0.00,0.00,0.00,12.07,0.00,0.00,0.00,9.70,0.00,0.00,0.00,7.50,0.00,0.00,0.00,7.56,0.00,0.00,0.00,5.56,0.00 +603223.SH,0.00,0.00,0.00,17.01,0.00,0.00,0.00,22.33,0.00,0.00,0.00,19.47,0.00,0.00,0.00,22.52,0.00,0.00,0.00,32.21,0.00 +002233.SZ,0.00,0.00,0.00,14.49,0.00,0.00,0.00,15.64,0.00,0.00,0.00,14.32,0.00,0.00,0.00,15.95,0.00,0.00,0.00,15.41,0.00 +002546.SZ,0.00,0.00,0.00,35.34,0.00,0.00,0.00,37.97,0.00,0.00,0.00,42.53,0.00,0.00,0.00,45.92,0.00,0.00,0.00,27.04,0.00 +605081.SH,0.00,72.61,66.69,66.41,0.00,0.00,0.00,44.26,0.00,0.00,0.00,40.49,0.00,0.00,0.00,76.35,0.00,0.00,0.00,67.56,0.00 +600929.SH,0.00,0.00,0.00,13.10,0.00,0.00,0.00,10.77,0.00,0.00,0.00,13.96,0.00,0.00,0.00,12.20,0.00,0.00,0.00,15.01,0.00 +600755.SH,0.00,0.00,0.00,10.95,0.00,0.00,0.00,7.81,0.00,0.00,0.00,6.81,0.00,0.00,0.00,6.51,0.00,0.00,0.00,7.72,0.00 +688370.SH,0.00,0.00,0.00,20.76,0.00,16.89,0.00,16.72,0.00,23.99,0.00,19.48,0.00,0.00,0.00,17.08,0.00,0.00,0.00,21.48,0.00 +688322.SH,0.00,0.00,0.00,39.05,0.00,41.87,0.00,49.31,54.29,0.00,0.00,41.42,0.00,0.00,0.00,37.70,0.00,0.00,0.00,51.53,0.00 +600325.SH,0.00,0.00,0.00,0.94,0.00,0.00,0.00,2.37,0.00,0.00,0.00,1.62,0.00,0.00,0.00,2.51,0.00,0.00,0.00,2.54,0.00 +600999.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +301396.SZ,0.00,0.00,0.00,32.54,0.00,65.57,0.00,33.36,0.00,41.70,0.00,36.99,0.00,0.00,0.00,40.04,0.00,0.00,0.00,75.33,0.00 +000686.SZ,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +002100.SZ,0.00,0.00,0.00,3.65,0.00,0.00,0.00,4.09,0.00,0.00,0.00,7.66,0.00,0.00,0.00,8.14,0.00,0.00,0.00,10.68,0.00 +002695.SZ,0.00,0.00,0.00,4.26,0.00,5.17,0.00,6.53,0.00,0.00,0.00,5.79,0.00,0.00,0.00,7.07,0.00,0.00,0.00,9.46,0.00 +000828.SZ,0.00,0.00,0.00,17.76,0.00,0.00,0.00,75.29,0.00,0.00,0.00,69.37,0.00,0.00,0.00,67.88,0.00,0.00,0.00,11.28,0.00 +603658.SH,0.00,0.00,0.00,16.48,0.00,0.00,0.00,15.69,0.00,0.00,0.00,16.29,0.00,0.00,0.00,15.43,0.00,0.00,0.00,14.09,0.00 +600098.SH,0.00,0.00,0.00,29.93,0.00,33.55,0.00,32.10,0.00,27.51,0.00,29.89,0.00,31.67,0.00,30.78,0.00,33.56,0.00,31.09,0.00 +600356.SH,0.00,0.00,0.00,16.64,0.00,0.00,0.00,16.75,0.00,0.00,0.00,13.60,0.00,0.00,0.00,15.38,0.00,0.00,0.00,15.78,0.00 +600420.SH,0.00,0.00,0.00,19.34,0.00,0.00,0.00,22.23,0.00,0.00,0.00,22.83,0.00,0.00,0.00,22.06,0.00,0.00,0.00,21.79,0.00 +002222.SZ,0.00,0.00,0.00,20.36,0.00,0.00,0.00,25.16,0.00,0.00,0.00,19.74,0.00,0.00,0.00,19.62,0.00,0.00,0.00,21.39,0.00 +603079.SH,0.00,0.00,0.00,31.12,0.00,0.00,0.00,20.47,0.00,0.00,0.00,21.09,0.00,0.00,0.00,24.07,0.00,0.00,0.00,31.99,0.00 +603313.SH,0.00,0.00,0.00,28.53,0.00,0.00,0.00,30.23,0.00,0.00,0.00,25.66,0.00,0.00,0.00,21.82,0.00,0.00,0.00,16.15,0.00 +002186.SZ,0.00,0.00,0.00,7.82,0.00,0.00,0.00,6.00,0.00,0.00,0.00,4.74,0.00,0.00,0.00,6.13,0.00,0.00,0.00,7.14,0.00 +002035.SZ,0.00,0.00,0.00,24.60,0.00,0.00,0.00,24.49,0.00,0.00,0.00,23.46,0.00,0.00,0.00,24.46,0.00,0.00,0.00,27.20,0.00 +688017.SH,0.00,0.00,0.00,42.50,0.00,0.00,0.00,42.06,0.00,0.00,0.00,35.99,0.00,0.00,0.00,37.59,0.00,0.00,0.00,34.71,0.00 +600406.SH,0.00,0.00,0.00,72.33,0.00,0.00,0.00,69.48,0.00,0.00,0.00,64.37,0.00,0.00,0.00,68.78,0.00,0.00,0.00,69.53,0.00 +603444.SH,0.00,0.00,0.00,41.49,0.00,0.00,0.00,47.83,0.00,0.00,0.00,39.14,0.00,0.00,0.00,33.01,0.00,0.00,0.00,36.91,0.00 +600720.SH,0.00,0.00,0.00,9.37,0.00,0.00,0.00,10.27,0.00,0.00,0.00,11.77,0.00,0.00,0.00,9.89,0.00,0.00,0.00,0.00,0.00 +688155.SH,0.00,0.00,0.00,68.41,0.00,0.00,0.00,91.54,0.00,0.00,0.00,95.80,0.00,0.00,0.00,94.53,0.00,0.00,0.00,96.15,0.00 +002524.SZ,0.00,0.00,0.00,10.38,0.00,0.00,0.00,12.11,0.00,0.00,0.00,13.39,0.00,0.00,0.00,11.99,0.00,0.00,0.00,4.73,0.00 +600858.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +002595.SZ,0.00,0.00,0.00,39.78,0.00,0.00,0.00,39.90,0.00,0.00,0.00,42.27,0.00,0.00,0.00,40.11,0.00,0.00,0.00,37.22,0.00 +002511.SZ,0.00,0.00,0.00,31.25,0.00,0.00,0.00,31.01,0.00,0.00,0.00,30.79,0.00,0.00,0.00,30.77,0.00,0.00,0.00,27.98,0.00 +600127.SH,0.00,0.00,0.00,18.36,0.00,0.00,0.00,18.06,0.00,0.00,0.00,22.18,0.00,0.00,0.00,14.56,0.00,0.00,0.00,12.21,0.00 +301188.SZ,0.00,27.89,0.00,30.48,0.00,27.81,0.00,27.93,0.00,0.00,0.00,23.17,0.00,0.00,0.00,17.24,0.00,0.00,0.00,21.48,0.00 +603790.SH,0.00,0.00,0.00,9.08,0.00,0.00,0.00,8.95,0.00,0.00,0.00,3.37,0.00,0.00,0.00,10.02,0.00,0.00,0.00,13.18,0.00 +688590.SH,0.00,35.98,34.85,34.98,0.00,0.00,0.00,33.13,0.00,0.00,0.00,38.80,0.00,0.00,0.00,31.55,0.00,0.00,0.00,29.54,0.00 +603737.SH,0.00,0.00,0.00,9.64,0.00,0.00,0.00,5.23,0.00,0.00,0.00,2.75,0.00,0.00,0.00,3.77,0.00,0.00,0.00,2.71,0.00 +601518.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +002242.SZ,0.00,0.00,0.00,21.48,0.00,0.00,0.00,31.03,0.00,0.00,0.00,30.02,0.00,0.00,0.00,39.30,0.00,0.00,0.00,41.58,0.00 +000419.SZ,0.00,0.00,0.00,3.77,0.00,9.05,0.00,5.41,0.00,7.00,0.00,5.79,0.00,7.04,0.00,7.32,0.00,7.45,0.00,5.95,0.00 +000889.SZ,0.00,0.00,0.00,25.25,0.00,0.00,0.00,23.85,0.00,0.00,0.00,30.57,0.00,0.00,0.00,31.02,0.00,0.00,0.00,31.45,0.00 +688332.SH,0.00,0.00,0.00,52.86,0.00,58.76,0.00,57.80,47.42,0.00,0.00,60.99,0.00,0.00,0.00,60.22,0.00,0.00,0.00,59.44,0.00 +601066.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +603301.SH,0.00,0.00,0.00,46.18,0.00,0.00,0.00,24.52,0.00,0.00,0.00,13.69,0.00,0.00,0.00,17.37,0.00,0.00,0.00,20.05,0.00 +600703.SH,0.00,0.00,0.00,35.49,0.00,0.00,0.00,35.55,0.00,0.00,0.00,38.01,0.00,0.00,0.00,38.84,0.00,0.00,0.00,39.16,0.00 +600019.SH,0.00,0.00,0.00,15.70,0.00,0.00,0.00,13.80,0.00,0.00,0.00,11.50,0.00,0.00,0.00,10.30,0.00,0.00,0.00,8.80,0.00 +002275.SZ,0.00,0.00,0.00,18.25,0.00,0.00,0.00,20.12,0.00,0.00,0.00,21.13,0.00,0.00,0.00,20.26,0.00,0.00,0.00,54.81,0.00 +300492.SZ,0.00,0.00,0.00,32.38,0.00,0.00,0.00,31.03,0.00,0.00,0.00,27.11,0.00,0.00,0.00,49.03,0.00,0.00,0.00,5.93,0.00 +600088.SH,0.00,0.00,0.00,58.08,0.00,0.00,0.00,53.73,0.00,0.00,0.00,56.19,0.00,0.00,0.00,62.96,0.00,0.00,0.00,66.39,0.00 +603039.SH,0.00,0.00,0.00,2.60,0.00,0.00,0.00,2.32,0.00,0.00,0.00,2.70,0.00,0.00,0.00,2.22,0.00,0.00,0.00,0.00,0.00 +600859.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +000402.SZ,0.00,0.00,0.00,5.40,0.00,0.00,0.00,7.67,0.00,0.00,0.00,8.53,0.00,0.00,0.00,2.37,0.00,0.00,0.00,2.78,0.00 +002190.SZ,0.00,0.00,0.00,71.11,0.00,0.00,0.00,75.84,0.00,0.00,0.00,77.95,0.00,0.00,0.00,76.20,0.00,0.00,0.00,81.08,0.00 +600075.SH,0.00,0.00,0.00,50.07,0.00,0.00,0.00,40.64,0.00,0.00,0.00,36.36,0.00,0.00,0.00,34.92,0.00,0.00,0.00,33.65,0.00 +601390.SH,0.00,0.00,0.00,22.78,0.00,0.00,0.00,0.93,0.00,0.00,0.00,21.63,0.00,0.00,0.00,24.12,0.00,0.00,0.00,20.83,0.00 +600941.SH,0.00,0.00,0.00,3.33,0.00,3.47,0.00,3.00,0.00,0.00,0.00,4.00,0.00,0.00,0.00,4.00,0.00,0.00,0.00,4.00,0.00 +688247.SH,0.00,0.00,0.00,86.47,0.00,81.58,0.00,79.04,0.00,0.00,0.00,69.06,0.00,0.00,0.00,63.44,0.00,0.00,0.00,77.20,0.00 +002761.SZ,0.00,0.00,0.00,7.11,0.00,0.00,0.00,5.16,0.00,0.00,0.00,6.37,0.00,0.00,0.00,4.77,0.00,0.00,0.00,4.49,0.00 +605255.SH,0.00,0.00,0.00,65.84,0.00,73.27,0.00,67.40,0.00,71.96,0.00,62.14,0.00,67.86,0.00,67.30,0.00,73.90,0.00,64.54,0.00 +688060.SH,0.00,0.00,0.00,45.16,0.00,0.00,0.00,37.03,0.00,0.00,0.00,50.72,0.00,0.00,0.00,31.30,0.00,0.00,0.00,44.04,0.00 +600751.SH,0.00,0.00,0.00,12.45,0.00,0.00,0.00,10.33,0.00,0.00,0.00,77.46,0.00,0.00,0.00,57.81,0.00,0.00,0.00,34.59,0.00 +001216.SZ,0.00,57.81,0.00,57.44,0.00,55.14,0.00,56.42,0.00,0.00,0.00,64.94,0.00,0.00,0.00,67.92,0.00,0.00,0.00,63.05,0.00 +603061.SH,0.00,0.00,0.00,66.08,0.00,50.29,0.00,54.79,0.00,68.84,0.00,56.43,0.00,0.00,0.00,52.59,0.00,0.00,0.00,50.96,0.00 +605366.SH,28.40,0.00,0.00,26.46,0.00,0.00,0.00,27.08,0.00,0.00,0.00,35.21,0.00,0.00,0.00,27.50,0.00,0.00,0.00,21.67,0.00 +603073.SH,0.00,0.00,0.00,19.48,0.00,20.53,0.00,17.91,0.00,23.62,0.00,23.72,0.00,0.00,0.00,24.19,0.00,0.00,0.00,22.65,0.00 +603022.SH,0.00,0.00,0.00,24.95,0.00,0.00,0.00,24.13,0.00,0.00,0.00,25.13,0.00,0.00,0.00,25.66,0.00,0.00,0.00,37.49,0.00 +601330.SH,0.00,0.00,0.00,35.16,0.00,0.00,0.00,32.40,0.00,0.00,0.00,31.27,0.00,0.00,0.00,30.69,0.00,0.00,0.00,28.70,0.00 +002798.SZ,0.00,0.00,0.00,35.46,0.00,0.00,0.00,29.28,0.00,0.00,0.00,17.21,0.00,0.00,0.00,14.37,0.00,0.00,0.00,10.68,0.00 +003035.SZ,0.00,39.07,38.76,39.03,0.00,0.00,0.00,38.98,0.00,0.00,0.00,39.36,0.00,0.00,0.00,37.57,0.00,0.00,0.00,0.00,0.00 +301296.SZ,90.08,0.00,89.61,89.16,0.00,89.48,0.00,89.95,0.00,0.00,0.00,90.60,0.00,0.00,0.00,88.76,0.00,0.00,0.00,85.92,0.00 +603230.SH,0.00,0.00,23.73,20.49,0.00,20.49,0.00,20.55,0.00,0.00,0.00,19.24,0.00,0.00,0.00,17.79,0.00,0.00,0.00,15.00,0.00 +603611.SH,0.00,0.00,0.00,10.52,0.00,0.00,0.00,23.23,0.00,0.00,0.00,25.29,0.00,0.00,0.00,15.30,0.00,0.00,0.00,23.16,0.00 +600233.SH,0.00,0.00,0.00,8.47,0.00,0.00,0.00,7.18,0.00,0.00,0.00,9.70,0.00,0.00,0.00,9.66,0.00,0.00,0.00,9.54,0.00 +002732.SZ,0.00,0.00,0.00,12.80,0.00,0.00,0.00,11.63,0.00,10.51,0.00,11.57,0.00,11.62,0.00,11.16,0.00,8.19,0.00,14.19,0.00 +601688.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +002932.SZ,0.00,0.00,0.00,16.28,0.00,0.00,0.00,14.77,0.00,0.00,0.00,26.48,0.00,0.00,0.00,20.64,0.00,0.00,0.00,26.26,0.00 +000911.SZ,0.00,0.00,0.00,49.34,0.00,0.00,0.00,58.01,0.00,0.00,0.00,51.69,0.00,0.00,0.00,47.05,0.00,0.00,0.00,55.71,0.00 +000800.SZ,0.00,0.00,0.00,6.95,0.00,0.00,0.00,8.75,0.00,0.00,0.00,22.69,0.00,0.00,0.00,31.78,0.00,0.00,0.00,27.78,0.00 +000672.SZ,0.00,0.00,0.00,11.14,0.00,0.00,0.00,8.96,0.00,0.00,0.00,7.80,0.00,0.00,0.00,8.74,0.00,0.00,0.00,9.89,0.00 +601800.SH,0.00,0.00,0.00,5.00,0.00,0.00,0.00,2.53,0.00,0.00,0.00,3.68,0.00,0.00,0.00,4.42,0.00,0.00,0.00,4.78,0.00 +300111.SZ,0.00,0.00,0.00,24.56,0.00,0.00,0.00,22.58,0.00,0.00,0.00,25.37,0.00,0.00,0.00,31.36,0.00,0.00,0.00,36.39,0.00 +001872.SZ,0.00,0.00,0.00,27.38,0.00,0.00,0.00,24.49,0.00,0.00,0.00,20.31,0.00,23.61,0.00,26.81,0.00,28.17,0.00,30.66,0.00 +301571.SZ,0.00,0.00,0.00,63.36,0.00,0.00,0.00,58.98,0.00,38.80,0.00,29.86,0.00,0.00,0.00,33.78,0.00,0.00,0.00,24.71,0.00 +601828.SH,0.00,0.00,0.00,4.11,0.00,0.00,0.00,4.53,0.00,0.00,0.00,5.10,0.00,0.00,0.00,9.50,0.00,0.00,0.00,4.10,0.00 +600358.SH,0.00,0.00,0.00,70.41,0.00,0.00,0.00,55.69,0.00,0.00,0.00,52.01,0.00,0.00,0.00,58.13,0.00,0.00,0.00,46.77,0.00 +603869.SH,0.00,0.00,0.00,26.51,0.00,0.00,0.00,19.93,0.00,0.00,0.00,54.49,0.00,0.00,0.00,50.54,0.00,0.00,0.00,27.51,0.00 +603551.SH,0.00,0.00,0.00,17.01,0.00,0.00,0.00,15.82,0.00,0.00,0.00,21.87,0.00,0.00,0.00,14.06,0.00,0.00,0.00,16.68,0.00 +000426.SZ,0.00,0.00,0.00,54.48,0.00,0.00,0.00,54.91,0.00,0.00,0.00,74.90,0.00,0.00,0.00,73.99,0.00,0.00,0.00,83.64,0.00 +002608.SZ,0.00,0.00,0.00,93.15,0.00,0.00,0.00,85.65,0.00,0.00,0.00,90.95,0.00,0.00,0.00,86.94,0.00,0.00,0.00,91.77,0.00 +601880.SH,0.00,0.00,0.00,19.00,0.00,0.00,0.00,11.00,0.00,0.00,0.00,18.00,0.00,0.00,0.00,16.00,0.00,0.00,0.00,15.00,0.00 +688190.SH,0.00,0.00,0.00,24.31,0.00,25.24,0.00,22.93,0.00,0.00,0.00,30.26,0.00,0.00,0.00,36.15,0.00,0.00,0.00,40.88,0.00 +300838.SZ,0.00,0.00,0.00,17.43,0.00,0.00,0.00,15.49,0.00,0.00,0.00,20.60,0.00,0.00,0.00,14.47,0.00,0.00,0.00,12.79,0.00 +001286.SZ,0.00,0.00,0.00,82.62,0.00,77.36,0.00,69.81,0.00,76.34,0.00,0.00,0.00,0.00,0.00,82.45,0.00,0.00,0.00,81.50,0.00 +600795.SH,0.00,0.00,0.00,61.55,0.00,0.00,0.00,45.15,0.00,0.00,0.00,48.56,0.00,0.00,0.00,50.75,0.00,0.00,0.00,57.74,0.00 +000978.SZ,0.00,0.00,0.00,36.12,0.00,0.00,0.00,34.87,0.00,0.00,0.00,19.31,0.00,0.00,0.00,59.03,0.00,0.00,0.00,63.08,0.00 +600706.SH,0.00,0.00,0.00,50.88,0.00,0.00,0.00,52.72,0.00,0.00,0.00,61.25,0.00,0.00,0.00,37.72,0.00,0.00,0.00,15.71,0.00 +300650.SZ,0.00,0.00,0.00,66.13,0.00,0.00,0.00,81.51,0.00,0.00,0.00,73.61,0.00,0.00,0.00,69.83,0.00,0.00,0.00,64.12,0.00 +603216.SH,0.00,10.78,0.00,5.83,0.00,7.32,9.01,7.23,0.00,0.00,0.00,5.65,0.00,0.00,0.00,4.85,0.00,0.00,0.00,5.55,0.00 +600020.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +600812.SH,0.00,0.00,0.00,7.71,0.00,0.00,0.00,1.20,0.00,0.00,0.00,1.13,0.00,0.00,0.00,8.68,0.00,0.00,0.00,7.80,0.00 +600004.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,37.30,0.00,0.00,0.00,41.28,0.00,0.00,0.00,46.48,0.00,0.00,0.00,56.13,0.00 +000088.SZ,0.00,0.00,0.00,66.35,0.00,0.00,0.00,63.65,0.00,0.00,0.00,58.03,0.00,0.00,0.00,55.48,0.00,0.00,0.00,56.39,0.00 +002293.SZ,0.00,0.00,0.00,14.44,0.00,0.00,0.00,13.13,0.00,0.00,0.00,12.07,0.00,0.00,0.00,12.91,0.00,0.00,0.00,13.29,0.00 +600535.SH,0.00,0.00,0.00,5.01,0.00,0.00,0.00,7.39,0.00,0.00,0.00,6.39,0.00,0.00,0.00,6.88,0.00,0.00,0.00,8.21,0.00 +601061.SH,0.00,0.00,0.00,16.91,0.00,16.67,0.00,15.92,0.00,15.93,0.00,0.00,0.00,0.00,0.00,11.64,0.00,0.00,0.00,20.53,0.00 +601985.SH,0.00,0.00,0.00,91.96,0.00,0.00,0.00,90.70,0.00,0.00,0.00,89.78,0.00,0.00,0.00,85.48,0.00,0.00,0.00,91.93,0.00 +600502.SH,0.00,0.00,0.00,6.93,0.00,0.00,0.00,12.20,0.00,0.00,0.00,13.21,0.00,0.00,0.00,4.92,0.00,0.00,0.00,9.09,0.00 +002840.SZ,0.00,0.00,0.00,8.79,0.00,0.00,0.00,5.69,0.00,0.00,0.00,7.89,0.00,0.00,0.00,6.23,0.00,0.00,0.00,6.60,0.00 +601598.SH,0.00,0.00,0.00,15.37,0.00,0.00,0.00,12.52,0.00,0.00,0.00,11.10,0.00,0.00,0.00,8.45,0.00,0.00,0.00,8.56,0.00 +300472.SZ,0.00,0.00,0.00,47.22,0.00,0.00,0.00,67.32,0.00,0.00,0.00,77.84,0.00,0.00,0.00,70.50,0.00,0.00,0.00,49.82,0.00 +002352.SZ,0.00,0.00,0.00,5.23,0.00,0.00,0.00,5.57,0.00,0.00,0.00,5.04,0.00,0.00,0.00,9.16,0.00,0.00,0.00,9.11,0.00 +601200.SH,0.00,0.00,0.00,33.38,0.00,0.00,0.00,39.27,0.00,0.00,0.00,54.71,0.00,0.00,0.00,49.76,0.00,0.00,0.00,0.00,0.00 +688660.SH,0.00,57.21,0.00,44.52,0.00,0.00,0.00,68.76,0.00,0.00,0.00,66.36,0.00,0.00,0.00,75.49,0.00,0.00,0.00,55.16,0.00 +000501.SZ,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +000428.SZ,0.00,0.00,0.00,6.23,0.00,0.00,0.00,3.37,0.00,0.00,0.00,5.25,0.00,0.00,0.00,3.57,0.00,0.00,0.00,6.48,0.00 +002644.SZ,0.00,0.00,0.00,28.07,0.00,0.00,0.00,31.79,0.00,0.00,0.00,31.04,0.00,0.00,0.00,33.61,0.00,0.00,0.00,31.52,0.00 +601186.SH,0.00,0.00,0.00,4.64,0.00,0.00,0.00,3.91,0.00,0.00,0.00,3.16,0.00,0.00,0.00,3.80,0.00,0.00,0.00,4.45,0.00 +600600.SH,0.00,0.00,0.00,4.89,0.00,0.00,0.00,6.94,0.00,0.00,0.00,7.81,0.00,0.00,0.00,7.75,0.00,0.00,0.00,7.77,0.00 +600846.SH,0.00,0.00,0.00,16.56,0.00,0.00,0.00,17.70,0.00,0.00,0.00,15.89,0.00,0.00,0.00,16.38,0.00,0.00,0.00,30.77,0.00 +603053.SH,0.00,0.00,0.00,5.27,0.00,0.00,0.00,4.42,0.00,0.00,0.00,4.21,0.00,0.00,0.00,5.62,0.00,0.00,0.00,6.63,0.00 +601326.SH,0.00,0.00,0.00,37.66,0.00,0.00,0.00,35.39,0.00,0.00,0.00,36.60,0.00,0.00,0.00,33.77,0.00,0.00,0.00,38.61,0.00 +600161.SH,0.00,0.00,0.00,20.20,0.00,0.00,0.00,21.38,0.00,0.00,0.00,22.38,0.00,0.00,0.00,24.72,0.00,0.00,0.00,29.76,0.00 +600151.SH,0.00,0.00,0.00,25.88,0.00,0.00,0.00,26.25,0.00,0.00,0.00,24.09,0.00,0.00,0.00,42.44,0.00,0.00,0.00,47.11,0.00 +000950.SZ,0.00,0.00,0.00,11.50,0.00,0.00,0.00,9.02,0.00,0.00,0.00,7.39,0.00,0.00,0.00,6.85,0.00,0.00,0.00,6.57,0.00 +000983.SZ,0.00,0.00,0.00,100.00,0.00,0.00,0.00,47.81,0.00,0.00,0.00,38.31,0.00,0.00,0.00,43.96,0.00,0.00,0.00,51.97,0.00 +300935.SZ,0.00,14.97,0.00,10.66,0.00,0.00,0.00,14.13,0.00,0.00,0.00,11.73,0.00,0.00,0.00,12.13,0.00,0.00,0.00,12.44,0.00 +603317.SH,0.00,0.00,0.00,5.34,0.00,0.00,0.00,12.24,0.00,0.00,0.00,8.55,0.00,0.00,0.00,9.87,0.00,0.00,0.00,8.13,0.00 +603668.SH,0.00,0.00,0.00,10.06,0.00,0.00,0.00,10.46,0.00,0.00,0.00,10.65,0.00,0.00,0.00,8.79,0.00,0.00,0.00,15.59,0.00 +601952.SH,0.00,0.00,0.00,17.82,0.00,0.00,0.00,2.09,0.00,0.00,0.00,19.37,0.00,0.00,0.00,14.04,0.00,0.00,0.00,10.01,0.00 +002788.SZ,0.00,0.00,0.00,10.43,0.00,0.00,0.00,9.98,0.00,0.00,0.00,9.48,0.00,0.00,0.00,9.19,0.00,0.00,0.00,9.31,0.00 +000912.SZ,0.00,0.00,0.00,20.23,0.00,0.00,0.00,14.68,0.00,0.00,0.00,14.26,0.00,0.00,0.00,17.42,0.00,0.00,0.00,17.27,0.00 +688698.SH,0.00,14.81,14.57,14.93,0.00,0.00,0.00,18.54,0.00,0.00,0.00,18.36,0.00,0.00,0.00,23.31,0.00,0.00,0.00,19.44,0.00 +002567.SZ,0.00,0.00,0.00,8.38,0.00,0.00,0.00,7.03,0.00,0.00,0.00,8.01,0.00,0.00,0.00,5.28,0.00,0.00,0.00,11.45,0.00 +600995.SH,0.00,0.00,0.00,38.60,0.00,0.00,0.00,34.84,0.00,0.00,0.00,85.01,0.00,0.00,0.00,99.14,0.00,0.00,0.00,99.36,0.00 +300251.SZ,0.00,0.00,0.00,74.60,0.00,0.00,0.00,72.04,0.00,0.00,0.00,69.31,0.00,0.00,0.00,72.42,0.00,0.00,0.00,73.41,0.00 +605268.SH,0.00,11.39,12.02,8.71,0.00,0.00,0.00,13.07,0.00,0.00,0.00,4.62,0.00,0.00,0.00,4.56,0.00,0.00,0.00,4.83,0.00 +301193.SZ,0.00,47.48,0.00,46.68,0.00,50.36,0.00,49.53,0.00,0.00,0.00,42.18,0.00,0.00,0.00,45.07,0.00,0.00,0.00,43.00,0.00 +300345.SZ,0.00,0.00,0.00,52.64,0.00,54.95,0.00,55.19,0.00,50.54,0.00,46.29,0.00,60.01,0.00,56.57,0.00,67.17,0.00,68.94,0.00 +000858.SZ,0.00,0.00,0.00,18.07,0.00,0.00,0.00,9.15,0.00,0.00,0.00,13.24,0.00,0.00,0.00,13.59,0.00,0.00,0.00,15.67,0.00 +002007.SZ,0.00,0.00,0.00,8.80,0.00,0.00,0.00,7.49,0.00,0.00,0.00,7.20,0.00,0.00,0.00,7.32,0.00,0.00,0.00,9.11,0.00 +000544.SZ,0.00,0.00,0.00,47.66,0.00,0.00,0.00,65.71,0.00,0.00,0.00,65.88,0.00,0.00,0.00,53.55,0.00,0.00,0.00,75.22,0.00 +601065.SH,0.00,0.00,0.00,26.41,0.00,27.36,0.00,26.95,0.00,24.66,0.00,22.68,0.00,0.00,0.00,18.10,0.00,0.00,0.00,19.18,0.00 +600959.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,2.61,0.00,0.00,0.00,2.49,0.00,0.00,0.00,2.36,0.00,0.00,0.00,3.17,0.00 +301055.SZ,0.00,26.34,0.00,24.65,0.00,23.16,0.00,21.49,0.00,0.00,0.00,20.24,0.00,0.00,0.00,21.96,0.00,0.00,0.00,24.18,0.00 +688279.SH,0.00,0.00,0.00,61.89,0.00,54.17,0.00,0.00,0.00,0.00,0.00,56.57,0.00,0.00,0.00,50.64,0.00,0.00,0.00,46.85,0.00 +600976.SH,0.00,0.00,0.00,17.49,0.00,0.00,0.00,21.25,0.00,0.00,0.00,21.66,0.00,0.00,0.00,18.63,0.00,0.00,0.00,22.18,0.00 +603031.SH,0.00,0.00,0.00,1.60,0.00,0.00,0.00,1.61,0.00,0.00,0.00,12.04,0.00,0.00,0.00,17.98,0.00,0.00,0.00,20.85,0.00 +002458.SZ,0.00,0.00,0.00,21.50,0.00,0.00,0.00,20.98,0.00,0.00,0.00,17.01,0.00,0.00,0.00,16.87,0.00,0.00,0.00,12.53,0.00 +002153.SZ,0.00,0.00,0.00,10.52,0.00,0.00,0.00,9.35,0.00,0.00,0.00,11.63,0.00,0.00,0.00,11.94,0.00,0.00,0.00,11.85,0.00 +600230.SH,0.00,0.00,0.00,24.90,0.00,0.00,0.00,28.27,0.00,0.00,0.00,20.34,0.00,0.00,0.00,24.68,0.00,0.00,0.00,24.00,0.00 +603719.SH,0.00,0.00,0.00,17.88,0.00,0.00,0.00,17.14,0.00,0.00,0.00,18.06,0.00,0.00,0.00,16.13,0.00,0.00,0.00,16.59,0.00 +002059.SZ,0.00,0.00,0.00,33.64,0.00,0.00,0.00,60.62,0.00,0.00,0.00,62.99,0.00,0.00,0.00,61.48,0.00,0.00,0.00,56.35,0.00 +603008.SH,0.00,0.00,0.00,17.16,0.00,0.00,0.00,16.03,0.00,0.00,0.00,18.06,0.00,0.00,0.00,17.75,0.00,0.00,0.00,20.12,0.00 +000685.SZ,0.00,0.00,0.00,19.95,0.00,0.00,0.00,23.27,0.00,0.00,0.00,15.49,0.00,0.00,0.00,16.11,0.00,0.00,0.00,34.91,0.00 +000525.SZ,0.00,0.00,0.00,45.17,0.00,0.00,0.00,46.12,0.00,0.00,0.00,52.81,0.00,0.00,0.00,46.19,0.00,0.00,0.00,35.44,0.00 +301276.SZ,0.00,35.49,0.00,39.90,0.00,43.71,0.00,40.19,0.00,0.00,0.00,69.87,0.00,0.00,0.00,33.15,0.00,0.00,0.00,27.55,0.00 +000537.SZ,0.00,0.00,0.00,4.49,0.00,52.64,0.00,3.30,0.00,0.00,0.00,76.79,0.00,0.00,0.00,98.53,0.00,0.00,0.00,99.07,0.00 +000333.SZ,0.00,0.00,0.00,13.87,0.00,0.00,0.00,10.62,0.00,0.00,0.00,11.36,0.00,0.00,0.00,11.74,0.00,0.00,0.00,13.63,0.00 +603993.SH,0.00,0.00,0.00,14.43,0.00,0.00,0.00,12.52,0.00,0.00,0.00,10.47,0.00,0.00,0.00,10.01,0.00,0.00,0.00,13.46,0.00 +688330.SH,0.00,0.00,0.00,93.77,0.00,0.00,0.00,86.75,0.00,0.00,0.00,80.02,0.00,0.00,0.00,72.62,0.00,0.00,0.00,60.18,0.00 +600684.SH,0.00,0.00,0.00,6.29,0.00,0.00,0.00,52.82,0.00,0.00,0.00,3.42,0.00,0.00,0.00,12.77,0.00,0.00,0.00,24.96,0.00 +000059.SZ,0.00,0.00,0.00,19.59,0.00,0.00,0.00,22.92,0.00,0.00,0.00,13.86,0.00,0.00,0.00,24.23,0.00,0.00,0.00,18.72,0.00 +002870.SZ,0.00,0.00,0.00,20.58,0.00,0.00,0.00,59.36,0.00,0.00,0.00,74.05,0.00,0.00,0.00,73.65,0.00,0.00,0.00,68.34,0.00 +600971.SH,0.00,0.00,0.00,45.84,0.00,0.00,0.00,59.72,0.00,0.00,0.00,57.13,0.00,0.00,0.00,55.70,0.00,0.00,0.00,52.52,0.00 +600583.SH,0.00,0.00,0.00,89.81,0.00,90.21,0.00,54.20,0.00,90.87,0.00,83.54,0.00,86.29,0.00,83.85,0.00,82.79,0.00,81.99,0.00 +603987.SH,0.00,0.00,0.00,11.82,0.00,0.00,0.00,17.29,0.00,0.00,0.00,15.32,0.00,0.00,0.00,14.13,0.00,0.00,0.00,13.28,0.00 +601018.SH,0.00,0.00,0.00,25.89,0.00,0.00,0.00,19.59,0.00,0.00,0.00,20.43,0.00,0.00,0.00,18.80,0.00,0.00,0.00,18.92,0.00 +603568.SH,0.00,0.00,0.00,32.42,0.00,0.00,0.00,29.36,0.00,0.00,0.00,24.37,0.00,0.00,0.00,29.03,0.00,0.00,0.00,38.10,0.00 +002481.SZ,0.00,0.00,0.00,16.83,0.00,0.00,0.00,18.52,0.00,0.00,0.00,16.70,0.00,0.00,0.00,12.88,0.00,0.00,0.00,14.50,0.00 +600279.SH,0.00,0.00,0.00,43.99,0.00,0.00,0.00,41.56,0.00,0.00,0.00,37.48,0.00,0.00,0.00,39.18,0.00,0.00,0.00,30.61,0.00 +603193.SH,0.00,0.00,0.00,32.27,0.00,0.00,0.00,32.21,0.00,0.00,0.00,29.83,0.00,0.00,0.00,28.48,0.00,0.00,0.00,27.80,0.00 +000090.SZ,0.00,0.00,0.00,30.29,0.00,50.48,0.00,18.42,0.00,0.00,0.00,29.06,0.00,0.00,0.00,14.06,0.00,0.00,0.00,12.59,0.00 +688249.SH,0.00,0.00,0.00,89.80,0.00,78.31,0.00,70.14,0.00,0.00,0.00,60.58,0.00,66.47,0.00,63.76,0.00,59.89,0.00,61.32,0.00 +000650.SZ,0.00,0.00,0.00,7.72,0.00,0.00,0.00,12.17,0.00,0.00,0.00,15.28,0.00,0.00,0.00,15.75,0.00,0.00,0.00,17.33,0.00 +600064.SH,0.00,0.00,0.00,10.25,0.00,0.00,0.00,6.19,0.00,0.00,0.00,0.89,0.00,0.00,0.00,51.40,0.00,0.00,0.00,37.16,0.00 +600018.SH,0.00,0.00,0.00,20.41,0.00,0.00,0.00,16.50,0.00,0.00,0.00,15.60,0.00,0.00,0.00,14.90,0.00,0.00,0.00,15.80,0.00 +688090.SH,0.00,0.00,0.00,69.01,0.00,0.00,0.00,49.18,0.00,0.00,0.00,54.98,0.00,0.00,0.00,66.39,0.00,0.00,0.00,59.84,0.00 +000610.SZ,0.00,0.00,0.00,8.17,0.00,0.00,0.00,13.52,0.00,0.00,0.00,54.78,0.00,0.00,0.00,8.52,0.00,0.00,0.00,19.18,0.00 +001238.SZ,0.00,0.00,0.00,68.19,0.00,55.97,0.00,50.66,0.00,51.58,0.00,54.00,0.00,0.00,0.00,55.12,0.00,0.00,0.00,48.83,0.00 +600873.SH,0.00,0.00,0.00,11.52,0.00,0.00,0.00,11.21,0.00,0.00,0.00,11.23,0.00,0.00,0.00,10.45,0.00,0.00,0.00,11.57,0.00 +002142.SZ,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +003001.SZ,0.00,68.69,0.00,67.53,0.00,0.00,0.00,31.80,0.00,0.00,0.00,29.69,0.00,0.00,0.00,31.15,0.00,0.00,0.00,50.78,0.00 +300789.SZ,0.00,0.00,0.00,86.71,0.00,0.00,0.00,72.74,0.00,0.00,0.00,73.55,0.00,0.00,0.00,60.78,0.00,0.00,0.00,55.74,0.00 +000923.SZ,0.00,0.00,0.00,65.46,0.00,0.00,0.00,84.07,0.00,0.00,0.00,70.33,0.00,0.00,0.00,70.08,0.00,0.00,0.00,63.44,0.00 +603666.SH,0.00,0.00,0.00,79.42,0.00,0.00,0.00,74.95,0.00,0.00,0.00,86.85,0.00,0.00,0.00,38.38,0.00,0.00,0.00,77.01,0.00 +002936.SZ,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +000711.SZ,0.00,0.00,0.00,57.05,0.00,0.00,0.00,67.89,0.00,0.00,0.00,63.39,0.00,0.00,0.00,79.02,0.00,0.00,0.00,64.29,0.00 +600211.SH,0.00,0.00,0.00,20.10,0.00,0.00,0.00,19.86,0.00,0.00,0.00,17.05,0.00,0.00,0.00,17.07,0.00,0.00,0.00,16.80,0.00 +002024.SZ,0.00,0.00,0.00,3.08,0.00,0.00,0.00,1.16,0.00,1.19,0.00,3.03,0.00,3.57,0.00,2.66,0.00,2.84,0.00,0.97,0.00 +002637.SZ,0.00,0.00,0.00,12.53,0.00,0.00,0.00,13.63,0.00,0.00,0.00,17.04,0.00,0.00,0.00,13.52,0.00,0.00,0.00,17.08,0.00 +300957.SZ,0.00,21.49,0.00,21.28,0.00,0.00,0.00,20.52,0.00,0.00,0.00,19.34,0.00,17.46,0.00,19.18,0.00,0.00,0.00,18.93,0.00 +600710.SH,0.00,0.00,0.00,3.65,0.00,0.00,0.00,1.47,0.00,0.00,0.00,9.15,0.00,0.00,0.00,4.95,0.00,0.00,0.00,5.84,0.00 +600960.SH,0.00,0.00,0.00,47.01,0.00,0.00,0.00,46.88,0.00,0.00,0.00,44.71,0.00,0.00,0.00,46.18,0.00,0.00,0.00,43.23,0.00 +603886.SH,0.00,0.00,0.00,3.38,0.00,0.00,0.00,1.29,0.00,0.00,0.00,0.84,0.00,0.00,0.00,0.88,0.00,0.00,0.00,0.75,0.00 +000796.SZ,0.00,0.00,0.00,21.48,0.00,0.00,0.00,30.18,0.00,0.00,0.00,28.47,0.00,0.00,0.00,32.83,0.00,0.00,0.00,33.95,0.00 +002061.SZ,0.00,0.00,0.00,24.07,0.00,0.00,0.00,23.85,0.00,0.00,0.00,25.40,0.00,0.00,0.00,37.80,0.00,0.00,0.00,34.19,0.00 +301148.SZ,57.00,55.18,0.00,39.16,0.00,44.44,0.00,40.42,0.00,0.00,0.00,35.33,0.00,0.00,0.00,31.78,0.00,0.00,0.00,24.88,0.00 +688459.SH,0.00,0.00,0.00,81.72,0.00,80.91,0.00,86.57,0.00,0.00,0.00,84.65,0.00,0.00,0.00,87.08,0.00,0.00,0.00,85.24,0.00 +688531.SH,0.00,0.00,0.00,17.31,0.00,0.00,0.00,30.62,0.00,30.60,0.00,0.00,0.00,0.00,0.00,22.53,0.00,0.00,0.00,21.12,0.00 +002203.SZ,0.00,0.00,0.00,17.28,0.00,0.00,0.00,15.45,0.00,0.00,0.00,16.55,0.00,0.00,0.00,19.14,0.00,0.00,0.00,15.48,0.00 +688185.SH,0.00,0.00,0.00,100.00,0.00,0.00,0.00,71.81,0.00,0.00,0.00,40.49,0.00,0.00,0.00,13.32,0.00,0.00,0.00,11.36,0.00 +300922.SZ,86.40,0.00,0.00,81.26,0.00,0.00,0.00,86.42,0.00,0.00,0.00,87.74,0.00,0.00,0.00,92.54,0.00,0.00,0.00,92.11,0.00 +002307.SZ,0.00,0.00,0.00,73.06,0.00,40.28,0.00,67.86,0.00,0.00,0.00,42.70,0.00,0.00,0.00,31.72,0.00,0.00,0.00,36.24,0.00 +688256.SH,0.00,0.00,0.00,82.10,0.00,0.00,0.00,88.60,0.00,0.00,0.00,84.94,0.00,0.00,0.00,92.36,0.00,0.00,0.00,94.63,0.00 +688399.SH,0.00,0.00,0.00,11.85,0.00,0.00,0.00,9.35,0.00,0.00,0.00,8.98,0.00,0.00,0.00,9.94,0.00,0.00,0.00,12.22,0.00 +688592.SH,0.00,0.00,0.00,48.04,0.00,0.00,0.00,29.40,0.00,47.49,0.00,28.58,0.00,0.00,0.00,16.01,0.00,0.00,0.00,17.43,0.00 +603309.SH,0.00,0.00,0.00,17.38,0.00,0.00,0.00,20.60,0.00,0.00,0.00,29.51,0.00,0.00,0.00,40.38,0.00,0.00,0.00,32.28,0.00 +002039.SZ,0.00,0.00,0.00,100.00,0.00,0.00,0.00,100.00,0.00,0.00,0.00,100.00,0.00,0.00,0.00,100.00,0.00,0.00,0.00,100.00,0.00 +300426.SZ,0.00,0.00,0.00,82.96,0.00,0.00,0.00,105.50,0.00,0.00,0.00,80.07,0.00,0.00,0.00,83.80,0.00,0.00,0.00,96.35,0.00 +600782.SH,0.00,0.00,0.00,17.20,0.00,0.00,0.00,14.22,0.00,0.00,0.00,11.00,0.00,0.00,0.00,16.72,0.00,0.00,0.00,9.68,0.00 +600863.SH,0.00,0.00,0.00,97.31,0.00,96.87,0.00,52.91,0.00,97.94,0.00,54.46,0.00,97.88,0.00,97.42,0.00,97.77,0.00,99.97,0.00 +000623.SZ,0.00,0.00,0.00,37.75,0.00,0.00,0.00,35.98,0.00,0.00,0.00,32.87,0.00,0.00,0.00,32.76,0.00,0.00,0.00,27.47,0.00 +000792.SZ,0.00,0.00,0.00,59.84,0.00,0.00,0.00,28.47,0.00,0.00,0.00,17.89,0.00,0.00,0.00,18.53,0.00,0.00,0.00,21.31,0.00 +600488.SH,0.00,0.00,0.00,8.33,0.00,0.00,0.00,8.64,0.00,0.00,0.00,7.09,0.00,0.00,0.00,6.57,0.00,0.00,0.00,9.40,0.00 +000752.SZ,0.00,0.00,0.00,91.86,0.00,0.00,0.00,92.32,0.00,0.00,0.00,98.13,0.00,99.96,0.00,99.98,0.00,94.94,0.00,94.15,0.00 +000999.SZ,0.00,0.00,0.00,15.15,0.00,0.00,0.00,15.66,0.00,0.00,0.00,14.68,0.00,0.00,0.00,14.81,0.00,0.00,0.00,18.26,0.00 +600056.SH,0.00,0.00,0.00,17.27,0.00,0.00,0.00,15.03,0.00,0.00,0.00,12.49,0.00,0.00,0.00,11.84,0.00,0.00,0.00,12.96,0.00 +605339.SH,0.00,0.00,0.00,11.89,0.00,0.00,0.00,16.23,0.00,0.00,0.00,14.99,0.00,0.00,0.00,17.12,0.00,0.00,0.00,16.72,0.00 +002221.SZ,0.00,0.00,0.00,27.89,0.00,0.00,0.00,38.92,0.00,0.00,0.00,40.18,0.00,0.00,0.00,35.50,0.00,0.00,0.00,29.73,0.00 +301413.SZ,0.00,0.00,0.00,44.19,0.00,49.36,0.00,41.21,0.00,38.93,0.00,42.32,0.00,44.18,0.00,42.97,0.00,0.00,0.00,34.05,0.00 +600639.SH,0.00,0.00,0.00,41.00,0.00,0.00,0.00,13.20,0.00,0.00,0.00,8.14,0.00,0.00,0.00,13.75,0.00,0.00,0.00,21.95,0.00 +003012.SZ,0.00,11.25,0.00,10.63,0.00,0.00,0.00,8.01,0.00,0.00,0.00,5.79,0.00,0.00,0.00,5.78,0.00,0.00,0.00,6.71,0.00 +600582.SH,0.00,0.00,0.00,7.26,0.00,0.00,0.00,9.68,0.00,0.00,0.00,11.10,0.00,0.00,0.00,13.50,0.00,0.00,0.00,9.51,0.00 +601965.SH,0.00,0.00,0.00,8.72,0.00,0.00,0.00,8.26,0.00,0.00,0.00,12.92,0.00,0.00,0.00,14.68,0.00,0.00,0.00,26.28,0.00 +600284.SH,0.00,0.00,0.00,19.77,0.00,0.00,0.00,14.65,0.00,0.00,0.00,12.16,0.00,0.00,0.00,9.41,0.00,0.00,0.00,15.79,0.00 +603727.SH,0.00,0.00,0.00,97.00,0.00,0.00,0.00,99.58,0.00,0.00,0.00,98.46,0.00,0.00,0.00,96.80,0.00,0.00,0.00,99.34,0.00 +002014.SZ,0.00,0.00,0.00,18.23,0.00,15.91,0.00,17.12,0.00,0.00,0.00,17.48,0.00,15.40,0.00,21.79,0.00,26.59,0.00,23.53,0.00 +600009.SH,0.00,0.00,0.00,51.66,0.00,0.00,0.00,44.82,0.00,0.00,0.00,45.79,0.00,0.00,0.00,45.22,0.00,0.00,0.00,49.54,0.00 +688221.SH,0.00,74.07,0.00,88.18,0.00,0.00,0.00,72.62,0.00,0.00,0.00,73.68,0.00,0.00,0.00,59.61,0.00,0.00,0.00,56.81,0.00 +000973.SZ,0.00,0.00,0.00,13.67,0.00,0.00,0.00,13.60,0.00,0.00,0.00,14.38,0.00,0.00,0.00,11.98,0.00,0.00,0.00,15.06,0.00 +600557.SH,0.00,0.00,0.00,17.04,0.00,0.00,0.00,16.82,0.00,0.00,0.00,20.49,0.00,0.00,0.00,21.24,0.00,0.00,0.00,21.62,0.00 +301004.SZ,83.45,0.00,0.00,81.27,80.33,0.00,0.00,87.24,0.00,0.00,0.00,93.88,0.00,0.00,0.00,96.11,0.00,0.00,0.00,96.16,0.00 +601699.SH,0.00,0.00,0.00,15.40,0.00,0.00,0.00,14.05,0.00,0.00,0.00,10.48,0.00,0.00,0.00,14.04,0.00,0.00,0.00,16.67,0.00 +600572.SH,0.00,0.00,0.00,7.67,0.00,0.00,0.00,7.94,0.00,0.00,0.00,10.77,0.00,0.00,0.00,9.24,0.00,0.00,0.00,10.59,0.00 +688472.SH,0.00,0.00,0.00,28.96,0.00,30.20,0.00,22.61,0.00,24.08,0.00,19.04,0.00,0.00,0.00,14.02,0.00,0.00,0.00,28.33,0.00 +000001.SZ,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +600348.SH,0.00,20.52,0.00,23.93,0.00,0.00,0.00,7.96,0.00,0.00,0.00,27.98,0.00,0.00,0.00,23.88,0.00,0.00,0.00,34.74,0.00 +603195.SH,0.00,0.00,0.00,7.91,0.00,0.00,0.00,12.86,0.00,0.00,0.00,12.84,0.00,0.00,0.00,8.23,0.00,0.00,0.00,8.36,0.00 +688798.SH,0.00,63.20,0.00,53.44,0.00,0.00,0.00,60.27,0.00,0.00,0.00,50.73,0.00,0.00,0.00,52.04,0.00,0.00,0.00,51.62,0.00 +688200.SH,0.00,0.00,0.00,27.05,0.00,0.00,0.00,31.12,0.00,0.00,0.00,22.33,0.00,0.00,0.00,21.82,0.00,0.00,0.00,33.51,0.00 +600573.SH,0.00,0.00,0.00,16.91,0.00,0.00,0.00,13.62,0.00,0.00,0.00,13.50,0.00,0.00,0.00,13.19,0.00,0.00,0.00,13.07,0.00 +603833.SH,0.00,0.00,0.00,5.46,0.00,0.00,0.00,6.07,0.00,0.00,0.00,5.94,0.00,0.00,0.00,4.59,0.00,0.00,0.00,4.06,0.00 +000776.SZ,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +300600.SZ,0.00,0.00,0.00,56.72,0.00,0.00,0.00,41.60,0.00,0.00,0.00,31.67,0.00,0.00,0.00,25.07,0.00,0.00,0.00,41.35,0.00 +002252.SZ,0.00,0.00,0.00,17.59,0.00,24.79,0.00,18.60,0.00,0.00,0.00,17.14,0.00,0.00,0.00,19.56,0.00,0.00,0.00,20.12,0.00 +002603.SZ,0.00,0.00,0.00,14.59,0.00,0.00,0.00,11.84,0.00,0.00,0.00,15.39,0.00,0.00,0.00,39.01,0.00,0.00,0.00,40.47,0.00 +300614.SZ,33.60,0.00,0.00,31.55,0.00,0.00,0.00,28.29,0.00,0.00,0.00,30.89,0.00,0.00,0.00,30.17,0.00,0.00,0.00,25.75,0.00 +600395.SH,0.00,0.00,0.00,68.85,0.00,0.00,0.00,64.34,0.00,0.00,0.00,62.60,0.00,0.00,0.00,63.49,0.00,0.00,0.00,66.20,0.00 +600329.SH,0.00,0.00,0.00,8.91,0.00,0.00,0.00,7.56,0.00,0.00,0.00,10.21,0.00,0.00,0.00,8.49,0.00,0.00,0.00,9.47,0.00 +600184.SH,0.00,0.00,0.00,69.65,0.00,0.00,0.00,73.65,0.00,0.00,0.00,61.56,0.00,0.00,0.00,68.66,0.00,0.00,0.00,37.24,0.00 +301096.SZ,0.00,42.16,0.00,31.47,0.00,45.03,34.93,33.40,0.00,0.00,0.00,33.73,0.00,0.00,0.00,31.08,0.00,0.00,0.00,29.23,0.00 +000430.SZ,0.00,0.00,0.00,5.81,0.00,0.00,0.00,4.60,0.00,0.00,0.00,7.79,0.00,0.00,0.00,5.91,0.00,0.00,0.00,6.65,0.00 +600326.SH,0.00,0.00,0.00,20.70,0.00,0.00,0.00,30.61,0.00,0.00,0.00,36.63,0.00,0.00,0.00,22.03,0.00,0.00,0.00,19.71,0.00 +002425.SZ,0.00,0.00,0.00,52.42,0.00,0.00,0.00,58.55,0.00,0.00,0.00,48.50,0.00,0.00,0.00,59.41,0.00,0.00,0.00,51.38,0.00 +601766.SH,0.00,0.00,0.00,43.70,0.00,0.00,0.00,43.78,0.00,0.00,0.00,38.98,0.00,34.11,0.00,45.10,0.00,54.33,0.00,48.26,0.00 +002677.SZ,0.00,0.00,0.00,9.19,0.00,0.00,0.00,17.15,0.00,0.00,0.00,18.21,0.00,0.00,0.00,7.82,0.00,0.00,0.00,7.07,0.00 +600869.SH,0.00,0.00,0.00,6.97,0.00,0.00,0.00,3.55,0.00,0.00,0.00,8.63,0.00,0.00,0.00,14.24,0.00,0.00,0.00,10.71,0.00 +603102.SH,0.00,0.00,0.00,14.38,0.00,19.06,19.14,18.35,0.00,0.00,0.00,13.99,0.00,0.00,0.00,15.67,0.00,0.00,0.00,16.61,0.00 +600546.SH,0.00,0.00,0.00,18.02,0.00,0.00,0.00,14.35,0.00,0.00,0.00,22.37,0.00,0.00,0.00,31.79,0.00,0.00,0.00,35.52,0.00 +600037.SH,0.00,0.00,0.00,16.48,0.00,0.00,0.00,13.52,0.00,0.00,0.00,11.02,0.00,0.00,0.00,13.88,0.00,0.00,0.00,19.65,0.00 +601669.SH,0.00,0.00,0.00,9.44,0.00,0.00,0.00,10.37,0.00,0.00,0.00,10.64,0.00,0.00,0.00,12.88,0.00,0.00,0.00,14.51,0.00 +002890.SZ,0.00,0.00,0.00,50.71,0.00,0.00,0.00,65.53,0.00,0.00,0.00,68.55,0.00,0.00,0.00,70.91,0.00,0.00,0.00,76.79,0.00 +600587.SH,0.00,0.00,0.00,5.43,0.00,0.00,0.00,8.94,0.00,0.00,0.00,4.93,0.00,0.00,0.00,4.59,0.00,0.00,0.00,6.66,0.00 +600138.SH,0.00,0.00,0.00,7.29,0.00,0.00,0.00,6.77,0.00,0.00,0.00,8.46,0.00,0.00,0.00,5.22,0.00,0.00,0.00,7.45,0.00 +601512.SH,0.00,0.00,0.00,63.23,0.00,0.00,0.00,55.07,0.00,0.00,0.00,64.74,0.00,0.00,0.00,49.81,0.00,0.00,0.00,35.30,0.00 +300770.SZ,0.00,0.00,0.00,86.70,0.00,0.00,0.00,84.43,0.00,0.00,0.00,85.36,0.00,0.00,0.00,85.22,0.00,0.00,0.00,84.57,0.00 +601702.SH,0.00,0.00,0.00,13.12,0.00,0.00,0.00,29.30,0.00,0.00,0.00,35.37,0.00,0.00,0.00,36.31,0.00,0.00,0.00,33.53,0.00 +002262.SZ,0.00,0.00,0.00,11.42,0.00,0.00,0.00,14.16,0.00,0.00,0.00,17.03,0.00,0.00,0.00,19.53,0.00,0.00,0.00,36.58,0.00 +002516.SZ,0.00,0.00,0.00,25.28,0.00,0.00,0.00,22.08,0.00,0.00,0.00,25.28,0.00,0.00,0.00,34.30,0.00,0.00,0.00,30.74,0.00 +600956.SH,0.00,0.00,0.00,54.58,0.00,0.00,0.00,47.06,0.00,0.00,0.00,43.24,0.00,0.00,0.00,43.28,0.00,0.00,0.00,40.83,0.00 +600925.SH,0.00,0.00,0.00,34.73,52.99,0.00,48.05,35.32,0.00,31.48,0.00,0.00,0.00,0.00,0.00,39.37,0.00,0.00,0.00,50.55,0.00 +000995.SZ,0.00,0.00,0.00,12.10,0.00,0.00,0.00,24.29,0.00,0.00,0.00,15.89,0.00,0.00,0.00,19.16,0.00,0.00,0.00,13.71,0.00 +002309.SZ,0.00,0.00,0.00,27.42,0.00,0.00,0.00,23.75,0.00,40.22,0.00,32.10,0.00,21.12,0.00,24.48,0.00,0.00,0.00,44.71,0.00 +301087.SZ,0.00,29.78,0.00,33.30,0.00,0.00,0.00,40.33,0.00,0.00,0.00,40.84,0.00,0.00,0.00,43.80,0.00,0.00,0.00,33.70,0.00 +600894.SH,0.00,0.00,0.00,57.02,0.00,0.00,0.00,51.61,0.00,0.00,0.00,53.57,0.00,0.00,0.00,46.35,0.00,0.00,0.00,44.18,0.00 +600638.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,1.84,0.00,0.00,0.00,0.98,0.00,0.00,0.00,2.42,0.00,0.00,0.00,3.35,0.00 +688513.SH,0.00,0.00,0.00,52.13,0.00,0.00,0.00,52.61,0.00,0.00,0.00,50.24,0.00,0.00,0.00,44.29,0.00,0.00,0.00,40.29,0.00 +301283.SZ,0.00,0.00,0.00,45.26,0.00,48.87,0.00,49.53,0.00,48.28,0.00,46.68,0.00,0.00,0.00,42.16,0.00,0.00,0.00,43.25,0.00 +605183.SH,0.00,45.66,0.00,22.11,0.00,0.00,0.00,22.72,0.00,0.00,0.00,22.39,0.00,0.00,0.00,19.78,0.00,0.00,0.00,19.59,0.00 +603199.SH,0.00,0.00,0.00,6.69,0.00,0.00,0.00,6.52,0.00,0.00,0.00,6.94,0.00,0.00,0.00,10.34,0.00,0.00,0.00,15.79,0.00 +002592.SZ,0.00,0.00,0.00,85.95,0.00,0.00,0.00,86.54,0.00,0.00,0.00,87.30,0.00,0.00,0.00,89.73,0.00,0.00,0.00,87.24,0.00 +600486.SH,0.00,0.00,0.00,31.72,0.00,0.00,0.00,38.03,0.00,0.00,0.00,13.29,0.00,0.00,0.00,34.83,0.00,0.00,0.00,33.63,0.00 +600208.SH,0.00,0.00,0.00,19.33,0.00,0.00,0.00,10.82,0.00,0.00,0.00,23.07,0.00,0.00,0.00,2.71,0.00,0.00,0.00,1.40,0.00 +300373.SZ,0.00,0.00,0.00,16.58,0.00,0.00,0.00,14.83,0.00,0.00,0.00,16.97,0.00,0.00,0.00,13.52,0.00,0.00,0.00,13.47,0.00 +000011.SZ,0.00,0.00,0.00,8.68,0.00,74.16,0.00,3.83,0.00,0.00,0.00,11.08,0.00,0.00,0.00,39.32,0.00,0.00,0.00,8.43,0.00 +600085.SH,0.00,0.00,0.00,9.32,0.00,0.00,0.00,8.48,0.00,0.00,0.00,9.06,0.00,0.00,0.00,6.21,0.00,0.00,0.00,10.84,0.00 +600648.SH,0.00,0.00,0.00,14.94,0.00,0.00,0.00,16.52,0.00,0.00,0.00,15.21,0.00,0.00,0.00,13.81,0.00,0.00,0.00,19.72,0.00 +601668.SH,0.00,0.00,0.00,1.10,0.00,0.00,0.00,0.38,0.00,0.00,0.00,1.80,0.00,0.00,0.00,1.20,0.00,0.00,0.00,1.60,0.00 +300661.SZ,0.00,0.00,0.00,45.18,0.00,0.00,0.00,46.87,0.00,0.00,0.00,45.53,0.00,0.00,0.00,37.25,0.00,0.00,0.00,35.56,0.00 +601107.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,7.00,0.00,0.00,0.00,5.08,0.00 +301387.SZ,0.00,0.00,0.00,64.49,0.00,65.79,0.00,67.54,0.00,68.60,0.00,69.27,0.00,0.00,0.00,69.07,0.00,0.00,0.00,66.01,0.00 +002430.SZ,0.00,0.00,0.00,28.49,0.00,0.00,0.00,23.21,0.00,0.00,0.00,22.34,0.00,0.00,0.00,22.02,0.00,0.00,0.00,22.22,0.00 +600323.SH,0.00,0.00,0.00,13.32,0.00,0.00,0.00,12.19,0.00,0.00,0.00,12.71,0.00,0.00,0.00,15.56,0.00,0.00,0.00,18.28,0.00 +600267.SH,0.00,0.00,0.00,17.67,0.00,0.00,0.00,20.53,0.00,0.00,0.00,13.38,0.00,0.00,0.00,11.69,0.00,0.00,0.00,11.62,0.00 +600365.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,60.73,0.00,0.00,0.00,59.16,0.00,0.00,0.00,59.14,0.00,0.00,0.00,73.88,0.00 +688566.SH,0.00,0.00,0.00,64.55,0.00,0.00,0.00,59.48,0.00,0.00,0.00,62.25,0.00,0.00,0.00,62.22,0.00,0.00,0.00,63.44,0.00 +601333.SH,0.00,0.00,0.00,25.44,0.00,0.00,0.00,25.08,0.00,0.00,0.00,29.34,0.00,0.00,0.00,30.41,0.00,0.00,0.00,31.40,0.00 +600059.SH,0.00,0.00,0.00,24.33,0.00,0.00,0.00,13.09,0.00,0.00,0.00,10.40,0.00,0.00,0.00,11.76,0.00,0.00,0.00,11.60,0.00 +603811.SH,0.00,0.00,0.00,27.64,0.00,0.00,0.00,27.57,0.00,0.00,0.00,33.29,0.00,0.00,0.00,32.62,0.00,0.00,0.00,30.14,0.00 +688012.SH,0.00,0.00,0.00,59.65,0.00,0.00,0.00,53.31,0.00,0.00,0.00,40.56,0.00,0.00,0.00,33.71,0.00,0.00,0.00,70.21,0.00 +601665.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +600422.SH,0.00,0.00,0.00,17.18,0.00,0.00,0.00,15.17,0.00,0.00,0.00,13.10,0.00,0.00,0.00,19.80,0.00,0.00,0.00,22.99,0.00 +600742.SH,0.00,0.00,0.00,92.62,0.00,0.00,0.00,52.35,0.00,0.00,0.00,55.69,0.00,0.00,0.00,0.00,0.00,0.00,0.00,90.63,0.00 +002597.SZ,0.00,0.00,0.00,13.50,0.00,0.00,0.00,13.20,0.00,0.00,0.00,12.59,0.00,0.00,0.00,15.84,0.00,0.00,0.00,13.39,0.00 +000513.SZ,0.00,0.00,0.00,8.09,0.00,0.00,0.00,8.76,0.00,0.00,0.00,8.78,0.00,0.00,0.00,8.20,0.00,0.00,0.00,8.11,0.00 +688039.SH,0.00,0.00,0.00,33.84,0.00,0.00,0.00,35.84,0.00,0.00,0.00,64.14,0.00,0.00,0.00,52.66,0.00,0.00,0.00,46.78,0.00 +600737.SH,0.00,0.00,0.00,11.26,0.00,0.00,0.00,8.31,0.00,0.00,0.00,9.91,0.00,0.00,0.00,12.22,0.00,0.00,0.00,12.95,0.00 +001326.SZ,0.00,0.00,0.00,33.41,0.00,0.00,0.00,32.29,0.00,31.81,0.00,34.12,0.00,38.29,0.00,39.40,0.00,0.00,0.00,36.08,0.00 +688606.SH,0.00,43.30,0.00,44.47,0.00,0.00,0.00,32.64,0.00,0.00,0.00,37.38,0.00,0.00,0.00,19.38,0.00,0.00,0.00,18.86,0.00 +300889.SZ,22.02,22.46,0.00,27.08,0.00,0.00,0.00,20.04,0.00,0.00,0.00,13.30,0.00,0.00,0.00,16.86,0.00,0.00,0.00,17.56,0.00 +601019.SH,0.00,0.00,0.00,19.05,0.00,0.00,0.00,16.55,0.00,0.00,0.00,16.63,0.00,0.00,0.00,15.05,0.00,0.00,0.00,16.90,0.00 +002379.SZ,0.00,0.00,0.00,20.97,0.00,0.00,0.00,20.61,0.00,0.00,0.00,32.39,0.00,0.00,0.00,30.45,0.00,0.00,0.00,28.20,0.00 +600827.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +002507.SZ,0.00,0.00,0.00,12.37,0.00,13.87,0.00,12.99,0.00,13.60,0.00,12.53,0.00,11.29,0.00,11.08,0.00,11.41,0.00,12.14,0.00 +603979.SH,0.00,0.00,0.00,54.83,0.00,0.00,0.00,57.04,0.00,0.00,0.00,58.15,0.00,0.00,0.00,52.38,0.00,0.00,0.00,51.72,0.00 +002946.SZ,0.00,0.00,0.00,11.45,0.00,3.32,0.00,11.17,0.00,0.00,0.00,12.29,0.00,0.00,0.00,10.89,0.00,0.00,0.00,12.54,0.00 +002743.SZ,0.00,0.00,0.00,40.00,0.00,0.00,0.00,51.51,0.00,0.00,0.00,38.50,0.00,0.00,0.00,37.17,0.00,0.00,0.00,30.01,0.00 +601801.SH,0.00,0.00,0.00,20.41,0.00,0.00,0.00,16.21,0.00,0.00,0.00,9.90,0.00,0.00,0.00,16.17,0.00,0.00,0.00,19.86,0.00 +600754.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,2.38,0.00,0.00,0.00,1.20,0.00,0.00,0.00,0.12,0.00,0.00,0.00,0.12,0.00 +000002.SZ,0.00,0.00,0.00,1.40,0.00,10.22,0.00,1.70,0.00,0.00,0.00,0.60,0.00,0.00,0.00,1.10,0.00,0.00,0.00,9.52,0.00 +603393.SH,0.00,0.00,0.00,30.28,0.00,0.00,0.00,36.89,0.00,0.00,0.00,36.51,0.00,0.00,0.00,47.27,0.00,0.00,0.00,57.63,0.00 +002120.SZ,0.00,0.00,0.00,6.80,0.00,0.00,0.00,6.46,0.00,0.00,0.00,9.84,0.00,0.00,0.00,9.66,0.00,0.00,0.00,9.56,0.00 +300124.SZ,0.00,0.00,0.00,17.05,0.00,16.83,0.00,19.15,0.00,19.10,0.00,16.21,0.00,0.00,0.00,23.41,0.00,0.00,0.00,29.63,0.00 +603733.SH,0.00,0.00,0.00,11.08,0.00,0.00,0.00,12.43,0.00,0.00,0.00,12.73,0.00,0.00,0.00,15.90,0.00,0.00,0.00,19.99,0.00 +002304.SZ,0.00,0.00,0.00,4.61,0.00,0.00,0.00,4.28,0.00,0.00,0.00,5.12,0.00,5.05,0.00,5.59,0.00,9.12,0.00,8.15,0.00 +002907.SZ,0.00,0.00,0.00,58.23,0.00,0.00,0.00,53.19,0.00,0.00,0.00,49.38,0.00,0.00,0.00,37.08,0.00,0.00,0.00,50.79,0.00 +002915.SZ,0.00,0.00,0.00,28.93,0.00,0.00,0.00,25.04,0.00,0.00,0.00,24.52,0.00,0.00,0.00,30.58,0.00,0.00,0.00,25.86,0.00 +002468.SZ,0.00,0.00,0.00,13.48,0.00,0.00,0.00,10.63,0.00,0.00,0.00,19.43,0.00,0.00,0.00,16.06,0.00,0.00,0.00,10.70,0.00 +002887.SZ,0.00,0.00,0.00,59.82,0.00,0.00,0.00,54.19,0.00,0.00,0.00,58.26,0.00,0.00,0.00,53.39,0.00,0.00,0.00,52.78,0.00 +605305.SH,0.00,0.00,0.00,43.24,0.00,0.00,0.00,45.10,0.00,0.00,0.00,8.26,0.00,0.00,0.00,37.04,0.00,0.00,0.00,37.93,0.00 +603187.SH,0.00,0.00,0.00,45.19,0.00,0.00,0.00,11.33,0.00,0.00,0.00,47.06,0.00,0.00,0.00,47.55,0.00,0.00,0.00,40.31,0.00 +001323.SZ,0.00,0.00,0.00,15.35,0.00,17.45,0.00,16.95,0.00,0.00,0.00,18.25,0.00,0.00,0.00,9.94,0.00,0.00,0.00,9.88,0.00 +300760.SZ,0.00,0.00,0.00,6.54,0.00,0.00,0.00,3.58,0.00,0.00,0.00,3.71,0.00,0.00,0.00,4.24,0.00,0.00,0.00,9.54,0.00 +603678.SH,0.00,0.00,0.00,43.10,0.00,0.00,0.00,43.13,0.00,0.00,0.00,41.24,0.00,0.00,0.00,29.73,0.00,0.00,0.00,27.84,0.00 +002432.SZ,0.00,0.00,0.00,20.44,0.00,0.00,0.00,53.10,0.00,0.00,0.00,67.77,0.00,0.00,0.00,76.14,0.00,0.00,0.00,81.01,0.00 +000558.SZ,0.00,0.00,0.00,49.05,0.00,0.00,0.00,44.60,0.00,0.00,0.00,29.68,0.00,0.00,0.00,18.71,0.00,0.00,0.00,58.26,0.00 +601888.SH,0.00,0.00,0.00,0.62,0.00,0.00,0.00,0.40,0.00,0.00,0.00,0.40,0.00,0.00,0.00,0.14,0.00,0.00,0.00,0.59,0.00 +688196.SH,0.00,0.00,0.00,81.50,0.00,0.00,0.00,64.48,0.00,0.00,0.00,89.40,0.00,0.00,0.00,54.42,0.00,0.00,0.00,60.39,0.00 +601000.SH,0.00,0.00,0.00,22.26,0.00,0.00,0.00,30.23,0.00,0.00,0.00,29.57,0.00,0.00,0.00,22.48,0.00,0.00,0.00,31.82,0.00 +601568.SH,0.00,0.00,0.00,34.83,0.00,0.00,0.00,34.38,0.00,0.00,0.00,28.35,0.00,0.00,0.00,24.61,0.00,0.00,0.00,26.99,0.00 +601827.SH,0.00,0.00,0.00,36.84,0.00,0.00,0.00,36.09,0.00,0.00,0.00,33.02,0.00,0.00,0.00,37.23,0.00,0.00,0.00,45.33,0.00 +603609.SH,0.00,0.00,0.00,4.21,0.00,0.00,0.00,3.73,0.00,0.00,0.00,4.10,0.00,0.00,0.00,16.17,0.00,0.00,0.00,3.18,0.00 +600141.SH,0.00,0.00,0.00,13.96,0.00,0.00,0.00,7.40,0.00,0.00,0.00,13.29,0.00,0.00,0.00,15.77,0.00,0.00,0.00,11.24,0.00 +603689.SH,0.00,0.00,0.00,64.45,0.00,0.00,0.00,61.12,0.00,0.00,0.00,61.77,0.00,0.00,0.00,57.61,0.00,0.00,0.00,48.95,0.00 +601211.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +603026.SH,0.00,0.00,0.00,15.84,0.00,0.00,0.00,19.29,0.00,0.00,0.00,22.02,0.00,0.00,0.00,20.60,0.00,0.00,0.00,22.87,0.00 +688091.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,100.00,0.00,0.00,0.00,78.98,0.00,0.00,0.00,81.72,0.00,0.00,0.00,46.94,0.00 +603508.SH,0.00,0.00,0.00,45.51,0.00,0.00,0.00,24.88,0.00,0.00,0.00,28.61,0.00,0.00,0.00,24.80,0.00,0.00,0.00,20.24,0.00 +301379.SZ,0.00,0.00,0.00,35.88,0.00,37.53,0.00,36.73,0.00,31.05,0.00,29.85,0.00,0.00,0.00,30.37,0.00,0.00,0.00,32.19,0.00 +600148.SH,0.00,0.00,0.00,71.11,0.00,0.00,0.00,66.54,0.00,0.00,0.00,40.55,0.00,0.00,0.00,46.43,0.00,0.00,0.00,49.27,0.00 +600507.SH,0.00,0.00,0.00,40.26,0.00,0.00,0.00,41.93,0.00,0.00,0.00,34.58,0.00,0.00,0.00,38.22,0.00,0.00,0.00,34.28,0.00 +600215.SH,0.00,0.00,0.00,5.52,0.00,0.00,0.00,72.07,0.00,0.00,0.00,62.49,0.00,0.00,0.00,84.50,0.00,0.00,0.00,77.30,0.00 +600519.SH,0.00,0.00,0.00,18.02,0.00,0.00,0.00,14.13,0.00,0.00,0.00,11.44,0.00,0.00,0.00,9.99,0.00,0.00,0.00,11.52,0.00 +600897.SH,0.00,0.00,0.00,43.24,0.00,0.00,0.00,35.61,0.00,0.00,0.00,35.94,0.00,0.00,0.00,37.70,0.00,0.00,0.00,34.70,0.00 +601225.SH,0.00,0.00,0.00,19.05,0.00,0.00,0.00,20.13,0.00,0.00,0.00,17.17,0.00,0.00,0.00,32.42,0.00,0.00,0.00,29.20,0.00 +688137.SH,0.00,0.00,0.00,42.23,0.00,66.03,0.00,66.84,0.00,59.96,0.00,45.43,0.00,0.00,0.00,25.84,0.00,0.00,0.00,12.66,0.00 +300407.SZ,0.00,0.00,0.00,46.24,0.00,0.00,0.00,43.72,0.00,0.00,0.00,47.18,0.00,0.00,0.00,56.22,0.00,0.00,0.00,63.09,0.00 +688009.SH,0.00,0.00,0.00,40.71,0.00,0.00,0.00,63.31,0.00,0.00,0.00,50.97,0.00,0.00,0.00,42.37,0.00,0.00,0.00,48.87,0.00 +600977.SH,0.00,0.00,0.00,10.06,0.00,0.00,0.00,12.98,0.00,0.00,0.00,8.73,0.00,0.00,0.00,6.18,0.00,0.00,0.00,8.44,0.00 +002585.SZ,0.00,0.00,0.00,24.92,0.00,0.00,0.00,23.82,0.00,0.00,0.00,22.99,0.00,0.00,0.00,21.90,0.00,0.00,0.00,20.01,0.00 +603726.SH,0.00,0.00,0.00,77.10,0.00,0.00,0.00,75.82,0.00,0.00,0.00,73.39,0.00,0.00,0.00,71.68,0.00,0.00,0.00,70.56,0.00 +300132.SZ,0.00,0.00,0.00,24.11,0.00,0.00,0.00,23.62,0.00,0.00,0.00,24.97,0.00,0.00,0.00,30.95,0.00,0.00,0.00,33.47,0.00 +600566.SH,0.00,0.00,0.00,6.01,0.00,0.00,0.00,5.66,0.00,0.00,0.00,6.75,0.00,0.00,0.00,10.48,0.00,0.00,0.00,12.33,0.00 +688691.SH,0.00,0.00,0.00,43.03,0.00,0.00,0.00,32.73,0.00,46.49,0.00,37.52,0.00,41.34,0.00,0.00,0.00,0.00,0.00,42.57,0.00 +000683.SZ,0.00,0.00,0.00,17.76,0.00,0.00,0.00,16.98,0.00,0.00,0.00,10.47,0.00,0.00,0.00,13.44,0.00,0.00,0.00,13.15,0.00 +600908.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +600749.SH,0.00,0.00,0.00,21.00,0.00,0.00,0.00,9.00,0.00,0.00,0.00,17.00,0.00,0.00,0.00,11.70,0.00,0.00,0.00,10.00,0.00 +600350.SH,0.00,0.00,0.00,10.65,0.00,0.00,0.00,9.44,0.00,0.00,0.00,7.24,0.00,0.00,0.00,8.53,0.00,0.00,0.00,5.54,0.00 +601222.SH,0.00,0.00,0.00,37.67,0.00,0.00,0.00,26.22,0.00,0.00,0.00,28.75,0.00,0.00,0.00,33.52,0.00,0.00,0.00,26.78,0.00 +600655.SH,0.00,0.00,0.00,13.13,0.00,0.00,0.00,5.16,0.00,0.00,0.00,8.11,0.00,0.00,0.00,7.66,0.00,0.00,0.00,9.67,0.00 +601318.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +600997.SH,0.00,0.00,0.00,61.89,0.00,56.97,0.00,53.87,0.00,53.51,0.00,53.63,0.00,57.17,0.00,55.65,0.00,54.17,0.00,53.76,0.00 +601187.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +603121.SH,0.00,0.00,0.00,48.24,0.00,0.00,0.00,83.37,0.00,0.00,0.00,78.94,0.00,0.00,0.00,52.27,0.00,0.00,0.00,53.39,0.00 +002404.SZ,0.00,0.00,0.00,18.60,0.00,0.00,0.00,18.55,0.00,0.00,0.00,17.07,0.00,0.00,0.00,17.22,0.00,0.00,0.00,18.97,0.00 +688500.SH,0.00,0.00,0.00,31.24,0.00,0.00,0.00,26.71,0.00,0.00,0.00,27.69,0.00,0.00,0.00,35.24,0.00,0.00,0.00,37.53,0.00 +600236.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,96.94,0.00,0.00,0.00,50.57,0.00,0.00,0.00,91.80,0.00,0.00,0.00,93.79,0.00 +603071.SH,0.00,29.84,0.00,24.76,0.00,26.81,0.00,24.18,0.00,0.00,0.00,20.95,0.00,0.00,0.00,29.93,0.00,0.00,0.00,23.43,0.00 +000726.SZ,0.00,0.00,0.00,20.09,0.00,0.00,0.00,16.36,0.00,0.00,0.00,18.90,0.00,0.00,0.00,17.68,0.00,0.00,0.00,17.44,0.00 +600234.SH,0.00,0.00,0.00,74.46,0.00,0.00,0.00,47.14,0.00,0.00,0.00,33.08,0.00,0.00,0.00,84.80,0.00,0.00,0.00,60.93,0.00 +603810.SH,0.00,0.00,0.00,21.38,0.00,0.00,0.00,21.19,0.00,0.00,0.00,21.93,0.00,0.00,0.00,22.40,0.00,0.00,0.00,24.64,0.00 +002078.SZ,0.00,0.00,0.00,22.51,0.00,0.00,0.00,19.80,0.00,0.00,0.00,26.18,0.00,0.00,0.00,22.69,0.00,0.00,0.00,22.71,0.00 +002274.SZ,0.00,0.00,0.00,16.51,0.00,0.00,0.00,26.41,0.00,0.00,0.00,23.60,0.00,0.00,0.00,20.10,0.00,0.00,0.00,21.82,0.00 +688382.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,100.00,0.00,0.00,0.00,100.00,0.00 +601088.SH,0.00,0.00,0.00,37.70,0.00,0.00,0.00,40.40,0.00,0.00,0.00,41.20,0.00,0.00,0.00,42.60,0.00,0.00,0.00,55.80,0.00 +000534.SZ,0.00,0.00,0.00,16.75,0.00,0.00,0.00,18.73,0.00,0.00,0.00,26.75,0.00,0.00,0.00,27.99,0.00,0.00,0.00,18.47,0.00 +601877.SH,0.00,0.00,0.00,9.25,0.00,0.00,0.00,16.32,0.00,0.00,0.00,23.03,0.00,0.00,0.00,29.96,0.00,0.00,0.00,35.98,0.00 +600223.SH,0.00,0.00,0.00,1.32,0.00,0.00,0.00,1.68,0.00,0.00,0.00,1.28,0.00,0.00,0.00,5.69,0.00,0.00,0.00,5.84,0.00 +603043.SH,0.00,0.00,0.00,10.02,0.00,0.00,0.00,11.10,0.00,0.00,0.00,11.85,0.00,0.00,0.00,10.09,0.00,0.00,0.00,14.32,0.00 +300868.SZ,0.00,0.00,0.00,65.77,0.00,0.00,0.00,44.13,0.00,0.00,0.00,46.16,0.00,0.00,0.00,58.04,0.00,0.00,0.00,57.94,0.00 +002714.SZ,0.00,0.00,0.00,21.25,0.00,0.00,0.00,9.44,0.00,0.00,0.00,8.05,0.00,0.00,0.00,9.67,0.00,0.00,0.00,9.01,0.00 +601089.SH,0.00,0.00,0.00,39.92,0.00,40.70,0.00,41.57,37.70,0.00,0.00,9.76,0.00,0.00,0.00,5.86,0.00,0.00,0.00,7.22,0.00 +600809.SH,0.00,0.00,0.00,8.69,0.00,0.00,0.00,8.03,0.00,0.00,0.00,7.66,0.00,0.00,0.00,7.28,0.00,0.00,0.00,8.10,0.00 +001979.SZ,0.00,0.00,0.00,4.72,0.00,0.00,0.00,2.97,0.00,0.00,0.00,1.87,0.00,0.00,0.00,1.27,0.00,0.00,0.00,0.96,0.00 +603310.SH,0.00,0.00,0.00,44.42,0.00,0.00,0.00,38.48,0.00,38.77,0.00,40.20,0.00,43.25,0.00,42.83,0.00,0.00,0.00,38.96,0.00 +600295.SH,0.00,0.00,0.00,7.35,0.00,0.00,0.00,8.27,0.00,0.00,0.00,8.28,0.00,0.00,0.00,6.49,0.00,0.00,0.00,6.10,0.00 +600663.SH,0.00,0.00,0.00,19.20,0.00,0.00,0.00,4.36,0.00,0.00,0.00,5.49,0.00,0.00,0.00,28.60,0.00,0.00,0.00,20.22,0.00 +600153.SH,0.00,0.00,0.00,5.14,0.00,0.00,0.00,4.55,0.00,0.00,0.00,4.29,0.00,0.00,0.00,5.25,0.00,0.00,0.00,4.27,0.00 +605296.SH,0.00,1.62,0.00,27.06,0.00,0.00,0.00,16.42,0.00,0.00,0.00,22.88,0.00,0.00,0.00,26.06,0.00,0.00,0.00,19.79,0.00 +605155.SH,0.00,16.05,15.46,15.16,0.00,0.00,0.00,14.14,0.00,0.00,0.00,11.67,0.00,0.00,0.00,11.75,0.00,0.00,0.00,9.22,0.00 +600548.SH,0.00,0.00,0.00,19.37,0.00,0.00,0.00,13.34,0.00,0.00,0.00,13.86,0.00,14.08,0.00,12.11,0.00,11.84,0.00,10.33,0.00 +002399.SZ,0.00,0.00,0.00,35.92,0.00,0.00,0.00,33.81,0.00,0.00,0.00,31.69,0.00,0.00,0.00,31.31,0.00,0.00,0.00,33.46,0.00 +002216.SZ,0.00,0.00,0.00,11.91,0.00,0.00,0.00,9.69,0.00,2.62,0.00,9.46,0.00,2.07,0.00,10.25,0.00,2.14,0.00,7.24,0.00 +300669.SZ,0.00,0.00,0.00,50.11,0.00,0.00,0.00,46.40,0.00,0.00,0.00,41.83,0.00,0.00,0.00,37.35,0.00,34.78,0.00,35.79,0.00 +688319.SH,0.00,13.55,0.00,10.26,0.00,0.00,0.00,11.28,0.00,0.00,0.00,8.15,0.00,0.00,0.00,7.01,0.00,0.00,0.00,5.76,0.00 +300750.SZ,0.00,0.00,0.00,29.70,0.00,0.00,0.00,31.31,0.00,0.00,0.00,35.33,0.00,0.00,0.00,36.78,0.00,0.00,0.00,37.03,0.00 +600062.SH,0.00,0.00,0.00,6.99,0.00,0.00,0.00,5.92,0.00,0.00,0.00,6.81,0.00,0.00,0.00,6.40,0.00,0.00,0.00,6.90,0.00 +600426.SH,0.00,0.00,0.00,11.26,0.00,0.00,0.00,10.17,0.00,0.00,0.00,11.00,0.00,0.00,0.00,8.28,0.00,0.00,0.00,8.91,0.00 +603922.SH,0.00,0.00,0.00,54.16,0.00,0.00,0.00,59.01,0.00,0.00,0.00,51.98,0.00,0.00,0.00,47.56,0.00,0.00,0.00,54.30,0.00 +001277.SZ,0.00,83.66,0.00,71.74,0.00,0.00,0.00,68.98,0.00,78.12,0.00,73.86,0.00,70.12,0.00,64.37,0.00,70.71,0.00,62.57,0.00 +301231.SZ,0.00,55.46,0.00,50.63,0.00,0.00,0.00,41.11,0.00,0.00,0.00,34.65,0.00,0.00,0.00,29.81,0.00,0.00,0.00,32.84,0.00 +000596.SZ,0.00,0.00,0.00,17.66,0.00,0.00,0.00,13.91,0.00,0.00,0.00,15.27,0.00,14.40,0.00,12.79,0.00,12.92,0.00,11.96,0.00 +002773.SZ,0.00,0.00,0.00,13.86,0.00,0.00,0.00,13.18,0.00,0.00,0.00,14.73,0.00,0.00,0.00,14.24,0.00,0.00,0.00,15.15,0.00 +605389.SH,0.00,80.02,0.00,80.50,0.00,0.00,0.00,86.35,0.00,0.00,0.00,63.55,0.00,0.00,0.00,48.56,0.00,0.00,0.00,48.81,0.00 +600132.SH,0.00,0.00,0.00,5.67,0.00,5.31,0.00,5.28,0.00,0.00,0.00,4.54,0.00,0.00,0.00,4.48,0.00,0.00,0.00,4.53,0.00 +002683.SZ,0.00,0.00,0.00,48.78,0.00,0.00,0.00,40.63,0.00,0.00,0.00,37.21,0.00,0.00,0.00,42.53,0.00,0.00,0.00,45.70,0.00 +688615.SH,0.00,0.00,0.00,6.71,8.16,0.00,0.00,8.44,0.00,0.00,0.00,7.55,0.00,0.00,0.00,7.26,0.00,0.00,0.00,7.96,0.00 +000718.SZ,0.00,0.00,0.00,2.10,0.00,0.00,0.00,2.20,0.00,0.00,0.00,5.76,0.00,0.00,0.00,3.01,0.00,0.00,0.00,2.56,0.00 +600287.SH,0.00,0.00,0.00,39.72,0.00,0.00,0.00,29.77,0.00,0.00,0.00,23.05,0.00,0.00,0.00,30.74,0.00,0.00,0.00,27.29,0.00 +300108.SZ,0.00,0.00,0.00,16.41,0.00,0.00,0.00,20.60,0.00,0.00,0.00,19.09,0.00,0.00,0.00,8.85,0.00,0.00,0.00,13.33,0.00 +000729.SZ,0.00,0.00,0.00,5.10,0.00,3.84,0.00,3.95,0.00,3.16,0.00,2.66,0.00,2.75,0.00,2.33,0.00,2.56,0.00,1.89,0.00 +300536.SZ,0.00,0.00,0.00,98.61,0.00,0.00,0.00,97.41,0.00,0.00,0.00,89.77,0.00,0.00,0.00,95.39,0.00,0.00,0.00,89.82,0.00 +603858.SH,0.00,0.00,0.00,43.18,0.00,0.00,0.00,42.03,0.00,0.00,0.00,47.65,0.00,0.00,0.00,52.11,0.00,0.00,0.00,52.15,0.00 +300338.SZ,0.00,0.00,0.00,0.76,0.00,0.00,0.00,0.49,0.00,0.00,0.00,2.91,0.00,0.00,0.00,9.75,0.00,0.00,0.00,6.67,0.00 +603879.SH,0.00,0.00,0.00,30.16,0.00,0.00,0.00,33.03,0.00,0.00,0.00,42.95,0.00,0.00,0.00,39.91,0.00,0.00,0.00,39.00,0.00 +688506.SH,0.00,0.00,0.00,41.86,0.00,40.26,0.00,38.44,0.00,40.39,0.00,36.70,0.00,0.00,0.00,32.71,0.00,0.00,0.00,95.10,0.00 +300507.SZ,0.00,0.00,0.00,50.78,0.00,0.00,0.00,49.63,0.00,0.00,0.00,46.16,0.00,0.00,0.00,40.33,0.00,0.00,0.00,40.04,0.00 +600248.SH,0.00,0.00,0.00,3.86,0.00,0.00,0.00,9.80,0.00,0.00,0.00,7.95,0.00,0.00,0.00,6.48,0.00,0.00,0.00,8.80,0.00 +000885.SZ,0.00,0.00,0.00,24.39,0.00,0.00,0.00,26.81,0.00,0.00,0.00,14.98,0.00,0.00,0.00,16.65,0.00,0.00,0.00,11.15,0.00 +601028.SH,0.00,0.00,0.00,49.06,0.00,0.00,0.00,41.55,0.00,0.00,0.00,66.12,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +300280.SZ,0.00,0.00,0.00,69.02,0.00,0.00,0.00,60.90,0.00,0.00,0.00,49.90,0.00,0.00,0.00,29.11,0.00,0.00,0.00,0.00,0.00 +000401.SZ,0.00,0.00,0.00,6.91,0.00,0.00,0.00,6.70,0.00,0.00,0.00,7.55,0.00,0.00,0.00,7.22,0.00,0.00,0.00,0.00,0.00 +600808.SH,0.00,0.00,0.00,6.70,0.00,0.00,0.00,5.69,0.00,0.00,0.00,8.00,0.00,0.00,0.00,9.40,0.00,0.00,0.00,11.00,0.00 +002336.SZ,0.00,0.00,0.00,0.77,0.00,0.00,0.00,0.95,0.00,0.00,0.00,1.20,0.00,0.00,0.00,1.61,0.00,0.00,0.00,8.86,0.00 +600804.SH,0.00,0.00,0.00,15.44,0.00,0.00,0.00,27.52,0.00,0.00,0.00,27.55,0.00,0.00,0.00,31.06,0.00,0.00,0.00,26.40,0.00 +603977.SH,0.00,0.00,0.00,47.56,0.00,0.00,0.00,43.29,0.00,0.00,0.00,40.57,0.00,0.00,0.00,36.08,0.00,0.00,0.00,39.13,0.00 +603377.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,9.74,0.00,0.00,0.00,17.01,0.00,0.00,0.00,13.21,0.00,0.00,0.00,9.96,0.00 +002198.SZ,0.00,0.00,0.00,11.19,0.00,0.00,0.00,11.52,0.00,0.00,0.00,19.53,0.00,0.00,0.00,14.00,0.00,0.00,0.00,31.54,0.00 +000910.SZ,0.00,0.00,0.00,7.47,0.00,0.00,0.00,6.95,0.00,0.00,0.00,7.35,0.00,0.00,0.00,7.79,0.00,0.00,0.00,9.65,0.00 +603367.SH,0.00,0.00,0.00,4.77,0.00,0.00,0.00,5.12,0.00,0.00,0.00,5.48,0.00,0.00,0.00,5.46,0.00,0.00,0.00,6.78,0.00 +300144.SZ,0.00,0.00,0.00,32.71,0.00,0.00,0.00,26.36,0.00,0.00,0.00,23.96,0.00,0.00,0.00,27.80,0.00,0.00,0.00,36.49,0.00 +600777.SH,0.00,0.00,0.00,98.95,0.00,0.00,0.00,99.67,0.00,0.00,0.00,94.78,0.00,0.00,0.00,89.68,0.00,0.00,0.00,0.00,0.00 +002750.SZ,0.00,0.00,0.00,20.31,0.00,0.00,0.00,15.04,0.00,0.00,0.00,24.18,0.00,0.00,0.00,24.07,0.00,0.00,0.00,39.22,0.00 +601515.SH,0.00,0.00,0.00,50.39,0.00,0.00,0.00,46.53,0.00,0.00,0.00,46.31,0.00,0.00,0.00,35.11,0.00,0.00,0.00,19.93,0.00 +000584.SZ,0.00,0.00,0.00,40.58,0.00,0.00,0.00,30.71,0.00,0.00,0.00,34.65,0.00,0.00,0.00,39.80,0.00,0.00,0.00,43.68,0.00 +002128.SZ,0.00,0.00,0.00,37.50,0.00,0.00,0.00,33.87,0.00,0.00,0.00,36.01,0.00,0.00,0.00,32.93,0.00,0.00,0.00,32.96,0.00 +000605.SZ,0.00,0.00,0.00,19.86,0.00,0.00,0.00,21.78,0.00,0.00,0.00,21.13,0.00,0.00,0.00,26.42,0.00,0.00,0.00,25.84,0.00 +688536.SH,0.00,0.00,0.00,70.58,0.00,71.71,0.00,67.49,0.00,0.00,0.00,56.95,0.00,0.00,0.00,42.28,0.00,0.00,0.00,30.91,0.00 +601233.SH,0.00,0.00,0.00,13.39,0.00,0.00,0.00,8.81,0.00,0.00,0.00,4.97,0.00,0.00,0.00,4.59,0.00,0.00,0.00,6.10,0.00 +603003.SH,0.00,0.00,0.00,49.55,0.00,0.00,0.00,6.19,0.00,0.00,0.00,47.58,0.00,0.00,0.00,29.72,0.00,0.00,0.00,43.98,0.00 +301112.SZ,0.00,47.33,0.00,45.17,0.00,46.81,0.00,39.49,0.00,0.00,0.00,44.65,0.00,0.00,0.00,52.76,0.00,0.00,0.00,62.82,0.00 +000622.SZ,0.00,0.00,0.00,95.26,0.00,0.00,0.00,93.76,0.00,0.00,0.00,97.71,0.00,0.00,0.00,97.79,0.00,0.00,0.00,0.00,0.00 +600008.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,7.77,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +300225.SZ,0.00,0.00,0.00,23.71,0.00,0.00,0.00,23.37,0.00,0.00,0.00,20.66,0.00,0.00,0.00,19.96,0.00,0.00,0.00,0.00,0.00 +300185.SZ,0.00,0.00,0.00,38.65,0.00,0.00,0.00,36.97,0.00,0.00,0.00,37.26,0.00,0.00,0.00,29.23,0.00,0.00,0.00,37.43,0.00 +000627.SZ,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +001289.SZ,0.00,0.00,0.00,0.00,0.00,0.00,0.00,39.07,0.00,0.00,0.00,39.55,0.00,0.00,0.00,37.94,0.00,0.00,0.00,35.20,0.00 +600387.SH,0.00,0.00,0.00,54.44,0.00,0.00,0.00,35.11,0.00,0.00,0.00,30.97,0.00,0.00,0.00,30.30,0.00,0.00,0.00,62.82,0.00 +301223.SZ,0.00,0.00,45.40,44.51,0.00,41.26,0.00,42.35,0.00,42.77,0.00,44.34,0.00,0.00,0.00,41.74,0.00,0.00,0.00,40.36,0.00 +688426.SH,0.00,0.00,0.00,31.68,17.88,0.00,0.00,30.28,0.00,0.00,0.00,18.96,0.00,0.00,0.00,28.83,0.00,0.00,0.00,18.61,0.00 +002571.SZ,0.00,0.00,0.00,12.71,0.00,13.28,0.00,12.64,0.00,15.07,0.00,12.69,0.00,9.82,0.00,10.17,0.00,15.32,0.00,16.94,0.00 +000877.SZ,0.00,0.00,0.00,20.21,0.00,0.00,0.00,16.90,0.00,0.00,0.00,7.18,0.00,0.00,0.00,5.26,0.00,0.00,0.00,8.81,0.00 +600705.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +600177.SH,0.00,0.00,0.00,2.93,0.00,0.00,0.00,3.97,0.00,0.00,0.00,2.67,0.00,0.00,0.00,1.20,0.00,0.00,0.00,1.30,0.00 +000989.SZ,0.00,0.00,0.00,9.16,0.00,0.00,0.00,10.69,0.00,0.00,0.00,10.21,0.00,0.00,0.00,14.36,0.00,0.00,0.00,15.41,0.00 +601658.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +600073.SH,0.00,0.00,0.00,14.12,0.00,0.00,0.00,14.07,0.00,0.00,0.00,16.71,0.00,0.00,0.00,9.80,0.00,0.00,0.00,13.49,0.00 +600688.SH,0.00,0.00,0.00,62.96,0.00,0.00,0.00,64.09,0.00,0.00,0.00,66.37,0.00,0.00,0.00,73.10,0.00,0.00,0.00,82.12,0.00 +002165.SZ,0.00,0.00,0.00,40.27,0.00,0.00,0.00,37.24,0.00,0.00,0.00,31.62,0.00,27.93,0.00,40.16,0.00,0.00,0.00,35.65,0.00 +600136.SH,0.00,0.00,0.00,89.03,0.00,0.00,0.00,44.69,0.00,0.00,0.00,65.81,0.00,0.00,0.00,88.36,0.00,0.00,0.00,26.45,0.00 +600436.SH,0.00,0.00,0.00,8.10,0.00,0.00,0.00,6.45,0.00,0.00,0.00,8.71,0.00,0.00,0.00,8.80,0.00,0.00,0.00,9.32,0.00 +600383.SH,0.00,0.00,0.00,0.49,0.00,0.00,0.00,0.19,0.00,0.00,0.00,0.21,0.00,0.88,0.00,0.33,0.00,7.50,0.00,4.61,0.00 +301316.SZ,0.00,0.00,0.00,46.35,0.00,45.64,0.00,42.39,0.00,0.00,0.00,36.66,0.00,0.00,0.00,30.05,0.00,0.00,0.00,30.18,0.00 +603279.SH,0.00,0.00,0.00,4.03,0.00,0.00,0.00,2.68,0.00,0.00,0.00,4.96,0.00,0.00,0.00,4.70,0.00,0.00,0.00,7.64,0.00 +601860.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +600662.SH,0.00,0.00,0.00,4.05,0.00,0.00,0.00,22.29,0.00,0.00,0.00,17.94,0.00,0.00,0.00,13.33,0.00,0.00,0.00,11.07,0.00 +000695.SZ,0.00,0.00,0.00,36.18,0.00,0.00,0.00,46.72,0.00,0.00,0.00,38.81,0.00,0.00,0.00,40.24,0.00,0.00,0.00,56.21,0.00 +600521.SH,0.00,0.00,0.00,15.67,0.00,0.00,0.00,13.66,0.00,0.00,0.00,10.66,0.00,0.00,0.00,13.18,0.00,0.00,0.00,12.06,0.00 +002828.SZ,0.00,0.00,0.00,90.27,0.00,0.00,0.00,85.29,0.00,0.00,0.00,74.63,0.00,0.00,0.00,80.66,0.00,0.00,0.00,84.82,0.00 +688621.SH,39.75,0.00,35.23,31.87,42.60,0.00,0.00,30.56,0.00,0.00,0.00,25.73,0.00,0.00,0.00,22.21,0.00,0.00,0.00,23.72,0.00 +300999.SZ,0.00,0.00,0.00,5.77,0.00,7.63,0.00,7.04,0.00,5.40,0.00,7.33,0.00,1.09,0.00,9.48,0.00,3.68,0.00,0.00,0.00 +601968.SH,0.00,0.00,0.00,47.52,0.00,0.00,0.00,46.48,0.00,0.00,0.00,44.65,0.00,0.00,0.00,42.43,0.00,0.00,0.00,50.05,0.00 +002550.SZ,0.00,0.00,0.00,34.27,0.00,0.00,0.00,29.79,0.00,0.00,0.00,36.81,0.00,0.00,0.00,30.12,0.00,0.00,0.00,50.65,0.00 +600462.SH,0.00,0.00,0.00,62.41,0.00,0.00,0.00,61.10,0.00,0.00,0.00,56.27,0.00,0.00,0.00,44.88,0.00,0.00,0.00,23.92,0.00 +300208.SZ,0.00,0.00,0.00,157.89,0.00,0.00,0.00,98.53,0.00,0.00,0.00,99.69,0.00,0.00,0.00,96.77,0.00,0.00,0.00,98.10,0.00 +603608.SH,0.00,0.00,0.00,18.89,0.00,0.00,0.00,17.03,0.00,0.00,0.00,17.56,0.00,0.00,0.00,21.40,0.00,0.00,0.00,20.67,0.00 +600642.SH,0.00,0.00,0.00,75.17,0.00,74.42,0.00,73.23,0.00,70.97,0.00,77.09,0.00,77.69,0.00,76.65,0.00,80.29,0.00,81.66,0.00 +603391.SH,0.00,0.00,0.00,23.70,0.00,0.00,0.00,28.52,0.00,57.96,0.00,42.36,0.00,37.45,0.00,37.20,0.00,0.00,0.00,18.28,0.00 +688392.SH,0.00,0.00,0.00,38.31,0.00,67.67,0.00,69.93,0.00,0.00,0.00,68.10,0.00,0.00,0.00,51.63,0.00,0.00,0.00,43.22,0.00 +603895.SH,0.00,0.00,0.00,59.00,0.00,0.00,0.00,50.79,0.00,0.00,0.00,47.26,0.00,0.00,0.00,47.33,0.00,0.00,0.00,71.06,0.00 +600803.SH,0.00,0.00,0.00,3.62,0.00,0.00,0.00,9.72,0.00,0.00,0.00,10.38,0.00,0.00,0.00,5.95,0.00,0.00,0.00,4.32,0.00 +600674.SH,0.00,0.00,0.00,87.54,0.00,0.00,0.00,72.26,0.00,0.00,0.00,63.99,0.00,0.00,0.00,86.24,0.00,0.00,0.00,83.16,0.00 +688658.SH,0.00,27.46,28.42,29.17,0.00,0.00,0.00,30.96,0.00,0.00,0.00,32.51,0.00,0.00,0.00,28.86,0.00,0.00,0.00,28.54,0.00 +002353.SZ,0.00,0.00,0.00,20.33,0.00,0.00,0.00,20.33,0.00,0.00,0.00,15.81,0.00,0.00,0.00,29.99,0.00,0.00,0.00,20.04,0.00 +600113.SH,0.00,0.00,0.00,5.92,0.00,0.00,0.00,6.70,0.00,0.00,0.00,4.78,0.00,0.00,0.00,7.07,0.00,0.00,0.00,6.51,0.00 +002179.SZ,0.00,0.00,0.00,29.71,0.00,0.00,0.00,43.34,0.00,0.00,0.00,42.27,0.00,0.00,0.00,42.43,0.00,0.00,0.00,39.79,0.00 +688233.SH,0.00,0.00,0.00,81.25,0.00,0.00,0.00,80.92,0.00,0.00,0.00,65.74,0.00,0.00,0.00,61.84,0.00,0.00,0.00,69.09,0.00 +300807.SZ,0.00,0.00,0.00,39.05,0.00,0.00,0.00,42.75,0.00,0.00,0.00,48.66,0.00,0.00,0.00,41.04,0.00,0.00,0.00,42.54,0.00 +688410.SH,0.00,0.00,0.00,17.02,0.00,12.99,0.00,11.01,0.00,12.13,0.00,10.57,0.00,0.00,0.00,17.47,0.00,0.00,0.00,11.67,0.00 +688065.SH,52.62,0.00,0.00,45.78,0.00,0.00,0.00,43.08,0.00,0.00,0.00,35.09,0.00,0.00,0.00,28.19,0.00,0.00,0.00,32.21,0.00 +300100.SZ,0.00,0.00,0.00,41.05,0.00,0.00,0.00,44.31,0.00,0.00,0.00,48.01,0.00,0.00,0.00,48.35,0.00,0.00,0.00,50.66,0.00 +600096.SH,0.00,0.00,0.00,31.06,0.00,0.00,0.00,29.66,0.00,0.00,0.00,27.70,0.00,0.00,0.00,30.57,0.00,0.00,0.00,26.77,0.00 +300973.SZ,0.00,16.60,0.00,17.00,0.00,0.00,0.00,28.17,0.00,0.00,0.00,26.50,0.00,4.42,0.00,32.39,0.00,3.09,0.00,29.55,0.00 +605108.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +300408.SZ,0.00,0.00,0.00,12.28,0.00,0.00,0.00,15.32,0.00,0.00,0.00,15.23,0.00,0.00,0.00,17.55,0.00,0.00,0.00,13.79,0.00 +601009.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +600499.SH,0.00,0.00,0.00,11.49,0.00,9.60,0.00,10.33,0.00,0.00,0.00,15.62,0.00,21.40,0.00,18.67,0.00,18.86,0.00,15.23,0.00 +600848.SH,0.00,0.00,0.00,71.35,0.00,0.00,0.00,51.36,0.00,0.00,0.00,50.60,0.00,0.00,0.00,14.98,0.00,0.00,0.00,53.60,0.00 +603680.SH,0.00,0.00,0.00,33.77,0.00,0.00,0.00,28.92,0.00,0.00,0.00,29.90,0.00,0.00,0.00,30.14,0.00,0.00,0.00,31.00,0.00 +601939.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +600332.SH,0.00,0.00,0.00,7.86,0.00,7.71,0.00,7.00,0.00,0.00,0.00,5.52,0.00,5.14,0.00,10.82,0.00,0.00,0.00,10.85,0.00 +603518.SH,0.00,0.00,0.00,15.48,0.00,0.00,0.00,16.94,0.00,0.00,0.00,18.25,0.00,0.00,0.00,18.15,0.00,0.00,0.00,18.27,0.00 +601825.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +601238.SH,0.00,0.00,0.00,5.25,0.00,0.00,0.00,3.30,0.00,0.00,0.00,5.54,0.00,0.00,0.00,3.96,0.00,0.00,0.00,2.86,0.00 +601298.SH,0.00,0.00,0.00,18.34,0.00,0.00,0.00,12.99,0.00,0.00,0.00,14.01,0.00,0.00,0.00,13.61,0.00,0.00,0.00,13.74,0.00 +002951.SZ,0.00,0.00,0.00,95.05,0.00,0.00,0.00,90.40,0.00,0.00,0.00,97.28,0.00,0.00,0.00,92.93,0.00,0.00,0.00,70.05,0.00 +688702.SH,0.00,0.00,0.00,51.57,0.00,63.83,0.00,65.74,0.00,0.00,0.00,70.55,0.00,0.00,0.00,84.69,0.00,0.00,0.00,83.75,0.00 +603067.SH,0.00,0.00,0.00,22.69,0.00,0.00,0.00,16.60,0.00,0.00,0.00,16.66,0.00,0.00,0.00,16.52,0.00,0.00,0.00,15.64,0.00 +600551.SH,0.00,0.00,0.00,55.25,0.00,0.00,0.00,51.37,0.00,0.00,0.00,57.23,0.00,0.00,0.00,65.16,0.00,0.00,0.00,69.16,0.00 +002394.SZ,0.00,0.00,0.00,9.33,0.00,0.00,0.00,10.31,0.00,0.00,0.00,13.15,0.00,0.00,0.00,11.65,0.00,0.00,0.00,14.66,0.00 +000807.SZ,0.00,0.00,0.00,43.12,0.00,0.00,0.00,36.02,0.00,0.00,0.00,35.80,0.00,0.00,0.00,35.43,0.00,0.00,0.00,39.08,0.00 +601128.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +002727.SZ,0.00,0.00,0.00,3.07,0.00,0.00,0.00,3.67,0.00,0.00,0.00,2.60,0.00,3.38,0.00,3.80,0.00,6.21,0.00,4.15,0.00 +600603.SH,0.00,0.00,0.00,8.64,0.00,0.00,0.00,2.71,0.00,0.00,0.00,24.03,0.00,0.00,0.00,29.61,0.00,0.00,0.00,58.34,0.00 +300593.SZ,0.00,0.00,0.00,26.82,0.00,0.00,0.00,55.96,0.00,0.00,0.00,53.61,0.00,0.00,0.00,56.26,0.00,0.00,0.00,45.76,0.00 +600861.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,40.00,0.00,0.00,0.00,41.69,0.00 +600079.SH,0.00,0.00,0.00,22.01,0.00,0.00,0.00,27.58,0.00,0.00,0.00,27.90,0.00,0.00,0.00,28.37,0.00,0.00,0.00,30.40,0.00 +688045.SH,0.00,0.00,0.00,54.21,0.00,45.95,0.00,42.86,0.00,0.00,0.00,36.10,0.00,0.00,0.00,29.97,0.00,0.00,0.00,21.44,0.00 +002020.SZ,0.00,0.00,0.00,8.99,0.00,0.00,0.00,11.72,0.00,0.00,0.00,10.23,0.00,0.00,0.00,9.97,0.00,0.00,0.00,11.57,0.00 +605298.SH,0.00,72.99,0.00,72.17,0.00,0.00,0.00,73.33,0.00,0.00,0.00,66.46,0.00,0.00,0.00,71.09,0.00,0.00,0.00,67.92,0.00 +688386.SH,0.00,0.00,0.00,40.90,0.00,0.00,0.00,35.60,0.00,0.00,0.00,33.86,0.00,0.00,0.00,33.58,0.00,0.00,0.00,30.44,0.00 +600872.SH,0.00,0.00,0.00,6.80,0.00,0.00,0.00,6.18,0.00,0.00,0.00,5.76,0.00,0.00,0.00,5.42,0.00,0.00,0.00,6.11,0.00 +601997.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +301186.SZ,0.00,42.97,0.00,42.68,0.00,39.15,0.00,38.00,0.00,0.00,0.00,39.73,0.00,0.00,0.00,35.67,0.00,0.00,0.00,37.49,0.00 +002088.SZ,0.00,0.00,0.00,11.20,0.00,0.00,0.00,12.59,0.00,0.00,0.00,14.07,0.00,0.00,0.00,15.25,0.00,0.00,0.00,15.26,0.00 +301235.SZ,0.00,61.74,0.00,38.45,0.00,55.98,42.28,30.84,0.00,0.00,0.00,37.77,0.00,0.00,0.00,41.02,0.00,0.00,0.00,35.28,0.00 +688307.SH,0.00,0.00,0.00,64.05,0.00,0.00,0.00,60.40,0.00,59.91,58.85,59.70,0.00,0.00,0.00,52.20,0.00,0.00,0.00,51.78,0.00 +688692.SH,0.00,0.00,0.00,47.81,0.00,0.00,0.00,46.61,0.00,43.70,0.00,40.11,0.00,41.08,0.00,43.59,0.00,0.00,0.00,53.27,0.00 +300896.SZ,0.00,0.00,0.00,13.83,0.00,0.00,0.00,12.12,0.00,0.00,0.00,11.42,0.00,0.00,0.00,10.20,0.00,0.00,0.00,9.49,0.00 +601127.SH,0.00,0.00,0.00,18.46,0.00,0.00,0.00,9.11,0.00,0.00,0.00,3.08,0.00,0.00,0.00,8.27,0.00,0.00,0.00,13.91,0.00 +601528.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +688372.SH,0.00,0.00,0.00,37.76,0.00,51.04,0.00,45.22,0.00,51.61,0.00,45.66,0.00,0.00,0.00,39.50,0.00,0.00,0.00,41.87,0.00 +600887.SH,0.00,0.00,0.00,5.10,0.00,0.00,0.00,4.86,0.00,0.00,0.00,5.14,0.00,0.00,0.00,5.13,0.00,0.00,0.00,6.17,0.00 +000651.SZ,0.00,0.00,0.00,14.86,0.00,0.00,0.00,16.25,0.00,0.00,0.00,15.96,0.00,0.00,0.00,17.74,0.00,0.00,0.00,16.90,0.00 +600276.SH,0.00,0.00,0.00,11.69,0.00,0.00,0.00,10.51,0.00,6.70,0.00,9.18,0.00,8.87,0.00,9.74,0.00,0.00,0.00,9.14,0.00 +603637.SH,0.00,0.00,0.00,90.59,0.00,0.00,0.00,0.00,0.00,0.00,0.00,88.10,0.00,0.00,0.00,73.55,0.00,0.00,0.00,78.62,0.00 +605376.SH,0.00,84.70,83.99,83.80,0.00,0.00,0.00,64.42,0.00,0.00,0.00,74.70,0.00,0.00,0.00,76.28,0.00,0.00,0.00,76.66,0.00 +603809.SH,0.00,0.00,0.00,53.97,0.00,0.00,0.00,49.51,0.00,0.00,0.00,55.18,0.00,0.00,0.00,54.84,0.00,0.00,0.00,55.94,0.00 +600660.SH,0.00,0.00,0.00,15.94,0.00,0.00,0.00,14.17,0.00,0.00,0.00,17.75,0.00,0.00,0.00,17.54,0.00,0.00,0.00,17.75,0.00 +300175.SZ,0.00,0.00,0.00,43.64,0.00,0.00,0.00,53.19,0.00,0.00,0.00,63.71,0.00,0.00,0.00,63.70,0.00,0.00,0.00,50.10,0.00 +603091.SH,0.00,0.00,0.00,50.93,0.00,0.00,0.00,50.55,40.66,0.00,36.89,39.34,0.00,37.60,0.00,39.30,0.00,39.66,0.00,40.70,0.00 +601158.SH,0.00,0.00,0.00,58.04,0.00,0.00,0.00,55.82,0.00,0.00,0.00,60.75,0.00,0.00,0.00,55.18,0.00,0.00,0.00,60.82,0.00 +688010.SH,0.00,0.00,0.00,27.93,0.00,0.00,0.00,32.80,0.00,0.00,0.00,39.85,0.00,0.00,0.00,42.23,0.00,0.00,0.00,33.47,0.00 +600741.SH,0.00,0.00,0.00,47.67,0.00,0.00,0.00,46.91,0.00,0.00,0.00,47.27,0.00,0.00,0.00,50.31,0.00,0.00,0.00,42.18,0.00 +002818.SZ,0.00,0.00,0.00,5.10,0.00,0.00,0.00,5.25,0.00,0.00,0.00,6.26,0.00,0.00,0.00,6.98,0.00,0.00,0.00,6.83,0.00 +600035.SH,0.00,0.00,0.00,10.03,0.00,0.00,0.00,15.07,0.00,0.00,0.00,6.57,0.00,0.00,0.00,8.42,0.00,0.00,0.00,4.37,0.00 +688656.SH,0.00,12.38,0.00,12.02,0.00,0.00,0.00,21.55,0.00,0.00,0.00,22.93,0.00,0.00,0.00,19.34,0.00,0.00,0.00,18.73,0.00 +002839.SZ,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +000933.SZ,0.00,0.00,0.00,27.71,0.00,0.00,0.00,30.08,0.00,0.00,0.00,23.97,0.00,0.00,0.00,19.51,0.00,0.00,0.00,26.08,0.00 +300989.SZ,0.00,10.77,0.00,6.69,0.00,0.00,0.00,7.10,0.00,0.00,0.00,10.36,0.00,0.00,0.00,7.24,0.00,0.00,0.00,9.89,0.00 +600048.SH,0.00,0.00,0.00,1.51,0.00,0.00,0.00,0.82,0.00,0.00,0.00,0.77,0.00,0.00,0.00,0.62,0.00,0.00,0.00,0.47,0.00 +688176.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,100.00,0.00,0.00,0.00,100.00,0.00,0.00,0.00,99.99,0.00,0.00,0.00,96.72,0.00 +688520.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,34.86,0.00,0.00,0.00,59.77,0.00,0.00,0.00,58.46,0.00,0.00,0.00,63.08,0.00 +600016.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +600585.SH,0.00,0.00,0.00,5.60,0.00,0.00,0.00,5.25,0.00,0.00,0.00,2.82,0.00,0.00,0.00,7.08,0.00,0.00,0.00,0.00,0.00 +688220.SH,0.00,0.00,75.02,80.55,0.00,83.99,0.00,87.17,0.00,0.00,0.00,79.75,0.00,0.00,0.00,77.92,0.00,0.00,0.00,82.12,0.00 +603699.SH,0.00,0.00,0.00,16.89,0.00,0.00,0.00,30.72,0.00,0.00,0.00,16.75,0.00,0.00,0.00,20.49,0.00,0.00,0.00,20.26,0.00 +601818.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +603363.SH,0.00,0.00,0.00,10.17,0.00,0.00,0.00,8.40,0.00,0.00,0.00,5.88,0.00,0.00,0.00,4.69,0.00,0.00,0.00,4.45,0.00 +600605.SH,0.00,0.00,0.00,31.74,0.00,0.00,0.00,32.17,0.00,0.00,0.00,30.77,0.00,0.00,0.00,3.56,0.00,0.00,0.00,24.24,0.00 +601607.SH,0.00,0.00,0.00,4.50,0.00,0.00,0.00,4.42,0.00,0.00,0.00,7.03,0.00,0.00,0.00,5.66,0.00,0.00,0.00,5.04,0.00 +600928.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +688062.SH,0.00,99.05,0.00,98.46,0.00,99.97,0.00,99.19,0.00,0.00,0.00,100.00,0.00,0.00,0.00,90.03,0.00,0.00,0.00,73.73,0.00 +002778.SZ,0.00,0.00,0.00,21.68,0.00,0.00,0.00,36.64,0.00,0.00,0.00,30.67,0.00,0.00,0.00,28.55,0.00,0.00,0.00,34.04,0.00 +600331.SH,0.00,0.00,0.00,30.78,0.00,0.00,0.00,26.78,0.00,0.00,0.00,27.16,0.00,0.00,0.00,27.50,0.00,0.00,0.00,22.04,0.00 +600066.SH,0.00,0.00,0.00,8.81,0.00,0.00,0.00,10.44,0.00,0.00,0.00,11.89,0.00,0.00,0.00,15.76,0.00,0.00,0.00,14.26,0.00 +300832.SZ,0.00,0.00,0.00,15.93,0.00,0.00,0.00,8.26,0.00,0.00,0.00,9.06,0.00,0.00,0.00,7.49,0.00,0.00,0.00,7.11,0.00 +688613.SH,0.00,31.74,0.00,29.57,0.00,30.86,0.00,29.04,0.00,0.00,0.00,23.80,0.00,0.00,0.00,15.28,0.00,0.00,0.00,33.91,0.00 +603119.SH,0.00,0.00,0.00,28.57,0.00,0.00,0.00,36.87,0.00,42.13,0.00,42.87,0.00,0.00,0.00,41.71,0.00,0.00,0.00,42.36,0.00 +600360.SH,0.00,0.00,0.00,23.68,0.00,0.00,0.00,20.44,0.00,0.00,0.00,21.34,0.00,0.00,0.00,23.14,0.00,0.00,0.00,29.09,0.00 +300910.SZ,0.00,37.86,36.78,35.14,0.00,0.00,0.00,32.36,0.00,0.00,0.00,40.63,0.00,0.00,0.00,36.29,0.00,0.00,0.00,32.46,0.00 +300740.SZ,0.00,0.00,0.00,21.57,0.00,0.00,0.00,18.52,0.00,0.00,0.00,18.83,0.00,0.00,0.00,12.18,0.00,0.00,0.00,10.13,0.00 +600228.SH,0.00,0.00,0.00,30.54,0.00,0.00,0.00,60.61,0.00,0.00,0.00,53.29,0.00,0.00,0.00,51.26,0.00,0.00,0.00,57.40,0.00 +603288.SH,0.00,0.00,0.00,2.35,0.00,0.00,0.00,2.11,0.00,0.00,0.00,2.39,0.00,0.00,0.00,2.18,0.00,0.00,0.00,2.66,0.00 +000703.SZ,0.00,0.00,0.00,16.55,0.00,0.00,0.00,16.16,0.00,0.00,0.00,18.62,0.00,0.00,0.00,22.25,0.00,0.00,0.00,21.24,0.00 +601916.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +301029.SZ,0.00,9.23,0.00,10.62,20.15,0.00,0.00,15.68,0.00,0.00,0.00,23.14,0.00,0.00,0.00,26.30,0.00,0.00,0.00,11.23,0.00 +603889.SH,0.00,0.00,0.00,10.34,0.00,0.00,0.00,9.78,0.00,0.00,0.00,7.74,0.00,0.00,0.00,8.35,0.00,0.00,0.00,10.37,0.00 +688150.SH,0.00,0.00,0.00,88.50,0.00,92.20,0.00,92.80,0.00,0.00,0.00,92.67,0.00,0.00,0.00,94.15,0.00,0.00,0.00,95.41,0.00 +600926.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +600028.SH,0.00,0.00,0.00,10.10,0.00,0.00,0.00,7.89,0.00,0.00,0.00,8.13,0.00,0.00,0.00,7.59,0.00,0.00,0.00,6.00,0.00 +920106.BJ,0.00,0.00,0.00,66.04,0.00,0.00,63.70,62.59,0.00,0.00,0.00,61.71,0.00,0.00,0.00,58.62,55.12,57.06,0.00,56.19,0.00 +002739.SZ,0.00,0.00,0.00,41.15,0.00,0.00,0.00,43.65,0.00,0.00,0.00,35.61,0.00,0.00,0.00,42.85,0.00,0.00,0.00,41.77,0.00 +688326.SH,0.00,0.00,0.00,52.68,0.00,57.75,0.00,0.00,0.00,0.00,0.00,47.26,0.00,0.00,0.00,46.88,0.00,0.00,0.00,50.02,0.00 +688550.SH,0.00,0.00,0.00,52.20,0.00,0.00,0.00,50.57,0.00,0.00,0.00,55.83,0.00,0.00,0.00,50.98,0.00,0.00,0.00,44.38,0.00 +300861.SZ,0.00,89.89,0.00,90.33,0.00,0.00,0.00,86.98,0.00,0.00,0.00,82.58,0.00,0.00,0.00,78.48,0.00,0.00,0.00,68.00,0.00 +603786.SH,0.00,0.00,0.00,41.66,0.00,0.00,0.00,42.13,0.00,0.00,0.00,38.00,0.00,0.00,0.00,36.00,0.00,0.00,0.00,37.00,0.00 +002287.SZ,0.00,0.00,0.00,24.24,0.00,0.00,0.00,26.26,0.00,0.00,0.00,20.89,0.00,0.00,0.00,20.68,0.00,0.00,0.00,22.17,0.00 +688081.SH,0.00,0.00,0.00,70.24,0.00,0.00,0.00,57.79,0.00,0.00,0.00,49.03,0.00,0.00,0.00,59.40,0.00,0.00,0.00,46.58,0.00 +002214.SZ,0.00,0.00,0.00,37.20,0.00,0.00,0.00,62.48,0.00,0.00,0.00,52.29,0.00,0.00,0.00,27.88,0.00,0.00,0.00,34.80,0.00 +600305.SH,0.00,0.00,0.00,13.05,0.00,0.00,0.00,10.22,0.00,0.00,0.00,9.78,0.00,0.00,0.00,8.89,0.00,0.00,0.00,7.71,0.00 +000701.SZ,0.00,0.00,0.00,23.94,0.00,0.00,0.00,17.51,0.00,0.00,0.00,16.96,0.00,0.00,0.00,12.78,0.00,0.00,0.00,17.84,0.00 +601857.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +300662.SZ,0.00,0.00,0.00,27.99,0.00,0.00,0.00,36.65,0.00,0.00,0.00,37.03,0.00,0.00,0.00,44.12,0.00,0.00,0.00,53.40,0.00 +003008.SZ,0.00,24.80,0.00,22.82,0.00,0.00,0.00,20.84,0.00,0.00,0.00,15.96,0.00,0.00,0.00,17.17,0.00,0.00,0.00,24.89,0.00 +601229.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +688363.SH,0.00,0.00,0.00,6.16,0.00,0.00,0.00,7.34,0.00,0.00,0.00,5.96,0.00,0.00,0.00,6.84,0.00,0.00,0.00,6.13,0.00 +002538.SZ,0.00,0.00,0.00,19.83,0.00,0.00,0.00,22.13,0.00,0.00,0.00,17.74,0.00,0.00,0.00,15.31,0.00,0.00,0.00,11.73,0.00 +600269.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +000423.SZ,0.00,0.00,0.00,15.97,0.00,0.00,0.00,22.26,0.00,0.00,0.00,23.88,0.00,0.00,0.00,26.81,0.00,0.00,0.00,29.82,0.00 +605151.SH,0.00,54.38,52.72,53.18,0.00,0.00,0.00,51.49,0.00,0.00,0.00,41.11,0.00,0.00,0.00,37.47,0.00,0.00,0.00,26.59,0.00 +600529.SH,0.00,0.00,0.00,6.42,0.00,0.00,0.00,11.50,0.00,0.00,0.00,9.66,0.00,0.00,0.00,12.97,0.00,0.00,0.00,12.07,0.00 +601838.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +688480.SH,0.00,0.00,0.00,46.29,0.00,60.39,0.00,35.59,0.00,45.24,0.00,58.51,0.00,0.00,0.00,59.55,0.00,0.00,0.00,57.67,0.00 +000893.SZ,0.00,0.00,0.00,46.46,0.00,0.00,0.00,51.10,0.00,0.00,0.00,63.37,0.00,0.00,0.00,41.05,0.00,0.00,0.00,53.32,0.00 +000598.SZ,0.00,0.00,0.00,39.72,0.00,0.00,0.00,40.90,0.00,0.00,0.00,42.37,0.00,0.00,0.00,42.70,0.00,0.00,0.00,42.85,0.00 +601398.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +002948.SZ,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +300119.SZ,0.00,0.00,0.00,4.68,0.00,0.00,0.00,9.92,0.00,0.00,0.00,13.73,0.00,0.00,0.00,18.28,0.00,0.00,0.00,15.24,0.00 +002033.SZ,0.00,0.00,0.00,18.58,0.00,17.33,0.00,13.22,0.00,0.00,0.00,9.05,0.00,0.00,0.00,13.38,0.00,0.00,0.00,13.60,0.00 +603009.SH,0.00,0.00,0.00,25.59,0.00,0.00,0.00,20.22,0.00,0.00,0.00,22.71,0.00,0.00,0.00,26.76,0.00,0.00,0.00,20.48,0.00 +000963.SZ,0.00,0.00,0.00,18.09,0.00,0.00,0.00,19.15,0.00,0.00,0.00,21.04,0.00,0.00,0.00,19.44,0.00,0.00,0.00,23.17,0.00 +600273.SH,0.00,0.00,0.00,30.49,0.00,0.00,0.00,27.84,0.00,0.00,0.00,20.43,0.00,0.00,0.00,23.08,0.00,0.00,0.00,28.55,0.00 +603392.SH,0.00,0.00,0.00,13.47,0.00,0.00,0.00,13.21,0.00,0.00,0.00,7.64,0.00,0.00,0.00,4.32,0.00,0.00,0.00,10.10,0.00 +001313.SZ,0.00,3.55,0.00,3.97,0.00,6.04,0.00,4.04,0.00,0.00,0.00,3.12,0.00,0.00,0.00,4.12,0.00,0.00,0.00,4.11,0.00 +002310.SZ,0.00,0.00,0.00,18.43,0.00,0.00,0.00,30.24,0.00,0.00,0.00,34.08,0.00,0.00,0.00,147.85,0.00,0.00,0.00,47.69,0.00 +600938.SH,0.00,0.00,0.00,77.87,0.00,71.92,0.00,0.00,0.00,0.00,0.00,61.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +301080.SZ,0.00,19.56,0.00,18.18,0.00,0.00,0.00,14.45,0.00,0.00,0.00,15.63,0.00,0.00,0.00,20.44,0.00,0.00,0.00,21.41,0.00 +002850.SZ,0.00,0.00,0.00,75.85,0.00,0.00,0.00,77.37,0.00,0.00,0.00,78.64,0.00,0.00,0.00,74.88,0.00,0.00,0.00,71.50,0.00 +688278.SH,0.00,0.00,0.00,55.21,0.00,0.00,0.00,57.14,0.00,0.00,0.00,55.37,0.00,0.00,0.00,57.72,0.00,0.00,0.00,60.98,0.00 +301220.SZ,0.00,74.10,0.00,72.30,0.00,66.30,0.00,67.97,0.00,0.00,0.00,59.60,0.00,0.00,0.00,59.71,0.00,0.00,0.00,65.04,0.00 +003010.SZ,0.00,29.03,0.00,25.36,0.00,0.00,0.00,17.93,0.00,0.00,0.00,26.95,0.00,0.00,0.00,25.32,0.00,0.00,0.00,21.08,0.00 +603267.SH,0.00,0.00,0.00,49.65,0.00,0.00,0.00,53.88,0.00,84.41,0.00,54.32,0.00,71.02,0.00,51.52,0.00,73.72,0.00,46.23,0.00 +605507.SH,0.00,9.96,0.00,8.63,0.00,0.00,0.00,8.01,0.00,0.00,0.00,7.01,0.00,0.00,0.00,7.33,0.00,0.00,0.00,5.81,0.00 +688593.SH,0.00,0.00,0.00,35.62,0.00,0.00,0.00,33.05,0.00,36.11,0.00,36.43,0.00,0.00,0.00,51.70,0.00,0.00,0.00,50.40,0.00 +601101.SH,0.00,0.00,0.00,29.50,0.00,0.00,0.00,25.23,0.00,0.00,0.00,22.26,0.00,0.00,0.00,27.12,0.00,0.00,0.00,39.42,0.00 +603159.SH,0.00,0.00,0.00,66.26,0.00,0.00,0.00,68.71,0.00,0.00,0.00,60.50,0.00,0.00,0.00,59.61,0.00,48.46,0.00,60.99,0.00 +601577.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +603225.SH,0.00,0.00,0.00,9.41,0.00,0.00,0.00,7.15,0.00,0.00,0.00,8.00,0.00,0.00,0.00,9.95,0.00,0.00,0.00,10.46,0.00 +688213.SH,0.00,0.00,0.00,79.20,84.91,0.00,78.72,0.00,0.00,0.00,0.00,49.53,0.00,0.00,0.00,50.84,0.00,0.00,0.00,58.16,0.00 +300791.SZ,0.00,0.00,0.00,24.68,0.00,0.00,0.00,27.42,0.00,0.00,0.00,29.49,0.00,0.00,0.00,22.77,0.00,0.00,0.00,27.60,0.00 +002956.SZ,0.00,0.00,0.00,19.99,0.00,0.00,0.00,16.98,0.00,0.00,0.00,15.75,0.00,0.00,0.00,13.53,0.00,0.00,0.00,11.90,0.00 +002001.SZ,0.00,0.00,0.00,20.47,0.00,0.00,0.00,17.79,0.00,0.00,0.00,11.22,0.00,0.00,0.00,10.26,0.00,0.00,0.00,11.31,0.00 +688180.SH,0.00,0.00,0.00,79.89,0.00,0.00,0.00,96.19,0.00,0.00,0.00,72.91,0.00,0.00,0.00,68.62,0.00,0.00,0.00,65.21,0.00 +003019.SZ,0.00,73.18,0.00,73.30,0.00,0.00,0.00,67.75,0.00,0.00,0.00,70.73,0.00,0.00,0.00,63.30,0.00,0.00,0.00,55.34,0.00 +003000.SZ,0.00,0.00,0.00,12.21,0.00,13.12,0.00,13.03,0.00,0.00,0.00,11.63,0.00,0.00,0.00,9.87,0.00,0.00,0.00,14.00,0.00 +002861.SZ,0.00,0.00,0.00,62.08,0.00,0.00,0.00,59.83,0.00,0.00,0.00,37.88,0.00,0.00,0.00,43.50,0.00,0.00,0.00,45.16,0.00 +000972.SZ,0.00,0.00,0.00,92.25,0.00,100.00,0.00,99.44,0.00,98.62,0.00,71.37,0.00,63.78,0.00,54.65,0.00,77.48,0.00,60.08,0.00 +600025.SH,0.00,0.00,0.00,99.80,0.00,0.00,0.00,91.67,0.00,0.00,0.00,91.42,0.00,0.00,0.00,99.03,0.00,0.00,0.00,99.12,0.00 +605003.SH,63.20,0.00,0.00,56.18,0.00,0.00,0.00,56.89,0.00,0.00,0.00,47.93,0.00,0.00,0.00,51.96,0.00,0.00,0.00,43.55,0.00 +300715.SZ,0.00,0.00,0.00,33.78,0.00,0.00,0.00,23.64,0.00,0.00,0.00,19.07,0.00,0.00,0.00,24.38,0.00,0.00,0.00,19.50,0.00 +000638.SZ,0.00,0.00,0.00,36.30,0.00,0.00,0.00,34.63,0.00,0.00,0.00,65.45,0.00,0.00,0.00,63.27,0.00,0.00,0.00,24.12,0.00 +000869.SZ,0.00,0.00,0.00,6.39,0.00,5.73,0.00,7.17,0.00,0.00,0.00,7.44,0.00,6.17,0.00,6.51,0.00,4.71,0.00,5.12,0.00 +601166.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +600820.SH,0.00,0.00,0.00,15.39,0.00,0.00,0.00,18.60,0.00,0.00,0.00,14.60,0.00,0.00,0.00,16.83,0.00,0.00,0.00,19.17,0.00 +000888.SZ,0.00,0.00,0.00,15.10,0.00,0.00,0.00,15.44,0.00,0.00,0.00,20.01,0.00,0.00,0.00,1.91,0.00,0.00,0.00,1.92,0.00 +603326.SH,0.00,0.00,0.00,14.40,0.00,0.00,0.00,11.16,0.00,0.00,0.00,5.44,0.00,0.00,0.00,8.89,0.00,0.00,0.00,7.26,0.00 +600939.SH,0.00,0.00,0.00,11.35,0.00,0.00,0.00,8.41,0.00,0.00,0.00,11.88,0.00,0.00,0.00,8.62,0.00,0.00,0.00,9.92,0.00 +601816.SH,0.00,0.00,0.00,58.18,0.00,0.00,0.00,54.05,0.00,0.00,0.00,60.09,0.00,0.00,0.00,50.22,0.00,0.00,0.00,52.29,0.00 +300466.SZ,0.00,0.00,0.00,10.63,0.00,15.43,0.00,12.75,0.00,0.00,0.00,23.14,0.00,0.00,0.00,45.90,0.00,0.00,0.00,27.66,0.00 +601988.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +688002.SH,0.00,0.00,0.00,38.07,0.00,0.00,0.00,31.89,0.00,0.00,0.00,35.45,0.00,0.00,0.00,33.43,0.00,0.00,0.00,38.82,0.00 +688075.SH,0.00,75.72,0.00,81.55,0.00,71.95,0.00,74.05,0.00,0.00,0.00,89.44,0.00,0.00,0.00,50.75,0.00,0.00,0.00,22.02,0.00 +002675.SZ,0.00,0.00,0.00,25.28,0.00,0.00,0.00,30.03,0.00,0.00,0.00,29.72,0.00,0.00,0.00,29.91,0.00,0.00,0.00,20.24,0.00 +601288.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +301392.SZ,0.00,0.00,0.00,49.94,0.00,53.01,0.00,65.56,0.00,73.82,0.00,60.49,0.00,42.35,0.00,43.72,58.32,0.00,0.00,51.19,0.00 +688188.SH,0.00,0.00,0.00,22.62,0.00,0.00,0.00,21.04,0.00,0.00,0.00,21.13,0.00,0.00,0.00,23.53,0.00,0.00,0.00,23.41,0.00 +688617.SH,0.00,18.63,0.00,14.43,0.00,0.00,0.00,13.81,0.00,0.00,0.00,13.56,0.00,0.00,0.00,10.90,0.00,0.00,0.00,8.45,0.00 +600595.SH,0.00,0.00,0.00,36.09,0.00,0.00,0.00,36.00,0.00,0.00,0.00,31.75,0.00,0.00,0.00,34.47,0.00,0.00,0.00,31.28,0.00 +600968.SH,0.00,0.00,0.00,68.23,0.00,0.00,0.00,59.48,0.00,0.00,0.00,65.96,0.00,0.00,0.00,72.52,0.00,0.00,0.00,70.77,0.00 +600418.SH,0.00,0.00,0.00,7.89,0.00,0.00,0.00,8.26,0.00,0.00,0.00,15.84,0.00,0.00,0.00,23.38,0.00,0.00,0.00,28.28,0.00 +603939.SH,0.00,0.00,0.00,0.11,0.00,0.00,0.00,0.14,0.00,0.00,0.00,0.26,0.00,0.00,0.00,0.25,0.00,0.00,0.00,0.26,0.00 +000793.SZ,0.00,0.00,0.00,32.92,0.00,0.00,0.00,27.69,0.00,0.00,0.00,40.79,0.00,0.00,0.00,24.98,0.00,0.00,0.00,29.54,0.00 +000968.SZ,0.00,0.00,0.00,76.56,0.00,0.00,0.00,75.81,0.00,0.00,0.00,74.74,0.00,0.00,0.00,88.14,0.00,0.00,0.00,79.86,0.00 +601328.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +002299.SZ,0.00,0.00,0.00,35.06,0.00,0.00,0.00,34.95,0.00,0.00,0.00,30.80,0.00,0.00,0.00,32.83,0.00,0.00,0.00,36.63,0.00 +601169.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +688235.SH,0.00,0.00,83.55,83.70,0.00,91.38,0.00,83.95,0.00,0.00,0.00,69.69,0.00,0.00,0.00,68.63,0.00,0.00,0.00,75.26,0.00 +002736.SZ,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +000538.SZ,0.00,0.00,0.00,13.28,0.00,0.00,0.00,14.70,0.00,0.00,0.00,15.56,0.00,0.00,0.00,15.29,0.00,0.00,0.00,14.91,0.00 +600415.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +600055.SH,0.00,0.00,0.00,12.32,0.00,0.00,0.00,14.78,0.00,0.00,0.00,18.76,0.00,0.00,0.00,13.04,0.00,0.00,0.00,13.23,0.00 +600509.SH,0.00,0.00,0.00,41.50,0.00,39.78,0.00,40.30,0.00,0.00,0.00,42.16,0.00,0.00,0.00,43.80,0.00,0.00,0.00,46.13,0.00 +000895.SZ,0.00,0.00,0.00,4.12,0.00,1.77,0.00,2.71,0.00,0.00,0.00,2.23,0.00,0.00,0.00,2.15,0.00,2.30,0.00,2.67,0.00 +300723.SZ,0.00,0.00,0.00,46.25,0.00,0.00,0.00,50.64,0.00,0.00,0.00,51.54,0.00,0.00,0.00,52.52,0.00,0.00,0.00,44.09,0.00 +002028.SZ,0.00,0.00,0.00,13.04,0.00,0.00,0.00,15.88,0.00,0.00,0.00,13.81,0.00,0.00,0.00,12.77,0.00,0.00,0.00,11.15,0.00 +600649.SH,0.00,0.00,0.00,53.84,0.00,0.00,0.00,6.12,0.00,0.00,0.00,32.53,0.00,0.00,0.00,28.73,0.00,0.00,0.00,4.56,0.00 +301002.SZ,0.00,36.33,0.00,33.44,0.00,0.00,0.00,32.55,0.00,0.00,0.00,32.07,0.00,0.00,0.00,23.27,0.00,0.00,0.00,23.58,0.00 +601811.SH,0.00,0.00,0.00,15.36,0.00,0.00,0.00,13.88,0.00,0.00,0.00,12.23,0.00,0.00,0.00,10.91,0.00,0.00,0.00,11.77,0.00 +301160.SZ,17.97,0.00,20.80,21.81,0.00,21.04,0.00,21.47,21.69,0.00,0.00,26.37,0.00,0.00,0.00,29.74,0.00,0.00,0.00,28.83,0.00 +600708.SH,0.00,0.00,0.00,12.56,0.00,0.00,0.00,15.76,0.00,0.00,0.00,12.65,0.00,0.00,0.00,18.88,0.00,0.00,0.00,16.76,0.00 +002627.SZ,0.00,0.00,0.00,15.10,0.00,0.00,0.00,14.99,0.00,0.00,0.00,22.43,0.00,0.00,0.00,19.69,0.00,0.00,0.00,6.78,0.00 +600793.SH,0.00,0.00,0.00,8.21,0.00,0.00,0.00,12.99,0.00,0.00,0.00,13.41,0.00,0.00,0.00,15.64,0.00,0.00,0.00,21.46,0.00 +001965.SZ,0.00,0.00,0.00,6.47,0.00,0.00,0.00,8.70,0.00,0.00,0.00,9.91,0.00,0.00,0.00,7.22,0.00,0.00,0.00,4.76,0.00 +002807.SZ,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +603605.SH,0.00,0.00,0.00,15.08,0.00,0.00,0.00,15.21,0.00,0.00,0.00,12.55,0.00,0.00,0.00,12.57,0.00,0.00,0.00,15.04,0.00 +002958.SZ,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +600015.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +601116.SH,0.00,0.00,0.00,0.69,0.00,0.00,0.00,0.90,0.00,0.00,0.00,1.74,0.00,0.00,0.00,1.06,0.00,0.00,0.00,1.15,0.00 +601998.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +601098.SH,0.00,0.00,0.00,6.27,0.00,0.00,0.00,6.94,0.00,0.00,0.00,7.06,0.00,0.00,0.00,4.12,0.00,0.00,0.00,5.88,0.00 +601898.SH,0.00,0.00,0.00,12.30,0.00,0.00,0.00,14.70,0.00,0.00,0.00,11.80,0.00,0.00,0.00,12.00,0.00,0.00,0.00,13.60,0.00 +600886.SH,0.00,0.00,0.00,76.29,0.00,0.00,0.00,81.42,0.00,0.00,0.00,83.57,0.00,0.00,0.00,82.16,0.00,0.00,0.00,82.00,0.00 +605377.SH,0.00,25.29,22.61,26.95,0.00,0.00,0.00,23.12,0.00,0.00,0.00,19.42,0.00,0.00,0.00,13.70,0.00,0.00,0.00,18.44,0.00 +688198.SH,0.00,0.00,0.00,33.88,0.00,0.00,0.00,34.60,0.00,0.00,0.00,35.09,0.00,0.00,0.00,31.87,0.00,0.00,0.00,30.08,0.00 +600060.SH,0.00,0.00,0.00,49.42,0.00,0.00,0.00,51.44,0.00,0.00,0.00,57.71,0.00,0.00,0.00,60.48,0.00,0.00,0.00,64.56,0.00 +832982.BJ,0.00,30.83,0.00,44.30,0.00,54.15,0.00,43.52,31.35,28.81,25.23,25.69,41.29,0.00,0.00,25.93,0.00,0.00,0.00,19.19,0.00 +000733.SZ,0.00,0.00,0.00,11.11,0.00,0.00,0.00,14.47,0.00,0.00,0.00,17.40,0.00,0.00,0.00,18.68,0.00,0.00,0.00,12.08,0.00 +300866.SZ,0.00,15.80,0.00,16.52,0.00,0.00,0.00,17.40,0.00,0.00,0.00,13.48,0.00,0.00,0.00,11.34,0.00,0.00,0.00,10.02,0.00 +003041.SZ,0.00,31.69,0.00,20.07,0.00,0.00,0.00,23.83,0.00,0.00,0.00,30.45,0.00,0.00,0.00,29.39,0.00,0.00,0.00,27.71,0.00 +601117.SH,0.00,0.00,0.00,9.79,0.00,0.00,0.00,13.10,0.00,0.00,0.00,13.58,0.00,0.00,0.00,12.22,0.00,0.00,0.00,17.28,0.00 +600900.SH,0.00,0.00,0.00,100.00,0.00,0.00,0.00,98.87,0.00,0.00,0.00,95.56,0.00,0.00,0.00,94.08,0.00,0.00,0.00,93.43,0.00 +688488.SH,0.00,0.00,0.00,77.08,0.00,0.00,0.00,81.77,0.00,0.00,0.00,70.30,0.00,0.00,0.00,75.86,0.00,0.00,0.00,51.20,0.00 +000753.SZ,0.00,0.00,0.00,20.93,0.00,7.68,0.00,21.63,0.00,0.00,0.00,20.66,0.00,0.00,0.00,35.00,0.00,0.00,0.00,24.19,0.00 +601567.SH,0.00,0.00,0.00,18.17,0.00,0.00,0.00,10.22,0.00,0.00,0.00,11.89,0.00,0.00,0.00,10.40,0.00,0.00,0.00,11.24,0.00 +002159.SZ,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,19.82,0.00,0.00,0.00,26.66,0.00 +002707.SZ,0.00,0.00,0.00,14.44,0.00,0.00,0.00,20.52,0.00,0.00,0.00,17.31,0.00,0.00,0.00,12.67,0.00,0.00,0.00,15.16,0.00 +605056.SH,0.00,66.53,0.00,63.50,57.73,0.00,0.00,61.94,0.00,0.00,0.00,67.74,0.00,0.00,0.00,70.25,0.00,0.00,0.00,64.16,0.00 +688336.SH,0.00,0.00,0.00,25.09,0.00,0.00,0.00,56.48,0.00,0.00,0.00,58.69,0.00,0.00,0.00,62.91,0.00,0.00,0.00,63.59,0.00 +000595.SZ,0.00,0.00,0.00,39.26,0.00,0.00,0.00,17.76,0.00,0.00,0.00,21.58,0.00,0.00,0.00,30.94,0.00,0.00,0.00,43.37,0.00 +605319.SH,0.00,0.00,0.00,74.78,75.41,0.00,0.00,72.25,0.00,0.00,0.00,73.48,0.00,0.00,0.00,72.91,0.00,0.00,0.00,73.51,0.00 +002314.SZ,0.00,0.00,0.00,3.82,0.00,0.00,0.00,4.93,0.00,0.00,0.00,10.07,0.00,0.00,0.00,7.51,0.00,0.00,0.00,10.00,0.00 +600892.SH,0.00,0.00,0.00,43.99,0.00,0.00,0.00,12.85,0.00,0.00,0.00,10.34,0.00,0.00,0.00,6.89,0.00,0.00,0.00,15.92,0.00 +600007.SH,0.00,0.00,0.00,8.50,0.00,0.00,0.00,7.80,0.00,0.00,0.00,10.00,0.00,0.00,0.00,9.10,0.00,0.00,0.00,9.90,0.00 +601928.SH,0.00,0.00,0.00,16.17,0.00,0.00,0.00,16.20,0.00,0.00,0.00,16.36,0.00,0.00,0.00,15.77,0.00,0.00,0.00,16.67,0.00 +601579.SH,0.00,0.00,0.00,15.00,0.00,0.00,0.00,13.61,0.00,0.00,0.00,12.02,0.00,0.00,0.00,13.81,0.00,0.00,0.00,11.17,0.00 +688526.SH,0.00,0.00,0.00,31.89,0.00,0.00,0.00,30.18,0.00,0.00,0.00,36.09,0.00,0.00,0.00,31.89,0.00,0.00,0.00,31.36,0.00 +000608.SZ,0.00,0.00,0.00,20.58,0.00,0.00,0.00,24.47,0.00,0.00,0.00,37.30,0.00,0.00,0.00,45.59,0.00,0.00,0.00,25.61,0.00 +600419.SH,0.00,0.00,0.00,10.05,0.00,0.00,0.00,13.91,0.00,0.00,0.00,14.20,0.00,0.00,0.00,14.10,0.00,0.00,0.00,14.31,0.00 +603226.SH,0.00,0.00,0.00,27.08,0.00,0.00,0.00,27.08,0.00,0.00,0.00,25.30,0.00,0.00,0.00,23.86,0.00,0.00,0.00,29.90,0.00 +002422.SZ,0.00,0.00,0.00,14.21,0.00,0.00,0.00,14.06,0.00,0.00,0.00,14.27,0.00,0.00,0.00,16.48,0.00,0.00,0.00,25.68,0.00 +603369.SH,0.00,0.00,0.00,18.47,0.00,0.00,0.00,2.19,0.00,0.00,0.00,17.85,0.00,0.00,0.00,13.51,0.00,0.00,0.00,13.61,0.00 +600853.SH,0.00,0.00,0.00,41.31,0.00,29.52,0.00,39.83,0.00,17.77,0.00,32.49,0.00,29.12,0.00,27.32,0.00,0.00,0.00,29.31,0.00 +002656.SZ,0.00,0.00,0.00,38.14,0.00,0.00,0.00,9.89,0.00,0.00,0.00,9.13,0.00,0.00,0.00,9.64,0.00,0.00,0.00,13.85,0.00 +600513.SH,0.00,0.00,0.00,14.48,0.00,0.00,0.00,11.19,0.00,0.00,0.00,11.82,0.00,0.00,0.00,11.07,0.00,0.00,0.00,11.62,0.00 +600713.SH,0.00,0.00,0.00,9.16,0.00,0.00,0.00,8.03,0.00,0.00,0.00,8.62,0.00,0.00,0.00,8.91,0.00,0.00,0.00,9.12,0.00 +603323.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +603057.SH,0.00,0.00,0.00,65.53,0.00,63.97,0.00,62.12,0.00,0.00,0.00,59.04,0.00,0.00,0.00,44.69,0.00,0.00,0.00,53.69,0.00 +603559.SH,0.00,0.00,0.00,46.22,0.00,0.00,0.00,34.39,0.00,0.00,0.00,29.83,0.00,0.00,0.00,43.82,0.00,0.00,0.00,46.67,0.00 +600576.SH,0.00,0.00,0.00,43.81,0.00,0.00,0.00,24.80,0.00,0.00,0.00,21.89,0.00,0.00,0.00,14.32,0.00,0.00,0.00,9.61,0.00 +002653.SZ,0.00,0.00,0.00,40.35,0.00,0.00,0.00,46.56,0.00,0.00,0.00,43.01,0.00,0.00,0.00,40.30,0.00,0.00,0.00,40.57,0.00 +688608.SH,0.00,84.35,0.00,75.20,0.00,0.00,0.00,78.13,0.00,0.00,0.00,82.91,0.00,0.00,0.00,83.68,0.00,0.00,0.00,74.22,0.00 +300630.SZ,0.00,0.00,0.00,29.72,0.00,0.00,0.00,29.95,0.00,0.00,0.00,33.04,0.00,0.00,0.00,43.14,0.00,0.00,0.00,0.00,0.00 +688161.SH,0.00,26.26,0.00,27.18,0.00,0.00,0.00,18.09,0.00,0.00,0.00,15.17,0.00,0.00,0.00,16.27,0.00,0.00,0.00,17.55,0.00 +600054.SH,0.00,0.00,0.00,2.44,0.00,0.00,0.00,6.04,0.00,0.00,0.00,6.57,0.00,0.00,0.00,7.07,0.00,0.00,0.00,7.05,0.00 +600377.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,1.21,0.00,0.00,0.00,14.00,0.00,0.00,0.00,4.02,0.00,0.00,0.00,3.94,0.00 +603997.SH,0.00,0.00,0.00,43.60,0.00,0.00,0.00,39.76,0.00,0.00,0.00,34.50,0.00,0.00,0.00,31.62,0.00,0.00,0.00,37.22,0.00 +600729.SH,0.00,0.00,0.00,1.33,0.00,0.00,0.00,2.84,0.00,0.00,0.00,1.42,0.00,0.00,0.00,0.91,0.00,0.00,0.00,1.17,0.00 +600919.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +000029.SZ,0.00,0.00,0.00,6.52,0.00,0.00,0.00,4.46,0.00,0.00,0.00,13.78,0.00,0.00,0.00,26.28,0.00,0.00,0.00,24.10,0.00 +603365.SH,0.00,0.00,0.00,25.97,0.00,0.00,0.00,27.84,0.00,0.00,0.00,23.17,0.00,0.00,0.00,24.81,0.00,0.00,0.00,23.23,0.00 +300702.SZ,0.00,0.00,0.00,32.78,0.00,0.00,0.00,47.49,0.00,0.00,0.00,41.18,0.00,0.00,0.00,44.97,0.00,0.00,0.00,40.18,0.00 +000042.SZ,0.00,0.00,0.00,1.02,0.00,0.00,0.00,5.18,0.00,0.00,0.00,3.00,0.00,0.00,0.00,2.00,0.00,0.00,0.00,14.18,0.00 +600989.SH,0.00,0.00,0.00,21.85,0.00,0.00,0.00,18.66,0.00,0.00,0.00,20.62,0.00,0.00,0.00,14.77,0.00,0.00,0.00,18.42,0.00 +600750.SH,0.00,0.00,0.00,44.00,0.00,0.00,0.00,49.55,0.00,0.00,0.00,44.85,0.00,0.00,0.00,44.88,0.00,0.00,0.00,50.22,0.00 +603630.SH,0.00,0.00,0.00,14.61,0.00,0.00,0.00,12.86,0.00,0.00,0.00,17.32,0.00,0.00,0.00,10.09,0.00,0.00,0.00,10.27,0.00 +688131.SH,26.78,19.89,0.00,22.76,30.06,0.00,0.00,16.40,0.00,0.00,0.00,17.14,0.00,0.00,0.00,14.57,0.00,0.00,0.00,14.47,0.00 +600490.SH,0.00,0.00,0.00,86.11,0.00,0.00,0.00,57.39,0.00,0.00,0.00,70.15,0.00,0.00,0.00,74.12,0.00,0.00,0.00,69.47,0.00 +688622.SH,0.00,36.17,0.00,25.53,0.00,0.00,0.00,35.29,0.00,0.00,0.00,14.65,0.00,0.00,0.00,13.83,0.00,0.00,0.00,16.31,0.00 +688192.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,100.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,90.78,0.00,0.00,0.00,89.55,0.00 +600012.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +603883.SH,0.00,0.00,0.00,1.95,0.00,0.00,0.00,1.42,0.00,0.00,0.00,1.40,0.00,0.00,0.00,1.29,0.00,0.00,0.00,1.21,0.00 +002244.SZ,0.00,0.00,0.00,0.40,0.00,0.00,0.00,0.39,0.00,0.00,0.00,1.91,0.00,0.00,0.00,0.55,0.00,0.00,0.00,0.61,0.00 +603065.SH,0.00,0.00,0.00,23.90,0.00,22.21,0.00,20.96,0.00,16.38,0.00,17.19,0.00,0.00,0.00,17.89,0.00,0.00,0.00,16.64,0.00 +000096.SZ,0.00,0.00,0.00,13.77,0.00,0.00,0.00,20.29,0.00,0.00,0.00,15.34,0.00,0.00,0.00,20.84,0.00,0.00,0.00,14.55,0.00 +600116.SH,0.00,0.00,0.00,23.72,0.00,0.00,0.00,24.52,0.00,0.00,0.00,25.33,0.00,0.00,0.00,27.05,0.00,0.00,0.00,30.50,0.00 +603156.SH,0.00,0.00,0.00,2.43,0.00,0.00,0.00,2.83,0.00,0.00,0.00,2.40,0.00,0.00,0.00,2.71,0.00,0.00,0.00,3.21,0.00 +688578.SH,0.00,100.00,0.00,100.00,0.00,0.00,0.00,86.96,0.00,0.00,0.00,78.94,0.00,0.00,0.00,77.98,0.00,0.00,0.00,78.46,0.00 +601155.SH,0.00,0.00,0.00,0.17,0.00,0.00,0.00,0.29,0.00,0.00,0.00,0.62,0.00,0.00,0.00,0.62,0.00,0.00,0.00,0.69,0.00 +001225.SZ,0.00,0.00,0.00,36.00,0.00,41.39,0.00,35.32,0.00,41.61,0.00,37.87,0.00,0.00,0.00,34.38,0.00,0.00,0.00,30.39,0.00 +000697.SZ,0.00,0.00,0.00,74.84,0.00,0.00,0.00,80.82,0.00,0.00,0.00,81.02,0.00,0.00,0.00,80.41,0.00,0.00,0.00,82.98,0.00 +688331.SH,0.00,0.00,0.00,0.00,0.00,81.04,0.00,0.00,0.00,0.00,0.00,25.05,0.00,0.00,0.00,22.36,0.00,0.00,0.00,78.91,0.00 +000921.SZ,0.00,0.00,0.00,37.86,0.00,0.00,0.00,32.02,0.00,0.00,0.00,27.11,0.00,0.00,0.00,29.56,0.00,0.00,0.00,33.53,0.00 +002367.SZ,0.00,0.00,0.00,8.49,0.00,0.00,0.00,7.26,0.00,0.00,0.00,8.60,0.00,0.00,0.00,13.94,0.00,0.00,0.00,13.21,0.00 +002032.SZ,0.00,0.00,0.00,39.13,0.00,0.00,0.00,41.52,0.00,0.00,0.00,36.54,0.00,0.00,0.00,41.63,0.00,0.00,0.00,44.71,0.00 +002311.SZ,0.00,0.00,0.00,2.45,0.00,0.00,0.00,2.06,0.00,0.00,0.00,1.73,0.00,0.00,0.00,1.77,0.00,0.00,0.00,2.34,0.00 +605499.SH,0.00,8.02,0.00,8.32,0.00,0.00,0.00,5.05,0.00,0.00,0.00,4.23,0.00,0.00,0.00,3.36,0.00,0.00,0.00,5.07,0.00 +600165.SH,0.00,0.00,0.00,45.53,0.00,0.00,0.00,30.30,0.00,0.00,0.00,60.68,0.00,0.00,0.00,24.14,0.00,0.00,0.00,29.33,0.00 +605009.SH,0.00,52.73,0.00,59.22,0.00,0.00,0.00,71.72,0.00,0.00,0.00,75.50,0.00,0.00,0.00,75.99,0.00,0.00,0.00,73.76,0.00 +002253.SZ,0.00,0.00,0.00,40.88,0.00,0.00,0.00,38.06,0.00,0.00,0.00,38.28,0.00,0.00,0.00,40.09,0.00,0.00,0.00,47.84,0.00 +600828.SH,0.00,0.00,0.00,2.69,0.00,1.68,0.00,1.39,0.00,1.50,0.00,0.74,0.00,1.60,0.00,1.17,0.00,2.94,0.00,1.01,0.00 +600173.SH,0.00,0.00,0.00,1.69,0.00,0.00,0.00,1.13,0.00,0.00,0.00,49.14,0.00,0.00,0.00,49.55,0.00,0.00,0.00,56.97,0.00 +000429.SZ,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +601963.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +688232.SH,19.20,0.00,8.19,5.44,0.00,9.14,0.00,5.50,0.00,0.00,0.00,6.29,0.00,0.00,0.00,8.16,0.00,0.00,0.00,6.02,0.00 +688799.SH,0.00,39.21,0.00,38.35,0.00,0.00,0.00,31.85,0.00,0.00,0.00,37.11,0.00,0.00,0.00,37.14,0.00,0.00,0.00,34.00,0.00 +603983.SH,0.00,0.00,0.00,34.44,0.00,0.00,0.00,27.13,0.00,0.00,0.00,27.16,0.00,0.00,0.00,14.59,0.00,0.00,0.00,12.36,0.00 +300204.SZ,0.00,0.00,0.00,17.35,0.00,0.00,0.00,18.84,0.00,0.00,0.00,19.10,0.00,0.00,0.00,18.64,0.00,0.00,0.00,21.58,0.00 +300965.SZ,0.00,100.00,0.00,99.46,0.00,0.00,0.00,99.30,0.00,0.00,0.00,99.04,0.00,0.00,0.00,-34.60,0.00,0.00,0.00,97.68,0.00 +600289.SH,0.00,0.00,0.00,20.79,0.00,0.00,0.00,28.69,0.00,0.00,0.00,4.28,0.00,0.00,0.00,33.90,0.00,0.00,0.00,29.70,0.00 +601077.SH,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +000669.SZ,0.00,0.00,0.00,25.54,0.00,0.00,0.00,38.53,0.00,0.00,0.00,23.65,0.00,0.00,0.00,34.57,0.00,0.00,0.00,37.00,0.00 +688428.SH,0.00,0.00,0.00,56.98,86.10,0.00,0.00,96.67,0.00,0.00,0.00,80.49,0.00,0.00,0.00,76.41,0.00,0.00,0.00,79.07,0.00 +300682.SZ,0.00,0.00,0.00,72.73,0.00,0.00,0.00,66.75,0.00,0.00,0.00,65.70,0.00,0.00,0.00,59.96,0.00,0.00,0.00,54.37,0.00 +300888.SZ,0.00,19.12,0.00,29.79,0.00,0.00,0.00,13.82,0.00,0.00,0.00,13.45,0.00,0.00,0.00,14.63,0.00,0.00,0.00,12.57,0.00 +001331.SZ,0.00,0.00,0.00,23.28,0.00,20.53,0.00,23.40,0.00,27.04,0.00,26.37,0.00,0.00,0.00,21.18,0.00,0.00,0.00,23.45,0.00 +002966.SZ,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +301228.SZ,24.96,0.00,13.67,14.00,0.00,19.38,0.00,16.52,0.00,0.00,0.00,13.94,0.00,0.00,0.00,17.44,0.00,0.00,0.00,14.15,0.00 +600461.SH,0.00,0.00,0.00,5.37,0.00,0.00,0.00,9.26,0.00,0.00,0.00,10.37,0.00,0.00,0.00,10.87,0.00,0.00,0.00,18.14,0.00 +002990.SZ,0.00,0.00,0.00,46.69,0.00,0.00,0.00,59.71,0.00,0.00,0.00,41.10,0.00,0.00,0.00,41.64,0.00,0.00,0.00,41.33,0.00 +600998.SH,0.00,0.00,0.00,1.76,0.00,0.00,0.00,2.26,0.00,0.00,0.00,2.22,0.00,0.00,0.00,2.27,0.00,0.00,0.00,2.24,0.00 +002847.SZ,0.00,0.00,0.00,23.20,0.00,0.00,0.00,19.68,0.00,0.00,0.00,15.65,0.00,0.00,0.00,20.63,0.00,0.00,0.00,32.40,0.00 +430047.BJ,0.00,0.00,0.00,82.36,0.00,0.00,0.00,71.06,0.00,0.00,0.00,81.11,0.00,0.00,0.00,84.09,0.00,0.00,0.00,75.30,0.00 +002217.SZ,0.00,0.00,0.00,57.45,0.00,0.00,0.00,48.73,0.00,0.00,0.00,64.66,0.00,0.00,0.00,51.50,0.00,0.00,0.00,57.13,0.00 +688580.SH,0.00,0.00,0.00,15.14,0.00,13.55,0.00,11.89,0.00,0.00,0.00,11.23,0.00,9.97,0.00,9.86,0.00,11.26,0.00,11.79,0.00 +301498.SZ,0.00,0.00,0.00,35.81,0.00,33.54,0.00,34.22,0.00,36.54,0.00,31.12,0.00,0.00,0.00,30.60,0.00,0.00,0.00,27.59,0.00 +600398.SH,0.00,0.00,0.00,4.37,0.00,0.00,0.00,3.64,0.00,0.00,0.00,2.84,0.00,0.00,0.00,3.80,0.00,4.73,0.00,7.21,0.00 +688136.SH,0.00,42.19,0.00,40.54,0.00,0.00,0.00,43.28,0.00,0.00,0.00,42.48,0.00,0.00,0.00,45.05,0.00,0.00,0.00,44.82,0.00 +688388.SH,0.00,0.00,0.00,81.26,0.00,0.00,0.00,83.98,0.00,0.00,0.00,89.81,0.00,0.00,0.00,87.88,0.00,0.00,0.00,80.41,0.00 +002586.SZ,0.00,0.00,0.00,31.64,0.00,0.00,0.00,34.11,0.00,0.00,0.00,31.83,0.00,0.00,0.00,33.71,0.00,0.00,0.00,34.10,0.00 +002667.SZ,0.00,0.00,0.00,45.80,0.00,0.00,0.00,33.46,0.00,0.00,0.00,66.21,0.00,0.00,0.00,38.31,0.00,0.00,0.00,71.77,0.00 +603590.SH,0.00,0.00,0.00,51.16,0.00,0.00,0.00,69.01,0.00,0.00,0.00,68.09,0.00,0.00,0.00,69.15,0.00,0.00,0.00,72.83,0.00 +300469.SZ,0.00,0.00,0.00,12.85,0.00,0.00,0.00,15.88,0.00,0.00,0.00,27.82,0.00,0.00,0.00,23.36,0.00,0.00,0.00,25.64,0.00 +688696.SH,0.00,44.09,0.00,46.68,0.00,0.00,0.00,39.19,0.00,0.00,0.00,36.20,0.00,0.00,0.00,30.70,0.00,0.00,0.00,29.22,0.00 +300779.SZ,0.00,0.00,0.00,54.00,0.00,0.00,0.00,53.04,0.00,0.00,0.00,43.14,0.00,0.00,0.00,78.35,0.00,0.00,0.00,76.04,0.00 +603233.SH,0.00,0.00,0.00,1.32,0.00,0.00,0.00,1.52,0.00,0.00,0.00,1.17,0.00,0.00,0.00,1.19,0.00,0.00,0.00,0.70,0.00 +600889.SH,0.00,0.00,0.00,52.54,0.00,0.00,0.00,43.40,0.00,0.00,0.00,44.77,0.00,0.00,0.00,44.67,0.00,0.00,0.00,44.53,0.00 +603565.SH,0.00,0.00,0.00,5.29,0.00,0.00,0.00,9.30,0.00,0.00,0.00,13.26,0.00,0.00,0.00,10.92,0.00,0.00,0.00,10.39,0.00 +300765.SZ,0.00,0.00,0.00,28.29,0.00,11.68,0.00,27.31,0.00,0.00,0.00,35.72,0.00,0.00,0.00,37.56,0.00,6.10,0.00,32.96,0.00 +002231.SZ,0.00,0.00,0.00,46.84,0.00,0.00,0.00,49.31,0.00,0.00,0.00,59.93,0.00,0.00,0.00,38.76,0.00,0.00,0.00,58.02,0.00 +688068.SH,0.00,0.00,0.00,50.05,0.00,0.00,0.00,37.01,0.00,0.00,0.00,21.59,0.00,0.00,0.00,18.31,0.00,0.00,0.00,7.68,0.00 +003003.SZ,0.00,0.00,0.00,31.99,0.00,0.00,0.00,22.05,0.00,0.00,0.00,23.71,0.00,0.00,0.00,28.30,0.00,0.00,0.00,37.90,0.00 +688521.SH,0.00,0.00,0.00,39.43,0.00,0.00,0.00,39.04,0.00,0.00,0.00,40.05,0.00,0.00,0.00,46.48,0.00,0.00,0.00,44.49,0.00 +002076.SZ,0.00,0.00,0.00,46.29,0.00,0.00,0.00,27.59,0.00,0.00,0.00,27.45,0.00,0.00,0.00,42.28,0.00,0.00,0.00,31.22,0.00 +600190.SH,0.00,0.00,0.00,64.43,0.00,0.00,0.00,32.98,0.00,0.00,0.00,34.60,0.00,0.00,0.00,32.48,0.00,0.00,0.00,32.09,0.00 +600355.SH,0.00,0.00,0.00,44.38,0.00,0.00,0.00,44.74,0.00,0.00,0.00,35.69,0.00,0.00,0.00,39.06,0.00,0.00,0.00,37.35,0.00 +603789.SH,0.00,0.00,0.00,31.34,0.00,0.00,0.00,23.54,0.00,0.00,0.00,20.09,0.00,0.00,0.00,32.77,0.00,0.00,0.00,34.64,0.00 +002693.SZ,0.00,0.00,0.00,17.08,0.00,0.00,0.00,17.18,0.00,0.00,0.00,20.35,0.00,0.00,0.00,17.57,0.00,0.00,0.00,26.59,0.00 +600525.SH,0.00,0.00,0.00,16.53,0.00,17.78,0.00,18.12,0.00,15.55,0.00,18.75,0.00,25.57,0.00,19.25,0.00,18.28,0.00,13.76,0.00 +002630.SZ,0.00,0.00,0.00,38.79,0.00,0.00,0.00,42.43,0.00,0.00,0.00,16.31,0.00,0.00,0.00,40.75,0.00,0.00,0.00,93.67,0.00 +603398.SH,0.00,0.00,0.00,39.10,0.00,0.00,0.00,32.94,0.00,0.00,0.00,41.56,0.00,0.00,0.00,30.70,0.00,0.00,0.00,55.22,0.00 +603828.SH,0.00,0.00,0.00,20.67,0.00,0.00,0.00,26.43,0.00,0.00,0.00,22.22,0.00,0.00,0.00,26.92,0.00,0.00,0.00,33.66,0.00 +002052.SZ,0.00,0.00,0.00,60.62,0.00,0.00,0.00,27.95,0.00,0.00,0.00,39.27,0.00,0.00,0.00,31.04,0.00,0.00,0.00,79.14,0.00 +603580.SH,0.00,0.00,0.00,16.25,0.00,0.00,0.00,19.00,0.00,0.00,0.00,17.00,0.00,0.00,0.00,14.69,0.00,0.00,0.00,13.74,0.00 +600238.SH,0.00,0.00,0.00,45.19,0.00,0.00,0.00,26.64,0.00,0.00,0.00,42.24,0.00,0.00,0.00,55.59,0.00,0.00,0.00,79.17,0.00 +605199.SH,25.33,0.00,0.00,0.00,0.00,0.00,0.00,40.17,0.00,0.00,0.00,19.93,0.00,0.00,0.00,27.61,0.00,0.00,0.00,28.63,0.00 +600200.SH,0.00,0.00,0.00,27.21,0.00,0.00,0.00,30.80,0.00,0.00,0.00,26.12,0.00,0.00,0.00,29.13,0.00,0.00,0.00,35.70,0.00 +603843.SH,0.00,0.00,0.00,59.76,0.00,0.00,0.00,51.03,0.00,0.00,0.00,34.26,0.00,0.00,0.00,36.79,0.00,0.00,0.00,42.92,0.00 +603721.SH,0.00,0.00,0.00,28.63,0.00,0.00,0.00,23.34,0.00,0.00,0.00,21.43,0.00,0.00,0.00,27.57,0.00,0.00,0.00,39.13,0.00 +003004.SZ,0.00,69.05,0.00,58.31,0.00,0.00,0.00,55.75,0.00,0.00,0.00,55.19,0.00,0.00,0.00,46.47,0.00,0.00,0.00,47.06,0.00 +600265.SH,0.00,0.00,0.00,48.97,0.00,0.00,0.00,45.92,0.00,0.00,0.00,63.26,0.00,0.00,0.00,29.17,0.00,0.00,0.00,21.96,0.00 +002717.SZ,0.00,0.00,0.00,29.87,0.00,0.00,0.00,19.11,0.00,0.00,0.00,31.11,0.00,0.00,0.00,27.45,0.00,0.00,0.00,37.77,0.00 +000004.SZ,0.00,0.00,0.00,14.98,0.00,0.00,0.00,37.26,0.00,0.00,0.00,32.76,0.00,0.00,0.00,16.67,0.00,0.00,0.00,22.12,0.00 +600599.SH,0.00,0.00,0.00,41.47,0.00,0.00,0.00,49.30,0.00,0.00,0.00,41.54,0.00,0.00,0.00,28.56,0.00,0.00,0.00,33.83,0.00 +600107.SH,0.00,0.00,0.00,20.83,0.00,0.00,0.00,13.25,0.00,0.00,0.00,15.34,0.00,0.00,0.00,20.56,0.00,0.00,0.00,23.68,0.00 +000518.SZ,0.00,0.00,0.00,43.54,0.00,0.00,0.00,29.40,0.00,0.00,0.00,36.32,0.00,0.00,0.00,42.52,0.00,0.00,0.00,46.60,0.00 +002991.SZ,11.30,0.00,0.00,7.38,0.00,5.41,0.00,11.16,0.00,0.00,0.00,18.51,0.00,26.24,0.00,24.35,0.00,34.89,0.00,29.49,0.00 +300972.SZ,0.00,21.43,0.00,20.67,0.00,0.00,0.00,20.24,0.00,0.00,0.00,18.81,0.00,0.00,0.00,2.02,0.00,0.00,0.00,1.74,0.00 +688282.SH,0.00,100.00,0.00,100.00,0.00,99.99,0.00,0.00,0.00,0.00,0.00,99.92,0.00,0.00,0.00,83.29,0.00,0.00,0.00,88.26,0.00 +002755.SZ,0.00,0.00,0.00,8.80,0.00,0.00,0.00,10.44,0.00,0.00,0.00,12.17,0.00,0.00,0.00,16.82,0.00,0.00,0.00,18.65,0.00 +603359.SH,0.00,0.00,0.00,46.89,0.00,0.00,0.00,59.98,0.00,0.00,0.00,86.22,0.00,0.00,0.00,87.29,0.00,0.00,0.00,101.75,0.00 +601956.SH,0.00,0.00,0.00,35.38,0.00,0.00,0.00,1.83,0.00,0.00,0.00,23.72,0.00,0.00,0.00,26.74,0.00,0.00,0.00,22.04,0.00 +300326.SZ,0.00,0.00,0.00,19.07,0.00,0.00,0.00,16.10,0.00,0.00,0.00,13.33,0.00,0.00,0.00,11.75,0.00,0.00,0.00,13.26,0.00 +688266.SH,0.00,0.00,0.00,100.00,0.00,0.00,0.00,97.53,0.00,0.00,0.00,81.66,0.00,0.00,0.00,82.17,0.00,0.00,0.00,84.23,0.00 +002251.SZ,0.00,0.00,0.00,1.28,0.00,0.00,0.00,1.44,0.00,0.00,0.00,1.44,0.00,0.00,0.00,2.59,0.00,0.00,0.00,1.61,0.00 +002809.SZ,0.00,0.00,0.00,18.08,0.00,0.00,0.00,16.86,0.00,0.00,0.00,16.78,0.00,0.00,0.00,14.60,0.00,0.00,0.00,11.34,0.00 +301209.SZ,0.00,0.00,0.00,64.51,0.00,62.10,0.00,62.13,0.00,0.00,0.00,61.21,0.00,0.00,0.00,59.82,0.00,0.00,0.00,62.08,0.00 +835305.BJ,0.00,76.06,0.00,47.27,0.00,70.43,0.00,30.73,0.00,66.85,0.00,35.07,0.00,0.00,0.00,19.48,0.00,0.00,0.00,67.21,0.00 +603822.SH,0.00,0.00,0.00,22.29,0.00,0.00,0.00,18.48,0.00,0.00,0.00,11.16,0.00,0.00,0.00,54.27,0.00,0.00,0.00,31.84,0.00 +603696.SH,0.00,0.00,0.00,14.69,0.00,0.00,0.00,12.12,0.00,0.00,0.00,11.96,0.00,0.00,0.00,16.07,0.00,0.00,0.00,17.76,0.00 +002365.SZ,0.00,0.00,0.00,29.44,0.00,0.00,0.00,18.82,0.00,0.00,0.00,29.12,0.00,0.00,0.00,30.13,0.00,0.00,0.00,33.40,0.00 +300152.SZ,0.00,0.00,0.00,20.10,0.00,0.00,0.00,25.20,0.00,0.00,0.00,28.02,0.00,0.00,0.00,31.18,0.00,0.00,0.00,37.01,0.00 +300344.SZ,0.00,0.00,0.00,18.39,0.00,0.00,0.00,52.68,0.00,0.00,0.00,38.75,0.00,0.00,0.00,39.83,0.00,0.00,0.00,61.93,0.00 +688646.SH,0.00,0.00,0.00,85.56,0.00,0.00,0.00,69.96,0.00,53.15,0.00,57.67,69.47,0.00,0.00,34.04,0.00,0.00,0.00,55.21,0.00 +688184.SH,0.00,0.00,0.00,96.39,0.00,97.25,0.00,89.89,0.00,95.91,0.00,96.31,0.00,0.00,0.00,95.15,0.00,0.00,0.00,96.53,0.00 +839680.BJ,0.00,96.76,0.00,93.48,0.00,95.99,0.00,95.06,0.00,95.36,0.00,95.84,0.00,95.77,0.00,89.85,0.00,0.00,0.00,68.12,0.00 diff --git a/src/quantitative_analysis/financial_data_collector.py b/src/quantitative_analysis/financial_data_collector.py index a621517..3b50b2f 100644 --- a/src/quantitative_analysis/financial_data_collector.py +++ b/src/quantitative_analysis/financial_data_collector.py @@ -127,7 +127,7 @@ class FinancialDataCollectorV2: List[str]: 股票代码列表 """ try: - query = "SELECT DISTINCT gp_code_two FROM gp_code_all WHERE gp_code_two IS NOT NULL AND gp_code_two != ''" + query = "SELECT DISTINCT gp_code_two FROM gp_code_all_copy1 WHERE gp_code_two IS NOT NULL AND gp_code_two != ''" with self.mysql_engine.connect() as conn: df = pd.read_sql(text(query), conn) @@ -274,46 +274,164 @@ class FinancialDataCollectorV2: return [] def fetch_balance_sheet(self, stock_code: str, periods: int = 21) -> List[Dict]: - """获取资产负债表数据""" + """获取资产负债表数据 - 支持API自动切换 (G→B→S→I)""" date_filter = self.build_date_filter(stock_code, periods) - url = f'https://datacenter.eastmoney.com/securities/api/data/get?type=RPT_F10_FINANCE_GBALANCE&sty=F10_FINANCE_GBALANCE&filter={date_filter}&p=1&ps={periods}&sr=-1&st=REPORT_DATE&source=HSF10&client=PC&v=012481899342117453' + + # 先尝试G系列API + g_url = f'https://datacenter.eastmoney.com/securities/api/data/get?type=RPT_F10_FINANCE_GBALANCE&sty=F10_FINANCE_GBALANCE&filter={date_filter}&p=1&ps={periods}&sr=-1&st=REPORT_DATE&source=HSF10&client=PC&v=012481899342117453' headers = {"Content-Type": "application/json"} try: - response = requests.get(url, headers=headers, timeout=30) + response = requests.get(g_url, headers=headers, timeout=30) response.raise_for_status() data = response.json() - if 'result' in data and 'data' in data['result']: - logger.info(f"成功获取资产负债表数据,共 {len(data['result']['data'])} 个报告期") - return data['result']['data'] + # 检查G系列API是否返回有效数据 + if data.get('code') == 9201 or data.get('success') == False or not data.get('result') or not data.get('result', {}).get('data'): + logger.info(f"G系列API返回空数据,尝试B系列API - {stock_code}") + + # 切换到B系列API + b_url = f'https://datacenter.eastmoney.com/securities/api/data/get?type=RPT_F10_FINANCE_BBALANCE&sty=F10_FINANCE_BBALANCE&filter={date_filter}&p=1&ps={periods}&sr=-1&st=REPORT_DATE&source=HSF10&client=PC&v=08691713756184818' + + response = requests.get(b_url, headers=headers, timeout=30) + response.raise_for_status() + data = response.json() + + # 检查B系列API是否返回有效数据 + if data.get('code') == 9201 or data.get('success') == False or not data.get('result') or not data.get('result', {}).get('data'): + logger.info(f"B系列API也返回空数据,尝试S系列API - {stock_code}") + + # 切换到S系列API (证券公司) + s_url = f'https://datacenter.eastmoney.com/securities/api/data/get?type=RPT_F10_FINANCE_SBALANCE&sty=F10_FINANCE_SBALANCE&filter={date_filter}&p=1&ps={periods}&sr=-1&st=REPORT_DATE&source=HSF10&client=PC&v=08691713756184818' + + response = requests.get(s_url, headers=headers, timeout=30) + response.raise_for_status() + data = response.json() + + # 检查S系列API是否返回有效数据 + if data.get('code') == 9201 or data.get('success') == False or not data.get('result') or not data.get('result', {}).get('data'): + logger.info(f"S系列API也返回空数据,尝试I系列API - {stock_code}") + + # 切换到I系列API + i_url = f'https://datacenter.eastmoney.com/securities/api/data/get?type=RPT_F10_FINANCE_IBALANCE&sty=F10_FINANCE_IBALANCE&filter={date_filter}&p=1&ps={periods}&sr=-1&st=REPORT_DATE&source=HSF10&client=PC&v=08691713756184818' + + response = requests.get(i_url, headers=headers, timeout=30) + response.raise_for_status() + data = response.json() + + if 'result' in data and data['result'] and 'data' in data['result']: + logger.info(f"I系列API成功获取资产负债表数据,共 {len(data['result']['data'])} 个报告期") + return data['result']['data'] + else: + logger.warning(f"I系列API也无法获取资产负债表数据 - {stock_code}") + return [] + else: + # S系列API成功 + if 'result' in data and data['result'] and 'data' in data['result']: + logger.info(f"S系列API成功获取资产负债表数据,共 {len(data['result']['data'])} 个报告期") + return data['result']['data'] + else: + logger.warning(f"S系列API资产负债表数据格式异常 - {stock_code}") + return [] + else: + # B系列API成功 + if 'result' in data and data['result'] and 'data' in data['result']: + logger.info(f"B系列API成功获取资产负债表数据,共 {len(data['result']['data'])} 个报告期") + return data['result']['data'] + else: + logger.warning(f"B系列API资产负债表数据格式异常 - {stock_code}") + return [] else: - logger.warning("资产负债表数据格式异常") - return [] + # G系列API成功 + if 'result' in data and 'data' in data['result']: + logger.info(f"G系列API成功获取资产负债表数据,共 {len(data['result']['data'])} 个报告期") + return data['result']['data'] + else: + logger.warning("G系列API资产负债表数据格式异常") + return [] except Exception as e: logger.error(f"获取资产负债表失败: {str(e)}") return [] def fetch_cash_flow_statement(self, stock_code: str, periods: int = 21) -> List[Dict]: - """获取现金流量表数据""" + """获取现金流量表数据 - 支持API自动切换 (G→B→S→I)""" date_filter = self.build_date_filter(stock_code, periods) - url = f'https://datacenter.eastmoney.com/securities/api/data/get?type=RPT_F10_FINANCE_GCASHFLOW&sty=APP_F10_GCASHFLOW&filter={date_filter}&p=1&ps={periods}&sr=-1&st=REPORT_DATE&source=HSF10&client=PC&v=04664977872701077' + + # 先尝试G系列API + g_url = f'https://datacenter.eastmoney.com/securities/api/data/get?type=RPT_F10_FINANCE_GCASHFLOW&sty=APP_F10_GCASHFLOW&filter={date_filter}&p=1&ps={periods}&sr=-1&st=REPORT_DATE&source=HSF10&client=PC&v=04664977872701077' headers = {"Content-Type": "application/json"} try: - response = requests.get(url, headers=headers, timeout=30) + response = requests.get(g_url, headers=headers, timeout=30) response.raise_for_status() data = response.json() - if 'result' in data and 'data' in data['result']: - logger.info(f"成功获取现金流量表数据,共 {len(data['result']['data'])} 个报告期") - return data['result']['data'] + # 检查G系列API是否返回有效数据 + if data.get('code') == 9201 or data.get('success') == False or not data.get('result') or not data.get('result', {}).get('data'): + logger.info(f"G系列API返回空数据,尝试B系列API - {stock_code}") + + # 切换到B系列API + b_url = f'https://datacenter.eastmoney.com/securities/api/data/get?type=RPT_F10_FINANCE_BCASHFLOW&sty=APP_F10_BCASHFLOW&filter={date_filter}&p=1&ps={periods}&sr=-1&st=REPORT_DATE&source=HSF10&client=PC&v=03391901368547232' + + response = requests.get(b_url, headers=headers, timeout=30) + response.raise_for_status() + data = response.json() + + # 检查B系列API是否返回有效数据 + if data.get('code') == 9201 or data.get('success') == False or not data.get('result') or not data.get('result', {}).get('data'): + logger.info(f"B系列API也返回空数据,尝试S系列API - {stock_code}") + + # 切换到S系列API (证券公司) + s_url = f'https://datacenter.eastmoney.com/securities/api/data/get?type=RPT_F10_FINANCE_SCASHFLOW&sty=APP_F10_SCASHFLOW&filter={date_filter}&p=1&ps={periods}&sr=-1&st=REPORT_DATE&source=HSF10&client=PC&v=03391901368547232' + + response = requests.get(s_url, headers=headers, timeout=30) + response.raise_for_status() + data = response.json() + + # 检查S系列API是否返回有效数据 + if data.get('code') == 9201 or data.get('success') == False or not data.get('result') or not data.get('result', {}).get('data'): + logger.info(f"S系列API也返回空数据,尝试I系列API - {stock_code}") + + # 切换到I系列API + i_url = f'https://datacenter.eastmoney.com/securities/api/data/get?type=RPT_F10_FINANCE_ICASHFLOW&sty=APP_F10_ICASHFLOW&filter={date_filter}&p=1&ps={periods}&sr=-1&st=REPORT_DATE&source=HSF10&client=PC&v=03391901368547232' + + response = requests.get(i_url, headers=headers, timeout=30) + response.raise_for_status() + data = response.json() + + if 'result' in data and data['result'] and 'data' in data['result']: + logger.info(f"I系列API成功获取现金流量表数据,共 {len(data['result']['data'])} 个报告期") + return data['result']['data'] + else: + logger.warning(f"I系列API也无法获取现金流量表数据 - {stock_code}") + return [] + else: + # S系列API成功 + if 'result' in data and data['result'] and 'data' in data['result']: + logger.info(f"S系列API成功获取现金流量表数据,共 {len(data['result']['data'])} 个报告期") + return data['result']['data'] + else: + logger.warning(f"S系列API现金流量表数据格式异常 - {stock_code}") + return [] + else: + # B系列API成功 + if 'result' in data and data['result'] and 'data' in data['result']: + logger.info(f"B系列API成功获取现金流量表数据,共 {len(data['result']['data'])} 个报告期") + return data['result']['data'] + else: + logger.warning(f"B系列API现金流量表数据格式异常 - {stock_code}") + return [] else: - logger.warning("现金流量表数据格式异常") - return [] + # G系列API成功 + if 'result' in data and 'data' in data['result']: + logger.info(f"G系列API成功获取现金流量表数据,共 {len(data['result']['data'])} 个报告期") + return data['result']['data'] + else: + logger.warning("G系列API现金流量表数据格式异常") + return [] except Exception as e: logger.error(f"获取现金流量表失败: {str(e)}") @@ -421,9 +539,124 @@ class FinancialDataCollectorV2: logger.error(f"保存数据到MongoDB失败: {str(e)}") return False + def check_missing_data(self, stock_code: str) -> List[str]: + """ + 检查MongoDB中哪些报告期的资产负债表或现金流量表数据为空 + + Args: + stock_code: 股票代码 + + Returns: + List[str]: 需要更新的报告期列表 + """ + try: + # 查询该股票的所有记录 + records = list(self.collection.find({'stock_code': stock_code})) + + missing_periods = [] + + for record in records: + balance_empty = not record.get('balance_sheet') or record.get('balance_sheet') == {} + cash_empty = not record.get('cash_flow_statement') or record.get('cash_flow_statement') == {} + + # 如果资产负债表或现金流量表为空,则需要更新 + if balance_empty or cash_empty: + missing_periods.append(record.get('report_date')) + logger.debug(f"发现需要更新的数据: {stock_code} - {record.get('report_date')} (资产负债表空: {balance_empty}, 现金流量表空: {cash_empty})") + + if missing_periods: + logger.info(f"股票 {stock_code} 有 {len(missing_periods)} 个报告期需要更新数据") + else: + logger.info(f"股票 {stock_code} 的数据完整,无需更新") + + return missing_periods + + except Exception as e: + logger.error(f"检查缺失数据失败: {str(e)}") + return [] + + def update_missing_financial_data(self, stock_code: str, missing_periods: List[str]) -> bool: + """ + 更新缺失的财务数据(只更新资产负债表和现金流量表) + + Args: + stock_code: 股票代码 + missing_periods: 需要更新的报告期列表 + + Returns: + bool: 是否更新成功 + """ + try: + if not missing_periods: + return True + + logger.info(f"开始更新股票 {stock_code} 缺失的财务数据") + + # 获取资产负债表和现金流量表数据 + balance_data = self.fetch_balance_sheet(stock_code, periods=21) + time.sleep(1) + + cash_data = self.fetch_cash_flow_statement(stock_code, periods=21) + time.sleep(1) + + # 创建按报告日期索引的字典 + balance_dict = {item['REPORT_DATE'][:10]: item for item in balance_data if item.get('REPORT_DATE')} + cash_dict = {item['REPORT_DATE'][:10]: item for item in cash_data if item.get('REPORT_DATE')} + + updated_count = 0 + + for report_date in missing_periods: + try: + # 查找当前记录 + current_record = self.collection.find_one({ + 'stock_code': stock_code, + 'report_date': report_date + }) + + if not current_record: + logger.warning(f"未找到记录: {stock_code} - {report_date}") + continue + + # 准备更新的字段 + update_fields = {} + + # 检查是否需要更新资产负债表 + balance_empty = not current_record.get('balance_sheet') or current_record.get('balance_sheet') == {} + if balance_empty and report_date in balance_dict: + update_fields['balance_sheet'] = balance_dict[report_date] + logger.debug(f"更新资产负债表: {stock_code} - {report_date}") + + # 检查是否需要更新现金流量表 + cash_empty = not current_record.get('cash_flow_statement') or current_record.get('cash_flow_statement') == {} + if cash_empty and report_date in cash_dict: + update_fields['cash_flow_statement'] = cash_dict[report_date] + logger.debug(f"更新现金流量表: {stock_code} - {report_date}") + + # 如果有字段需要更新 + if update_fields: + update_fields['collect_time'] = datetime.datetime.now() # 更新采集时间 + + self.collection.update_one( + {'stock_code': stock_code, 'report_date': report_date}, + {'$set': update_fields} + ) + updated_count += 1 + logger.info(f"成功更新: {stock_code} - {report_date}") + + except Exception as e: + logger.error(f"更新记录失败: {stock_code} - {report_date} - {str(e)}") + continue + + logger.info(f"股票 {stock_code} 更新完成,共更新 {updated_count} 个报告期") + return True + + except Exception as e: + logger.error(f"更新缺失财务数据失败: {str(e)}") + return False + def collect_financial_data(self, stock_code: str, periods: int = 21) -> bool: """ - 采集单只股票的财务数据 + 采集单只股票的财务数据 - 增量更新模式 Args: stock_code: 股票代码,如'300750.SZ' @@ -433,37 +666,20 @@ class FinancialDataCollectorV2: bool: 是否采集成功 """ try: - logger.info(f"开始采集股票 {stock_code} 的财务数据({periods}个报告期)") + logger.info(f"开始检查股票 {stock_code} 的财务数据") - # 获取三张财务报表数据 - profit_data = self.fetch_profit_statement(stock_code, periods) - time.sleep(1) # 避免请求过于频繁 + # 检查哪些报告期的数据缺失 + missing_periods = self.check_missing_data(stock_code) - balance_data = self.fetch_balance_sheet(stock_code, periods) - time.sleep(1) + if not missing_periods: + logger.info(f"股票 {stock_code} 数据完整,跳过") + return True - cash_data = self.fetch_cash_flow_statement(stock_code, periods) - time.sleep(1) - - # 检查至少有一张表有数据 - if not any([profit_data, balance_data, cash_data]): - logger.error(f"股票 {stock_code} 没有获取到任何财务数据") - return False - - # 处理财务数据 - financial_data_list = self.process_financial_data( - stock_code, profit_data, balance_data, cash_data - ) - - if not financial_data_list: - logger.error(f"股票 {stock_code} 的财务数据处理失败") - return False - - # 保存到MongoDB - success = self.save_to_mongodb(financial_data_list) + # 更新缺失的数据 + success = self.update_missing_financial_data(stock_code, missing_periods) if success: - logger.info(f"股票 {stock_code} 的财务数据采集完成") + logger.info(f"股票 {stock_code} 的财务数据更新完成") return success @@ -473,19 +689,19 @@ class FinancialDataCollectorV2: def batch_collect_financial_data(self, stock_codes: List[str], periods: int = 21) -> Dict: """ - 批量采集多只股票的财务数据 + 批量更新多只股票的缺失财务数据 Args: stock_codes: 股票代码列表 periods: 获取多少个报告期,默认21个季度 Returns: - Dict: 采集结果统计 + Dict: 更新结果统计 """ - results = {'success': 0, 'failed': 0, 'failed_stocks': []} + results = {'success': 0, 'failed': 0, 'failed_stocks': [], 'skipped': 0} total_stocks = len(stock_codes) - logger.info(f"开始批量采集 {total_stocks} 只股票的财务数据") + logger.info(f"开始批量检查和更新 {total_stocks} 只股票的财务数据") for index, stock_code in enumerate(stock_codes, 1): try: @@ -496,11 +712,11 @@ class FinancialDataCollectorV2: success = self.collect_financial_data(stock_code, periods) if success: results['success'] += 1 - logger.info(f"SUCCESS [{index}/{total_stocks}] {stock_code} 采集成功") + logger.info(f"SUCCESS [{index}/{total_stocks}] {stock_code} 处理成功") else: results['failed'] += 1 results['failed_stocks'].append(stock_code) - logger.warning(f"FAILED [{index}/{total_stocks}] {stock_code} 采集失败") + logger.warning(f"FAILED [{index}/{total_stocks}] {stock_code} 处理失败") # 每只股票之间暂停一下,避免请求过于频繁 time.sleep(2) @@ -519,7 +735,7 @@ class FinancialDataCollectorV2: continue success_rate = (results['success'] / total_stocks) * 100 - logger.info(f"批量采集完成: 成功{results['success']}只,失败{results['failed']}只,成功率: {success_rate:.2f}%") + logger.info(f"批量更新完成: 成功{results['success']}只,失败{results['failed']}只,成功率: {success_rate:.2f}%") if results['failed_stocks']: logger.info(f"失败的股票数量: {len(results['failed_stocks'])}") @@ -541,7 +757,7 @@ class FinancialDataCollectorV2: def main(): - """主函数 - 批量采集所有股票的财务数据""" + """主函数 - 批量更新所有股票的缺失财务数据""" collector = FinancialDataCollectorV2() try: @@ -555,30 +771,32 @@ def main(): logger.info(f"从数据库获取到 {len(stock_codes)} 只股票") - # 可以选择采集所有股票或者部分股票进行测试 + # 可以选择处理所有股票或者部分股票进行测试 # 如果要测试,可以取前几只股票 - # 测试模式:只采集前10只股票 - TEST_MODE = False # 设置为False将采集所有股票 + # 测试模式:只处理前10只股票 + TEST_MODE = False # 设置为False将处理所有股票 if TEST_MODE: test_count = min(10, len(stock_codes)) # 最多取10只股票测试 stock_codes = stock_codes[:test_count] - logger.info(f"TEST MODE: 仅采集前 {test_count} 只股票") + logger.info(f"TEST MODE: 仅处理前 {test_count} 只股票") else: - logger.info(f"PRODUCTION MODE: 将采集全部 {len(stock_codes)} 只股票") + logger.info(f"PRODUCTION MODE: 将处理全部 {len(stock_codes)} 只股票") - logger.info(f"开始批量采集 {len(stock_codes)} 只股票的财务数据") + logger.info(f"开始批量检查和更新 {len(stock_codes)} 只股票的财务数据") + logger.info("注意: 本次运行为增量更新模式,只会更新缺失的资产负债表和现金流量表数据") - # 批量采集 + # 批量更新 results = collector.batch_collect_financial_data(stock_codes, periods=21) # 输出最终结果 print(f"\n{'='*50}") - print(f"批量采集完成统计") + print(f"批量更新完成统计") print(f"{'='*50}") - print(f"SUCCESS 成功采集: {results['success']} 只股票") - print(f"FAILED 采集失败: {results['failed']} 只股票") + print(f"SUCCESS 成功处理: {results['success']} 只股票") + print(f"FAILED 处理失败: {results['failed']} 只股票") print(f"SUCCESS RATE 成功率: {(results['success'] / len(stock_codes) * 100):.2f}%") + print(f"\n说明: 成功处理包括数据完整(无需更新)和成功更新缺失数据的股票") if results['failed_stocks']: print(f"\n失败的股票列表:") @@ -593,7 +811,7 @@ def main(): logger.info("用户中断程序执行") print("\n警告: 程序被用户中断") except Exception as e: - logger.error(f"采集过程中出现错误: {str(e)}") + logger.error(f"更新过程中出现错误: {str(e)}") print(f"\n错误: 程序执行出错: {str(e)}") finally: collector.close_connection() diff --git a/src/quantitative_analysis/financial_indicator_analyzer.py b/src/quantitative_analysis/financial_indicator_analyzer.py new file mode 100644 index 0000000..d53c5f9 --- /dev/null +++ b/src/quantitative_analysis/financial_indicator_analyzer.py @@ -0,0 +1,1328 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- + +""" +财务指标分析器 +用于分析MongoDB中eastmoney_financial_data_v2集合的财务数据 +只返回具体的数值信息,不进行评估 +""" + +import sys +import pymongo +import datetime +import logging +from typing import Dict, List, Optional, Union +from pathlib import Path +from sqlalchemy import create_engine, text +import numpy as np + +# 添加项目根路径到Python路径 +project_root = Path(__file__).parent.parent.parent +sys.path.append(str(project_root)) + +# 导入配置 +from src.valuation_analysis.config import MONGO_CONFIG2, DB_URL + +# 导入股票代码格式转换工具 +from tools.stock_code_formatter import StockCodeFormatter + +# 设置日志 +logging.basicConfig( + level=logging.INFO, + format='%(asctime)s - %(name)s - %(levelname)s - %(message)s' +) +logger = logging.getLogger(__name__) + + +class FinancialIndicatorAnalyzer: + """财务指标分析器""" + + def __init__(self): + """初始化""" + # MongoDB连接 + self.mongo_client = None + self.db = None + self.collection_name = 'eastmoney_financial_data_v2' + self.collection = None + + # MySQL连接 + self.mysql_engine = None + + # 股票代码格式转换器 + self.code_formatter = StockCodeFormatter() + + self.connect_mongodb() + self.connect_mysql() + + def connect_mongodb(self): + """连接MongoDB数据库""" + try: + self.mongo_client = pymongo.MongoClient( + host=MONGO_CONFIG2['host'], + port=MONGO_CONFIG2['port'], + username=MONGO_CONFIG2['username'], + password=MONGO_CONFIG2['password'] + ) + self.db = self.mongo_client[MONGO_CONFIG2['db']] + self.collection = self.db[self.collection_name] + + # 测试连接 + self.mongo_client.admin.command('ping') + logger.info(f"MongoDB连接成功,使用集合: {self.collection_name}") + + except Exception as e: + logger.error(f"MongoDB连接失败: {str(e)}") + raise + + def connect_mysql(self): + """连接MySQL数据库""" + try: + self.mysql_engine = create_engine( + DB_URL, + pool_size=5, + max_overflow=10, + pool_recycle=3600 + ) + + # 测试连接 + with self.mysql_engine.connect() as conn: + conn.execute(text("SELECT 1")) + + logger.info("MySQL数据库连接成功") + + except Exception as e: + logger.error(f"MySQL数据库连接失败: {str(e)}") + raise + + def normalize_stock_code(self, stock_code: str) -> str: + """ + 标准化股票代码格式,转换为数据库中使用的格式 (如 SZ300661) + + Args: + stock_code: 输入的股票代码,支持多种格式: + - 300661.SZ -> SZ300661 + - 300661 -> SZ300661 + - SZ300661 -> SZ300661 (已是标准格式) + + Returns: + str: 标准化后的股票代码 + """ + stock_code = stock_code.strip().upper() + + if '.' in stock_code: # 处理 300661.SZ 格式 + parts = stock_code.split('.') + if len(parts) == 2: + stock_code = f"{parts[1]}{parts[0]}" + elif stock_code.isdigit(): # 处理 300661 格式 + if stock_code.startswith(('60', '68')): + stock_code = f"SH{stock_code}" + elif stock_code.startswith(('00', '30', '20')): + stock_code = f"SZ{stock_code}" + elif stock_code.startswith(('8', '43', '87')): + stock_code = f"BJ{stock_code}" + # 如果已经是 SZ300661 格式,则不需要处理 + + return stock_code + + def get_latest_pe_pb_data(self, stock_code: str) -> Optional[Dict]: + """ + 从gp_day_data表获取股票最新的PE和PB数据 + + Args: + stock_code: 股票代码,支持多种格式 (300661.SZ, 300661, SZ300661) + + Returns: + Dict: 包含pe和pb的字典,如果没有找到则返回None + """ + try: + # 标准化股票代码格式 + normalized_code = self.code_formatter.to_prefix_format(stock_code) + + query = text(""" + SELECT pe, pb, `timestamp` + FROM gp_day_data + WHERE symbol = :stock_code + ORDER BY `timestamp` DESC + LIMIT 1 + """) + + with self.mysql_engine.connect() as conn: + result = conn.execute(query, {"stock_code": normalized_code}).fetchone() + + if result: + return { + 'pe': float(result[0]) if result[0] is not None else None, + 'pb': float(result[1]) if result[1] is not None else None, + 'timestamp': result[2] + } + else: + logger.warning(f"未找到股票 {stock_code} (标准化后: {normalized_code}) 的PE/PB数据") + return None + + except Exception as e: + logger.error(f"获取股票 {stock_code} PE/PB数据失败: {str(e)}") + return None + + def get_financial_data(self, stock_code: str, report_date: Optional[str] = None) -> Optional[Dict]: + """ + 获取指定股票的财务数据 + + Args: + stock_code: 股票代码 + report_date: 报告日期,格式 'YYYY-MM-DD',如果为None则获取最新数据 + + Returns: + Dict: 财务数据,如果没有找到则返回None + """ + try: + formatted_stock_code = self.code_formatter.to_dot_format(stock_code) + if report_date: + # 查询指定日期的数据 + query = { + 'stock_code': formatted_stock_code, + 'report_date': report_date + } + data = self.collection.find_one(query) + else: + # 查询最新数据 + query = {'stock_code': formatted_stock_code} + data = self.collection.find_one( + query, + sort=[('report_date', -1)] + ) + + return data + + except Exception as e: + logger.error(f"获取财务数据失败 {stock_code} - {report_date}: {str(e)}") + return None + + def safe_divide(self, numerator: Union[float, int, None], denominator: Union[float, int, None]) -> Optional[float]: + """ + 安全除法,处理None值和零除错误 + + Args: + numerator: 分子 + denominator: 分母 + + Returns: + float: 计算结果,如果无法计算则返回None + """ + try: + if numerator is None or denominator is None or denominator == 0: + return None + return float(numerator) / float(denominator) + except (TypeError, ValueError, ZeroDivisionError): + return None + + # ==================== 盈利能力指标 ==================== + + def analyze_roe(self, stock_code: str, report_date: Optional[str] = None) -> Optional[float]: + """ + 分析净资产收益率(ROE) + 公式: ROE = 归母净利润 / 归母股东权益 + + Args: + stock_code: 股票代码 + report_date: 报告日期,默认最新 + + Returns: + float: ROE值(%),如果无法计算则返回None + """ + try: + data = self.get_financial_data(stock_code, report_date) + if not data: + return None + + # 获取归母净利润 + profit = data.get('profit_statement', {}).get('PARENT_NETPROFIT') + # 获取归母股东权益 + equity = data.get('balance_sheet', {}).get('TOTAL_PARENT_EQUITY') + + roe = self.safe_divide(profit, equity) + if roe: + roe = roe * 100 # 转换为百分比 + + return roe + + except Exception as e: + logger.error(f"分析ROE失败 {stock_code}: {str(e)}") + return None + + def analyze_gross_profit_margin(self, stock_code: str, report_date: Optional[str] = None) -> Optional[float]: + """ + 分析毛利率 + 公式: 毛利率 = (营业收入 - 营业成本) / 营业收入 + + Args: + stock_code: 股票代码 + report_date: 报告日期,默认最新 + + Returns: + float: 毛利率(%),如果无法计算则返回None + """ + try: + fm_stock_code = self.code_formatter.to_dot_format(stock_code) + data = self.get_financial_data(fm_stock_code, report_date) + if not data: + return None + + # 获取营业收入和营业成本 + revenue = data.get('profit_statement', {}).get('OPERATE_INCOME') + cost = data.get('profit_statement', {}).get('OPERATE_COST') + + if revenue and cost: + gross_profit = revenue - cost + margin = self.safe_divide(gross_profit, revenue) + if margin: + margin = margin * 100 # 转换为百分比 + else: + margin = None + + return margin + + except Exception as e: + logger.error(f"分析毛利率失败 {stock_code}: {str(e)}") + return None + + def analyze_net_profit_margin(self, stock_code: str, report_date: Optional[str] = None) -> Optional[float]: + """ + 分析净利率 + 公式: 净利率 = 归母净利润 / 营业收入 + + Args: + stock_code: 股票代码 + report_date: 报告日期,默认最新 + + Returns: + float: 净利率(%),如果无法计算则返回None + """ + try: + data = self.get_financial_data(stock_code, report_date) + if not data: + return None + + # 获取归母净利润和营业收入 + profit = data.get('profit_statement', {}).get('PARENT_NETPROFIT') + revenue = data.get('profit_statement', {}).get('OPERATE_INCOME') + + margin = self.safe_divide(profit, revenue) + if margin: + margin = margin * 100 # 转换为百分比 + + return margin + + except Exception as e: + logger.error(f"分析净利率失败 {stock_code}: {str(e)}") + return None + + # ==================== 成长能力指标 ==================== + + def analyze_revenue_growth(self, stock_code: str, report_date: Optional[str] = None) -> Optional[float]: + """ + 分析营业收入增长率(使用YOY数据) + + Args: + stock_code: 股票代码 + report_date: 报告日期,默认最新 + + Returns: + float: 增长率(%),如果无法获取则返回None + """ + try: + data = self.get_financial_data(stock_code, report_date) + if not data: + return None + + # 获取营业收入同比增长率 + growth_rate = data.get('profit_statement', {}).get('OPERATE_INCOME_YOY') + + return growth_rate + + except Exception as e: + logger.error(f"分析营业收入增长率失败 {stock_code}: {str(e)}") + return None + + def analyze_profit_growth(self, stock_code: str, report_date: Optional[str] = None) -> Optional[float]: + """ + 分析净利润增长率(使用YOY数据) + + Args: + stock_code: 股票代码 + report_date: 报告日期,默认最新 + + Returns: + float: 增长率(%),如果无法获取则返回None + """ + try: + data = self.get_financial_data(stock_code, report_date) + if not data: + return None + + # 获取归母净利润同比增长率 + growth_rate = data.get('profit_statement', {}).get('PARENT_NETPROFIT_YOY') + + return growth_rate + + except Exception as e: + logger.error(f"分析净利润增长率失败 {stock_code}: {str(e)}") + return None + + def analyze_total_assets_growth(self, stock_code: str, report_date: Optional[str] = None) -> Optional[float]: + """ + 分析总资产增长率(使用YOY数据) + + Args: + stock_code: 股票代码 + report_date: 报告日期,默认最新 + + Returns: + float: 增长率(%),如果无法获取则返回None + """ + try: + data = self.get_financial_data(stock_code, report_date) + if not data: + return None + + # 获取总资产同比增长率 + growth_rate = data.get('balance_sheet', {}).get('TOTAL_ASSETS_YOY') + + return growth_rate + + except Exception as e: + logger.error(f"分析总资产增长率失败 {stock_code}: {str(e)}") + return None + + def analyze_growth_capability(self, stock_code: str, report_date: Optional[str] = None) -> Optional[float]: + """ + 分析成长能力指标 + 公式: 成长能力 = 最新净利润增长率 / 过去8个季度净利润同比变化的标准差 + + Args: + stock_code: 股票代码 + report_date: 报告日期,默认最新 + + Returns: + float: 成长能力指标,如果无法计算则返回None + """ + try: + # 将股票代码转换为点分格式 (如 430139.BJ) + formatted_stock_code = self.code_formatter.to_dot_format(stock_code) + if not formatted_stock_code: + logger.error(f"无法格式化股票代码: {stock_code}") + return None + + # 生成需要查询的季度列表(往前推13个季度) + # 原因:需要8个季度计算增长率,每个增长率需要去年同期数据(+4), + # 加上1个季度缓冲:8+4+1=13个季度 + quarters = self._generate_quarters(report_date or "2025-03-31", 13) + + # 获取多个季度的财务数据 + quarterly_data = [] + for quarter in quarters: + data = self.get_financial_data(formatted_stock_code, quarter) + if data: + profit = data.get('profit_statement', {}).get('PARENT_NETPROFIT') + quarterly_data.append({ + 'quarter': quarter, + 'profit': profit + }) + + if len(quarterly_data) < 9: + logger.warning(f"股票 {stock_code} (格式化后: {formatted_stock_code}) 原始季度数据不足({len(quarterly_data)}),无法计算成长能力") + return None + + # 处理季度数据的累积性,计算单季度净利润 + processed_data = self._process_quarterly_profits(quarterly_data) + + if len(processed_data) < 9: + logger.warning(f"股票 {stock_code} (格式化后: {formatted_stock_code}) 处理后季度数据不足({len(processed_data)})") + return None + + # 计算每个季度的同比增长率 + growth_rates = self._calculate_yoy_growth_rates(processed_data) + + if len(growth_rates) < 8: + logger.warning(f"股票 {stock_code} (格式化后: {formatted_stock_code}) 同比增长率数据不足") + return None + + # 取最新8个季度的增长率计算标准差 + recent_8_quarters = growth_rates[-8:] + + # 最新的净利润增长率 + latest_growth_rate = recent_8_quarters[-1] + + # 计算标准差 + std_dev = np.std(recent_8_quarters) + + if std_dev == 0: + return None # 避免除零错误 + + # 成长能力 = 净利润增长率 / 标准差 + growth_capability = latest_growth_rate / std_dev + + return growth_capability + + except Exception as e: + logger.error(f"分析成长能力失败 {stock_code}: {str(e)}") + return None + + def _generate_quarters(self, start_date: str, num_quarters: int) -> List[str]: + """ + 生成季度列表 + + Args: + start_date: 起始日期 (YYYY-MM-DD) + num_quarters: 需要的季度数量 + + Returns: + List[str]: 季度列表,格式为 YYYY-MM-DD + """ + from datetime import datetime, timedelta + import calendar + + quarters = [] + year, month, day = map(int, start_date.split('-')) + + # 确定起始季度 + if month <= 3: + quarter = 1 + elif month <= 6: + quarter = 2 + elif month <= 9: + quarter = 3 + else: + quarter = 4 + + current_year = year + current_quarter = quarter + + for _ in range(num_quarters): + # 根据季度生成日期 + if current_quarter == 1: + quarter_date = f"{current_year}-03-31" + elif current_quarter == 2: + quarter_date = f"{current_year}-06-30" + elif current_quarter == 3: + quarter_date = f"{current_year}-09-30" + else: # quarter == 4 + quarter_date = f"{current_year}-12-31" + + quarters.append(quarter_date) + + # 移动到上一个季度 + current_quarter -= 1 + if current_quarter == 0: + current_quarter = 4 + current_year -= 1 + + return quarters + + def _process_quarterly_profits(self, quarterly_data: List[Dict]) -> List[Dict]: + """ + 处理季度数据的累积性,计算单季度净利润 + + Args: + quarterly_data: 包含季度和累积利润的数据列表 + + Returns: + List[Dict]: 处理后的单季度利润数据 + """ + # 按季度排序(从旧到新) + quarterly_data.sort(key=lambda x: x['quarter']) + + processed_data = [] + + # 创建一个字典来快速查找季度数据 + quarter_dict = {data['quarter']: data['profit'] for data in quarterly_data if data['profit'] is not None} + + for data in quarterly_data: + quarter = data['quarter'] + cumulative_profit = data['profit'] + + if cumulative_profit is None: + continue + + # 判断季度类型 + month = quarter.split('-')[1] + + if month == '03': # 一季报,直接使用 + single_quarter_profit = cumulative_profit + else: + # 需要减去前面季度的累积值 + if month == '06': # 半年报 = 半年报 - 一季报 + prev_quarter = quarter.replace('-06-30', '-03-31') + elif month == '09': # 三季报 = 三季报 - 半年报 + prev_quarter = quarter.replace('-09-30', '-06-30') + else: # month == '12', 年报 = 年报 - 三季报 + prev_quarter = quarter.replace('-12-31', '-09-30') + + # 查找前一个季度的累积利润 + prev_cumulative_profit = quarter_dict.get(prev_quarter) + + if prev_cumulative_profit is not None: + single_quarter_profit = cumulative_profit - prev_cumulative_profit + else: + # 如果缺少前一季度数据,我们仍然可以尝试使用这个数据 + # 但需要标记它可能不准确 + logger.warning(f"缺少前一季度数据 {prev_quarter},直接使用累积值 {quarter}") + single_quarter_profit = cumulative_profit + + processed_data.append({ + 'quarter': quarter, + 'single_quarter_profit': single_quarter_profit + }) + + return processed_data + + def _calculate_yoy_growth_rates(self, processed_data: List[Dict]) -> List[float]: + """ + 计算同比增长率 + + Args: + processed_data: 处理后的单季度利润数据 + + Returns: + List[float]: 同比增长率列表 + """ + growth_rates = [] + + # 按季度排序 + processed_data.sort(key=lambda x: x['quarter']) + + for i in range(4, len(processed_data)): # 从第5个季度开始计算同比 + current_profit = processed_data[i]['single_quarter_profit'] + prev_year_profit = processed_data[i-4]['single_quarter_profit'] # 去年同期 + + if prev_year_profit is not None and prev_year_profit != 0 and current_profit is not None: + growth_rate = (current_profit - prev_year_profit) / abs(prev_year_profit) * 100 + growth_rates.append(growth_rate) + + return growth_rates + + # ==================== 营运效率指标 ==================== + + def analyze_admin_expense_ratio(self, stock_code: str, report_date: Optional[str] = None) -> Optional[float]: + """ + 分析管理费用/营业收入占比 + + Args: + stock_code: 股票代码 + report_date: 报告日期,默认最新 + + Returns: + float: 管理费用率(%),如果无法计算则返回None + """ + try: + formatted_stock_code = self.code_formatter.to_dot_format(stock_code) + data = self.get_financial_data(formatted_stock_code, report_date) + if not data: + return None + + # 获取管理费用和营业收入 + admin_expense = data.get('profit_statement', {}).get('MANAGE_EXPENSE') + revenue = data.get('profit_statement', {}).get('OPERATE_INCOME') + + ratio = self.safe_divide(admin_expense, revenue) + if ratio: + ratio = ratio * 100 # 转换为百分比 + + return ratio + + except Exception as e: + logger.error(f"分析管理费用率失败 {stock_code}: {str(e)}") + return None + + def analyze_rd_expense_ratio(self, stock_code: str, report_date: Optional[str] = None) -> Optional[float]: + """ + 分析研发费用/营业收入占比 + + Args: + stock_code: 股票代码 + report_date: 报告日期,默认最新 + + Returns: + float: 研发费用率(%),如果无法计算则返回None + """ + try: + data = self.get_financial_data(stock_code, report_date) + if not data: + return None + + # 获取研发费用和营业收入 + rd_expense = data.get('profit_statement', {}).get('RESEARCH_EXPENSE') + revenue = data.get('profit_statement', {}).get('OPERATE_INCOME') + + ratio = self.safe_divide(rd_expense, revenue) + if ratio: + ratio = ratio * 100 # 转换为百分比 + + return ratio + + except Exception as e: + logger.error(f"分析研发费用率失败 {stock_code}: {str(e)}") + return None + + def analyze_sales_expense_ratio(self, stock_code: str, report_date: Optional[str] = None) -> Optional[float]: + """ + 分析销售费用/营业收入占比 + + Args: + stock_code: 股票代码 + report_date: 报告日期,默认最新 + + Returns: + float: 销售费用率(%),如果无法计算则返回None + """ + try: + data = self.get_financial_data(stock_code, report_date) + if not data: + return None + + # 获取销售费用和营业收入 + sales_expense = data.get('profit_statement', {}).get('SALE_EXPENSE') + revenue = data.get('profit_statement', {}).get('OPERATE_INCOME') + + ratio = self.safe_divide(sales_expense, revenue) + if ratio: + ratio = ratio * 100 # 转换为百分比 + + return ratio + + except Exception as e: + logger.error(f"分析销售费用率失败 {stock_code}: {str(e)}") + return None + + # ==================== 规模扩张指标 ==================== + + def analyze_asset_liability_ratio(self, stock_code: str, report_date: Optional[str] = None) -> Optional[float]: + """ + 分析资产负债率 + 公式: 资产负债率 = 总负债 / 总资产 + + Args: + stock_code: 股票代码 + report_date: 报告日期,默认最新 + + Returns: + float: 资产负债率(%),如果无法计算则返回None + """ + try: + formatted_stock_code = self.code_formatter.to_dot_format(stock_code) + data = self.get_financial_data(formatted_stock_code, report_date) + if not data: + return None + + # 获取总负债和总资产 + total_liabilities = data.get('balance_sheet', {}).get('TOTAL_LIABILITIES') + total_assets = data.get('balance_sheet', {}).get('TOTAL_ASSETS') + + ratio = self.safe_divide(total_liabilities, total_assets) + if ratio: + ratio = ratio * 100 # 转换为百分比 + + return ratio + + except Exception as e: + logger.error(f"分析资产负债率失败 {stock_code}: {str(e)}") + return None + + def analyze_current_ratio(self, stock_code: str, report_date: Optional[str] = None) -> Optional[float]: + """ + 分析流动比率 + 公式: 流动比率 = 流动资产 / 流动负债 + + Args: + stock_code: 股票代码 + report_date: 报告日期,默认最新 + + Returns: + float: 流动比率,如果无法计算则返回None + """ + try: + data = self.get_financial_data(stock_code, report_date) + if not data: + return None + + # 获取流动资产和流动负债 + current_assets = data.get('balance_sheet', {}).get('TOTAL_CURRENT_ASSETS') + current_liabilities = data.get('balance_sheet', {}).get('TOTAL_CURRENT_LIAB') + + ratio = self.safe_divide(current_assets, current_liabilities) + + return ratio + + except Exception as e: + logger.error(f"分析流动比率失败 {stock_code}: {str(e)}") + return None + + def analyze_quick_ratio(self, stock_code: str, report_date: Optional[str] = None) -> Optional[float]: + """ + 分析速动比率 + 公式: 速动比率 = (流动资产 - 存货) / 流动负债 + + Args: + stock_code: 股票代码 + report_date: 报告日期,默认最新 + + Returns: + float: 速动比率,如果无法计算则返回None + """ + try: + data = self.get_financial_data(stock_code, report_date) + if not data: + return None + + # 获取流动资产、存货和流动负债 + current_assets = data.get('balance_sheet', {}).get('TOTAL_CURRENT_ASSETS') + inventory = data.get('balance_sheet', {}).get('INVENTORY', 0) + current_liabilities = data.get('balance_sheet', {}).get('TOTAL_CURRENT_LIAB') + + if current_assets and current_liabilities: + quick_assets = current_assets - (inventory or 0) + ratio = self.safe_divide(quick_assets, current_liabilities) + else: + ratio = None + + return ratio + + except Exception as e: + logger.error(f"分析速动比率失败 {stock_code}: {str(e)}") + return None + + # ==================== 研发投入指标 ==================== + + def analyze_rd_investment_growth(self, stock_code: str, report_date: Optional[str] = None) -> Optional[float]: + """ + 分析研发费用增长率(使用YOY数据) + + Args: + stock_code: 股票代码 + report_date: 报告日期,默认最新 + + Returns: + float: 增长率(%),如果无法获取则返回None + """ + try: + data = self.get_financial_data(stock_code, report_date) + if not data: + return None + + # 获取研发费用同比增长率 + growth_rate = data.get('profit_statement', {}).get('RESEARCH_EXPENSE_YOY') + + return growth_rate + + except Exception as e: + logger.error(f"分析研发费用增长率失败 {stock_code}: {str(e)}") + return None + + def analyze_rd_intensity(self, stock_code: str, report_date: Optional[str] = None) -> Optional[float]: + """ + 分析研发强度(研发费用/总资产) + + Args: + stock_code: 股票代码 + report_date: 报告日期,默认最新 + + Returns: + float: 研发强度(%),如果无法计算则返回None + """ + try: + data = self.get_financial_data(stock_code, report_date) + if not data: + return None + + # 获取研发费用和总资产 + rd_expense = data.get('profit_statement', {}).get('RESEARCH_EXPENSE') + total_assets = data.get('balance_sheet', {}).get('TOTAL_ASSETS') + + ratio = self.safe_divide(rd_expense, total_assets) + if ratio: + ratio = ratio * 100 # 转换为百分比 + + return ratio + + except Exception as e: + logger.error(f"分析研发强度失败 {stock_code}: {str(e)}") + return None + + # ==================== 供应商客户占比指标 ==================== + + def analyze_supplier_concentration(self, stock_code: str, report_date: Optional[str] = None) -> Optional[float]: + """ + 分析前五供应商占比 + + Args: + stock_code: 股票代码 + report_date: 报告日期,默认最新 + + Returns: + float: 供应商集中度(%),如果无法获取则返回None + """ + try: + formatted_stock_code = self.code_formatter.to_dot_format(stock_code) + data = self.get_financial_data(formatted_stock_code, report_date) + if not data: + return None + + # 获取前五供应商占比 + supplier_ratio = data.get('top_five_suppliers_ratio') + + if supplier_ratio: + supplier_ratio = supplier_ratio * 100 # 转换为百分比 + + return supplier_ratio + + except Exception as e: + logger.error(f"分析供应商集中度失败 {stock_code}: {str(e)}") + return None + + def analyze_customer_concentration(self, stock_code: str, report_date: Optional[str] = None) -> Optional[float]: + """ + 分析前五客户占比 + + Args: + stock_code: 股票代码 + report_date: 报告日期,默认最新 + + Returns: + float: 客户集中度(%),如果无法获取则返回None + """ + try: + formatted_stock_code = self.code_formatter.to_dot_format(stock_code) + data = self.get_financial_data(formatted_stock_code, report_date) + if not data: + return None + + # 获取前五客户占比 + customer_ratio = data.get('top_five_customers_ratio') + + if customer_ratio: + customer_ratio = customer_ratio * 100 # 转换为百分比 + + return customer_ratio + + except Exception as e: + logger.error(f"分析客户集中度失败 {stock_code}: {str(e)}") + return None + + # ==================== 现金流指标 ==================== + + def analyze_operating_cash_flow_ratio(self, stock_code: str, report_date: Optional[str] = None) -> Optional[float]: + """ + 分析经营现金流量比率 + 公式: 经营现金流量比率 = 经营活动现金流量净额 / 流动负债 + + Args: + stock_code: 股票代码 + report_date: 报告日期,默认最新 + + Returns: + float: 经营现金流量比率,如果无法计算则返回None + """ + try: + data = self.get_financial_data(stock_code, report_date) + if not data: + return None + + # 获取经营活动现金流量净额和流动负债 + operating_cash_flow = data.get('cash_flow_statement', {}).get('NETCASH_OPERATE') + current_liabilities = data.get('balance_sheet', {}).get('TOTAL_CURRENT_LIAB') + + ratio = self.safe_divide(operating_cash_flow, current_liabilities) + + return ratio + + except Exception as e: + logger.error(f"分析经营现金流量比率失败 {stock_code}: {str(e)}") + return None + + def analyze_cash_flow_coverage_ratio(self, stock_code: str, report_date: Optional[str] = None) -> Optional[float]: + """ + 分析现金流量覆盖比率 + 公式: 现金流量覆盖比率 = 经营活动现金流量净额 / 归母净利润 + + Args: + stock_code: 股票代码 + report_date: 报告日期,默认最新 + + Returns: + float: 现金流量覆盖比率,如果无法计算则返回None + """ + try: + data = self.get_financial_data(stock_code, report_date) + if not data: + return None + + # 获取经营活动现金流量净额和归母净利润 + operating_cash_flow = data.get('cash_flow_statement', {}).get('NETCASH_OPERATE') + net_profit = data.get('profit_statement', {}).get('PARENT_NETPROFIT') + + ratio = self.safe_divide(operating_cash_flow, net_profit) + + return ratio + + except Exception as e: + logger.error(f"分析现金流量覆盖比率失败 {stock_code}: {str(e)}") + return None + + # ==================== 估值指标 ==================== + + def analyze_pe_ratio(self, stock_code: str, report_date: Optional[str] = None) -> Optional[float]: + """ + 分析PE比率,从gp_day_data表获取最新PE数据 + + Args: + stock_code: 股票代码 + report_date: 报告日期,默认最新(注意:当前只支持获取最新PE数据) + + Returns: + float: PE比率,如果无法获取则返回None + """ + try: + pe_pb_data = self.get_latest_pe_pb_data(stock_code) + if pe_pb_data and pe_pb_data.get('pe') is not None: + return pe_pb_data['pe'] + else: + logger.warning(f"未找到股票 {stock_code} 的PE数据") + return None + + except Exception as e: + logger.error(f"分析PE比率失败 {stock_code}: {str(e)}") + return None + + def analyze_pb_ratio(self, stock_code: str, report_date: Optional[str] = None) -> Optional[float]: + """ + 分析PB比率,从gp_day_data表获取最新PB数据 + + Args: + stock_code: 股票代码 + report_date: 报告日期,默认最新(注意:当前只支持获取最新PB数据) + + Returns: + float: PB比率,如果无法获取则返回None + """ + try: + pe_pb_data = self.get_latest_pe_pb_data(stock_code) + if pe_pb_data and pe_pb_data.get('pb') is not None: + return pe_pb_data['pb'] + else: + logger.warning(f"未找到股票 {stock_code} 的PB数据") + return None + + except Exception as e: + logger.error(f"分析PB比率失败 {stock_code}: {str(e)}") + return None + + def get_all_stocks_pb_data(self) -> Dict[str, float]: + """ + 获取全A股最新的PB数据 + + Returns: + Dict[str, float]: {股票代码: PB值} 的字典 + """ + try: + query = text(""" + SELECT symbol, pb + FROM gp_day_data + WHERE `timestamp` = ( + SELECT MAX(`timestamp`) FROM gp_day_data + ) + AND pb IS NOT NULL + AND pb > 0 + """) + + pb_data = {} + with self.mysql_engine.connect() as conn: + result = conn.execute(query) + for row in result: + symbol = row[0] + pb = float(row[1]) + # 转换为点分格式 + formatted_code = self.code_formatter.to_dot_format(symbol) + if formatted_code: + pb_data[formatted_code] = pb + + logger.info(f"获取到 {len(pb_data)} 只股票的PB数据") + return pb_data + + except Exception as e: + logger.error(f"获取全A股PB数据失败: {str(e)}") + return {} + + def get_all_stocks_roe_data(self, report_date: Optional[str] = None) -> Dict[str, float]: + """ + 获取全A股的ROE数据(使用MongoDB聚合查询优化性能) + + Args: + report_date: 报告日期,默认最新 + + Returns: + Dict[str, float]: {股票代码: ROE值} 的字典 + """ + try: + if report_date: + # 查询指定日期的数据 + match_stage = {"report_date": report_date} + else: + # 查询每只股票的最新数据 + match_stage = {} + + pipeline = [ + {"$match": match_stage}, + { + "$sort": { + "stock_code": 1, + "report_date": -1 + } + } + ] + + # 如果没有指定日期,则获取每只股票的最新数据 + if not report_date: + pipeline.extend([ + { + "$group": { + "_id": "$stock_code", + "latest_data": {"$first": "$$ROOT"} + } + }, + { + "$replaceRoot": {"newRoot": "$latest_data"} + } + ]) + + # 添加ROE计算 + pipeline.extend([ + { + "$addFields": { + "parent_netprofit": { + "$toDouble": "$profit_statement.PARENT_NETPROFIT" + }, + "total_parent_equity": { + "$toDouble": "$balance_sheet.TOTAL_PARENT_EQUITY" + } + } + }, + { + "$match": { + "parent_netprofit": {"$ne": None, "$ne": 0}, + "total_parent_equity": {"$ne": None, "$ne": 0} + } + }, + { + "$addFields": { + "roe": { + "$multiply": [ + {"$divide": ["$parent_netprofit", "$total_parent_equity"]}, + 100 + ] + } + } + }, + { + "$project": { + "stock_code": 1, + "roe": 1 + } + } + ]) + + roe_data = {} + cursor = self.collection.aggregate(pipeline) + + for doc in cursor: + stock_code = doc.get('stock_code') + roe = doc.get('roe') + if stock_code and roe is not None: + roe_data[stock_code] = float(roe) + + logger.info(f"获取到 {len(roe_data)} 只股票的ROE数据") + return roe_data + + except Exception as e: + logger.error(f"获取全A股ROE数据失败: {str(e)}") + return {} + + def calculate_pb_roe_rank_factor(self, stock_code: str, all_pb_data: Dict[str, float], all_roe_data: Dict[str, float]) -> Optional[float]: + """ + 计算单只股票的PB-ROE排名因子 + 公式: Rank(PB_MRQ) - Rank(ROE_TTM) + + Args: + stock_code: 股票代码 + all_pb_data: 全A股PB数据字典 + all_roe_data: 全A股ROE数据字典 + + Returns: + float: PB-ROE排名因子,如果无法计算则返回None + """ + try: + # 标准化股票代码 + formatted_stock_code = self.code_formatter.to_dot_format(stock_code) + if not formatted_stock_code: + return None + + # 计算PB排名(升序,越小越好) + pb_values = list(all_pb_data.values()) + pb_values.sort() + target_pb = all_pb_data[formatted_stock_code] + pb_rank = pb_values.index(target_pb) + 1 + + # 计算ROE排名(降序,越大越好) + roe_values = list(all_roe_data.values()) + roe_values.sort(reverse=True) + target_roe = all_roe_data[formatted_stock_code] + roe_rank = roe_values.index(target_roe) + 1 + + # 计算因子:Rank(PB) - Rank(ROE) + pb_roe_factor = pb_rank - roe_rank + + return float(pb_roe_factor) + + except Exception as e: + logger.error(f"计算股票 {stock_code} PB-ROE排名因子失败: {str(e)}") + return None + + def analyze_pb_roe_rank_factor(self, stock_code: str, report_date: Optional[str] = None) -> Optional[float]: + """ + 分析PB-ROE排名因子(保持向后兼容) + 公式: Rank(PB_MRQ) - Rank(ROE_TTM) + 排名越小越好,因子值越低说明PB估值较低、ROE较高 + + Args: + stock_code: 股票代码 + report_date: 报告日期,默认最新 + + Returns: + float: PB-ROE排名因子,如果无法计算则返回None + """ + try: + # 获取全A股数据 + all_pb_data = self.get_all_stocks_pb_data() + all_roe_data = self.get_all_stocks_roe_data(report_date) + + if not all_pb_data or not all_roe_data: + return None + + return self.calculate_pb_roe_rank_factor(stock_code, all_pb_data, all_roe_data) + + except Exception as e: + logger.error(f"分析PB-ROE排名因子失败 {stock_code}: {str(e)}") + return None + + def analyze_pb_roe(self, stock_code: str, report_date: Optional[str] = None) -> Optional[float]: + """ + 分析PB-ROE指标(原有方法,保持向后兼容) + 公式: PB/ROE,用于评估股票的价值投资潜力 + + Args: + stock_code: 股票代码 + report_date: 报告日期,默认最新 + + Returns: + float: PB-ROE指标,如果无法计算则返回None + """ + try: + # 获取PB值 + pb = self.analyze_pb_ratio(stock_code, report_date) + # 获取ROE值 + roe = self.analyze_roe(stock_code, report_date) + + if pb is not None and roe is not None and roe != 0: + # ROE以百分比形式返回,需要转换为小数 + roe_decimal = roe / 100 + pb_roe = pb / roe_decimal + return pb_roe + else: + logger.warning(f"无法计算股票 {stock_code} 的PB-ROE指标: PB={pb}, ROE={roe}") + return None + + except Exception as e: + logger.error(f"分析PB-ROE指标失败 {stock_code}: {str(e)}") + return None + + def close_connection(self): + """关闭数据库连接""" + try: + if self.mongo_client: + self.mongo_client.close() + logger.info("MongoDB连接已关闭") + except Exception as e: + logger.error(f"关闭MongoDB连接失败: {str(e)}") + + try: + if self.mysql_engine: + self.mysql_engine.dispose() + logger.info("MySQL连接已关闭") + except Exception as e: + logger.error(f"关闭MySQL连接失败: {str(e)}") + + +def main(): + """主函数 - 示例用法""" + analyzer = None + try: + # 创建分析器实例 + analyzer = FinancialIndicatorAnalyzer() + + # 示例:分析某只股票的财务指标 + stock_code = "300661.SZ" # 圣邦股份 + + print(f"=== 财务指标分析:{stock_code} ===") + + # 盈利能力指标 + roe = analyzer.analyze_roe(stock_code) + print(f"ROE: {roe:.2f}%" if roe else "ROE: 无数据") + + gross_margin = analyzer.analyze_gross_profit_margin(stock_code) + print(f"毛利率: {gross_margin:.2f}%" if gross_margin else "毛利率: 无数据") + + net_margin = analyzer.analyze_net_profit_margin(stock_code) + print(f"净利率: {net_margin:.2f}%" if net_margin else "净利率: 无数据") + + # 成长能力指标 + growth_capability = analyzer.analyze_growth_capability(stock_code) + print(f"成长能力: {growth_capability:.2f}" if growth_capability else "成长能力: 无数据") + + # 营运效率指标 + admin_ratio = analyzer.analyze_admin_expense_ratio(stock_code) + print(f"管理费用率: {admin_ratio:.2f}%" if admin_ratio else "管理费用率: 无数据") + + rd_ratio = analyzer.analyze_rd_expense_ratio(stock_code) + print(f"研发费用率: {rd_ratio:.2f}%" if rd_ratio else "研发费用率: 无数据") + + # 规模扩张指标 + asset_liability = analyzer.analyze_asset_liability_ratio(stock_code) + print(f"资产负债率: {asset_liability:.2f}%" if asset_liability else "资产负债率: 无数据") + + current_ratio = analyzer.analyze_current_ratio(stock_code) + print(f"流动比率: {current_ratio:.2f}" if current_ratio else "流动比率: 无数据") + + # 供应商客户占比指标 + supplier_conc = analyzer.analyze_supplier_concentration(stock_code,'2024-12-31') + print(f"供应商集中度: {supplier_conc:.2f}%" if supplier_conc else "供应商集中度: 无数据") + + customer_conc = analyzer.analyze_customer_concentration(stock_code, '2024-12-31') + print(f"客户集中度: {customer_conc:.2f}%" if customer_conc else "客户集中度: 无数据") + + # 估值指标 + pe_ratio = analyzer.analyze_pe_ratio(stock_code) + print(f"PE比率: {pe_ratio:.2f}" if pe_ratio else "PE比率: 无数据") + + pb_ratio = analyzer.analyze_pb_ratio(stock_code) + print(f"PB比率: {pb_ratio:.2f}" if pb_ratio else "PB比率: 无数据") + + pb_roe = analyzer.analyze_pb_roe(stock_code) + print(f"PB-ROE指标: {pb_roe:.2f}" if pb_roe else "PB-ROE指标: 无数据") + + except Exception as e: + logger.error(f"程序执行失败: {str(e)}") + finally: + if analyzer: + analyzer.close_connection() + + +if __name__ == "__main__": + main() \ No newline at end of file diff --git a/src/quantitative_analysis/hk_stock_price_collector.py b/src/quantitative_analysis/hk_stock_price_collector.py new file mode 100644 index 0000000..c1cf63f --- /dev/null +++ b/src/quantitative_analysis/hk_stock_price_collector.py @@ -0,0 +1,197 @@ +import requests +import pandas as pd +from datetime import datetime +import sys +import os +import redis +import json + +# 添加项目根目录到路径,便于导入scripts.config +project_root = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) +sys.path.append(project_root) + +# 导入代理管理器 +from src.scripts.ProxyIP import EnhancedProxyManager + +# 读取雪球headers和Redis配置 +try: + from src.scripts.config import XUEQIU_HEADERS + from src.valuation_analysis.config import REDIS_CONFIG +except ImportError: + XUEQIU_HEADERS = { + 'User-Agent': 'Mozilla/5.0', + 'Cookie': '', # 需要填写雪球cookie + } + REDIS_CONFIG = { + 'host': 'localhost', + 'port': 6379, + 'db': 0, + 'password': None + } + +REDIS_KEY = 'xq_hk_stock_changes_latest' # 存放港股行情的主键 + +# 创建全局代理管理器实例 +proxy_manager = EnhancedProxyManager() + + +def get_redis_conn(): + """获取Redis连接""" + pool = redis.ConnectionPool( + host=REDIS_CONFIG['host'], + port=REDIS_CONFIG['port'], + db=REDIS_CONFIG.get('db', 0), + password=REDIS_CONFIG.get('password', None), + decode_responses=True + ) + return redis.Redis(connection_pool=pool) + + +def fetch_and_store_hk_stock_data(page_size=90): + """ + 批量采集雪球港股所有股票的最新行情数据,并保存到Redis。 + :param page_size: 每页采集数量 + """ + base_url = 'https://stock.xueqiu.com/v5/stock/screener/quote/list.json' + headers = XUEQIU_HEADERS + + all_data = [] + + # 使用港股API参数 + params = { + 'page': 1, + 'size': page_size, + 'order': 'desc', + 'order_by': 'dividend_yield', + 'market': 'HK', # 港股市场 + 'type': 'hk' # 港股类型 + } + + # 初次请求以获取总页数,使用代理 + try: + response = proxy_manager.request_with_proxy('get', base_url, headers=headers, params=params) + if response.status_code != 200: + print(f"请求港股数据失败,状态码:{response.status_code}") + return + except Exception as e: + print(f"请求港股数据时发生异常:{e}") + return + + data = response.json() + total_count = data['data']['count'] + total_pages = (total_count // page_size) + 1 + + print(f"开始采集港股数据,共 {total_pages} 页,{total_count} 条记录") + + # 循环获取所有页面的数据 + for page in range(1, total_pages + 1): + params['page'] = page + try: + response = proxy_manager.request_with_proxy('get', base_url, headers=headers, params=params) + if response.status_code == 200: + data = response.json() + all_data.extend(data['data']['list']) + print(f"成功采集港股第 {page}/{total_pages} 页数据") + else: + print(f"请求港股数据第 {page} 页失败,状态码:{response.status_code}") + except Exception as e: + print(f"请求港股数据第 {page} 页时发生异常:{e}") + continue + + # 转换为 DataFrame + df = pd.DataFrame(all_data) + + if not df.empty: + df['fetch_time'] = datetime.now().strftime('%Y-%m-%d %H:%M:%S') + # 存入Redis,使用hash结构,key为symbol,value为json字符串 + r = get_redis_conn() + pipe = r.pipeline() + # 先清空旧数据 + r.delete(REDIS_KEY) + for _, row in df.iterrows(): + symbol = row.get('symbol') + if not symbol: + continue + # 只保留必要字段,也可直接存row.to_dict() + value = row.to_dict() + pipe.hset(REDIS_KEY, symbol, json.dumps(value, ensure_ascii=False)) + pipe.execute() + print(f"成功将港股数据写入Redis哈希 {REDIS_KEY},共{len(df)}条记录。") + else: + print("未获取到任何港股数据。") + + +def format_hk_stock_code(stock_code): + """ + 统一港股代码格式,支持0700.HK、HK0700等 + 返回雪球格式(如0700.HK)和Redis存储格式 + """ + stock_code = stock_code.upper() + if '.HK' in stock_code: + return stock_code, stock_code + elif stock_code.startswith('HK'): + code = stock_code[2:] + return f'{code}.HK', f'{code}.HK' + else: + # 假设是纯数字,添加.HK后缀 + return f'{stock_code}.HK', f'{stock_code}.HK' + + +def get_hk_stock_realtime_info_from_redis(stock_code): + """ + 根据港股代码从Redis查询实时行情,并封装为指定结构。 + :param stock_code: 支持0700.HK、HK0700等格式 + :return: dict or None + """ + _, redis_code = format_hk_stock_code(stock_code) + r = get_redis_conn() + value = r.hget(REDIS_KEY, redis_code) + if not value: + return None + try: + data = json.loads(value) + except Exception: + return None + + # 封装为指定结构 + result = { + "code": None, + "crawlDate": None, + "marketValue": None, + "maxPrice": None, + "minPrice": None, + "nowPrice": None, + "pbRate": None, + "rangeRiseAndFall": None, + "shortName": None, + "todayStartPrice": None, + "ttm": None, + "turnoverRate": None, + "yesterdayEndPrice": None + } + + # 赋值映射 + result["code"] = data.get("symbol") + result["crawlDate"] = data.get("fetch_time") + result["marketValue"] = data.get("market_capital") + result["maxPrice"] = data.get("high") if "high" in data else data.get("high52w") + result["minPrice"] = data.get("low") if "low" in data else data.get("low52w") + result["nowPrice"] = data.get("current") + result["pbRate"] = data.get("pb") + result["rangeRiseAndFall"] = data.get("percent") + result["shortName"] = data.get("name") + result["todayStartPrice"] = data.get("open") + result["ttm"] = data.get("pe_ttm") + result["turnoverRate"] = data.get("turnover_rate") + result["yesterdayEndPrice"] = data.get("last_close") if "last_close" in data else data.get("pre_close") + + # 兼容部分字段缺失 + if result["maxPrice"] is None and "high" in data: + result["maxPrice"] = data["high"] + if result["minPrice"] is None and "low" in data: + result["minPrice"] = data["low"] + return result + + +if __name__ == '__main__': + fetch_and_store_hk_stock_data() \ No newline at end of file diff --git a/src/quantitative_analysis/supplier_customer_ratio_updater.py b/src/quantitative_analysis/supplier_customer_ratio_updater.py new file mode 100644 index 0000000..880c754 --- /dev/null +++ b/src/quantitative_analysis/supplier_customer_ratio_updater.py @@ -0,0 +1,306 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- + +""" +供应商客户占比数据更新器 +用于将前五供应商占比和前五客户占比数据更新到MongoDB的eastmoney_financial_data_v2集合中 +这个脚本要在财务脚本之后执行 +""" + +import os +import sys +import pandas as pd +import pymongo +import datetime +import logging +from typing import Dict, List, Optional +from pathlib import Path + +# 添加项目根路径到Python路径 +project_root = Path(__file__).parent.parent.parent +sys.path.append(str(project_root)) + +# 导入配置 +from src.valuation_analysis.config import MONGO_CONFIG2 + +# 设置日志 +logging.basicConfig( + level=logging.ERROR, + format='%(asctime)s - %(name)s - %(levelname)s - %(message)s' +) +logger = logging.getLogger(__name__) + + +class SupplierCustomerRatioUpdater: + """供应商客户占比数据更新器""" + + def __init__(self): + """初始化""" + self.mongo_client = None + self.db = None + self.collection_name = 'eastmoney_financial_data_v2' + self.collection = None + + # CSV文件路径 - 使用绝对路径 + current_dir = Path(__file__).parent + self.supplier_file = current_dir / 'data' / '前五供应商占比.csv' + self.customer_file = current_dir / 'data' / '前五客户占比.csv' + + # 季度日期映射 - 根据CSV文件中的列名 + self.quarter_mapping = { + '20200331': '2020-03-31', + '20200630': '2020-06-30', + '20200930': '2020-09-30', + '20201231': '2020-12-31', + '20210331': '2021-03-31', + '20210630': '2021-06-30', + '20210930': '2021-09-30', + '20211231': '2021-12-31', + '20220331': '2022-03-31', + '20220630': '2022-06-30', + '20220930': '2022-09-30', + '20221231': '2022-12-31', + '20230331': '2023-03-31', + '20230630': '2023-06-30', + '20230930': '2023-09-30', + '20231231': '2023-12-31', + '20240331': '2024-03-31', + '20240630': '2024-06-30', + '20240930': '2024-09-30', + '20241231': '2024-12-31', + '20250331': '2025-03-31' + } + + self.connect_mongodb() + + def connect_mongodb(self): + """连接MongoDB数据库""" + try: + self.mongo_client = pymongo.MongoClient( + host=MONGO_CONFIG2['host'], + port=MONGO_CONFIG2['port'], + username=MONGO_CONFIG2['username'], + password=MONGO_CONFIG2['password'] + ) + self.db = self.mongo_client[MONGO_CONFIG2['db']] + self.collection = self.db[self.collection_name] + + # 测试连接 + self.mongo_client.admin.command('ping') + logger.info(f"MongoDB连接成功,使用集合: {self.collection_name}") + + except Exception as e: + logger.error(f"MongoDB连接失败: {str(e)}") + raise + + def load_csv_data(self, file_path: str) -> pd.DataFrame: + """加载CSV文件数据""" + try: + if not os.path.exists(file_path): + logger.error(f"文件不存在: {file_path}") + return pd.DataFrame() + + df = pd.read_csv(file_path, encoding='utf-8') + logger.info(f"成功加载文件: {file_path}, 数据行数: {len(df)}") + return df + + except Exception as e: + logger.error(f"加载CSV文件失败 {file_path}: {str(e)}") + return pd.DataFrame() + + def parse_ratio_data(self, df: pd.DataFrame, data_type: str) -> Dict[str, Dict[str, float]]: + """ + 解析占比数据 + + Args: + df: CSV数据DataFrame + data_type: 数据类型,'supplier' 或 'customer' + + Returns: + Dict: {stock_code: {report_date: ratio_value}} + """ + ratio_data = {} + + try: + for _, row in df.iterrows(): + stock_code = row['stock_code'] + if pd.isna(stock_code): + continue + + ratio_data[stock_code] = {} + + # 遍历所有季度列 + for quarter_col, report_date in self.quarter_mapping.items(): + if quarter_col in row: + ratio_value = row[quarter_col] + + # 处理数据:如果值为0或nan,跳过;否则除以100转换为小数 + if pd.notna(ratio_value) and ratio_value > 0: + # 将百分比数值转换为小数(如56.22 -> 0.5622) + ratio_data[stock_code][report_date] = float(ratio_value) / 100.0 + else: + # 0值或空值不添加到字典中 + continue + + logger.info(f"解析{data_type}数据完成,共处理 {len(ratio_data)} 只股票") + return ratio_data + + except Exception as e: + logger.error(f"解析{data_type}数据失败: {str(e)}") + return {} + + def update_mongodb_record(self, stock_code: str, report_date: str, + supplier_ratio: Optional[float], customer_ratio: Optional[float]) -> bool: + """ + 更新MongoDB中的单条记录 + + Args: + stock_code: 股票代码 + report_date: 报告日期 + supplier_ratio: 前五供应商占比 + customer_ratio: 前五客户占比 + + Returns: + bool: 是否更新成功 + """ + try: + # 查找记录 + filter_condition = { + 'stock_code': stock_code, + 'report_date': report_date + } + + existing_record = self.collection.find_one(filter_condition) + + if not existing_record: + # 记录不存在,跳过 + logger.debug(f"记录不存在,跳过: {stock_code} - {report_date}") + return False + + # 准备更新字段 + update_fields = {} + + if supplier_ratio is not None: + update_fields['top_five_suppliers_ratio'] = supplier_ratio + + if customer_ratio is not None: + update_fields['top_five_customers_ratio'] = customer_ratio + + if not update_fields: + return False + + # 添加更新时间 + update_fields['ratio_update_time'] = datetime.datetime.now() + + # 执行更新 + result = self.collection.update_one( + filter_condition, + {'$set': update_fields} + ) + + if result.modified_count > 0: + logger.debug(f"更新成功: {stock_code} - {report_date}") + return True + else: + logger.debug(f"无需更新: {stock_code} - {report_date}") + return False + + except Exception as e: + logger.error(f"更新记录失败 {stock_code} - {report_date}: {str(e)}") + return False + + def batch_update_ratios(self): + """批量更新所有占比数据""" + try: + # 加载CSV数据 + logger.info("开始加载CSV文件...") + supplier_df = self.load_csv_data(self.supplier_file) + customer_df = self.load_csv_data(self.customer_file) + + if supplier_df.empty and customer_df.empty: + logger.error("没有可用的CSV数据") + return False + + # 解析数据 + logger.info("解析数据中...") + supplier_data = self.parse_ratio_data(supplier_df, 'supplier') if not supplier_df.empty else {} + customer_data = self.parse_ratio_data(customer_df, 'customer') if not customer_df.empty else {} + + # 获取所有涉及的股票代码 + all_stock_codes = set() + all_stock_codes.update(supplier_data.keys()) + all_stock_codes.update(customer_data.keys()) + + logger.info(f"开始更新数据,共涉及 {len(all_stock_codes)} 只股票") + + # 统计 + total_count = 0 + updated_count = 0 + + # 逐个股票更新 + for stock_code in all_stock_codes: + supplier_ratios = supplier_data.get(stock_code, {}) + customer_ratios = customer_data.get(stock_code, {}) + + # 获取所有日期 + all_dates = set() + all_dates.update(supplier_ratios.keys()) + all_dates.update(customer_ratios.keys()) + + # 逐个日期更新 + for report_date in all_dates: + supplier_ratio = supplier_ratios.get(report_date) + customer_ratio = customer_ratios.get(report_date) + + total_count += 1 + + if self.update_mongodb_record(stock_code, report_date, supplier_ratio, customer_ratio): + updated_count += 1 + + # 每处理100条记录输出一次进度 + if total_count % 100 == 0: + logger.info(f"已处理 {total_count} 条记录,更新 {updated_count} 条") + + logger.info(f"数据更新完成!总计处理 {total_count} 条记录,成功更新 {updated_count} 条") + return True + + except Exception as e: + logger.error(f"批量更新失败: {str(e)}") + return False + + def close_connection(self): + """关闭数据库连接""" + try: + if self.mongo_client: + self.mongo_client.close() + logger.info("MongoDB连接已关闭") + except Exception as e: + logger.error(f"关闭MongoDB连接失败: {str(e)}") + + +def main(): + """主函数""" + logger.info("=== 供应商客户占比数据更新器启动 ===") + + updater = None + try: + # 创建更新器实例 + updater = SupplierCustomerRatioUpdater() + + # 执行批量更新 + success = updater.batch_update_ratios() + + if success: + logger.info("=== 数据更新成功完成 ===") + else: + logger.error("=== 数据更新失败 ===") + + except Exception as e: + logger.error(f"程序执行失败: {str(e)}") + finally: + if updater: + updater.close_connection() + + +if __name__ == "__main__": + main() \ No newline at end of file diff --git a/src/quantitative_analysis/tech_fundamental_factor_strategy.py b/src/quantitative_analysis/tech_fundamental_factor_strategy.py new file mode 100644 index 0000000..3e454bb --- /dev/null +++ b/src/quantitative_analysis/tech_fundamental_factor_strategy.py @@ -0,0 +1,729 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- + +""" +科技主题基本面因子选股策略 +整合企业生命周期、财务指标和平均距离因子分析 +""" + +import sys +import pymongo +import pandas as pd +import numpy as np +import logging +from typing import Dict, List, Optional, Tuple +from pathlib import Path +from sqlalchemy import create_engine, text +from datetime import datetime +import math + +# 添加项目根路径到Python路径 +project_root = Path(__file__).parent.parent.parent +sys.path.append(str(project_root)) + +# 导入依赖的工具类 +from src.quantitative_analysis.company_lifecycle_factor import CompanyLifecycleFactor +from src.quantitative_analysis.financial_indicator_analyzer import FinancialIndicatorAnalyzer +from src.quantitative_analysis.average_distance_factor import AverageDistanceFactor +from src.valuation_analysis.config import MONGO_CONFIG2, DB_URL + +# 设置日志 +logging.basicConfig( + level=logging.INFO, + format='%(asctime)s - %(name)s - %(levelname)s - %(message)s' +) +logger = logging.getLogger(__name__) + + +class TechFundamentalFactorStrategy: + """科技主题基本面因子选股策略""" + + def __init__(self): + """初始化策略""" + self.lifecycle_calculator = CompanyLifecycleFactor() + self.financial_analyzer = FinancialIndicatorAnalyzer() + self.distance_calculator = AverageDistanceFactor(DB_URL) + + # MySQL连接 + self.mysql_engine = create_engine( + DB_URL, + pool_size=5, + max_overflow=10, + pool_recycle=3600 + ) + + # 科技概念板块列表 + self.tech_concepts = [ + "5G概念", "物联网", "云计算", "边缘计算", "信息安全", "国产软件", + "大数据", "数据中心", "芯片", "MCU芯片", "汽车芯片", "存储芯片", + "人工智能", "AIGC概念", "ChatGPT概念", "CPO概念", "华为鸿蒙", + "华为海思", "华为算力", "量子科技", "区块链", "数字货币", "工业互联", + "操作系统", "光刻机", "第三代半导体", "元宇宙概念", "云游戏", "信创", + "东数西算", "PCB概念", "先进封装", "EDA概念", "Web3概念", "数据确权", + "数据要素", "数字水印", "工业软件", "6G概念", "时空大数据", "算力租赁", + "光通信", "英伟达概念", "星闪概念", "液冷服务器", "多模态AI", "Sora概念", + "AI手机PC", "铜缆高速连接", "车联网", "财税数字化", "智谱AI", "AI智能体", + "DeepSeek概念", "AI医疗概念" + ] + # self.tech_concepts = [ + # "5G概念" + # ] + + logger.info("科技主题基本面因子选股策略初始化完成") + + def get_tech_stocks(self) -> pd.DataFrame: + """ + 获取科技概念板块的股票列表 + + Returns: + pd.DataFrame: 包含股票代码和名称的DataFrame + """ + try: + # 构建查询条件 + concepts_str = "', '".join(self.tech_concepts) + query = text(f""" + SELECT DISTINCT gp_code as stock_code, gp_name as stock_name, bk_name as concept_name + FROM gp_gnbk + WHERE bk_name IN ('{concepts_str}') + ORDER BY gp_code + """) + + with self.mysql_engine.connect() as conn: + df = pd.read_sql(query, conn) + + logger.info(f"获取到 {len(df)} 只科技概念股票") + return df + + except Exception as e: + logger.error(f"获取科技概念股票失败: {str(e)}") + return pd.DataFrame() + + def filter_by_lifecycle(self, stock_codes: List[str], year: int = 2024) -> Dict[str, List[str]]: + """ + 根据企业生命周期筛选股票 + + Args: + stock_codes: 股票代码列表 + year: 分析年份 + + Returns: + Dict: 包含成长期和成熟期股票的字典 + """ + try: + logger.info(f"开始分析 {len(stock_codes)} 只股票的企业生命周期") + + # 批量计算生命周期 + lifecycle_df = self.lifecycle_calculator.batch_calculate_lifecycle_factors(stock_codes, year) + + # 筛选目标阶段的股票 + # 引入期(1)和成长期(2)合并为成长期,成熟期(3)保持不变 + growth_stage_stocks = lifecycle_df[ + lifecycle_df['stage_id'].isin([1, 2]) + ]['stock_code'].tolist() + + mature_stage_stocks = lifecycle_df[ + lifecycle_df['stage_id'] == 3 + ]['stock_code'].tolist() + + result = { + 'growth': growth_stage_stocks, + 'mature': mature_stage_stocks + } + + logger.info(f"成长期股票: {len(growth_stage_stocks)} 只") + logger.info(f"成熟期股票: {len(mature_stage_stocks)} 只") + + return result + + except Exception as e: + logger.error(f"生命周期筛选失败: {str(e)}") + return {'growth': [], 'mature': []} + + def calculate_distance_factors(self, growth_stocks: List[str], mature_stocks: List[str]) -> Tuple[pd.DataFrame, pd.DataFrame]: + """ + 分别计算成长期和成熟期股票的平均距离因子 + + Args: + growth_stocks: 成长期股票列表 + mature_stocks: 成熟期股票列表 + + Returns: + Tuple: (成长期距离因子DataFrame, 成熟期距离因子DataFrame) + """ + try: + growth_distance_df = pd.DataFrame() + mature_distance_df = pd.DataFrame() + + # 计算成长期股票距离因子 + if growth_stocks: + logger.info(f"计算 {len(growth_stocks)} 只成长期股票的距离因子") + growth_data = self.distance_calculator.get_stock_data(growth_stocks) + if not growth_data.empty: + growth_indicators = self.distance_calculator.calculate_technical_indicators(growth_data) + growth_distance_df = self.distance_calculator.calculate_distance_factor(growth_indicators) + + # 计算成熟期股票距离因子 + if mature_stocks: + logger.info(f"计算 {len(mature_stocks)} 只成熟期股票的距离因子") + mature_data = self.distance_calculator.get_stock_data(mature_stocks) + if not mature_data.empty: + mature_indicators = self.distance_calculator.calculate_technical_indicators(mature_data) + mature_distance_df = self.distance_calculator.calculate_distance_factor(mature_indicators) + + return growth_distance_df, mature_distance_df + + except Exception as e: + logger.error(f"计算距离因子失败: {str(e)}") + return pd.DataFrame(), pd.DataFrame() + + def calculate_common_factors(self, stock_codes: List[str]) -> pd.DataFrame: + """ + 计算通用因子 + + Args: + stock_codes: 股票代码列表 + + Returns: + pd.DataFrame: 包含通用因子的DataFrame + """ + try: + logger.info(f"计算 {len(stock_codes)} 只股票的通用因子") + + results = [] + latest_date = "2025-03-31" # 最新季度数据 + annual_date = "2024-12-31" # 年报数据 + + for stock_code in stock_codes: + try: + + factor_data = {'stock_code': stock_code} + + # 1. 毛利率(使用最新数据) + gross_margin = self.financial_analyzer.analyze_gross_profit_margin(stock_code, latest_date) + factor_data['gross_profit_margin'] = gross_margin + + # 2. 成长能力指标 + growth_capability = self.financial_analyzer.analyze_growth_capability(stock_code) + if growth_capability is not None: + # 成长能力越高越好,使用sigmoid函数映射到0-1 + growth_score = 1 / (1 + math.exp(-growth_capability)) + else: + growth_score = 0.5 # 默认中性评分 + factor_data['growth_score'] = growth_score + + # 3. 前五大供应商占比(使用年报数据) + supplier_conc = self.financial_analyzer.analyze_supplier_concentration(stock_code, annual_date) + factor_data['supplier_concentration'] = supplier_conc + + # 4. 前五大客户占比(使用年报数据) + customer_conc = self.financial_analyzer.analyze_customer_concentration(stock_code, annual_date) + factor_data['customer_concentration'] = customer_conc + + results.append(factor_data) + + except Exception as e: + logger.warning(f"计算股票 {stock_code} 通用因子失败: {str(e)}") + continue + + df = pd.DataFrame(results) + logger.info(f"成功计算 {len(df)} 只股票的通用因子") + return df + + except Exception as e: + logger.error(f"计算通用因子失败: {str(e)}") + return pd.DataFrame() + + def calculate_growth_specific_factors(self, stock_codes: List[str]) -> pd.DataFrame: + """ + 计算成长期特色因子 + + Args: + stock_codes: 成长期股票代码列表 + + Returns: + pd.DataFrame: 包含成长期特色因子的DataFrame + """ + try: + logger.info(f"计算 {len(stock_codes)} 只成长期股票的特色因子") + + results = [] + latest_date = "2025-03-31" # 使用最新数据 + annual_date = "2024-12-31" # 使用年度数据 + + for stock_code in stock_codes: + try: + + factor_data = {'stock_code': stock_code} + + # 1. 管理费用率(使用最新数据) + admin_ratio = self.financial_analyzer.analyze_admin_expense_ratio(stock_code, latest_date) + factor_data['admin_expense_ratio'] = admin_ratio + + # 2. 研发费用折旧摊销占比(使用年度数据) + # financial_data = self.financial_analyzer.get_financial_data(stock_code, latest_date) + financial_data = self.financial_analyzer.get_financial_data(stock_code, annual_date) + if financial_data: + intangible_amortize = financial_data.get('cash_flow_statement', {}).get('IA_AMORTIZE', 0) + rd_expense = financial_data.get('profit_statement', {}).get('RESEARCH_EXPENSE', 0) + + if rd_expense and rd_expense != 0: + rd_amortize_ratio = intangible_amortize / rd_expense if intangible_amortize else 0 + else: + rd_amortize_ratio = None # 使用None而不是0,避免这些股票获得最高分 + + factor_data['rd_amortize_ratio'] = rd_amortize_ratio + else: + factor_data['rd_amortize_ratio'] = None + + # 3. 资产负债率(使用最新数据) + asset_liability_ratio = self.financial_analyzer.analyze_asset_liability_ratio(stock_code, latest_date) + factor_data['asset_liability_ratio'] = asset_liability_ratio + + results.append(factor_data) + + except Exception as e: + logger.warning(f"计算股票 {stock_code} 成长期特色因子失败: {str(e)}") + continue + + df = pd.DataFrame(results) + logger.info(f"成功计算 {len(df)} 只成长期股票的特色因子") + return df + + except Exception as e: + logger.error(f"计算成长期特色因子失败: {str(e)}") + return pd.DataFrame() + + def calculate_mature_specific_factors(self, stock_codes: List[str]) -> pd.DataFrame: + """ + 计算成熟期特色因子 + + Args: + stock_codes: 成熟期股票代码列表 + + Returns: + pd.DataFrame: 包含成熟期特色因子的DataFrame + """ + try: + logger.info(f"计算 {len(stock_codes)} 只成熟期股票的特色因子") + + latest_date = "2025-03-31" # 使用最新数据 + + # 在循环外获取全A股PB和ROE数据,避免重复查询 + logger.info("获取全A股PB数据...") + all_pb_data = self.financial_analyzer.get_all_stocks_pb_data() + + logger.info("获取全A股ROE数据...") + all_roe_data = self.financial_analyzer.get_all_stocks_roe_data(latest_date) + + results = [] + + for stock_code in stock_codes: + try: + factor_data = {'stock_code': stock_code} + + # 1. 应收账款周转率(使用最新数据) + formatted_stock_code = self.financial_analyzer.code_formatter.to_dot_format(stock_code) + financial_data = self.financial_analyzer.get_financial_data(formatted_stock_code, latest_date) + if financial_data: + revenue = financial_data.get('profit_statement', {}).get('OPERATE_INCOME', 0) + accounts_rece = financial_data.get('balance_sheet', {}).get('ACCOUNTS_RECE', 0) + + if accounts_rece and accounts_rece != 0: + turnover_ratio = revenue / accounts_rece if revenue else 0 + else: + turnover_ratio = None # 使用None而不是0 + + factor_data['accounts_receivable_turnover'] = turnover_ratio + else: + factor_data['accounts_receivable_turnover'] = None + + # 2. 研发强度(使用最新数据) + rd_intensity = self.financial_analyzer.analyze_rd_expense_ratio(stock_code, latest_date) + factor_data['rd_intensity'] = rd_intensity + + # 3. PB-ROE排名因子:使用预获取的全A股数据 + if all_pb_data and all_roe_data: + pb_roe_rank_factor = self.financial_analyzer.calculate_pb_roe_rank_factor( + stock_code, all_pb_data, all_roe_data + ) + factor_data['pb_roe_rank_factor'] = pb_roe_rank_factor + else: + factor_data['pb_roe_rank_factor'] = None + + results.append(factor_data) + + except Exception as e: + logger.warning(f"计算股票 {stock_code} 成熟期特色因子失败: {str(e)}") + continue + + df = pd.DataFrame(results) + logger.info(f"成功计算 {len(df)} 只成熟期股票的特色因子") + return df + + except Exception as e: + logger.error(f"计算成熟期特色因子失败: {str(e)}") + return pd.DataFrame() + + def run_strategy(self, year: int = 2024) -> Dict[str, pd.DataFrame]: + """ + 运行完整的选股策略 + + Args: + year: 分析年份 + + Returns: + Dict: 包含成长期和成熟期股票分析结果的字典 + """ + try: + logger.info("开始运行科技主题基本面因子选股策略") + + # 1. 获取科技概念股票 + tech_stocks_df = self.get_tech_stocks() + if tech_stocks_df.empty: + logger.error("未获取到科技概念股票") + return {} + + stock_codes = tech_stocks_df['stock_code'].unique().tolist() + logger.info(f"共获取到 {len(stock_codes)} 只科技概念股票") + + # 2. 按企业生命周期筛选 + lifecycle_result = self.filter_by_lifecycle(stock_codes, year) + growth_stocks = lifecycle_result['growth'] + mature_stocks = lifecycle_result['mature'] + + if not growth_stocks and not mature_stocks: + logger.warning("未找到符合条件的成长期或成熟期股票") + return {} + + # 3. 计算平均距离因子 + growth_distance_df, mature_distance_df = self.calculate_distance_factors(growth_stocks, mature_stocks) + + # 4. 计算通用因子 + all_qualified_stocks = growth_stocks + mature_stocks + common_factors_df = self.calculate_common_factors(all_qualified_stocks) + + # 5. 计算特色因子 + growth_specific_df = self.calculate_growth_specific_factors(growth_stocks) if growth_stocks else pd.DataFrame() + mature_specific_df = self.calculate_mature_specific_factors(mature_stocks) if mature_stocks else pd.DataFrame() + + # 6. 合并结果并计算分数 + result = {} + + # 处理成长期股票 + if not growth_specific_df.empty: + # 成长期结果合并 + growth_result = growth_specific_df.copy() + + # 合并距离因子 + if not growth_distance_df.empty: + growth_result = growth_result.merge( + growth_distance_df[['symbol', 'avg_distance_factor']], + left_on='stock_code', right_on='symbol', how='left' + ).drop('symbol', axis=1) + + # 合并通用因子 + if not common_factors_df.empty: + growth_result = growth_result.merge( + common_factors_df, on='stock_code', how='left' + ) + + # 计算因子分数 + growth_result = self.calculate_factor_scores(growth_result, 'growth') + + # 计算总分并排序 + growth_result = self.calculate_total_score(growth_result, 'growth') + + result['growth'] = growth_result + logger.info(f"成长期结果: {len(growth_result)} 只股票") + + # 处理成熟期股票 + if not mature_specific_df.empty: + # 成熟期结果合并 + mature_result = mature_specific_df.copy() + + # 合并距离因子 + if not mature_distance_df.empty: + mature_result = mature_result.merge( + mature_distance_df[['symbol', 'avg_distance_factor']], + left_on='stock_code', right_on='symbol', how='left' + ).drop('symbol', axis=1) + + # 合并通用因子 + if not common_factors_df.empty: + mature_result = mature_result.merge( + common_factors_df, on='stock_code', how='left' + ) + + # 计算因子分数 + mature_result = self.calculate_factor_scores(mature_result, 'mature') + + # 计算总分并排序 + mature_result = self.calculate_total_score(mature_result, 'mature') + + result['mature'] = mature_result + logger.info(f"成熟期结果: {len(mature_result)} 只股票") + + logger.info("科技主题基本面因子选股策略运行完成") + return result + + except Exception as e: + logger.error(f"策略运行失败: {str(e)}") + return {} + + def calculate_factor_scores(self, df: pd.DataFrame, stage: str) -> pd.DataFrame: + """ + 计算单因子打分(0-100分位数) + + Args: + df: 包含因子数据的DataFrame + stage: 阶段类型 ('growth' 或 'mature') + + Returns: + pd.DataFrame: 包含因子分数的DataFrame + """ + try: + if df.empty: + return df + + df_scored = df.copy() + + # 定义因子方向(正向为True,负向为False) + factor_directions = { + # 通用因子 + 'gross_profit_margin': True, # 毛利率_环比增量 - 正向 + 'growth_score': True, # 成长能力 - 正向 + 'supplier_concentration': False, # 前5大供应商金额占比合计 - 负向 + 'customer_concentration': False, # 前5大客户收入金额占比合计 - 负向 + 'avg_distance_factor': False, # 平均距离因子 - 负向 + + # 成长期特色因子 + 'admin_expense_ratio': False, # 管理费用/营业总收入_环比增量 - 负向 + 'rd_amortize_ratio': False, # 研发费用折旧摊销占比_环比增量 - 负向 + 'asset_liability_ratio': True, # 资产负债率 - 正向 + + # 成熟期特色因子 + 'accounts_receivable_turnover': True, # 应收账款周转率 - 正向 + 'rd_intensity': True, # 研发费用直接投入占比_环比增量 - 正向 + 'pb_roe_rank_factor': False # PB-ROE排名因子 - 负向(越小越好) + } + + # 为每个因子计算分位数分数 + for column in df.columns: + if column == 'stock_code': + continue + + # 只对有效值进行排名计算 + values = df_scored[column].dropna() + if len(values) <= 1: + # 如果只有一个值或没有值,所有股票都得50分或0分 + if len(values) == 1: + df_scored[f'{column}_score'] = df_scored[column].apply(lambda x: 50 if pd.notna(x) else 0) + else: + df_scored[f'{column}_score'] = 0 + continue + + # 根据因子方向确定排序方式 + is_positive = factor_directions.get(column, True) + + # 计算排名分数 + if is_positive: + # 正向因子:值越大分数越高 + ranked_values = values.rank(pct=True) * 100 + else: + # 负向因子:值越小分数越高 + ranked_values = (1 - values.rank(pct=True)) * 100 + + # 初始化分数列 + df_scored[f'{column}_score'] = 0.0 + + # 将分数赋值给对应的行 + for idx in ranked_values.index: + df_scored.loc[idx, f'{column}_score'] = ranked_values[idx] + + logger.info(f"完成 {stage} 阶段 {len(df_scored)} 只股票的因子打分") + return df_scored + + except Exception as e: + logger.error(f"计算因子分数失败: {str(e)}") + import traceback + traceback.print_exc() + return df + + def calculate_total_score(self, df: pd.DataFrame, stage: str) -> pd.DataFrame: + """ + 计算总分 + 使用公式:总分 = 1/8 * Mean(Si) + Mean(Si)/Std(Si) + + Args: + df: 包含因子分数的DataFrame + stage: 阶段类型 ('growth' 或 'mature') + + Returns: + pd.DataFrame: 包含总分的DataFrame + """ + try: + if df.empty: + return df + + df_result = df.copy() + + # 定义因子权重(注意:这里是factor_score而不是factor) + if stage == 'growth': + factor_weights = { + # 通用因子 + 'gross_profit_margin_score': 1/8, + 'growth_score_score': 1/8, # 注意这里是growth_score_score + 'supplier_concentration_score': 1/8, + 'customer_concentration_score': 1/8, + 'avg_distance_factor_score': 1/8, + + # 成长期特色因子 + 'admin_expense_ratio_score': 1/8, + 'rd_amortize_ratio_score': 1/8, + 'asset_liability_ratio_score': 1/8 + } + else: # mature + factor_weights = { + # 通用因子 + 'gross_profit_margin_score': 1/8, + 'growth_score_score': 1/8, # 注意这里是growth_score_score + 'supplier_concentration_score': 1/8, + 'customer_concentration_score': 1/8, + 'avg_distance_factor_score': 1/8, + + # 成熟期特色因子 + 'accounts_receivable_turnover_score': 1/8, + 'rd_intensity_score': 1/8, + 'pb_roe_rank_factor_score': 1/8 + } + + # 计算每只股票的总分 + total_scores = [] + + for index, row in df_result.iterrows(): + # 获取该股票的所有因子分数 + factor_scores = [] + valid_weights = [] + + for factor, weight in factor_weights.items(): + if factor in row and pd.notna(row[factor]) and row[factor] > 0: + factor_scores.append(row[factor]) + valid_weights.append(weight) + + if len(factor_scores) == 0: + total_scores.append(0) + continue + + factor_scores = np.array(factor_scores) + valid_weights = np.array(valid_weights) + + # 重新标准化权重 + valid_weights = valid_weights / valid_weights.sum() + + # 计算加权平均分数 + mean_score = np.average(factor_scores, weights=valid_weights) + + # 计算调整项 Mean(Si)/Std(Si) + if len(factor_scores) > 1 and np.std(factor_scores) > 0: + adjustment = np.mean(factor_scores) / np.std(factor_scores) + else: + adjustment = 0 + + # 计算总分:1/8 * Mean(Si) + Mean(Si)/Std(Si) + total_score = (1/8) * mean_score + adjustment + total_scores.append(total_score) + + df_result['total_score'] = total_scores + + # 按总分降序排列 + df_result = df_result.sort_values('total_score', ascending=False).reset_index(drop=True) + df_result['rank'] = range(1, len(df_result) + 1) + + logger.info(f"完成 {stage} 阶段 {len(df_result)} 只股票的总分计算") + return df_result + + except Exception as e: + logger.error(f"计算总分失败: {str(e)}") + import traceback + traceback.print_exc() + return df + + def close_connections(self): + """关闭所有数据库连接""" + try: + if hasattr(self, 'lifecycle_calculator'): + del self.lifecycle_calculator + if hasattr(self, 'financial_analyzer'): + self.financial_analyzer.close_connection() + if hasattr(self, 'distance_calculator'): + del self.distance_calculator + if hasattr(self, 'mysql_engine'): + self.mysql_engine.dispose() + logger.info("数据库连接已关闭") + except Exception as e: + logger.error(f"关闭连接失败: {str(e)}") + + +def main(): + """主函数 - 科技主题基本面因子选股策略""" + strategy = None + try: + print("=== 科技主题基本面因子选股策略 ===") + print("数据说明:") + print("- 毛利率、净利润增长率等:使用最新数据 (2025-03-31)") + print("- 供应商客户集中度、折旧摊销、研发费用:使用年报数据 (2024-12-31)") + print() + + # 创建策略实例 + strategy = TechFundamentalFactorStrategy() + logger.info("策略实例创建成功") + + # 运行策略 + results = strategy.run_strategy(year=2024) + + # 输出结果 + if not results: + print("未获得分析结果") + return + + for stage, df in results.items(): + print(f"\n=== {stage.upper()} 阶段股票分析结果 ===") + print(f"股票数量: {len(df)}") + + if not df.empty: + # 调试:显示所有列名 + print(f"数据列: {list(df.columns)}") + # 显示前5只股票的关键指标 + print("\n前5只股票:") + display_columns = [ + 'stock_code', 'gross_profit_margin', 'growth_score', + 'supplier_concentration', 'customer_concentration', + 'total_score', 'rank' + ] + available_columns = [col for col in display_columns if col in df.columns] + print(df[available_columns].head(5).to_string(index=False)) + + # 保存完整结果 + output_file = f"tech_fundamental_factor_{stage}_{datetime.now().strftime('%Y%m%d_%H%M')}.csv" + df.to_csv(output_file, index=False, encoding='utf-8-sig') + print(f"\n完整结果已保存到: {output_file}") + + # 显示统计信息 + print(f"\n统计信息:") + print(f" 平均总分: {df['total_score'].mean():.2f}") + print(f" 最高总分: {df['total_score'].max():.2f}") + print(f" 最低总分: {df['total_score'].min():.2f}") + + print(f"\n=== 策略运行完成 ===") + + except Exception as e: + logger.error(f"程序执行失败: {str(e)}") + import traceback + traceback.print_exc() + finally: + if strategy: + strategy.close_connections() + + +if __name__ == "__main__": + main() \ No newline at end of file diff --git a/src/scripts/ProxyIP.py b/src/scripts/ProxyIP.py new file mode 100644 index 0000000..e045b9d --- /dev/null +++ b/src/scripts/ProxyIP.py @@ -0,0 +1,342 @@ +import requests +import redis +import random +import time +import threading +import json +from typing import Dict, List, Optional, Union +from datetime import datetime, timedelta +from concurrent.futures import ThreadPoolExecutor, as_completed + + +class EnhancedProxyManager: + def __init__( + self, + proxy_api_url: str = 'https://dps.kdlapi.com/api/getdps?secret_id=o4itop21b4byqg47eevx&signature=3d3fuvm6raah1xyjecl6bby1mj6gtx0c&num=3&format=json', + valid_check_url: str = 'https://dps.kdlapi.com/api/checkdpsvalid?secret_id=o4itop21b4byqg47eevx&signature=3d3fuvm6raah1xyjecl6bby1mj6gtx0c', + redis_host: str = '192.168.18.123', + redis_port: int = 6379, + redis_db: int = 7, + redis_password: str = 'wlkj2018', + redis_key: str = 'proxy_pool', + update_interval: int = 3600, + max_retries: int = 3, + proxy_timeout: int = 10, + auto_refresh: bool = False, + max_pool_size: int = 50, + enable_api_validation: bool = True # 新增:是否启用API验证开关 + ): + """ + 增强版代理管理器 - 支持多IP池和手动代理管理 + + :param proxy_api_url: 获取代理的API地址 + :param redis_host: Redis主机地址 + :param redis_port: Redis端口 + :param redis_db: Redis数据库 + :param redis_password: Redis密码 + :param redis_key: Redis中存储代理的键前缀 + :param update_interval: 代理更新间隔(秒) + :param max_retries: 最大重试次数 + :param proxy_timeout: 代理连接超时时间(秒) + :param auto_refresh: 是否自动从API获取代理 + :param max_pool_size: 代理池最大容量 + """ + self.proxy_api_url = proxy_api_url + self.redis_key_prefix = redis_key + self.update_interval = update_interval + self.max_retries = max_retries + self.proxy_timeout = proxy_timeout + self.auto_refresh = auto_refresh + self.max_pool_size = max_pool_size + self.valid_check_url = valid_check_url + self.enable_api_validation = enable_api_validation + + # Redis连接 + self.redis_conn = redis.StrictRedis( + host=redis_host, + port=redis_port, + db=redis_db, + password=redis_password, + decode_responses=True + ) + + # 线程安全控制 + self.lock = threading.Lock() + self.condition = threading.Condition() + + # 启动维护线程 + if self.auto_refresh: + self._start_maintenance_thread() + + def _start_maintenance_thread(self): + """启动后台维护线程""" + + def maintenance_loop(): + while True: + with self.condition: + self._refresh_api_proxies() + self.condition.notify_all() + time.sleep(self.update_interval) + + thread = threading.Thread(target=maintenance_loop, daemon=True) + thread.start() + + def _get_redis_key(self, proxy_type: str) -> str: + """获取Redis键名""" + return f"{self.redis_key_prefix}:{proxy_type}" + + def _check_proxy_valid(self, proxy_list: List[str]) -> Dict[str, bool]: + """通过API检查代理是否有效""" + if not self.enable_api_validation or not proxy_list: + return {} + + try: + # 拼接代理参数:proxy=ip1:port1,ip2:port2 + proxy_param = '&proxy=' + ','.join(proxy_list) + response = requests.get(self.valid_check_url + proxy_param, timeout=10) + + if response.status_code == 200: + data = response.json() + if data.get('code') == 0: + return data.get('data', {}) + except Exception as e: + print(f"API验证代理有效性失败: {e}") + return {} + + def _refresh_api_proxies(self) -> bool: + """从API获取最新代理并存入Redis""" + api_key = self._get_redis_key('api') + + # 前置检查:如果已有足够数量且未过期的代理,则不需要刷新 + existing_proxies = self.redis_conn.hgetall(api_key) + + # 检查代理数量是否足够(大于等于4)且未过期 + if len(existing_proxies) >= 4: + # 检查代理是否过期(假设代理有效期为24小时) + current_time = datetime.now() + need_refresh = False + + for proxy_json in existing_proxies.values(): + proxy = json.loads(proxy_json) + last_checked = datetime.strptime(proxy['last_checked'], "%Y-%m-%d %H:%M:%S") + if (current_time - last_checked) > timedelta(hours=1): + need_refresh = True + break + + if not need_refresh: + print("当前有足够数量且未过期的代理,无需刷新") + return False + + try: + response = requests.get(self.proxy_api_url, timeout=self.proxy_timeout) + if response.status_code == 200: + data = response.json() + if data.get('code') == 0 and data.get('data'): + # 清空旧API代理 + api_key = self._get_redis_key('api') + # self.redis_conn.delete(api_key) + + # 添加新代理 + for proxy_data in data['data']['proxy_list']: + proxy = { + 'http': f"http://{proxy_data}", + 'https': f"http://{proxy_data}", + 'server': proxy_data, + 'source': 'api', + 'last_checked': datetime.now().strftime("%Y-%m-%d %H:%M:%S"), + 'status': 'active' + } + self.redis_conn.hset( + api_key, + proxy_data, + json.dumps(proxy) + ) + return True + except Exception as e: + print(f"更新API代理失败: {e}") + return False + + def add_manual_proxies(self, proxies: Union[List[str], str]) -> int: + """ + 手动添加代理到池中 + + :param proxies: 代理列表(格式: ["ip:port", ...] 或 "ip:port") + :return: 成功添加的代理数量 + """ + if isinstance(proxies, str): + proxies = [proxies] + + added = 0 + manual_key = self._get_redis_key('manual') + + # 验证并添加代理 + def _check_and_add(proxy): + nonlocal added + proxy_dict = { + 'http': f"http://{proxy}", + 'https': f"http://{proxy}", + 'server': proxy, + 'source': 'manual', + 'last_checked': datetime.now().strftime("%Y-%m-%d %H:%M:%S"), + 'status': 'active' + } + + if self._is_proxy_working(proxy_dict): + with self.lock: + # 检查是否已存在 + if not self.redis_conn.hexists(manual_key, proxy): + self.redis_conn.hset(manual_key, proxy, json.dumps(proxy_dict)) + added += 1 + + # 使用线程池并行验证 + with ThreadPoolExecutor(max_workers=10) as executor: + executor.map(_check_and_add, proxies) + + print(f"成功添加 {added} 个手动代理") + return added + + def _is_proxy_working(self, proxy: Dict) -> bool: + """检查代理是否可用""" + test_urls = [ + "http://httpbin.org/ip", + "http://www.google.com/gen_204" + ] + + proxies = { + 'http': proxy['http'], + 'https': proxy['https'] + } + + for url in test_urls: + try: + response = requests.get( + url, + proxies=proxies, + timeout=self.proxy_timeout, + allow_redirects=False + ) + if 200 <= response.status_code < 500: + return True + except: + continue + return False + + def get_random_proxy(self) -> Optional[Dict]: + """ + 随机获取一个可用代理 + + :return: 代理字典或None(如果无可用代理) + """ + # 优先从API代理获取 + # api_key = self._get_redis_key('api') + manual_key = self._get_redis_key('manual') + + # 获取所有活跃代理 + proxies = [] + + # 先检查API代理 + # api_proxies = self.redis_conn.hgetall(api_key) + # for proxy_json in api_proxies.values(): + # proxy = json.loads(proxy_json) + # if proxy.get('status') == 'active': + # proxies.append(proxy) + + # 如果API代理不可用或auto_refresh关闭,检查手动代理 + if not proxies or not self.auto_refresh: + manual_proxies = self.redis_conn.hgetall(manual_key) + for proxy_json in manual_proxies.values(): + proxy = json.loads(proxy_json) + if proxy.get('status') == 'active': + proxies.append(proxy) + + if not proxies: + if self.auto_refresh: + print("代理池为空,尝试从API获取...") + self._refresh_api_proxies() + return self.get_random_proxy() + else: + print("代理池为空且自动刷新已关闭") + return None + + # 随机选择一个代理 + selected = random.choice(proxies) + selected['_redis_key'] = self._get_redis_key(selected['source']) + return selected + + def mark_proxy_failed(self, proxy: Dict): + """标记代理为失败并从池中移除""" + if '_redis_key' not in proxy: + return + + # 如果是API代理且启用验证,先检查是否真的失效 + if proxy.get('source') == 'api' and self.enable_api_validation: + valid_status = self._check_proxy_valid([proxy['server']]) + is_valid = valid_status.get(proxy['server'], False) + + if is_valid: + print(f"代理 {proxy['server']} API验证仍有效,暂不移除") + return + + with self.lock: + self.redis_conn.hdel(proxy['_redis_key'], proxy['server']) + print(f"代理 {proxy['server']} 已被移除") + + def request_with_proxy( + self, + method: str, + url: str, + retry_count: int = 0, + **kwargs + ) -> requests.Response: + """ + 使用代理发送请求 + + :param method: HTTP方法 + :param url: 请求URL + :param retry_count: 内部重试计数 + :param kwargs: 其他requests参数 + :return: Response对象 + """ + if retry_count >= self.max_retries: + raise requests.exceptions.RequestException(f"达到最大重试次数 {self.max_retries}") + + proxy = self.get_random_proxy() + if not proxy: + raise requests.exceptions.RequestException("无可用代理") + + try: + response = requests.request( + method, + url, + proxies={ + 'http': proxy['http'], + 'https': proxy['https'] + }, + timeout=self.proxy_timeout, + **kwargs + ) + + if response.status_code >= 400: + raise requests.exceptions.HTTPError( + f"HTTP错误: {response.status_code}", + response=response + ) + + return response + + except requests.exceptions.RequestException as e: + print(f"代理 {proxy['server']} 请求失败: {e}") + self.mark_proxy_failed(proxy) + return self.request_with_proxy(method, url, retry_count + 1, **kwargs) + + def get_pool_status(self) -> Dict: + """获取代理池状态""" + api_key = self._get_redis_key('api') + manual_key = self._get_redis_key('manual') + + return { + 'api_proxies': self.redis_conn.hlen(api_key), + 'manual_proxies': self.redis_conn.hlen(manual_key), + 'auto_refresh': self.auto_refresh, + 'last_update': datetime.now().strftime("%Y-%m-%d %H:%M:%S") + } \ No newline at end of file diff --git a/src/scripts/config.py b/src/scripts/config.py index 72bf64b..6eec6da 100644 --- a/src/scripts/config.py +++ b/src/scripts/config.py @@ -11,7 +11,7 @@ XUEQIU_HEADERS = { 'Accept-Encoding': 'gzip, deflate, br, zstd', 'Accept-Language': 'zh-CN,zh;q=0.9,en;q=0.8', 'Client-Version': 'v2.44.75', - 'Cookie': 'cookiesu=811743062689927; device_id=33fa3c7fca4a65f8f4354e10ed6b7470; smidV2=20250327160437f244626e8b47ca2a7992f30f389e4e790074ae48656a22f10; HMACCOUNT=8B64A2E3C307C8C0; s=c611ttmqlj; xq_is_login=1; u=8493411634; bid=4065a77ca57a69c83405d6e591ab5449_m8r2nhs8; __utma=1.434320573.1747189698.1747189698.1747189698.1; __utmc=1; __utmz=1.1747189698.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); snbim_minify=true; Hm_lvt_1db88642e346389874251b5a1eded6e3=1749028611; acw_tc=0a27aa3317504105803118918e00823643107980bbedc1c9307d37d1cf7fb7; xq_a_token=5b11f7f5a3986a802def7dea48868a3b2849e719; xqat=5b11f7f5a3986a802def7dea48868a3b2849e719; xq_id_token=eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ1aWQiOjg0OTM0MTE2MzQsImlzcyI6InVjIiwiZXhwIjoxNzUzMDAzNjExLCJjdG0iOjE3NTA0MTE2MTEyODIsImNpZCI6ImQ5ZDBuNEFadXAifQ.FB12KEYSdWo5g3UqQbnfqR-Gopar8JkuDf54eSf86FzmuGG9XugW7osl3idav9oTgLzgWBut4X6a5-gbqn61wPPV7OV3dMO8oNyBZUxMjisaMBW_-IcUuQ1z-gtXBcHleNamANA-2H3Xf5mZNdVXAW_E0rQZE_y0TEqzeiLxfU5B_RJOTR1Zq_-BQaaOn_Tk0or_hu-nOZR-26lBtcBl1VoTR2Ov1tm_CRN375ohMcZniA265X8umpL_tysQ4m7oazNyezopJE6W7jt-djNGJXZAbLoVXF1U2ULKV325dPWHvPcSZOevxGprItb665QNZvXEzhBB-4fuzhAnYBsqGw; xq_r_token=2ba0614b400ec779704c3adaa7f17c2c2c88143b; is_overseas=0; Hm_lpvt_1db88642e346389874251b5a1eded6e3=1750411602; .thumbcache_f24b8bbe5a5934237bbc0eda20c1b6e7=Jg9N/8vN3mjfEOHOPlAxHQ+1x+X4nN7jc9vkKRkIGulMwceWqptDd3OUgWPM6XqKNq/15EvM032gWoeeYMHgRg%3D%3D; ssxmod_itna=eqGxBDnGKYuxcD4kDRgxYq7ueYKS8DBP01Dp2xQyP08D60DB40Q0OHhqDyliGQQmhGtKq0aCDD/KlYeDZDGFdDqx0Ei6FiDHICezjQgDKgACjktpeBflQR5RYGlcNpp=0IDpnOAGdeGLDY=DCTKK420iDYYfDBYD74G+DDeDih3Dj4GmDGY=aeDFIQutVCRKdxDwDB=DmqG23ObDm4DfDDLorBD4Il2YDDtDAkaGNPDADA3doDDlYD84Kdb4DYpogQ0FdgahphusIeDMixGXzAlzx9CnoiWtV/vfrf2aHPGuDG=OcC0Hh2bmRT3f8hGxYDo5Qe8hx+Bx3rKq0DW7HRYqYYeYAh+2DR0DQhxRDxgGYgEw/rdPrd5kh6WdYYrcqsMkbZMshie5QhNiNQDoOBtQgdeAde6D/r5l05Dr=grAWG4HmmNBiQm44D; ssxmod_itna2=eqGxBDnGKYuxcD4kDRgxYq7ueYKS8DBP01Dp2xQyP08D60DB40Q0OHhqDyliGQQmhGtKq0aeDWhYebouIdHFW5NsDoenRT6eeD', + 'Cookie': 'cookiesu=811743062689927; device_id=33fa3c7fca4a65f8f4354e10ed6b7470; smidV2=20250327160437f244626e8b47ca2a7992f30f389e4e790074ae48656a22f10; HMACCOUNT=8B64A2E3C307C8C0; s=c611ttmqlj; xq_is_login=1; u=8493411634; bid=4065a77ca57a69c83405d6e591ab5449_m8r2nhs8; __utma=1.434320573.1747189698.1747189698.1747189698.1; __utmc=1; __utmz=1.1747189698.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); snbim_minify=true; Hm_lvt_1db88642e346389874251b5a1eded6e3=1749028611; xq_a_token=5b11f7f5a3986a802def7dea48868a3b2849e719; xqat=5b11f7f5a3986a802def7dea48868a3b2849e719; xq_id_token=eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ1aWQiOjg0OTM0MTE2MzQsImlzcyI6InVjIiwiZXhwIjoxNzUzMDAzNjExLCJjdG0iOjE3NTA0MTE2MTEyODIsImNpZCI6ImQ5ZDBuNEFadXAifQ.FB12KEYSdWo5g3UqQbnfqR-Gopar8JkuDf54eSf86FzmuGG9XugW7osl3idav9oTgLzgWBut4X6a5-gbqn61wPPV7OV3dMO8oNyBZUxMjisaMBW_-IcUuQ1z-gtXBcHleNamANA-2H3Xf5mZNdVXAW_E0rQZE_y0TEqzeiLxfU5B_RJOTR1Zq_-BQaaOn_Tk0or_hu-nOZR-26lBtcBl1VoTR2Ov1tm_CRN375ohMcZniA265X8umpL_tysQ4m7oazNyezopJE6W7jt-djNGJXZAbLoVXF1U2ULKV325dPWHvPcSZOevxGprItb665QNZvXEzhBB-4fuzhAnYBsqGw; xq_r_token=2ba0614b400ec779704c3adaa7f17c2c2c88143b; _c_WBKFRo=dsWgHR8i8KGPbIyhFlN51PHOzVuuNytvUAFppfkD; _nb_ioWEgULi=; .thumbcache_f24b8bbe5a5934237bbc0eda20c1b6e7=WLnKAYCmLCxL13sG3b3dCuaIIWxGZItK2dxyj3SQELeHQlC27oBs/jcXLvR4rVqsrBg/lnbnfvkgBRtAnBSoIQ%3D%3D; acw_tc=0a27a99417515124338191367e005b5efa24266b40be35881bb2c1c385360c; is_overseas=0; Hm_lpvt_1db88642e346389874251b5a1eded6e3=1751513519; ssxmod_itna=eqGxBDnGKYuxcD4kDRgxYq7ueYKS8DBP01Dp2xQyP08D60DB40Q0OHhqDylQ0dV0GrtqN42D5D/SP4GzDiLPGhDBWAFdYGdTt4lBEWYpxBBIToh63dwWKwxYs=B1pxKWTGRgQW01e0aDmKDUcFYP4iiTx0rD0eDPxDYDGRWD7PDoxDrHzYDjDEp8Rom3F4DKx0kDY5Dwa4mDYPDWxDFi+0xeDowrDDCDi5fZb3DixiaTbDDBriueYmweDi3iIoGfF4LV3TIRxoD9h4DsZGBS9MBpT0vOR6Cbwm+A+3DvxDkXzEGj4umhUghmIriDb7D44rF7GYzGbmr1ADUmrKtY4WBDWAQY+rmx4Rhk0wxmxtiBYu42YOFR443mlf5/Gm/BHYerdzqxiR=uEhl7KSbKQitBu7nhHK0N7GQ897zDPA0eZYiYoqAGDD; ssxmod_itna2=eqGxBDnGKYuxcD4kDRgxYq7ueYKS8DBP01Dp2xQyP08D60DB40Q0OHhqDylQ0dV0GrtqN42YeDA4rYnRItORCDU1ZKlwhQ4eIKPSbxD', 'Referer': 'https://weibo.com/u/7735765253', 'Sec-Ch-Ua': '"Chromium";v="122", "Not(A:Brand";v="24", "Google Chrome";v="122"', 'Sec-Ch-Ua-Mobile': '?0', diff --git a/src/scripts/stock_daily_data_collector.py b/src/scripts/stock_daily_data_collector.py index a634e6a..f87a00f 100644 --- a/src/scripts/stock_daily_data_collector.py +++ b/src/scripts/stock_daily_data_collector.py @@ -6,6 +6,7 @@ from sqlalchemy import create_engine, text from datetime import datetime, timedelta from tqdm import tqdm from src.scripts.config import XUEQIU_HEADERS +from src.scripts.ProxyIP import EnhancedProxyManager import gc class StockDailyDataCollector: @@ -19,6 +20,8 @@ class StockDailyDataCollector: pool_recycle=3600 ) self.headers = XUEQIU_HEADERS + # 初始化代理管理器 + self.proxy_manager = EnhancedProxyManager() def fetch_all_stock_codes(self): # 从gp_code_all获取股票代码 @@ -37,15 +40,18 @@ class StockDailyDataCollector: codes_hk = df_hk['gp_code'].tolist() # 合并去重 - all_codes = list(set(codes_all + codes_zs + codes_hk)) - print(f"获取到股票代码: {len(codes_all)}个来自gp_code_all, {len(codes_zs)}个来自gp_code_zs, {len(codes_hk)}个来自gp_code_hk, 去重后共{len(all_codes)}个") + all_codes = list(set(codes_hk)) + # all_codes = list(set(codes_all + codes_zs + codes_hk)) + print(f"获取到股票代码: {len(codes_all)} 个来自gp_code_all, {len(codes_zs)}个来自gp_code_zs, {len(codes_hk)}个来自gp_code_hk, 去重后共{len(all_codes)}个") return all_codes def fetch_daily_stock_data(self, symbol, begin, count=-1): """获取日线数据,count=-1表示最新一天,-2表示最近两天,-1800表示最近1800天""" url = f"https://stock.xueqiu.com/v5/stock/chart/kline.json?symbol={symbol}&begin={begin}&period=day&type=before&count={count}&indicator=kline,pe,pb,ps,pcf,market_capital,agt,ggt,balance" try: - response = requests.get(url, headers=self.headers, timeout=20) + # 使用代理管理器发送请求 + # response = requests.get(url, headers=self.headers, timeout=20) + response = self.proxy_manager.request_with_proxy('get', url, headers=self.headers) return response.json() except Exception as e: print(f"Request error for {symbol}: {e}") @@ -85,9 +91,9 @@ class StockDailyDataCollector: start_date = datetime.strptime(date, '%Y-%m-%d') date_str = date - delete_query = text("DELETE FROM gp_day_data WHERE `timestamp` LIKE :date_str") - with self.engine.begin() as conn: - conn.execute(delete_query, {"date_str": f"{date_str}%"}) + # delete_query = text("DELETE FROM gp_day_data WHERE `timestamp` LIKE :date_str") + # with self.engine.begin() as conn: + # conn.execute(delete_query, {"date_str": f"{date_str}%"}) stock_codes = self.fetch_all_stock_codes() begin = int(start_date.replace(hour=0, minute=0, second=0, microsecond=0).timestamp() * 1000) @@ -253,6 +259,30 @@ class StockDailyDataCollector: except Exception as e: print(f"!!! Error saving ex-rights log: {e}") + def fetch_single_stock_history(self, symbol, days=1800): + """ + 获取单只股票的历史数据并保存到数据库 + :param symbol: 股票代码 + :param days: 获取的天数,默认1800天 + :return: 是否成功 + """ + print(f"开始获取 {symbol} 最近 {days} 天的历史数据...") + begin = int(datetime.now().timestamp() * 1000) + data = self.fetch_daily_stock_data(symbol, begin, count=-days) + + if data.get('error_code') == 0: + df = self.transform_data(data, symbol) + if df is not None and not df.empty: + df.to_sql('gp_day_data', self.engine, if_exists='append', index=False) + print(f"成功保存 {symbol} 的历史数据,共 {len(df)} 条记录") + return True + else: + print(f"未能转换 {symbol} 的数据") + return False + else: + print(f"获取 {symbol} 数据失败: {data.get('error_description')}") + return False + def collect_stock_daily_data(db_url, date=None): collector = StockDailyDataCollector(db_url) collector.fetch_data_for_date(date) diff --git a/src/scripts/stock_daily_data_collector_v2.py b/src/scripts/stock_daily_data_collector_v2.py new file mode 100644 index 0000000..79f426b --- /dev/null +++ b/src/scripts/stock_daily_data_collector_v2.py @@ -0,0 +1,328 @@ +# coding:utf-8 + +import requests +import pandas as pd +from sqlalchemy import create_engine, text +from datetime import datetime, timedelta +from tqdm import tqdm +import sys +import os +import gc + +# 添加项目根目录到路径 +project_root = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) +sys.path.append(project_root) + +from src.scripts.config import XUEQIU_HEADERS +from src.scripts.ProxyIP import EnhancedProxyManager +from src.quantitative_analysis.batch_stock_price_collector import fetch_and_store_stock_data +from src.valuation_analysis.stock_price_collector import StockPriceCollector +from src.scripts.stock_daily_data_collector import StockDailyDataCollector + + +class StockDailyDataCollectorV2: + """股票日线数据采集器V2版本 - 整合雪球和东方财富数据""" + + def __init__(self, db_url): + self.engine = create_engine( + db_url, + pool_size=5, + max_overflow=10, + pool_recycle=3600 + ) + self.headers = XUEQIU_HEADERS + self.proxy_manager = EnhancedProxyManager() + # 创建东方财富数据采集器 + self.eastmoney_collector = StockPriceCollector(db_url) + # 创建原版采集器用于单只股票历史数据获取 + self.original_collector = StockDailyDataCollector(db_url) + + def convert_symbol_format(self, symbol): + """ + 将雪球格式的股票代码转换为东方财富格式 + 雪球格式:SZ300177 -> 东方财富格式:300177.SZ + """ + if symbol.startswith('SZ'): + return f"{symbol[2:]}.SZ" + elif symbol.startswith('SH'): + return f"{symbol[2:]}.SH" + else: + return symbol + + def convert_eastmoney_to_xueqiu_format(self, stock_code): + """ + 将东方财富格式的股票代码转换为雪球格式 + 东方财富格式:300177.SZ -> 雪球格式:SZ300177 + """ + if '.SZ' in stock_code: + return f"SZ{stock_code.replace('.SZ', '')}" + elif '.SH' in stock_code: + return f"SH{stock_code.replace('.SH', '')}" + else: + return stock_code + + def fetch_eastmoney_data(self): + """获取东方财富的实时数据""" + print("正在获取东方财富数据...") + df = self.eastmoney_collector.fetch_all_data() + if not df.empty: + # 转换股票代码格式为雪球格式 + df['symbol'] = df['stock_code'].apply(self.convert_eastmoney_to_xueqiu_format) + print(f"成功获取东方财富数据,共 {len(df)} 条记录") + return df + + def merge_data(self, xueqiu_df, eastmoney_df): + """合并雪球和东方财富数据""" + print("正在合并雪球和东方财富数据...") + + # 基于symbol进行合并 + merged_df = pd.merge( + xueqiu_df, + eastmoney_df[['symbol', 'high_price', 'low_price', 'open_price', 'pre_close', 'list_date']], + on='symbol', + how='left' + ) + + print(f"数据合并完成,共 {len(merged_df)} 条记录") + return merged_df + + def transform_to_gp_day_data(self, merged_df): + """将合并后的数据转换为gp_day_data表结构""" + print("正在转换数据格式...") + + # 创建符合gp_day_data表结构的DataFrame + gp_day_df = pd.DataFrame() + + # 映射字段 + gp_day_df['symbol'] = merged_df['symbol'] + gp_day_df['timestamp'] = pd.to_datetime(merged_df['fetch_time']) + gp_day_df['volume'] = merged_df['volume'] + gp_day_df['open'] = merged_df['open_price'] + gp_day_df['high'] = merged_df['high_price'] + gp_day_df['low'] = merged_df['low_price'] + gp_day_df['close'] = merged_df['current'] + gp_day_df['chg'] = merged_df['chg'] + gp_day_df['percent'] = merged_df['percent'] + gp_day_df['turnoverrate'] = merged_df['turnover_rate'] + gp_day_df['amount'] = merged_df['amount'] + gp_day_df['pb'] = merged_df['pb'] + gp_day_df['pe'] = merged_df['pe_ttm'] + gp_day_df['ps'] = merged_df['ps'] + + # 添加pre_close字段(用于除权检查) + gp_day_df['pre_close'] = merged_df['pre_close'] + + print(f"数据转换完成,共 {len(gp_day_df)} 条记录") + return gp_day_df + + def save_to_database(self, df): + """保存数据到数据库""" + if df.empty: + print("没有数据需要保存") + return + + print(f"正在保存数据到数据库,共 {len(df)} 条记录...") + + # 删除今日数据 + today_str = datetime.now().strftime('%Y-%m-%d') + delete_query = text("DELETE FROM gp_day_data WHERE `timestamp` LIKE :date_str") + + try: + with self.engine.begin() as conn: + conn.execute(delete_query, {"date_str": f"{today_str}%"}) + print(f"已删除今日 {today_str} 的旧数据") + except Exception as e: + print(f"删除今日数据失败: {e}") + + # 分批保存数据 + batch_size = 1000 + for i in range(0, len(df), batch_size): + batch = df.iloc[i:i+batch_size] + try: + batch.to_sql('gp_day_data', self.engine, if_exists='append', index=False) + print(f"已保存第 {i//batch_size + 1} 批数据") + except Exception as e: + print(f"保存第 {i//batch_size + 1} 批数据失败: {e}") + + print("数据保存完成") + + def check_ex_rights_before_save(self, df): + """在保存数据库之前检查除权情况,返回除权股票列表和除权日志数据""" + print("步骤5.1: 检查除权情况(保存前)...") + + ex_rights_stocks = [] + ex_rights_log_data = [] + today_str = datetime.now().strftime('%Y-%m-%d') + + for _, row in tqdm(df.iterrows(), total=len(df), desc="检查除权"): + symbol = row['symbol'] + current_pre_close = row['pre_close'] + + # 如果pre_close为空,跳过 + if pd.isna(current_pre_close): + continue + + # 查询数据库中该股票的最近两条收盘价记录 + query = text(""" + SELECT `close`, `timestamp` FROM gp_day_data + WHERE symbol = :symbol + ORDER BY `timestamp` DESC + LIMIT 2 + """) + + try: + with self.engine.connect() as conn: + results = conn.execute(query, {"symbol": symbol}).fetchall() + + if results: + # 检查最新记录是否为今天的数据 + latest_record = results[0] + latest_timestamp = latest_record[1] + latest_date_str = latest_timestamp.strftime('%Y-%m-%d') + + if latest_date_str == today_str and len(results) > 1: + # 如果最新记录是今天的,且有第二条记录,则用第二条记录比较 + db_last_close = float(results[1][0]) + # print(f"股票 {symbol}: 检测到今日已有数据,使用昨日收盘价 {db_last_close} 进行比较") + else: + # 如果最新记录不是今天的,或者只有一条记录,则用最新记录比较 + db_last_close = float(results[0][0]) + + # 比较pre_close和数据库中的收盘价 + if abs(db_last_close - current_pre_close) > 0.001: + print(f"发现除权股票: {symbol}, 数据库收盘价: {db_last_close}, 当前昨收价: {current_pre_close}") + ex_rights_stocks.append(symbol) + + # 收集除权日志数据 + ex_rights_log_data.append({ + 'symbol': symbol, + 'date': today_str, + 'db_price': db_last_close, + 'api_price': current_pre_close, + 'log_time': datetime.now() + }) + + except Exception as e: + print(f"查询 {symbol} 历史数据失败: {e}") + continue + + if ex_rights_stocks: + print(f"检测到 {len(ex_rights_stocks)} 只除权股票: {ex_rights_stocks}") + else: + print("未发现除权股票") + + return ex_rights_stocks, ex_rights_log_data + + def save_ex_rights_log(self, log_data: list): + """将除权日志保存到数据库""" + if not log_data: + return + + print(f"正在保存 {len(log_data)} 条除权日志到gp_ex_rights_log表...") + try: + df = pd.DataFrame(log_data) + # 确保列名与数据库字段匹配 + df = df.rename(columns={ + 'symbol': 'stock_code', + 'date': 'change_date', + 'db_price': 'before_price', + 'api_price': 'after_price', + 'log_time': 'update_time' + }) + df.to_sql('gp_ex_rights_log', self.engine, if_exists='append', index=False) + print("除权日志保存成功") + except Exception as e: + print(f"保存除权日志失败: {e}") + + def handle_ex_rights_stocks(self, ex_rights_stocks, ex_rights_log_data): + """处理除权股票:保存日志、删除历史数据并重新获取1800天数据""" + if not ex_rights_stocks: + return + + print("步骤6: 处理除权股票...") + + # 6.1 保存除权日志 + if ex_rights_log_data: + self.save_ex_rights_log(ex_rights_log_data) + + # 6.2 重新获取历史数据 + print(f"开始处理 {len(ex_rights_stocks)} 只除权股票,重新获取历史数据...") + + for symbol in tqdm(ex_rights_stocks, desc="处理除权股票"): + try: + # 删除该股票的所有历史数据 + delete_query = text("DELETE FROM gp_day_data WHERE symbol = :symbol") + with self.engine.begin() as conn: + conn.execute(delete_query, {"symbol": symbol}) + print(f"已删除 {symbol} 的历史数据") + + # 重新获取1800天的历史数据 + success = self.original_collector.fetch_single_stock_history(symbol, 1800) + if success: + print(f"成功重新获取 {symbol} 的历史数据") + else: + print(f"重新获取 {symbol} 的历史数据失败") + + except Exception as e: + print(f"处理除权股票 {symbol} 失败: {e}") + + def run_daily_collection(self): + """执行每日数据采集""" + print("=" * 60) + print("股票日线数据采集器V2 - 开始运行") + print("=" * 60) + + try: + # 1. 获取雪球数据 + print("步骤1: 获取雪球数据...") + xueqiu_df = fetch_and_store_stock_data() + if xueqiu_df.empty: + print("雪球数据获取失败,终止运行") + return + + # 2. 获取东方财富数据 + print("步骤2: 获取东方财富数据...") + eastmoney_df = self.fetch_eastmoney_data() + if eastmoney_df.empty: + print("东方财富数据获取失败,终止运行") + return + + # 3. 合并数据 + print("步骤3: 合并数据...") + merged_df = self.merge_data(xueqiu_df, eastmoney_df) + + # 4. 转换数据格式 + print("步骤4: 转换数据格式...") + gp_day_df = self.transform_to_gp_day_data(merged_df) + + # 5. 检查除权(保存前) + ex_rights_stocks, ex_rights_log_data = self.check_ex_rights_before_save(gp_day_df) + + # 5.2. 保存到数据库 + print("步骤5.2: 保存到数据库...") + self.save_to_database(gp_day_df) + + # 6. 处理除权股票(保存后) + self.handle_ex_rights_stocks(ex_rights_stocks, ex_rights_log_data) + + print("=" * 60) + print("股票日线数据采集完成") + print("=" * 60) + + except Exception as e: + print(f"采集过程中发生错误: {e}") + finally: + # 清理资源 + self.engine.dispose() + gc.collect() + + +def collect_stock_daily_data_v2(db_url): + """V2版本的股票日线数据采集入口函数""" + collector = StockDailyDataCollectorV2(db_url) + collector.run_daily_collection() + + +if __name__ == "__main__": + db_url = 'mysql+pymysql://root:Chlry#$.8@192.168.18.199:3306/db_gp_cj' + collect_stock_daily_data_v2(db_url) \ No newline at end of file diff --git a/tools/stock_code_formatter.py b/tools/stock_code_formatter.py new file mode 100644 index 0000000..62752a0 --- /dev/null +++ b/tools/stock_code_formatter.py @@ -0,0 +1,244 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- +""" +股票代码格式转换工具类 + +提供多种股票代码格式之间的转换功能 +""" + +import re +from typing import Optional + + +class StockCodeFormatter: + """股票代码格式转换器""" + + def __init__(self): + """初始化""" + pass + + def _parse_stock_code(self, stock_code: str) -> tuple: + """ + 解析股票代码,提取代码和市场信息 + + Args: + stock_code: 输入的股票代码 + + Returns: + tuple: (代码数字, 市场标识) 如 ('688008', 'SH') + """ + if not stock_code: + return None, None + + stock_code = stock_code.strip().upper() + + # 处理 688008.SH 格式 + if '.' in stock_code: + parts = stock_code.split('.') + if len(parts) == 2: + code, market = parts[0], parts[1] + return code, market + + # 处理 SH688008 格式 + elif stock_code.startswith(('SZ', 'SH', 'BJ')): + market = stock_code[:2] + code = stock_code[2:] + return code, market + + # 处理纯数字 688008 格式 + elif stock_code.isdigit(): + # 根据数字前缀自动判断市场 + if stock_code.startswith(('60', '68')): + return stock_code, 'SH' + elif stock_code.startswith(('00', '30', '20')): + return stock_code, 'SZ' + elif stock_code.startswith(('8', '43', '87')): + return stock_code, 'BJ' + else: + return stock_code, None + + return None, None + + def to_dot_format(self, stock_code: str) -> Optional[str]: + """ + 转换为点分格式 (如: 688008.SH) + + Args: + stock_code: 输入的股票代码,支持多种格式 + + Returns: + str: 点分格式的股票代码,如果无法转换则返回None + + Examples: + >>> formatter = StockCodeFormatter() + >>> formatter.to_dot_format('SH688008') + '688008.SH' + >>> formatter.to_dot_format('688008') + '688008.SH' + >>> formatter.to_dot_format('688008.SH') + '688008.SH' + """ + code, market = self._parse_stock_code(stock_code) + + if code and market: + return f"{code}.{market}" + + return None + + def to_prefix_format(self, stock_code: str) -> Optional[str]: + """ + 转换为前缀格式 (如: SH688008) + + Args: + stock_code: 输入的股票代码,支持多种格式 + + Returns: + str: 前缀格式的股票代码,如果无法转换则返回None + + Examples: + >>> formatter = StockCodeFormatter() + >>> formatter.to_prefix_format('688008.SH') + 'SH688008' + >>> formatter.to_prefix_format('688008') + 'SH688008' + >>> formatter.to_prefix_format('SH688008') + 'SH688008' + """ + code, market = self._parse_stock_code(stock_code) + + if code and market: + return f"{market}{code}" + + return None + + def to_number_only(self, stock_code: str) -> Optional[str]: + """ + 转换为纯数字格式 (如: 688008) + + Args: + stock_code: 输入的股票代码,支持多种格式 + + Returns: + str: 纯数字格式的股票代码,如果无法转换则返回None + + Examples: + >>> formatter = StockCodeFormatter() + >>> formatter.to_number_only('688008.SH') + '688008' + >>> formatter.to_number_only('SH688008') + '688008' + >>> formatter.to_number_only('688008') + '688008' + """ + code, market = self._parse_stock_code(stock_code) + + if code: + return code + + return None + + def get_market(self, stock_code: str) -> Optional[str]: + """ + 获取股票代码对应的市场标识 + + Args: + stock_code: 输入的股票代码,支持多种格式 + + Returns: + str: 市场标识 ('SH', 'SZ', 'BJ'),如果无法识别则返回None + """ + code, market = self._parse_stock_code(stock_code) + return market + + def is_valid_stock_code(self, stock_code: str) -> bool: + """ + 验证股票代码是否有效 + + Args: + stock_code: 输入的股票代码 + + Returns: + bool: 是否为有效的股票代码 + """ + code, market = self._parse_stock_code(stock_code) + return code is not None and market is not None + + def batch_convert(self, stock_codes: list, target_format: str = 'dot') -> dict: + """ + 批量转换股票代码格式 + + Args: + stock_codes: 股票代码列表 + target_format: 目标格式 ('dot', 'prefix', 'number') + + Returns: + dict: {原始代码: 转换后代码} 的映射字典 + """ + result = {} + + for stock_code in stock_codes: + if target_format == 'dot': + converted = self.to_dot_format(stock_code) + elif target_format == 'prefix': + converted = self.to_prefix_format(stock_code) + elif target_format == 'number': + converted = self.to_number_only(stock_code) + else: + converted = None + + result[stock_code] = converted + + return result + + +def main(): + """示例用法""" + print("=== 股票代码格式转换工具示例 ===") + + # 创建格式转换器 + formatter = StockCodeFormatter() + + # 测试用例 + test_codes = [ + '688008.SH', # 沪市科创板 + 'SH688008', # 前缀格式 + '688008', # 纯数字 + '300661.SZ', # 深市创业板 + 'SZ300661', # 前缀格式 + '300661', # 纯数字 + '000858.SZ', # 深市主板 + '600519.SH', # 沪市主板 + '430123.BJ', # 北交所 + 'BJ430123', # 北交所前缀格式 + ] + + print("\n原始代码 -> 点分格式 -> 前缀格式 -> 纯数字格式 -> 市场") + print("-" * 70) + + for code in test_codes: + dot_format = formatter.to_dot_format(code) + prefix_format = formatter.to_prefix_format(code) + number_format = formatter.to_number_only(code) + market = formatter.get_market(code) + is_valid = formatter.is_valid_stock_code(code) + + status = "✓" if is_valid else "✗" + print(f"{code:12} -> {dot_format or 'None':12} -> {prefix_format or 'None':12} -> {number_format or 'None':8} -> {market or 'None':4} {status}") + + # 批量转换示例 + print(f"\n=== 批量转换示例 ===") + batch_codes = ['SH688008', '300661', 'BJ430123'] + + dot_results = formatter.batch_convert(batch_codes, 'dot') + print("转换为点分格式:") + for original, converted in dot_results.items(): + print(f" {original} -> {converted}") + + prefix_results = formatter.batch_convert(batch_codes, 'prefix') + print("转换为前缀格式:") + for original, converted in prefix_results.items(): + print(f" {original} -> {converted}") + + +if __name__ == "__main__": + main() \ No newline at end of file diff --git a/tools/trigger_batch_collection.py b/tools/trigger_batch_collection.py new file mode 100644 index 0000000..55beabd --- /dev/null +++ b/tools/trigger_batch_collection.py @@ -0,0 +1,35 @@ +import requests +import json + +def trigger_batch_stock_price_collection(): + """ + 一个简单的工具函数,用于触发批量采集A股行情的调度器接口,并打印响应。 + """ + # 目标URL + url = "http://192.168.16.214:5089/scheduler/batch_stock_price/collection" + + print(f"正在向以下地址发送GET请求:\n{url}\n") + + try: + # 发送GET请求,可以设置一个超时时间(例如10秒) + response = requests.get(url, timeout=30) + + # 检查响应状态码 + print(f"请求完成,HTTP状态码: {response.status_code}\n") + + # 尝试将响应体解析为JSON格式并打印 + try: + response_json = response.json() + print("服务器响应内容 (JSON格式):") + # 使用json.dumps美化输出 + print(json.dumps(response_json, indent=2, ensure_ascii=False)) + except json.JSONDecodeError: + print("服务器响应内容 (非JSON格式):") + print(response.text) + + except requests.exceptions.RequestException as e: + # 处理请求过程中可能出现的异常(如网络问题、超时等) + print(f"请求失败,发生异常: {e}") + +if __name__ == '__main__': + trigger_batch_stock_price_collection() \ No newline at end of file