Commit 3e76e1e54776f92cc0a283dd6abe6f93e572cda4

Authored by 廖磊
2 parents 84a0f33f 7a40065f

Merge branch 'minhang' of

http://222.66.0.204:8090/panzhaov5/bsth_control into minhang
Showing 33 changed files with 3338 additions and 2881 deletions
src/main/java/com/bsth/Application.java
@@ -8,14 +8,16 @@ import org.springframework.boot.builder.SpringApplicationBuilder; @@ -8,14 +8,16 @@ import org.springframework.boot.builder.SpringApplicationBuilder;
8 import org.springframework.boot.context.web.SpringBootServletInitializer; 8 import org.springframework.boot.context.web.SpringBootServletInitializer;
9 import org.springframework.context.annotation.Bean; 9 import org.springframework.context.annotation.Bean;
10 import org.springframework.context.annotation.Primary; 10 import org.springframework.context.annotation.Primary;
  11 +import org.springframework.transaction.annotation.EnableTransactionManagement;
11 12
12 import java.util.concurrent.Executors; 13 import java.util.concurrent.Executors;
13 import java.util.concurrent.ScheduledExecutorService; 14 import java.util.concurrent.ScheduledExecutorService;
14 15
  16 +@EnableTransactionManagement
15 @SpringBootApplication 17 @SpringBootApplication
16 public class Application extends SpringBootServletInitializer { 18 public class Application extends SpringBootServletInitializer {
17 19
18 - public static ScheduledExecutorService mainServices = Executors.newScheduledThreadPool(13); 20 + public static ScheduledExecutorService mainServices = Executors.newScheduledThreadPool(14);
19 21
20 @Override 22 @Override
21 protected SpringApplicationBuilder configure(SpringApplicationBuilder application) { 23 protected SpringApplicationBuilder configure(SpringApplicationBuilder application) {
src/main/java/com/bsth/data/BasicData.java
@@ -40,7 +40,7 @@ public class BasicData implements CommandLineRunner { @@ -40,7 +40,7 @@ public class BasicData implements CommandLineRunner {
40 //车辆自编号和公司代码对照 (K: 车辆自编号 ,V:公司代码) 40 //车辆自编号和公司代码对照 (K: 车辆自编号 ,V:公司代码)
41 public static Map<String, String> nbbm2CompanyCodeMap; 41 public static Map<String, String> nbbm2CompanyCodeMap;
42 42
43 - //车辆自编号和公司代码对照 (K: 车辆自编号 ,V:牌照号) 43 + //车辆自编号和牌照号对照 (K: 车辆自编号 ,V:牌照号)
44 public static Map<String, String> nbbmCompanyPlateMap; 44 public static Map<String, String> nbbmCompanyPlateMap;
45 45
46 //站点编码和名称对照,包括停车场 (K: lineCode_updown_stationCode ,V:站点名称) 46 //站点编码和名称对照,包括停车场 (K: lineCode_updown_stationCode ,V:站点名称)
src/main/java/com/bsth/data/arrival/AnalyseData.java deleted 100644 → 0
1 -package com.bsth.data.arrival;  
2 -  
3 -import org.slf4j.Logger;  
4 -import org.slf4j.LoggerFactory;  
5 -import org.springframework.stereotype.Component;  
6 -  
7 -import java.util.ArrayList;  
8 -import java.util.Collections;  
9 -import java.util.List;  
10 -import java.util.Set;  
11 -  
12 -/**  
13 - *  
14 - * @ClassName: AnalyseArrivalData  
15 - * @Description: TODO(分析一下进出站场数据)  
16 - * @author PanZhao  
17 - * @date 2016年8月24日 上午11:09:37  
18 - *  
19 - */  
20 -@Component  
21 -public class AnalyseData {  
22 -  
23 - Logger logger = LoggerFactory.getLogger(AnalyseData.class);  
24 -  
25 - public void analyse(Set<String> cars){  
26 - try{  
27 - List<ArrivalEntity> list, clearList;  
28 - for(String car : cars){  
29 - list = ArrivalData_GPS.findByNbbm(car);  
30 - analyse(list);  
31 -  
32 - //清理掉无效的点  
33 - clearList = new ArrayList<>();  
34 - for(ArrivalEntity arr : list){  
35 - if(!arr.isEnable())  
36 - clearList.add(arr);  
37 - }  
38 - list.removeAll(clearList);  
39 - }  
40 - }catch(Exception e){  
41 - logger.error("", e);  
42 - }  
43 - }  
44 -  
45 - private final static int SHIFT_TIME = 1000 * 60 * 5,  
46 - SCH_TIME = 1000 * 60 * 10;  
47 -  
48 - static ArrivalComparator comp = new ArrivalComparator();  
49 -  
50 - public void analyse(List<ArrivalEntity> list){  
51 - if(list.size() <= 1)  
52 - return;  
53 -  
54 - //排序  
55 - Collections.sort(list, comp);  
56 - ArrivalEntity prve = list.get(0)  
57 - ,curr;  
58 - for(int i = 1; i < list.size(); i ++){  
59 - curr = list.get(i);  
60 - //如果第一个点无效  
61 - if(!effective(prve)){  
62 - prve.setEnable(false);  
63 - prve = curr;  
64 - continue;  
65 - }  
66 - //如果第二个点无效  
67 - else if(!effective(curr)){  
68 - curr.setEnable(false);  
69 - continue;  
70 - }  
71 - else if(curr.getTs() - prve.getTs() < SCH_TIME){  
72 - if(prve.getUpDown() == curr.getUpDown()){  
73 - //信号漂移,出站无效  
74 - if(curr.getStopNo().equals(prve.getStopNo())  
75 - && prve.getInOut() == 1 && curr.getInOut() == 0  
76 - && curr.getTs() - prve.getTs() < SHIFT_TIME){  
77 - prve.setEnable(false);  
78 - }  
79 -// else if(curr.getInOut()){  
80 -// //curr.getTs() - prve.getTs() < 30000  
81 -// }  
82 - }  
83 - else{  
84 - //上下行的同名站,新走向的第一个出站信号开始有效  
85 - if(prve.getStopName().equals(curr.getStopName())){  
86 - if(curr.getInOut() == 0)  
87 - curr.setEnable(false);  
88 - else  
89 - prve = curr;  
90 - }  
91 - }  
92 - }  
93 - else  
94 - prve = curr;  
95 - }  
96 - }  
97 -  
98 - private boolean effective(ArrivalEntity arr){  
99 - /*//停车场  
100 - if(BasicData.parkCodeList.contains(arr.getStopNo())){  
101 - arr.setTcc(true);  
102 - return true;  
103 - }  
104 -  
105 - Integer upDown = BasicData.lineStationUpDownMap.get(arr.getLineCode() + "_" + arr.getStopNo());  
106 -  
107 - return arr.getUpDown() == upDown || BasicData.parkCodeList.contains(arr.getStopNo());*/  
108 - return false;  
109 - }  
110 -}  
src/main/java/com/bsth/data/arrival/ArrivalData_GPS.java deleted 100644 → 0
1 -package com.bsth.data.arrival;  
2 -  
3 -import com.bsth.data.schedule.DayOfSchedule;  
4 -import com.google.common.collect.ArrayListMultimap;  
5 -import com.google.common.collect.ListMultimap;  
6 -import org.slf4j.Logger;  
7 -import org.slf4j.LoggerFactory;  
8 -import org.springframework.beans.factory.annotation.Autowired;  
9 -import org.springframework.boot.CommandLineRunner;  
10 -import org.springframework.stereotype.Component;  
11 -  
12 -import java.util.*;  
13 -  
14 -/**  
15 - *  
16 - * @ClassName: ArrivalData_GPS  
17 - * @Description: TODO(GPS到离站数据)  
18 - * @author PanZhao  
19 - * @date 2016年8月18日 下午10:05:27  
20 - *  
21 - */  
22 -@Component  
23 -public class ArrivalData_GPS implements CommandLineRunner{  
24 -  
25 - // 起终点站进出数据 K:车辆编码  
26 - private static ListMultimap<String, ArrivalEntity> startAndEndMaps;  
27 -  
28 - private static Map<String, Integer> carIndexMap;  
29 -  
30 - static{  
31 - startAndEndMaps = ArrayListMultimap.create();  
32 -  
33 - carIndexMap = new HashMap<>();  
34 - }  
35 -  
36 - @Autowired  
37 - DataLoaderThread dataLoaderThread;  
38 -  
39 - static Logger logger = LoggerFactory.getLogger(ArrivalData_GPS.class);  
40 -  
41 - @Override  
42 - public void run(String... arg0) throws Exception {  
43 - logger.info("ArrivalData_GPS,30,06");  
44 - //Application.mainServices.scheduleWithFixedDelay(dataLoaderThread, 40, 6, TimeUnit.SECONDS);  
45 - }  
46 -  
47 - @Component  
48 - public static class DataLoaderThread extends Thread {  
49 -  
50 - @Autowired  
51 - DataLoader dataLoader;  
52 -  
53 - @Autowired  
54 - DayOfSchedule dayOfSchedule;  
55 -  
56 - @Autowired  
57 - AnalyseData analyseData;  
58 -  
59 - @Override  
60 - public void run() {  
61 - /*try{  
62 - logger.info("开始加载到离站数据, " + System.currentTimeMillis());  
63 - List<ArrivalEntity> arrSets = dataLoader.load();  
64 - if(null == arrSets || arrSets.size() == 0)  
65 - return;  
66 -  
67 - //有起终点进出的车辆  
68 - Set<String> carSet = new TreeSet<>();  
69 - //按车辆起终点站过滤数据  
70 - String nbbm;  
71 - Set<String> seList;  
72 - for(ArrivalEntity arr : arrSets){  
73 - nbbm = arr.getNbbm();  
74 -  
75 - seList = dayOfSchedule.getSEStationList(nbbm);  
76 - if(seList.contains(arr.getStopNo())){  
77 - startAndEndMaps.put(nbbm, arr);  
78 - carSet.add(nbbm);  
79 - }  
80 - }  
81 - //从专业的角度分析一下数据  
82 - analyseData.analyse(carSet);  
83 -  
84 - //开始匹配  
85 - Arrival2Schedule.start(carSet);  
86 - }catch(Exception e){  
87 - logger.error("", e);  
88 - }*/  
89 - }  
90 - }  
91 -  
92 - /**  
93 - *  
94 - * @Title: clearRAMData  
95 - * @Description: TODO(清理内存数据)  
96 - */  
97 - public void clearRAMData(String lineCode){  
98 -  
99 - List<ArrivalEntity> remList = new ArrayList<>();  
100 -  
101 - //车辆映射的进出站数据,遍历删除对应线路数据。  
102 - Collection<ArrivalEntity> seList = startAndEndMaps.values();  
103 - for(ArrivalEntity arr : seList){  
104 - if(arr.getLineCode().equals(lineCode))  
105 - remList.add(arr);  
106 - }  
107 -  
108 - //删除数据  
109 - int count = 0;  
110 - for(ArrivalEntity arr : remList){  
111 - startAndEndMaps.remove(arr.getNbbm(), arr);  
112 - count ++;  
113 - }  
114 -  
115 - logger.info(lineCode + " 清除到离站数据 ," + count);  
116 - }  
117 -  
118 - public synchronized static List<ArrivalEntity> findByNbbm(String nbbm){  
119 - return startAndEndMaps.get(nbbm);  
120 - }  
121 -  
122 - public static List<ArrivalEntity> getIncrement(String nbbm){  
123 - Integer mark = null;  
124 - if (!carIndexMap.containsKey(nbbm))  
125 - mark = 0;  
126 - else  
127 - mark = carIndexMap.get(nbbm);  
128 -  
129 - List<ArrivalEntity> all = startAndEndMaps.get(nbbm);  
130 - int size = all.size();  
131 - if(size == 0)  
132 - return new ArrayList<>(0);  
133 -  
134 - List<ArrivalEntity> rs = all.subList(mark, size);  
135 - carIndexMap.put(nbbm, size);  
136 - return rs;  
137 - }  
138 -}  
139 \ No newline at end of file 0 \ No newline at end of file
src/main/java/com/bsth/data/car_out_info/CarOutInfo.java 0 → 100644
  1 +package com.bsth.data.car_out_info;
  2 +
  3 +import com.bsth.entity.realcontrol.ScheduleRealInfo;
  4 +
  5 +import java.util.List;
  6 +
  7 +/**
  8 + * Created by panzhao on 2017/5/7.
  9 + */
  10 +public interface CarOutInfo {
  11 +
  12 + void updateAll();
  13 +
  14 + void update(String lineCode);
  15 +
  16 + void update(List<ScheduleRealInfo> list) ;
  17 +}
src/main/java/com/bsth/data/car_out_info/CarOutInfoHandler.java 0 → 100644
  1 +package com.bsth.data.car_out_info;
  2 +
  3 +import com.bsth.data.BasicData;
  4 +import com.bsth.data.schedule.DayOfSchedule;
  5 +import com.bsth.data.schedule.ScheduleComparator;
  6 +import com.bsth.entity.realcontrol.ScheduleRealInfo;
  7 +import com.google.common.collect.ArrayListMultimap;
  8 +import org.apache.commons.lang3.StringUtils;
  9 +import org.slf4j.Logger;
  10 +import org.slf4j.LoggerFactory;
  11 +import org.springframework.beans.factory.annotation.Autowired;
  12 +import org.springframework.boot.CommandLineRunner;
  13 +import org.springframework.jdbc.core.BatchPreparedStatementSetter;
  14 +import org.springframework.jdbc.core.JdbcTemplate;
  15 +import org.springframework.stereotype.Component;
  16 +import org.springframework.stereotype.Service;
  17 +import org.springframework.transaction.annotation.Transactional;
  18 +
  19 +import java.sql.PreparedStatement;
  20 +import java.sql.SQLException;
  21 +import java.util.*;
  22 +
  23 +/**
  24 + * 发车信息表处理程序
  25 + * Created by panzhao on 2017/5/5.
  26 + */
  27 +@Service
  28 +public class CarOutInfoHandler implements CommandLineRunner, CarOutInfo {
  29 +
  30 + @Autowired
  31 + DayOfSchedule dayOfSchedule;
  32 +
  33 + //班次类型对照表
  34 + Map<String, String> bcTypeMap;
  35 +
  36 + private static ScheduleComparator.FCSJ schFCSJComparator = new ScheduleComparator.FCSJ();
  37 +
  38 + @Autowired
  39 + JdbcTemplate jdbcTemplate;
  40 +
  41 + Logger logger = LoggerFactory.getLogger(this.getClass());
  42 +
  43 + /**
  44 + * 全量更新发车信息表
  45 + */
  46 + @Override
  47 + public void updateAll() {
  48 + Set<String> ks = BasicData.lineCode2NameMap.keySet();
  49 + for (String lineCode : ks) {
  50 + update(lineCode);
  51 + }
  52 + }
  53 +
  54 + @Override
  55 + public void update(String lineCode) {
  56 + try {
  57 + ArrayListMultimap<String, ScheduleRealInfo> lpScheduleMap = dayOfSchedule.getLpScheduleMap();
  58 + List<ScheduleRealInfo> list = new ArrayList<>();
  59 +
  60 + Set<String> ks = lpScheduleMap.keySet();
  61 + String prefix = lineCode + "_";
  62 + for (String k : ks) {
  63 + if (k.indexOf(prefix) != -1) {
  64 + list.addAll(lpScheduleMap.get(k));
  65 + }
  66 + }
  67 +
  68 + update(list);
  69 + } catch (Exception e) {
  70 + logger.error("", e);
  71 + }
  72 + }
  73 +
  74 + @Transactional
  75 + @Override
  76 + public void update(List<ScheduleRealInfo> list) {
  77 + if (list.size() == 0)
  78 + return;
  79 + String lineCode = list.get(0).getXlBm();
  80 + //按上下行分组
  81 + List<ScheduleRealInfo> ups = new ArrayList<>(), downs = new ArrayList<>();
  82 + for (ScheduleRealInfo sch : list) {
  83 + if (sch.getXlDir().equals("0"))
  84 + ups.add(sch);
  85 + else
  86 + downs.add(sch);
  87 + }
  88 +
  89 + ScheduleRealInfo[] upArray = nexts(ups),
  90 + downArray = nexts(downs);
  91 +
  92 + final List<ScheduleRealInfo> pstArray = mergeArray(upArray, downArray);
  93 + //删除
  94 + jdbcTemplate.update("delete from bsth_t_clfcxxb where line_code=?", lineCode);
  95 + //重新写入
  96 + jdbcTemplate.batchUpdate("insert into bsth_t_clfcxxb(rq, line_code, line_name, lp_name, lp_sn, dfsj, nbbm, cph, bc_type, end_station_name, updown, jGh, jName, remarks, sn)" +
  97 + " VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)", new BatchPreparedStatementSetter() {
  98 + @Override
  99 + public void setValues(PreparedStatement ps, int i) throws SQLException {
  100 + ScheduleRealInfo sch = pstArray.get(i);
  101 + ps.setString(1, sch.getScheduleDateStr());
  102 + ps.setString(2, sch.getXlBm());
  103 + ps.setString(3, sch.getXlName());
  104 + ps.setString(4, sch.getLpName());
  105 + ps.setInt(5, sch.getFcno());
  106 + ps.setString(6, sch.getDfsj());
  107 + ps.setString(7, sch.getClZbh());
  108 + ps.setString(8, BasicData.nbbmCompanyPlateMap.get(sch.getClZbh()));
  109 + ps.setString(9, bcTypeMap.containsKey(sch.getBcType()) ? bcTypeMap.get(sch.getBcType()) : sch.getBcType());
  110 + ps.setString(10, sch.getZdzName());
  111 + ps.setInt(11, Integer.parseInt(sch.getXlDir()));
  112 + ps.setString(12, sch.getjGh());
  113 + ps.setString(13, sch.getjName());
  114 + ps.setString(14, sch.getRemarks());
  115 + ps.setInt(15, sch.getFcpSn());
  116 + }
  117 +
  118 + @Override
  119 + public int getBatchSize() {
  120 + return pstArray.size();
  121 + }
  122 + });
  123 + }
  124 +
  125 + private List<ScheduleRealInfo> mergeArray(ScheduleRealInfo[] upArray, ScheduleRealInfo[] downArray) {
  126 + List<ScheduleRealInfo> list = new ArrayList<>();
  127 + for (int i = 0; i < upArray.length; i++) {
  128 + if (upArray[i] != null) {
  129 + upArray[i].setFcpSn(i + 1);
  130 + list.add(upArray[i]);
  131 + }
  132 + }
  133 + for (int i = 0; i < downArray.length; i++) {
  134 + if (downArray[i] != null) {
  135 + downArray[i].setFcpSn(i + 1);
  136 + list.add(downArray[i]);
  137 + }
  138 + }
  139 + return list;
  140 + }
  141 +
  142 + /**
  143 + * 接下来要执行的3个班次
  144 + *
  145 + * @param list
  146 + * @return
  147 + */
  148 + private ScheduleRealInfo[] nexts(List<ScheduleRealInfo> list) {
  149 + ScheduleRealInfo[] array = new ScheduleRealInfo[3];
  150 + Collections.sort(list, schFCSJComparator);
  151 +
  152 + int count = 0, threshold = 1000 * 60 * 30;
  153 + long t = System.currentTimeMillis();
  154 + for (ScheduleRealInfo sch : list) {
  155 + if (count == 3)
  156 + break;
  157 +
  158 + //烂班
  159 + if (sch.isDestroy())
  160 + continue;
  161 +
  162 + //进场、出场、2点间空驶
  163 + if (sch.getBcType().equals("in")
  164 + || sch.getBcType().equals("out")
  165 + || sch.getBcType().equals("ldks"))
  166 + continue;
  167 +
  168 + //有实发实达时间的
  169 + if (StringUtils.isNotEmpty(sch.getFcsjActual())
  170 + || StringUtils.isNotEmpty(sch.getZdsjActual()))
  171 + continue;
  172 +
  173 + if (t - sch.getDfsjT() > threshold)
  174 + continue;
  175 +
  176 + array[count] = sch;
  177 + count++;
  178 + }
  179 + return array;
  180 + }
  181 +
  182 + @Autowired
  183 + UpdateInfoThread updateInfoThread;
  184 +
  185 + @Override
  186 + public void run(String... strings) throws Exception {
  187 + bcTypeMap = new HashMap<>();
  188 + bcTypeMap.put("normal", "正常班次");
  189 + bcTypeMap.put("region", "区间");
  190 + bcTypeMap.put("venting", "直放");
  191 + bcTypeMap.put("major", "放站");
  192 + bcTypeMap.put("ldks", "两点间空驶");
  193 + //Application.mainServices.scheduleWithFixedDelay(updateInfoThread, 60, 40, TimeUnit.SECONDS);
  194 + }
  195 +
  196 + @Component
  197 + private static class UpdateInfoThread extends Thread {
  198 +
  199 + @Autowired
  200 + CarOutInfo carOutInfoHandler;
  201 +
  202 + @Override
  203 + public void run() {
  204 + carOutInfoHandler.updateAll();
  205 + }
  206 + }
  207 +}
src/main/java/com/bsth/data/arrival/ArrivalComparator.java renamed to src/main/java/com/bsth/data/forecast/ArrivalComparator.java
1 -package com.bsth.data.arrival; 1 +package com.bsth.data.forecast;
  2 +
  3 +import com.bsth.data.forecast.entity.ArrivalEntity;
2 4
3 import java.util.Comparator; 5 import java.util.Comparator;
4 6
src/main/java/com/bsth/data/arrival/DataLoader.java renamed to src/main/java/com/bsth/data/forecast/ArrivalDataLoader.java
1 -package com.bsth.data.arrival; 1 +package com.bsth.data.forecast;
  2 +
  3 +import com.bsth.data.BasicData;
  4 +import com.bsth.data.LineConfigData;
  5 +import com.bsth.data.forecast.entity.ArrivalEntity;
  6 +import com.bsth.entity.realcontrol.LineConfig;
  7 +import com.bsth.util.db.DBUtils_MS;
  8 +import org.slf4j.Logger;
  9 +import org.slf4j.LoggerFactory;
  10 +import org.springframework.beans.factory.annotation.Autowired;
  11 +import org.springframework.stereotype.Component;
2 12
3 import java.sql.Connection; 13 import java.sql.Connection;
4 import java.sql.PreparedStatement; 14 import java.sql.PreparedStatement;
@@ -9,16 +19,6 @@ import java.util.Calendar; @@ -9,16 +19,6 @@ import java.util.Calendar;
9 import java.util.Collection; 19 import java.util.Collection;
10 import java.util.List; 20 import java.util.List;
11 21
12 -import org.slf4j.Logger;  
13 -import org.slf4j.LoggerFactory;  
14 -import org.springframework.beans.factory.annotation.Autowired;  
15 -import org.springframework.stereotype.Component;  
16 -  
17 -import com.bsth.data.BasicData;  
18 -import com.bsth.data.LineConfigData;  
19 -import com.bsth.entity.realcontrol.LineConfig;  
20 -import com.bsth.util.db.DBUtils_MS;  
21 -  
22 /** 22 /**
23 * 23 *
24 * @ClassName: DataLoader 24 * @ClassName: DataLoader
@@ -28,7 +28,7 @@ import com.bsth.util.db.DBUtils_MS; @@ -28,7 +28,7 @@ import com.bsth.util.db.DBUtils_MS;
28 * 28 *
29 */ 29 */
30 @Component 30 @Component
31 -public class DataLoader { 31 +public class ArrivalDataLoader {
32 32
33 private static Long prveLoadTime; 33 private static Long prveLoadTime;
34 34
src/main/java/com/bsth/data/arrival/ArrivalEntity.java renamed to src/main/java/com/bsth/data/forecast/entity/ArrivalEntity.java
1 -package com.bsth.data.arrival; 1 +package com.bsth.data.forecast.entity;
  2 +
  3 +import com.bsth.data.BasicData;
2 4
3 import java.text.SimpleDateFormat; 5 import java.text.SimpleDateFormat;
4 import java.util.Date; 6 import java.util.Date;
5 7
6 -import com.bsth.data.BasicData;  
7 -  
8 /** 8 /**
9 * 9 *
10 * @ClassName: ArrivalEntity 10 * @ClassName: ArrivalEntity
src/main/java/com/bsth/data/gpsdata/GpsRealData.java
1 package com.bsth.data.gpsdata; 1 package com.bsth.data.gpsdata;
2 2
  3 +import com.bsth.Application;
3 import com.bsth.data.BasicData; 4 import com.bsth.data.BasicData;
4 import com.bsth.data.forecast.ForecastRealServer; 5 import com.bsth.data.forecast.ForecastRealServer;
5 import com.bsth.data.gpsdata.client.ClientApp; 6 import com.bsth.data.gpsdata.client.ClientApp;
@@ -16,6 +17,7 @@ import org.springframework.boot.CommandLineRunner; @@ -16,6 +17,7 @@ import org.springframework.boot.CommandLineRunner;
16 import org.springframework.stereotype.Component; 17 import org.springframework.stereotype.Component;
17 18
18 import java.util.*; 19 import java.util.*;
  20 +import java.util.concurrent.TimeUnit;
19 21
20 /** 22 /**
21 * @author PanZhao 23 * @author PanZhao
@@ -61,7 +63,7 @@ public class GpsRealData implements CommandLineRunner { @@ -61,7 +63,7 @@ public class GpsRealData implements CommandLineRunner {
61 //定时从网关http形式获取GPS数据 --- 已弃用,现socket客户端接入数据 63 //定时从网关http形式获取GPS数据 --- 已弃用,现socket客户端接入数据
62 //Application.mainServices.scheduleWithFixedDelay(gpsDataLoader, 20, 3, TimeUnit.SECONDS); 64 //Application.mainServices.scheduleWithFixedDelay(gpsDataLoader, 20, 3, TimeUnit.SECONDS);
63 //定时扫描掉离线 65 //定时扫描掉离线
64 - //Application.mainServices.scheduleWithFixedDelay(offlineMonitorThread, 120, 60, TimeUnit.SECONDS); 66 + Application.mainServices.scheduleWithFixedDelay(offlineMonitorThread, 120, 60, TimeUnit.SECONDS);
65 67
66 //gps 客户端 68 //gps 客户端
67 //clientApp.init(); 69 //clientApp.init();
src/main/java/com/bsth/data/gpsdata/client/ClientApp.java
@@ -15,12 +15,12 @@ import org.apache.mina.filter.codec.ProtocolCodecFilter; @@ -15,12 +15,12 @@ import org.apache.mina.filter.codec.ProtocolCodecFilter;
15 import org.apache.mina.filter.logging.LogLevel; 15 import org.apache.mina.filter.logging.LogLevel;
16 import org.apache.mina.filter.logging.LoggingFilter; 16 import org.apache.mina.filter.logging.LoggingFilter;
17 import org.apache.mina.transport.socket.nio.NioSocketConnector; 17 import org.apache.mina.transport.socket.nio.NioSocketConnector;
  18 +import org.slf4j.Logger;
  19 +import org.slf4j.LoggerFactory;
18 import org.springframework.beans.factory.annotation.Autowired; 20 import org.springframework.beans.factory.annotation.Autowired;
19 import org.springframework.stereotype.Component; 21 import org.springframework.stereotype.Component;
20 22
21 import java.net.InetSocketAddress; 23 import java.net.InetSocketAddress;
22 -import java.util.concurrent.ExecutorService;  
23 -import java.util.concurrent.Executors;  
24 24
25 /** 25 /**
26 * Created by panzhao on 2017/5/4. 26 * Created by panzhao on 2017/5/4.
@@ -30,7 +30,6 @@ public class ClientApp { @@ -30,7 +30,6 @@ public class ClientApp {
30 30
31 private static NioSocketConnector pdDataConnector; 31 private static NioSocketConnector pdDataConnector;
32 private static NioSocketConnector pfDataConnector; 32 private static NioSocketConnector pfDataConnector;
33 - private static ExecutorService exec;  
34 33
35 @Autowired 34 @Autowired
36 private PdClientHandler pdClient; 35 private PdClientHandler pdClient;
@@ -39,6 +38,8 @@ public class ClientApp { @@ -39,6 +38,8 @@ public class ClientApp {
39 @Autowired 38 @Autowired
40 GpsBeforeBuffer gpsBeforeBuffer; 39 GpsBeforeBuffer gpsBeforeBuffer;
41 40
  41 + static Logger logger = LoggerFactory.getLogger(ClientApp.class);
  42 +
42 public static boolean dconnect(String device) { 43 public static boolean dconnect(String device) {
43 boolean flag = false; 44 boolean flag = false;
44 try { 45 try {
@@ -59,6 +60,8 @@ public class ClientApp { @@ -59,6 +60,8 @@ public class ClientApp {
59 WriteFuture write = session.write(bytes); 60 WriteFuture write = session.write(bytes);
60 write.awaitUninterruptibly(); 61 write.awaitUninterruptibly();
61 flag = true; 62 flag = true;
  63 +
  64 + logger.info("dconnect...");
62 //SessionManager.getInstance().register(device, session); 65 //SessionManager.getInstance().register(device, session);
63 } catch (Exception e) { 66 } catch (Exception e) {
64 e.printStackTrace(); 67 e.printStackTrace();
@@ -74,6 +77,8 @@ public class ClientApp { @@ -74,6 +77,8 @@ public class ClientApp {
74 IoSession session = con.getSession(); 77 IoSession session = con.getSession();
75 session.setAttribute("deviceId", device); 78 session.setAttribute("deviceId", device);
76 flag = true; 79 flag = true;
  80 +
  81 + logger.info("fconnect...");
77 } catch (Exception e) { 82 } catch (Exception e) {
78 e.printStackTrace(); 83 e.printStackTrace();
79 } 84 }
@@ -81,7 +86,7 @@ public class ClientApp { @@ -81,7 +86,7 @@ public class ClientApp {
81 } 86 }
82 87
83 public void init() { 88 public void init() {
84 - exec = Executors.newFixedThreadPool(4); 89 + //exec = Executors.newFixedThreadPool(4);
85 //sexec.scheduleAtFixedRate(new SessionChecker(), 1, 1, TimeUnit.MINUTES); 90 //sexec.scheduleAtFixedRate(new SessionChecker(), 1, 1, TimeUnit.MINUTES);
86 /*******************************浦东********************************/ 91 /*******************************浦东********************************/
87 pdDataConnector = new NioSocketConnector(); 92 pdDataConnector = new NioSocketConnector();
@@ -128,4 +133,4 @@ public class ClientApp { @@ -128,4 +133,4 @@ public class ClientApp {
128 133
129 gpsBeforeBuffer.init(); 134 gpsBeforeBuffer.init();
130 } 135 }
131 -} 136 +}
132 \ No newline at end of file 137 \ No newline at end of file
src/main/java/com/bsth/data/gpsdata/client/GpsBeforeBuffer.java
@@ -63,7 +63,7 @@ public class GpsBeforeBuffer { @@ -63,7 +63,7 @@ public class GpsBeforeBuffer {
63 } 63 }
64 64
65 public void init(){ 65 public void init(){
66 - Application.mainServices.scheduleWithFixedDelay(gpsHandleThread, 20, 2, TimeUnit.SECONDS); 66 + Application.mainServices.scheduleWithFixedDelay(gpsHandleThread, 20 * 1000, 1100, TimeUnit.MILLISECONDS);
67 } 67 }
68 68
69 @Component 69 @Component
@@ -100,4 +100,4 @@ public class GpsBeforeBuffer { @@ -100,4 +100,4 @@ public class GpsBeforeBuffer {
100 return -1; 100 return -1;
101 return (byte) (((serviceState & 0x02000000) == 0x02000000) ? 1 : 0); 101 return (byte) (((serviceState & 0x02000000) == 0x02000000) ? 1 : 0);
102 } 102 }
103 -} 103 +}
104 \ No newline at end of file 104 \ No newline at end of file
src/main/java/com/bsth/data/match/Arrival2Schedule.java deleted 100644 → 0
1 -package com.bsth.data.match;  
2 -  
3 -import java.util.ArrayList;  
4 -import java.util.Collections;  
5 -import java.util.List;  
6 -import java.util.Set;  
7 -  
8 -import org.joda.time.format.DateTimeFormat;  
9 -import org.joda.time.format.DateTimeFormatter;  
10 -import org.slf4j.Logger;  
11 -import org.slf4j.LoggerFactory;  
12 -import org.springframework.beans.BeansException;  
13 -import org.springframework.context.ApplicationContext;  
14 -import org.springframework.context.ApplicationContextAware;  
15 -import org.springframework.stereotype.Component;  
16 -  
17 -import com.bsth.data.LineConfigData;  
18 -import com.bsth.data.arrival.ArrivalComparator;  
19 -import com.bsth.data.arrival.ArrivalData_GPS;  
20 -import com.bsth.data.arrival.ArrivalEntity;  
21 -import com.bsth.data.schedule.DayOfSchedule;  
22 -import com.bsth.data.schedule.ScheduleComparator;  
23 -import com.bsth.entity.realcontrol.LineConfig;  
24 -import com.bsth.entity.realcontrol.ScheduleRealInfo;  
25 -import com.bsth.service.directive.DirectiveService;  
26 -import com.bsth.websocket.handler.SendUtils;  
27 -import com.google.common.collect.ArrayListMultimap;  
28 -  
29 -/**  
30 - *  
31 - * @ClassName: Arrival2Schedule  
32 - * @Description: TODO(到离站数据 和 计划班次进行匹配 注意线程安全!!!!)  
33 - * @author PanZhao  
34 - * @date 2016年8月28日 上午1:13:02  
35 - *  
36 - */  
37 -@Component  
38 -public class Arrival2Schedule implements ApplicationContextAware {  
39 -  
40 - private static DayOfSchedule dayOfSchedule;  
41 - private static SendUtils sendUtils;  
42 - private static DirectiveService directiveService;  
43 - private static LineConfigData lineConfigData;  
44 - private final static int ONE_MINUTE = 1000 * 60;  
45 - //定一个4小时的范围,基本能对正常班次进行容错。主要防止早上停车场GPS飘导致完成晚上的进场班次  
46 - private final static int FOUR_HOURS = 1000 * 60 * 60 * 4;  
47 -  
48 - private static Logger logger = LoggerFactory.getLogger(Arrival2Schedule.class);  
49 -  
50 - private static ArrayListMultimap<String, ExpectArrivalEnd> expectMap = ArrayListMultimap.create();  
51 -  
52 - /**  
53 - *  
54 - * @Title: start  
55 - * @Description: TODO(开始)  
56 - * @param @param cars 需要匹配的车辆集合  
57 - */  
58 - public static void start(Set<String> cars){  
59 -  
60 - for(String car : cars){  
61 - new SchMatchThread(car).start();  
62 - }  
63 - }  
64 -  
65 - public static class SchMatchThread extends Thread{  
66 - String nbbm;  
67 - LineConfig conf;  
68 -  
69 - public SchMatchThread(String nbbm){  
70 - this.nbbm = nbbm;  
71 - }  
72 -  
73 - //排序器  
74 - private ScheduleComparator.FCSJ schComparator = new ScheduleComparator.FCSJ();  
75 - private ArrivalComparator arrComparator = new ArrivalComparator();  
76 - private MatchResultComparator mrComparator = new MatchResultComparator();  
77 -  
78 - private static DateTimeFormatter fmtyyyyMMddHHmm = DateTimeFormat.forPattern("yyyy-MM-ddHH:mm");  
79 -  
80 - @Override  
81 - public void run() {  
82 - //班次列表  
83 - List<ScheduleRealInfo> schList = dayOfSchedule.findByNbbm(nbbm);  
84 - //进出起终点数据  
85 - List<ArrivalEntity> arrList = ArrivalData_GPS.findByNbbm(nbbm);  
86 -  
87 - if(schList.size() == 0 || arrList.size() == 0)  
88 - return;  
89 -  
90 - conf = lineConfigData.get(schList.get(0).getXlBm());  
91 - //排序  
92 - Collections.sort(schList, schComparator);  
93 - Collections.sort(arrList, arrComparator);  
94 - //过滤班次  
95 - schList = matchFilter(schList);  
96 -  
97 - //检查并修正首班出场终点信号,可能会出现走向异常  
98 - correctFirstSignal(schList, arrList);  
99 -  
100 -  
101 - //用实际来匹配计划  
102 - for(ArrivalEntity arr : arrList){  
103 - match(arr, schList);  
104 - }  
105 - }  
106 -  
107 - private void match(ArrivalEntity arr, List<ScheduleRealInfo> schList) {  
108 -  
109 - if(arr.getInOut() == 1)  
110 - matchOut(arr, schList);  
111 - else if(arr.getInOut() == 0)  
112 - matchIn(arr, schList);  
113 - }  
114 -  
115 - private List<ScheduleRealInfo> matchFilter(List<ScheduleRealInfo> schList) {  
116 - List<ScheduleRealInfo> list = new ArrayList<>();  
117 - for(ScheduleRealInfo sch : schList){  
118 - //烂班不匹配  
119 - if(sch.isDestroy())  
120 - continue;  
121 -  
122 - //线路配置出站既出场,并且没有里程的不匹配  
123 - if(conf.getOutConfig()==2 && sch.getBcsj() == null && sch.getJhlc() == null)  
124 - continue;  
125 -  
126 - list.add(sch);  
127 - }  
128 - return list;  
129 - }  
130 -  
131 - private void matchOut(ArrivalEntity arr, List<ScheduleRealInfo> schList){  
132 - if(arr.getFlag() == -1)  
133 - return;  
134 -  
135 - List<MatchResult> mrs = new ArrayList<>();  
136 - ScheduleRealInfo sch;  
137 - MatchResult mr;  
138 - for(int i = 0; i < schList.size(); i ++){  
139 - sch = schList.get(i);  
140 - if(!arr.isTcc() && arr.getUpDown() != Integer.parseInt(sch.getXlDir()))  
141 - continue;  
142 -  
143 - if(!arr.getStopNo().equals(sch.getQdzCode()))  
144 - continue;  
145 -  
146 - //班次有实发时间  
147 - if(sch.getFcsjActualTime() != null){  
148 - //实际发车已经被引用  
149 - if(Math.abs(arr.getTs() - sch.getFcsjActualTime()) < ONE_MINUTE)  
150 - return;  
151 - else  
152 - continue;  
153 - }  
154 - //添加一个匹配结果  
155 - mr = new MatchResult();  
156 - mr.sch = sch;  
157 - mr.ts = arr.getTs();  
158 - mr.diff = arr.getTs() - sch.getFcsjT();  
159 - mr.success = dayOfSchedule.validStartTime(sch, arr.getTs());  
160 -  
161 - if(Math.abs(mr.diff) < FOUR_HOURS && mr.success)  
162 - mrs.add(mr);  
163 - }  
164 -  
165 - if(mrs.size() > 0){  
166 - //排序后的第一个 就是最合适的匹配  
167 - Collections.sort(mrs, mrComparator);  
168 - mr = mrs.get(0);  
169 -  
170 - //漂移判定  
171 - if(driftCheck(mr, arr)){  
172 - carOut(mr);  
173 - }  
174 - }  
175 - }  
176 -  
177 - private void matchIn(ArrivalEntity inArr, List<ScheduleRealInfo> schList){  
178 -  
179 - List<MatchResult> mrs = new ArrayList<>();  
180 - ScheduleRealInfo sch;  
181 - MatchResult mr;  
182 - for(int i = 0; i < schList.size(); i ++){  
183 - sch = schList.get(i);  
184 - if(!inArr.isTcc() && inArr.getUpDown() != Integer.parseInt(sch.getXlDir()))  
185 - continue;  
186 -  
187 - if(!inArr.getStopNo().equals(sch.getZdzCode()))  
188 - continue;  
189 -  
190 - //班次有实达时间  
191 - if(sch.getZdsjActualTime() != null){  
192 - //实际到达已经被引用  
193 - if(Math.abs(inArr.getTs() - sch.getZdsjActualTime()) < ONE_MINUTE)  
194 - return;  
195 - else  
196 - continue;  
197 - }  
198 -  
199 - //添加一个匹配结果  
200 - mr = new MatchResult();  
201 - mr.sch = sch;  
202 - mr.ts = inArr.getTs();  
203 - //班次没有里程和运送时间的  
204 - if(sch.getZdsj() == null){  
205 - if(i < schList.size()-1)  
206 - mr.diff = inArr.getTs() - schList.get(i + 1).getDfsjT();  
207 - else  
208 - mr.diff = inArr.getTs() - sch.getDfsjT();  
209 - }  
210 - else  
211 - mr.diff = inArr.getTs() - sch.getZdsjT();  
212 - mr.success = dayOfSchedule.validEndTime(sch, inArr.getTs());  
213 - if(Math.abs(mr.diff) < FOUR_HOURS && mr.success)  
214 - mrs.add(mr);  
215 - }  
216 -  
217 - if(mrs.size() > 0){  
218 - //排序后的第一个 就是最合适的匹配  
219 - Collections.sort(mrs, mrComparator);  
220 - mr = mrs.get(0);  
221 - carInStop(mr);  
222 - }  
223 - }  
224 -  
225 - /**  
226 - *  
227 - * @Title: carOut  
228 - * @Description: TODO(车辆发出)  
229 - */  
230 - public void carOut(MatchResult mr){  
231 - ScheduleRealInfo sch = mr.sch;  
232 -  
233 - if(!isExpectOut(mr))  
234 - return;  
235 - //设置发车时间  
236 - sch.setFcsjActualAll(mr.ts);  
237 - //通知客户端  
238 - sendUtils.sendFcsj(sch);  
239 - //持久化  
240 - dayOfSchedule.save(sch);  
241 - //车辆当前执行班次  
242 - dayOfSchedule.addExecPlan(sch);  
243 -  
244 - //期望车辆到达的终点  
245 - if(sch.getZdsj() != null)  
246 - expectMap.put(nbbm, ExpectArrivalEnd.getEndInstance(sch, mr.ts));  
247 - }  
248 -  
249 - /**  
250 - *  
251 - * @Title: isExpectOut  
252 - * @Description: TODO(是否是一个期望的出站匹配结果)  
253 - */  
254 - private boolean isExpectOut(MatchResult mr){  
255 - ScheduleRealInfo sch = mr.sch;  
256 - String nbbm = sch.getClZbh();  
257 - if(expectMap.containsKey(nbbm)){  
258 - List<ExpectArrivalEnd> eads = expectMap.get(nbbm);  
259 - for(ExpectArrivalEnd ead : eads){  
260 - if(sch.getQdzCode().equals(ead.getEndStation())  
261 - || mr.ts > ead.getEndTime()){  
262 - expectMap.removeAll(nbbm);  
263 - return true;  
264 - }  
265 - }  
266 - return false;  
267 - }  
268 - return true;  
269 - }  
270 -  
271 - /**  
272 - *  
273 - * @Title: carInStop  
274 - * @Description: TODO(车辆进入终点站)  
275 - */  
276 - public void carInStop(MatchResult mr){  
277 - ScheduleRealInfo sch = mr.sch;  
278 - String nbbm=sch.getClZbh();  
279 - if(!isExpectIn(mr))  
280 - return;  
281 -  
282 - //如果是进停车场,并且实达时间差值大于 30 分钟,并且之前还有未完成班次。  
283 - if(sch.getBcType().equals("in") && Math.abs(mr.diff) > (1000 * 60 * 30)){  
284 - int prve_nen = dayOfSchedule.prveNotExecNum(sch);  
285 - if(prve_nen > 0)  
286 - return;  
287 - }  
288 -  
289 - sch.setZdsjActualAll(mr.ts);  
290 - int doneSum = dayOfSchedule.doneSum(nbbm);  
291 - ScheduleRealInfo next = dayOfSchedule.next(sch);  
292 - if(null != next){  
293 - next.setQdzArrDateSJ(sch.getZdsjActual());  
294 - //下发调度指令  
295 - directiveService.send60Dispatch(next, doneSum, "到站@系统");  
296 -  
297 - //完成“起点既停车场”的进场班次  
298 - if(next.getBcType().equals("in") && next.getJhlc() == null)  
299 - next.setFcsjActualAll(mr.ts);  
300 -  
301 - //套跑 -下发线路切换指令  
302 - if(!next.getXlBm().equals(sch.getXlBm()))  
303 - directiveService.lineChange(nbbm, next.getXlBm(), "套跑@系统");  
304 - }  
305 - else//下发文本指令(已结束运营)  
306 - directiveService.send60Phrase(nbbm, "到达终点 " + sch.getZdzName() + ",已完成当日所有排班。", "系统");  
307 - //通知客户端  
308 - sendUtils.sendZdsj(sch, next, doneSum);  
309 - //持久化  
310 - dayOfSchedule.save(sch);  
311 - logger.info(sch.getClZbh() + "移除正在执行班次," + sch.getFcsj());  
312 - //移除车辆正在执行班次索引  
313 - dayOfSchedule.removeExecPlan(nbbm);  
314 - }  
315 -  
316 - /**  
317 - *  
318 - * @Title: isExpectOut  
319 - * @Description: TODO(是否是一个期望的进站匹配结果)  
320 - */  
321 - private boolean isExpectIn(MatchResult mr){  
322 - ScheduleRealInfo sch = mr.sch;  
323 - String nbbm = sch.getClZbh();  
324 - if(expectMap.containsKey(nbbm)){  
325 - List<ExpectArrivalEnd> eads = expectMap.get(nbbm);  
326 - for(ExpectArrivalEnd ead : eads){  
327 - if(sch.getZdzCode().equals(ead.getEndStation())  
328 - || mr.ts > ead.getEndTime()){  
329 - expectMap.removeAll(nbbm);  
330 - return true;  
331 - }  
332 - }  
333 - return false;  
334 - }  
335 - return true;  
336 - }  
337 -  
338 - /**  
339 - *  
340 - * @Title: correctFirstSignal  
341 - * @Description: TODO(检查并纠正首班出场到离站)  
342 - */  
343 - private final static long TEN_MINUTES = 1000 * 60 * 10;  
344 - private void correctFirstSignal(List<ScheduleRealInfo> schList, List<ArrivalEntity> arrList) {  
345 - ScheduleRealInfo sch = schList.get(0);  
346 - ArrivalEntity arr = arrList.get(0);  
347 -  
348 - //有里程的出场班次才需要纠正  
349 - if(arr.isCorrect() || !sch.getBcType().equals("out") || sch.getJhlc() == null || sch.getBcsj() == null)  
350 - return;  
351 -  
352 - //如果首个进出站信号是出场  
353 - if(arr.isOutTcc() && arrList.size() >= 2)  
354 - arr = arrList.get(1);  
355 - else  
356 - return;  
357 -  
358 - //出场任务 “进终点” 信号才需要纠正  
359 - if(arr.getInOut() != 0)  
360 - return;  
361 -  
362 - //在计划终点之前到达,或者之后10分钟内到达  
363 - if(arr.getTs() < sch.getZdsjT()  
364 - || arr.getTs() - sch.getZdsjT() < TEN_MINUTES){  
365 -  
366 - int upDown = Integer.parseInt(sch.getXlDir());  
367 - //走向不一致,相信班次的走向。纠正进站信号  
368 - if(arr.getUpDown() != upDown  
369 - && arr.getStopName().equals(sch.getZdzName())){  
370 -  
371 -  
372 - String old = arr.toString();  
373 - arr.setUpDown(upDown);  
374 - arr.setStopNo(sch.getZdzCode());  
375 - arr.setCorrect(true);  
376 - arr.setCorrectText(old + " | " + arr.toString());  
377 -  
378 - logger.info("被纠正的信号:" + arr.getCorrectText());  
379 - }  
380 - }  
381 - }  
382 -  
383 - /**  
384 - *  
385 - * @Title: driftCheck  
386 - * @Description: TODO(漂移判定)  
387 - */  
388 - public boolean driftCheck(MatchResult mr, ArrivalEntity arr){  
389 - try{  
390 - //上行发车,和到达时间比较一下。起点一般不会立即发出  
391 - if(mr.sch.getXlDir().equals("0")  
392 - && null != mr.sch.getQdzArrDateSJ()){  
393 -  
394 -  
395 - long dt = fmtyyyyMMddHHmm.parseMillis(mr.sch.getRealExecDate() + mr.sch.getQdzArrDateSJ());  
396 -  
397 - //停站时间少于 计划的3分之1,标记为漂移信号  
398 - if((mr.ts - dt < (mr.sch.getDfsjT() - dt) / 3)){  
399 - arr.setCorrect(true);  
400 - arr.setCorrectText("停站时间太短,标记为信号漂移");  
401 - arr.setFlag(-1);  
402 -  
403 - logger.info("漂移判定:" + arr);  
404 - return false;  
405 - }  
406 - }  
407 - }catch(Exception e){  
408 - logger.error("", e);  
409 - }  
410 - return true;  
411 - }  
412 - }  
413 -  
414 - @Override  
415 - public void setApplicationContext(ApplicationContext arg0) throws BeansException {  
416 - sendUtils = arg0.getBean(SendUtils.class);  
417 - dayOfSchedule = arg0.getBean(DayOfSchedule.class);  
418 - directiveService = arg0.getBean(DirectiveService.class);  
419 - lineConfigData = arg0.getBean(LineConfigData.class);  
420 - }  
421 -  
422 - /**  
423 - *  
424 - * @Title: removeExpect  
425 - * @Description: TODO(清除预期站点)  
426 - * @param @param nbbm  
427 - */  
428 - public void removeExpect(String nbbm){  
429 - expectMap.removeAll(nbbm);  
430 - }  
431 -  
432 - public static void addExpect(String nbbm, ExpectArrivalEnd eae){  
433 - expectMap.put(nbbm, eae);  
434 - }  
435 -}  
src/main/java/com/bsth/data/match/ExpectArrivalEnd.java deleted 100644 → 0
1 -package com.bsth.data.match;  
2 -  
3 -import com.bsth.entity.realcontrol.ScheduleRealInfo;  
4 -  
5 -/**  
6 - *  
7 - * @ClassName: ExpectArrivalEnd  
8 - * @Description: TODO(期望车辆在某个时间段到达某个终点或 发出某个起点........)  
9 - * @author PanZhao  
10 - * @date 2016年11月2日 下午8:04:43  
11 - *  
12 - */  
13 -public class ExpectArrivalEnd {  
14 -  
15 - private String nbbm;  
16 -  
17 - private String endStation;  
18 -  
19 - private Long endTime;  
20 -  
21 - public static ExpectArrivalEnd getEndInstance(ScheduleRealInfo sch, long t){  
22 - ExpectArrivalEnd ead = new ExpectArrivalEnd();  
23 - ead.setNbbm(sch.getClZbh());  
24 - ead.setEndStation(sch.getZdzCode());  
25 - if(sch.getBcType().equals("out"))  
26 - ead.setEndTime(sch.getZdsjT());  
27 - else{  
28 - ead.setEndTime(sch.getZdsjT() - (sch.getDfsjT() - t));  
29 - }  
30 - return ead;  
31 - }  
32 -  
33 -  
34 - public String getNbbm() {  
35 - return nbbm;  
36 - }  
37 -  
38 - public void setNbbm(String nbbm) {  
39 - this.nbbm = nbbm;  
40 - }  
41 -  
42 - public String getEndStation() {  
43 - return endStation;  
44 - }  
45 -  
46 - public void setEndStation(String endStation) {  
47 - this.endStation = endStation;  
48 - }  
49 -  
50 - public Long getEndTime() {  
51 - return endTime;  
52 - }  
53 -  
54 - public void setEndTime(Long endTime) {  
55 - this.endTime = endTime;  
56 - }  
57 -}  
src/main/java/com/bsth/data/match/MatchResult.java deleted 100644 → 0
1 -package com.bsth.data.match;  
2 -  
3 -import com.bsth.entity.realcontrol.ScheduleRealInfo;  
4 -  
5 -/**  
6 - *  
7 - * @ClassName: MatchResult  
8 - * @Description: TODO(实际和计划匹配结果)  
9 - * @author PanZhao  
10 - * @date 2016年8月10日 下午3:55:48  
11 - *  
12 - */  
13 -public class MatchResult {  
14 -  
15 - /** 班次 */  
16 - public ScheduleRealInfo sch;  
17 -  
18 - /** 时间差 */  
19 - public long diff;  
20 -  
21 - /** 0 进 1 出 */  
22 - public int inOut;  
23 -  
24 - public long ts;  
25 -  
26 - /** 交配成功 */  
27 - public boolean success;  
28 -}  
src/main/java/com/bsth/data/match/MatchResultComparator.java deleted 100644 → 0
1 -package com.bsth.data.match;  
2 -  
3 -import java.util.Comparator;  
4 -  
5 -public class MatchResultComparator implements Comparator<MatchResult>{  
6 -  
7 - @Override  
8 - public int compare(MatchResult o1, MatchResult o2) {  
9 - return (int) (Math.abs(o1.diff) - Math.abs(o2.diff));  
10 - }  
11 -}  
src/main/java/com/bsth/data/schedule/DayOfSchedule.java
@@ -1023,4 +1023,8 @@ public class DayOfSchedule implements CommandLineRunner { @@ -1023,4 +1023,8 @@ public class DayOfSchedule implements CommandLineRunner {
1023 Collections.sort(list, schFCSJComparator); 1023 Collections.sort(list, schFCSJComparator);
1024 return next(list, sch); 1024 return next(list, sch);
1025 } 1025 }
  1026 +
  1027 + public ArrayListMultimap<String, ScheduleRealInfo> getLpScheduleMap(){
  1028 + return lpScheduleMap;
  1029 + }
1026 } 1030 }
1027 \ No newline at end of file 1031 \ No newline at end of file
src/main/java/com/bsth/entity/forecast/Sample.java
1 package com.bsth.entity.forecast; 1 package com.bsth.entity.forecast;
2 2
3 3
4 -import java.text.SimpleDateFormat;  
5 -import java.util.Date;  
6 -  
7 -import javax.persistence.Entity;  
8 -import javax.persistence.GeneratedValue;  
9 -import javax.persistence.Id;  
10 -import javax.persistence.Table;  
11 -import javax.persistence.Transient;  
12 - 4 +import com.bsth.data.forecast.entity.ArrivalEntity;
13 import org.slf4j.Logger; 5 import org.slf4j.Logger;
14 import org.slf4j.LoggerFactory; 6 import org.slf4j.LoggerFactory;
15 7
16 -import com.bsth.data.arrival.ArrivalEntity; 8 +import javax.persistence.*;
17 9
18 /** 10 /**
19 * 11 *
src/main/java/com/bsth/entity/realcontrol/ScheduleRealInfo.java
@@ -200,6 +200,10 @@ public class ScheduleRealInfo { @@ -200,6 +200,10 @@ public class ScheduleRealInfo {
200 /** 是否有补发GPS信号 */ 200 /** 是否有补发GPS信号 */
201 private boolean reissue; 201 private boolean reissue;
202 202
  203 + /** 发车屏 发车顺序号,不持久化,会动态变化 */
  204 + @Transient
  205 + private int fcpSn;
  206 +
203 public boolean isDfAuto() { 207 public boolean isDfAuto() {
204 return dfAuto; 208 return dfAuto;
205 } 209 }
@@ -912,4 +916,12 @@ public class ScheduleRealInfo { @@ -912,4 +916,12 @@ public class ScheduleRealInfo {
912 public void setLate2(boolean late2) { 916 public void setLate2(boolean late2) {
913 this.late2 = late2; 917 this.late2 = late2;
914 } 918 }
  919 +
  920 + public int getFcpSn() {
  921 + return fcpSn;
  922 + }
  923 +
  924 + public void setFcpSn(int fcpSn) {
  925 + this.fcpSn = fcpSn;
  926 + }
915 } 927 }
src/main/java/com/bsth/service/forecast/SampleServiceImpl.java
1 package com.bsth.service.forecast; 1 package com.bsth.service.forecast;
2 2
3 -import java.text.SimpleDateFormat;  
4 -import java.util.ArrayList;  
5 -import java.util.Collections;  
6 -import java.util.Comparator;  
7 -import java.util.HashMap;  
8 -import java.util.Iterator;  
9 -import java.util.List;  
10 -import java.util.Map;  
11 -  
12 -import javax.transaction.Transactional;  
13 -  
14 -import org.slf4j.Logger;  
15 -import org.slf4j.LoggerFactory;  
16 -import org.springframework.beans.factory.annotation.Autowired;  
17 -import org.springframework.stereotype.Service;  
18 -  
19 import com.bsth.common.ResponseCode; 3 import com.bsth.common.ResponseCode;
20 import com.bsth.controller.forecast.dto.CreateSampleParam; 4 import com.bsth.controller.forecast.dto.CreateSampleParam;
21 import com.bsth.data.BasicData; 5 import com.bsth.data.BasicData;
22 -import com.bsth.data.arrival.ArrivalEntity;  
23 -import com.bsth.data.arrival.DataLoader; 6 +import com.bsth.data.forecast.ArrivalDataLoader;
  7 +import com.bsth.data.forecast.entity.ArrivalEntity;
24 import com.bsth.entity.forecast.Sample; 8 import com.bsth.entity.forecast.Sample;
25 import com.bsth.repository.forecast.SampleRepository; 9 import com.bsth.repository.forecast.SampleRepository;
26 import com.bsth.service.forecast.util.CreateByArrivalData; 10 import com.bsth.service.forecast.util.CreateByArrivalData;
27 import com.bsth.service.impl.BaseServiceImpl; 11 import com.bsth.service.impl.BaseServiceImpl;
  12 +import org.slf4j.Logger;
  13 +import org.slf4j.LoggerFactory;
  14 +import org.springframework.beans.factory.annotation.Autowired;
  15 +import org.springframework.stereotype.Service;
  16 +
  17 +import javax.transaction.Transactional;
  18 +import java.text.SimpleDateFormat;
  19 +import java.util.*;
28 20
29 @Service 21 @Service
30 public class SampleServiceImpl extends BaseServiceImpl<Sample, Long> implements SampleService{ 22 public class SampleServiceImpl extends BaseServiceImpl<Sample, Long> implements SampleService{
@@ -80,7 +72,7 @@ public class SampleServiceImpl extends BaseServiceImpl&lt;Sample, Long&gt; implements @@ -80,7 +72,7 @@ public class SampleServiceImpl extends BaseServiceImpl&lt;Sample, Long&gt; implements
80 sampleRepository.deleteByLineAndUpdown(param.getLineCode(), param.getUpdown()); 72 sampleRepository.deleteByLineAndUpdown(param.getLineCode(), param.getUpdown());
81 73
82 //查询到离站数据 74 //查询到离站数据
83 - DataLoader loader = new DataLoader(); 75 + ArrivalDataLoader loader = new ArrivalDataLoader();
84 SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd"); 76 SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
85 77
86 long st = sdf.parse(param.getStartDate()).getTime() 78 long st = sdf.parse(param.getStartDate()).getTime()
src/main/java/com/bsth/service/forecast/util/CreateByArrivalData.java
1 package com.bsth.service.forecast.util; 1 package com.bsth.service.forecast.util;
2 2
3 -import java.text.DecimalFormat;  
4 -import java.text.ParseException;  
5 -import java.text.SimpleDateFormat;  
6 -import java.util.ArrayList;  
7 -import java.util.Collections;  
8 -import java.util.Comparator;  
9 -import java.util.Date;  
10 -import java.util.HashMap;  
11 -import java.util.List;  
12 -import java.util.Map;  
13 -import java.util.Set;  
14 -  
15 -import org.slf4j.Logger;  
16 -import org.slf4j.LoggerFactory;  
17 -import org.springframework.beans.factory.annotation.Autowired;  
18 -import org.springframework.context.annotation.Scope;  
19 -import org.springframework.stereotype.Component;  
20 -  
21 import com.bsth.controller.forecast.dto.CreateSampleParam; 3 import com.bsth.controller.forecast.dto.CreateSampleParam;
22 import com.bsth.controller.forecast.dto.CreateSampleParam.TimeRange; 4 import com.bsth.controller.forecast.dto.CreateSampleParam.TimeRange;
23 -import com.bsth.data.arrival.ArrivalComparator;  
24 -import com.bsth.data.arrival.ArrivalEntity; 5 +import com.bsth.data.forecast.ArrivalComparator;
  6 +import com.bsth.data.forecast.entity.ArrivalEntity;
25 import com.bsth.entity.StationRoute; 7 import com.bsth.entity.StationRoute;
26 import com.bsth.entity.forecast.Sample; 8 import com.bsth.entity.forecast.Sample;
27 import com.bsth.repository.StationRouteRepository; 9 import com.bsth.repository.StationRouteRepository;
28 import com.google.common.collect.ArrayListMultimap; 10 import com.google.common.collect.ArrayListMultimap;
  11 +import org.slf4j.Logger;
  12 +import org.slf4j.LoggerFactory;
  13 +import org.springframework.beans.factory.annotation.Autowired;
  14 +import org.springframework.context.annotation.Scope;
  15 +import org.springframework.stereotype.Component;
  16 +
  17 +import java.text.DecimalFormat;
  18 +import java.text.ParseException;
  19 +import java.text.SimpleDateFormat;
  20 +import java.util.*;
29 21
30 /** 22 /**
31 * 23 *
src/main/java/com/bsth/service/gps/GpsServiceImpl.java
@@ -2,7 +2,7 @@ package com.bsth.service.gps; @@ -2,7 +2,7 @@ package com.bsth.service.gps;
2 2
3 import com.bsth.common.ResponseCode; 3 import com.bsth.common.ResponseCode;
4 import com.bsth.data.BasicData; 4 import com.bsth.data.BasicData;
5 -import com.bsth.data.arrival.ArrivalEntity; 5 +import com.bsth.data.forecast.entity.ArrivalEntity;
6 import com.bsth.data.gpsdata.GpsEntity; 6 import com.bsth.data.gpsdata.GpsEntity;
7 import com.bsth.data.gpsdata.GpsRealData; 7 import com.bsth.data.gpsdata.GpsRealData;
8 import com.bsth.data.gpsdata.arrival.utils.GeoUtils; 8 import com.bsth.data.gpsdata.arrival.utils.GeoUtils;
src/main/java/com/bsth/service/gps/entity/HistoryGps_DTO.java
@@ -2,7 +2,7 @@ package com.bsth.service.gps.entity; @@ -2,7 +2,7 @@ package com.bsth.service.gps.entity;
2 2
3 import com.alibaba.fastjson.JSON; 3 import com.alibaba.fastjson.JSON;
4 import com.alibaba.fastjson.JSONObject; 4 import com.alibaba.fastjson.JSONObject;
5 -import com.bsth.data.arrival.ArrivalEntity; 5 +import com.bsth.data.forecast.entity.ArrivalEntity;
6 import com.fasterxml.jackson.annotation.JsonIgnore; 6 import com.fasterxml.jackson.annotation.JsonIgnore;
7 import com.vividsolutions.jts.geom.Coordinate; 7 import com.vividsolutions.jts.geom.Coordinate;
8 import com.vividsolutions.jts.geom.GeometryFactory; 8 import com.vividsolutions.jts.geom.GeometryFactory;
src/main/java/com/bsth/service/schedule/impl/TTInfoDetailServiceImpl.java
@@ -374,16 +374,16 @@ public class TTInfoDetailServiceImpl extends BServiceImpl&lt;TTInfoDetail, Long&gt; im @@ -374,16 +374,16 @@ public class TTInfoDetailServiceImpl extends BServiceImpl&lt;TTInfoDetail, Long&gt; im
374 } 374 }
375 375
376 // 添加一列 空驶班次/空驶里程,fcsj放置数据 376 // 添加一列 空驶班次/空驶里程,fcsj放置数据
377 - fcInfos.add(new FcInfo(null, null, String.format("%d/%.2f", bc_ks, lc_ks), null, null, null, null)); 377 + fcInfos.add(new FcInfo(null, null, String.format("%d/%.3f", bc_ks, lc_ks), null, null, null, null));
378 378
379 // 添加一列 营运班次/营运里程,fcsj放置数据 379 // 添加一列 营运班次/营运里程,fcsj放置数据
380 - fcInfos.add(new FcInfo(null, null, String.format("%d/%.2f", bc_yy, lc_yy), null, null, null, null)); 380 + fcInfos.add(new FcInfo(null, null, String.format("%d/%.3f", bc_yy, lc_yy), null, null, null, null));
381 381
382 editInfo.getContents().add(fcInfos); 382 editInfo.getContents().add(fcInfos);
383 } 383 }
384 editInfo.getHeader().addAll(Arrays.asList(headarrays)); 384 editInfo.getHeader().addAll(Arrays.asList(headarrays));
385 385
386 - editInfo.setYy_desc(String.format("空驶班次=%d,营运班次=%d,空驶里程=%.2f,营运里程=%.2f,总里程=%.2f", all_bc_ks, all_bc_yy, all_lc_ks, all_lc_yy, all_lc_ks + all_lc_yy)); 386 + editInfo.setYy_desc(String.format("空驶班次=%d,营运班次=%d,空驶里程=%.3f,营运里程=%.3f,总里程=%.3f", all_bc_ks, all_bc_yy, all_lc_ks, all_lc_yy, all_lc_ks + all_lc_yy));
387 } 387 }
388 388
389 LOGGER.info("//---------------- 时刻表编辑用数据输出 success... ----------------//"); 389 LOGGER.info("//---------------- 时刻表编辑用数据输出 success... ----------------//");
src/main/resources/application-dev.properties
@@ -6,11 +6,11 @@ spring.jpa.hibernate.ddl-auto= update @@ -6,11 +6,11 @@ spring.jpa.hibernate.ddl-auto= update
6 spring.jpa.hibernate.naming_strategy= org.hibernate.cfg.ImprovedNamingStrategy 6 spring.jpa.hibernate.naming_strategy= org.hibernate.cfg.ImprovedNamingStrategy
7 #DATABASE 7 #DATABASE
8 spring.jpa.database= MYSQL 8 spring.jpa.database= MYSQL
9 -spring.jpa.show-sql= false 9 +spring.jpa.show-sql= true
10 spring.datasource.driver-class-name= com.mysql.jdbc.Driver 10 spring.datasource.driver-class-name= com.mysql.jdbc.Driver
11 spring.datasource.url= jdbc:mysql://127.0.0.1/control?useUnicode=true&characterEncoding=utf-8&useSSL=false 11 spring.datasource.url= jdbc:mysql://127.0.0.1/control?useUnicode=true&characterEncoding=utf-8&useSSL=false
12 spring.datasource.username= root 12 spring.datasource.username= root
13 -spring.datasource.password= 13 +spring.datasource.password= root
14 #spring.datasource.url= jdbc:mysql://192.168.168.117/pd_control?useUnicode=true&characterEncoding=utf-8&useSSL=false 14 #spring.datasource.url= jdbc:mysql://192.168.168.117/pd_control?useUnicode=true&characterEncoding=utf-8&useSSL=false
15 #spring.datasource.username= root 15 #spring.datasource.username= root
16 #spring.datasource.password= root 16 #spring.datasource.password= root
@@ -29,7 +29,7 @@ spring.datasource.validation-query=select 1 @@ -29,7 +29,7 @@ spring.datasource.validation-query=select 1
29 ## 29 ##
30 #222.66.0.204:5555 30 #222.66.0.204:5555
31 ##\u5B9E\u65F6gps 31 ##\u5B9E\u65F6gps
32 -http.gps.real.url= http://180.168.57.114:7474/transport_server/rtgps/ 32 +http.gps.real.url= http://114.80.178.12:18080/transport_server/rtgps/
33 #http.gps.real.url= http://27.115.69.123:8800/transport_server/rtgps/ 33 #http.gps.real.url= http://27.115.69.123:8800/transport_server/rtgps/
34 ##\u6D88\u606F\u4E0B\u53D1 34 ##\u6D88\u606F\u4E0B\u53D1
35 http.send.directive = http://192.168.168.201:9090/transport_server/message/ 35 http.send.directive = http://192.168.168.201:9090/transport_server/message/
36 \ No newline at end of file 36 \ No newline at end of file
src/main/resources/datatools/ktrs/ttinfodetailDataOutputMetaData.ktr
@@ -90,11 +90,11 @@ @@ -90,11 +90,11 @@
90 </info> 90 </info>
91 <notepads> 91 <notepads>
92 <notepad> 92 <notepad>
93 - <note>&#x8fd9;&#x91cc;&#x6709;&#x4e9b;&#x95ee;&#x9898;&#xa;&#x5728;window2012&#x7684;&#x73af;&#x5883;&#x4e0b;&#xff0c;&#xa;MySql&#x6570;&#x636e;&#x5e93;&#x67e5;&#x8be2;&#x4e2d;&#x5982;&#x679c;&#x8fd4;&#x56de;&#x4e2d;&#x6587;&#x5185;&#x5bb9;&#x7684;&#x5b57;&#x6bb5;&#xff0c;&#x8fd9;&#x4e2a;&#x5185;&#x5bb9;&#x4e71;&#x7801;&#xa;&#x89e3;&#x51b3;&#x529e;&#x6cd5;&#xff0c;&#x5c31;&#x662f;&#x6570;&#x636e;&#x5e93;&#x67e5;&#x8be2;&#x5168;&#x90e8;&#x7f13;&#x5b58;&#xff0c;&#x5c31;&#x4e0d;&#x4e71;&#x7801;&#xa;linux&#x73af;&#x5883;&#x4e0b;&#x6ca1;&#x95ee;&#x9898;</note>  
94 - <xloc>165</xloc>  
95 - <yloc>402</yloc>  
96 - <width>333</width>  
97 - <heigth>90</heigth> 93 + <note>TODO&#xff1a;&#x5982;&#x679c;groupby &#x52a0;&#x5165;bctype&#xff0c;&#xa;&#x5219;&#x4ee5;&#x53d1;&#x8f66;&#x987a;&#x5e8f;&#x53f7;&#xff0c;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5206;&#x7ec4;&#x7684;&#x6570;&#x636e;&#x53ef;&#x80fd;&#x91cd;&#x590d;&#xff0c;&#xa;&#x5e94;&#x4e3a;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x53ef;&#x80fd;&#x4e0d;&#x4e00;&#x6837;&#xff08;&#x5bfc;&#x5165;&#x4e4b;&#x540e;&#x4eba;&#x4e3a;&#x4fee;&#x6539;&#x7684;&#xff0c;&#x5982;&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x6539;&#x6210;&#x533a;&#x95f4;&#xff09;&#xff0c;&#xa;&#x56e0;&#x4e3a;&#x5bfc;&#x51fa;&#x65f6;&#x5fc5;&#x987b;&#x6570;&#x636e;&#x4e0d;&#x91cd;&#x590d;&#xff0c;&#x8fd9;&#x91cc;&#x7684;&#x89e3;&#x51b3;&#x65b9;&#x6cd5;&#xff0c;&#x53ea;&#x4f7f;&#x7528;&#x53d1;&#x8f66;&#x987a;&#x5e8f;&#x53f7;&#x5206;&#x7ec4;&#xff0c;&#xa;&#x4ee5;&#x540e;&#x5efa;&#x8bae;&#xff0c;&#x8fd8;&#x662f;&#x539f;&#x6765;&#x7684;&#x65b9;&#x5f0f;&#x5206;&#x7ec4;&#xff0c;&#x7136;&#x540e;&#x628a;&#x66f4;&#x65b0;&#x65f6;&#x95f4;&#x665a;&#x7684;&#x53bb;&#x9664;&#xa;&#xa;&#x4ee5;&#x540e;&#x6539;&#x6210;&#x53bb;&#x9664;&#x91cd;&#x590d;&#x7eaa;&#x5f55;</note>
  94 + <xloc>37</xloc>
  95 + <yloc>309</yloc>
  96 + <width>406</width>
  97 + <heigth>122</heigth>
98 <fontname>YaHei Consolas Hybrid</fontname> 98 <fontname>YaHei Consolas Hybrid</fontname>
99 <fontsize>12</fontsize> 99 <fontsize>12</fontsize>
100 <fontbold>N</fontbold> 100 <fontbold>N</fontbold>
@@ -445,7 +445,7 @@ @@ -445,7 +445,7 @@
445 <schema_name/> 445 <schema_name/>
446 </partitioning> 446 </partitioning>
447 <connection>bus_control_variable</connection> 447 <connection>bus_control_variable</connection>
448 - <sql>select &#xa;fcno&#xa;, min&#x28;xl_dir&#x29; xl_dir&#xa;,min&#x28;qdz&#x29; qdz&#xa;,min&#x28;zdz&#x29; zdz&#xa;,bc_type &#xa;from bsth_c_s_ttinfo_detail&#xa;where ttinfo &#x3d; &#x24;&#x7b;ttinfoid&#x7d;&#xa;group by fcno,bc_type</sql> 448 + <sql>select &#xa;fcno&#xa;, min&#x28;xl&#x29; xl &#xa;, min&#x28;xl_dir&#x29; xl_dir&#xa;, min&#x28;qdz_code&#x29; qdz&#xa;, min&#x28;zdz_code&#x29; zdz&#xa;, min&#x28;bc_type&#x29; bc_type &#xa;from bsth_c_s_ttinfo_detail&#xa;where ttinfo &#x3d; &#x24;&#x7b;ttinfoid&#x7d;&#xa;group by fcno</sql>
449 <limit>0</limit> 449 <limit>0</limit>
450 <lookup/> 450 <lookup/>
451 <execute_each_row>N</execute_each_row> 451 <execute_each_row>N</execute_each_row>
@@ -481,8 +481,8 @@ @@ -481,8 +481,8 @@
481 <fail_on_multiple>N</fail_on_multiple> 481 <fail_on_multiple>N</fail_on_multiple>
482 <eat_row_on_failure>N</eat_row_on_failure> 482 <eat_row_on_failure>N</eat_row_on_failure>
483 <key> 483 <key>
484 - <name>zd</name>  
485 - <field>station</field> 484 + <name>xl</name>
  485 + <field>line</field>
486 <condition>&#x3d;</condition> 486 <condition>&#x3d;</condition>
487 <name2/> 487 <name2/>
488 </key> 488 </key>
@@ -492,6 +492,12 @@ @@ -492,6 +492,12 @@
492 <condition>&#x3d;</condition> 492 <condition>&#x3d;</condition>
493 <name2/> 493 <name2/>
494 </key> 494 </key>
  495 + <key>
  496 + <name>zd</name>
  497 + <field>station_code</field>
  498 + <condition>&#x3d;</condition>
  499 + <name2/>
  500 + </key>
495 <value> 501 <value>
496 <name>station_name</name> 502 <name>station_name</name>
497 <rename>zdname</rename> 503 <rename>zdname</rename>
@@ -712,6 +718,29 @@ @@ -712,6 +718,29 @@
712 </GUI> 718 </GUI>
713 </step> 719 </step>
714 720
  721 + <step>
  722 + <name>&#x53bb;&#x9664;&#x91cd;&#x590d;&#x8bb0;&#x5f55;</name>
  723 + <type>Unique</type>
  724 + <description/>
  725 + <distribute>Y</distribute>
  726 + <custom_distribution/>
  727 + <copies>1</copies>
  728 + <partitioning>
  729 + <method>none</method>
  730 + <schema_name/>
  731 + </partitioning>
  732 + <count_rows>N</count_rows>
  733 + <count_field/>
  734 + <reject_duplicate_row>N</reject_duplicate_row>
  735 + <error_description/>
  736 + <fields> </fields> <cluster_schema/>
  737 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  738 + <xloc>842</xloc>
  739 + <yloc>592</yloc>
  740 + <draw>Y</draw>
  741 + </GUI>
  742 + </step>
  743 +
715 <step_error_handling> 744 <step_error_handling>
716 </step_error_handling> 745 </step_error_handling>
717 <slave-step-copy-partition-distribution> 746 <slave-step-copy-partition-distribution>
src/main/resources/datatools/ktrs/ttinfodetailoutputforedit.ktr
@@ -302,7 +302,6 @@ @@ -302,7 +302,6 @@
302 <hop> <from>&#x83b7;&#x53d6;&#x53d8;&#x91cf;</from><to>&#x8868;&#x8f93;&#x5165;</to><enabled>Y</enabled> </hop> 302 <hop> <from>&#x83b7;&#x53d6;&#x53d8;&#x91cf;</from><to>&#x8868;&#x8f93;&#x5165;</to><enabled>Y</enabled> </hop>
303 <hop> <from>&#x8ba1;&#x7b97;&#x53d1;&#x8f66;&#x7ad9;&#x540d;</from><to>&#x5408;&#x5e76;&#x5185;&#x5bb9;</to><enabled>Y</enabled> </hop> 303 <hop> <from>&#x8ba1;&#x7b97;&#x53d1;&#x8f66;&#x7ad9;&#x540d;</from><to>&#x5408;&#x5e76;&#x5185;&#x5bb9;</to><enabled>Y</enabled> </hop>
304 <hop> <from>&#x5408;&#x5e76;&#x5185;&#x5bb9;</from><to>&#x5217;&#x8f6c;&#x884c;</to><enabled>Y</enabled> </hop> 304 <hop> <from>&#x5408;&#x5e76;&#x5185;&#x5bb9;</from><to>&#x5217;&#x8f6c;&#x884c;</to><enabled>Y</enabled> </hop>
305 - <hop> <from>&#x53bb;&#x9664;&#x5b57;&#x6bb5;</from><to>&#x6587;&#x672c;&#x6587;&#x4ef6;&#x8f93;&#x51fa;</to><enabled>Y</enabled> </hop>  
306 <hop> <from>&#x8868;&#x8f93;&#x5165;</from><to>&#x8ba1;&#x7b97;&#x53d1;&#x8f66;&#x7ad9;&#x540d;</to><enabled>Y</enabled> </hop> 305 <hop> <from>&#x8868;&#x8f93;&#x5165;</from><to>&#x8ba1;&#x7b97;&#x53d1;&#x8f66;&#x7ad9;&#x540d;</to><enabled>Y</enabled> </hop>
307 </order> 306 </order>
308 <step> 307 <step>
@@ -701,2273 +700,3209 @@ @@ -701,2273 +700,3209 @@
701 <type>String</type> 700 <type>String</type>
702 <format/> 701 <format/>
703 </field> 702 </field>
704 - </fields>  
705 - <custom>  
706 - <header_font_name>arial</header_font_name>  
707 - <header_font_size>10</header_font_size>  
708 - <header_font_bold>N</header_font_bold>  
709 - <header_font_italic>N</header_font_italic>  
710 - <header_font_underline>no</header_font_underline>  
711 - <header_font_orientation>horizontal</header_font_orientation>  
712 - <header_font_color>black</header_font_color>  
713 - <header_background_color>none</header_background_color>  
714 - <header_row_height>255</header_row_height>  
715 - <header_alignment>left</header_alignment>  
716 - <header_image/>  
717 - <row_font_name>arial</row_font_name>  
718 - <row_font_size>10</row_font_size>  
719 - <row_font_color>black</row_font_color>  
720 - <row_background_color>none</row_background_color>  
721 - </custom>  
722 - <cluster_schema/>  
723 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
724 - <xloc>692</xloc>  
725 - <yloc>514</yloc>  
726 - <draw>Y</draw>  
727 - </GUI>  
728 - </step>  
729 -  
730 - <step>  
731 - <name>&#x5217;&#x8f6c;&#x884c;</name>  
732 - <type>Denormaliser</type>  
733 - <description/>  
734 - <distribute>N</distribute>  
735 - <custom_distribution/>  
736 - <copies>1</copies>  
737 - <partitioning>  
738 - <method>none</method>  
739 - <schema_name/>  
740 - </partitioning>  
741 - <key_field>fcno</key_field>  
742 - <group>  
743 - <field>  
744 - <name>lp</name>  
745 - </field>  
746 - </group>  
747 - <fields>  
748 - <field>  
749 - <field_name>all_content</field_name>  
750 - <key_value>1</key_value>  
751 - <target_name>fcno1</target_name>  
752 - <target_type>String</target_type>  
753 - <target_format/>  
754 - <target_length>-1</target_length>  
755 - <target_precision>-1</target_precision>  
756 - <target_decimal_symbol/>  
757 - <target_grouping_symbol/>  
758 - <target_currency_symbol/>  
759 - <target_null_string/>  
760 - <target_aggregation_type>-</target_aggregation_type>  
761 - </field>  
762 - <field>  
763 - <field_name>all_content</field_name>  
764 - <key_value>2</key_value>  
765 - <target_name>fcno2</target_name>  
766 - <target_type>String</target_type>  
767 - <target_format/>  
768 - <target_length>-1</target_length>  
769 - <target_precision>-1</target_precision>  
770 - <target_decimal_symbol/>  
771 - <target_grouping_symbol/>  
772 - <target_currency_symbol/>  
773 - <target_null_string/>  
774 - <target_aggregation_type>-</target_aggregation_type>  
775 - </field>  
776 - <field>  
777 - <field_name>all_content</field_name>  
778 - <key_value>3</key_value>  
779 - <target_name>fcno3</target_name>  
780 - <target_type>String</target_type>  
781 - <target_format/>  
782 - <target_length>-1</target_length>  
783 - <target_precision>-1</target_precision>  
784 - <target_decimal_symbol/>  
785 - <target_grouping_symbol/>  
786 - <target_currency_symbol/>  
787 - <target_null_string/>  
788 - <target_aggregation_type>-</target_aggregation_type>  
789 - </field>  
790 - <field>  
791 - <field_name>all_content</field_name>  
792 - <key_value>4</key_value>  
793 - <target_name>fcno4</target_name>  
794 - <target_type>String</target_type>  
795 - <target_format/>  
796 - <target_length>-1</target_length>  
797 - <target_precision>-1</target_precision>  
798 - <target_decimal_symbol/>  
799 - <target_grouping_symbol/>  
800 - <target_currency_symbol/>  
801 - <target_null_string/>  
802 - <target_aggregation_type>-</target_aggregation_type>  
803 - </field>  
804 - <field>  
805 - <field_name>all_content</field_name>  
806 - <key_value>5</key_value>  
807 - <target_name>fcno5</target_name>  
808 - <target_type>String</target_type>  
809 - <target_format/>  
810 - <target_length>-1</target_length>  
811 - <target_precision>-1</target_precision>  
812 - <target_decimal_symbol/>  
813 - <target_grouping_symbol/>  
814 - <target_currency_symbol/>  
815 - <target_null_string/>  
816 - <target_aggregation_type>-</target_aggregation_type>  
817 - </field>  
818 - <field>  
819 - <field_name>all_content</field_name>  
820 - <key_value>6</key_value>  
821 - <target_name>fcno6</target_name>  
822 - <target_type>String</target_type>  
823 - <target_format/>  
824 - <target_length>-1</target_length>  
825 - <target_precision>-1</target_precision>  
826 - <target_decimal_symbol/>  
827 - <target_grouping_symbol/>  
828 - <target_currency_symbol/>  
829 - <target_null_string/>  
830 - <target_aggregation_type>-</target_aggregation_type>  
831 - </field>  
832 - <field>  
833 - <field_name>all_content</field_name>  
834 - <key_value>7</key_value>  
835 - <target_name>fcno7</target_name>  
836 - <target_type>String</target_type>  
837 - <target_format/>  
838 - <target_length>-1</target_length>  
839 - <target_precision>-1</target_precision>  
840 - <target_decimal_symbol/>  
841 - <target_grouping_symbol/>  
842 - <target_currency_symbol/>  
843 - <target_null_string/>  
844 - <target_aggregation_type>-</target_aggregation_type>  
845 - </field>  
846 - <field>  
847 - <field_name>all_content</field_name>  
848 - <key_value>8</key_value>  
849 - <target_name>fcno8</target_name>  
850 - <target_type>String</target_type>  
851 - <target_format/>  
852 - <target_length>-1</target_length>  
853 - <target_precision>-1</target_precision>  
854 - <target_decimal_symbol/>  
855 - <target_grouping_symbol/>  
856 - <target_currency_symbol/>  
857 - <target_null_string/>  
858 - <target_aggregation_type>-</target_aggregation_type>  
859 - </field>  
860 - <field>  
861 - <field_name>all_content</field_name>  
862 - <key_value>9</key_value>  
863 - <target_name>fcno9</target_name>  
864 - <target_type>String</target_type>  
865 - <target_format/>  
866 - <target_length>-1</target_length>  
867 - <target_precision>-1</target_precision>  
868 - <target_decimal_symbol/>  
869 - <target_grouping_symbol/>  
870 - <target_currency_symbol/>  
871 - <target_null_string/>  
872 - <target_aggregation_type>-</target_aggregation_type>  
873 - </field>  
874 - <field>  
875 - <field_name>all_content</field_name>  
876 - <key_value>10</key_value>  
877 - <target_name>fcno10</target_name>  
878 - <target_type>String</target_type>  
879 - <target_format/>  
880 - <target_length>-1</target_length>  
881 - <target_precision>-1</target_precision>  
882 - <target_decimal_symbol/>  
883 - <target_grouping_symbol/>  
884 - <target_currency_symbol/>  
885 - <target_null_string/>  
886 - <target_aggregation_type>-</target_aggregation_type>  
887 - </field>  
888 - <field>  
889 - <field_name>all_content</field_name>  
890 - <key_value>11</key_value>  
891 - <target_name>fcno11</target_name>  
892 - <target_type>String</target_type>  
893 - <target_format/>  
894 - <target_length>-1</target_length>  
895 - <target_precision>-1</target_precision>  
896 - <target_decimal_symbol/>  
897 - <target_grouping_symbol/>  
898 - <target_currency_symbol/>  
899 - <target_null_string/>  
900 - <target_aggregation_type>-</target_aggregation_type>  
901 - </field>  
902 - <field>  
903 - <field_name>all_content</field_name>  
904 - <key_value>12</key_value>  
905 - <target_name>fcno12</target_name>  
906 - <target_type>String</target_type>  
907 - <target_format/>  
908 - <target_length>-1</target_length>  
909 - <target_precision>-1</target_precision>  
910 - <target_decimal_symbol/>  
911 - <target_grouping_symbol/>  
912 - <target_currency_symbol/>  
913 - <target_null_string/>  
914 - <target_aggregation_type>-</target_aggregation_type>  
915 - </field>  
916 - <field>  
917 - <field_name>all_content</field_name>  
918 - <key_value>13</key_value>  
919 - <target_name>fcno13</target_name>  
920 - <target_type>String</target_type>  
921 - <target_format/>  
922 - <target_length>-1</target_length>  
923 - <target_precision>-1</target_precision>  
924 - <target_decimal_symbol/>  
925 - <target_grouping_symbol/>  
926 - <target_currency_symbol/>  
927 - <target_null_string/>  
928 - <target_aggregation_type>-</target_aggregation_type>  
929 - </field>  
930 - <field>  
931 - <field_name>all_content</field_name>  
932 - <key_value>14</key_value>  
933 - <target_name>fcno14</target_name>  
934 - <target_type>String</target_type>  
935 - <target_format/>  
936 - <target_length>-1</target_length>  
937 - <target_precision>-1</target_precision>  
938 - <target_decimal_symbol/>  
939 - <target_grouping_symbol/>  
940 - <target_currency_symbol/>  
941 - <target_null_string/>  
942 - <target_aggregation_type>-</target_aggregation_type>  
943 - </field>  
944 - <field>  
945 - <field_name>all_content</field_name>  
946 - <key_value>15</key_value>  
947 - <target_name>fcno15</target_name>  
948 - <target_type>String</target_type>  
949 - <target_format/>  
950 - <target_length>-1</target_length>  
951 - <target_precision>-1</target_precision>  
952 - <target_decimal_symbol/>  
953 - <target_grouping_symbol/>  
954 - <target_currency_symbol/>  
955 - <target_null_string/>  
956 - <target_aggregation_type>-</target_aggregation_type>  
957 - </field>  
958 - <field>  
959 - <field_name>all_content</field_name>  
960 - <key_value>16</key_value>  
961 - <target_name>fcno16</target_name>  
962 - <target_type>String</target_type>  
963 - <target_format/>  
964 - <target_length>-1</target_length>  
965 - <target_precision>-1</target_precision>  
966 - <target_decimal_symbol/>  
967 - <target_grouping_symbol/>  
968 - <target_currency_symbol/>  
969 - <target_null_string/>  
970 - <target_aggregation_type>-</target_aggregation_type>  
971 - </field>  
972 - <field>  
973 - <field_name>all_content</field_name>  
974 - <key_value>17</key_value>  
975 - <target_name>fcno17</target_name>  
976 - <target_type>String</target_type>  
977 - <target_format/>  
978 - <target_length>-1</target_length>  
979 - <target_precision>-1</target_precision>  
980 - <target_decimal_symbol/>  
981 - <target_grouping_symbol/>  
982 - <target_currency_symbol/>  
983 - <target_null_string/>  
984 - <target_aggregation_type>-</target_aggregation_type>  
985 - </field>  
986 - <field>  
987 - <field_name>all_content</field_name>  
988 - <key_value>18</key_value>  
989 - <target_name>fcno18</target_name>  
990 - <target_type>String</target_type>  
991 - <target_format/>  
992 - <target_length>-1</target_length>  
993 - <target_precision>-1</target_precision>  
994 - <target_decimal_symbol/>  
995 - <target_grouping_symbol/>  
996 - <target_currency_symbol/>  
997 - <target_null_string/>  
998 - <target_aggregation_type>-</target_aggregation_type>  
999 - </field>  
1000 - <field>  
1001 - <field_name>all_content</field_name>  
1002 - <key_value>19</key_value>  
1003 - <target_name>fcno19</target_name>  
1004 - <target_type>String</target_type>  
1005 - <target_format/>  
1006 - <target_length>-1</target_length>  
1007 - <target_precision>-1</target_precision>  
1008 - <target_decimal_symbol/>  
1009 - <target_grouping_symbol/>  
1010 - <target_currency_symbol/>  
1011 - <target_null_string/>  
1012 - <target_aggregation_type>-</target_aggregation_type>  
1013 - </field>  
1014 - <field>  
1015 - <field_name>all_content</field_name>  
1016 - <key_value>20</key_value>  
1017 - <target_name>fcno20</target_name>  
1018 - <target_type>String</target_type>  
1019 - <target_format/>  
1020 - <target_length>-1</target_length>  
1021 - <target_precision>-1</target_precision>  
1022 - <target_decimal_symbol/>  
1023 - <target_grouping_symbol/>  
1024 - <target_currency_symbol/>  
1025 - <target_null_string/>  
1026 - <target_aggregation_type>-</target_aggregation_type>  
1027 - </field>  
1028 - <field>  
1029 - <field_name>all_content</field_name>  
1030 - <key_value>21</key_value>  
1031 - <target_name>fcno21</target_name>  
1032 - <target_type>String</target_type>  
1033 - <target_format/>  
1034 - <target_length>-1</target_length>  
1035 - <target_precision>-1</target_precision>  
1036 - <target_decimal_symbol/>  
1037 - <target_grouping_symbol/>  
1038 - <target_currency_symbol/>  
1039 - <target_null_string/>  
1040 - <target_aggregation_type>-</target_aggregation_type>  
1041 - </field>  
1042 - <field>  
1043 - <field_name>all_content</field_name>  
1044 - <key_value>22</key_value>  
1045 - <target_name>fcno22</target_name>  
1046 - <target_type>String</target_type>  
1047 - <target_format/>  
1048 - <target_length>-1</target_length>  
1049 - <target_precision>-1</target_precision>  
1050 - <target_decimal_symbol/>  
1051 - <target_grouping_symbol/>  
1052 - <target_currency_symbol/>  
1053 - <target_null_string/>  
1054 - <target_aggregation_type>-</target_aggregation_type>  
1055 - </field>  
1056 - <field>  
1057 - <field_name>all_content</field_name>  
1058 - <key_value>23</key_value>  
1059 - <target_name>fcno23</target_name>  
1060 - <target_type>String</target_type>  
1061 - <target_format/>  
1062 - <target_length>-1</target_length>  
1063 - <target_precision>-1</target_precision>  
1064 - <target_decimal_symbol/>  
1065 - <target_grouping_symbol/>  
1066 - <target_currency_symbol/>  
1067 - <target_null_string/>  
1068 - <target_aggregation_type>-</target_aggregation_type>  
1069 - </field>  
1070 - <field>  
1071 - <field_name>all_content</field_name>  
1072 - <key_value>24</key_value>  
1073 - <target_name>fcno24</target_name>  
1074 - <target_type>String</target_type>  
1075 - <target_format/>  
1076 - <target_length>-1</target_length>  
1077 - <target_precision>-1</target_precision>  
1078 - <target_decimal_symbol/>  
1079 - <target_grouping_symbol/>  
1080 - <target_currency_symbol/>  
1081 - <target_null_string/>  
1082 - <target_aggregation_type>-</target_aggregation_type>  
1083 - </field>  
1084 - <field>  
1085 - <field_name>all_content</field_name>  
1086 - <key_value>25</key_value>  
1087 - <target_name>fcno25</target_name>  
1088 - <target_type>String</target_type>  
1089 - <target_format/>  
1090 - <target_length>-1</target_length>  
1091 - <target_precision>-1</target_precision>  
1092 - <target_decimal_symbol/>  
1093 - <target_grouping_symbol/>  
1094 - <target_currency_symbol/>  
1095 - <target_null_string/>  
1096 - <target_aggregation_type>-</target_aggregation_type>  
1097 - </field>  
1098 - <field>  
1099 - <field_name>all_content</field_name>  
1100 - <key_value>26</key_value>  
1101 - <target_name>fcno26</target_name>  
1102 - <target_type>String</target_type>  
1103 - <target_format/>  
1104 - <target_length>-1</target_length>  
1105 - <target_precision>-1</target_precision>  
1106 - <target_decimal_symbol/>  
1107 - <target_grouping_symbol/>  
1108 - <target_currency_symbol/>  
1109 - <target_null_string/>  
1110 - <target_aggregation_type>-</target_aggregation_type>  
1111 - </field>  
1112 - <field>  
1113 - <field_name>all_content</field_name>  
1114 - <key_value>27</key_value>  
1115 - <target_name>fcno27</target_name>  
1116 - <target_type>String</target_type>  
1117 - <target_format/>  
1118 - <target_length>-1</target_length>  
1119 - <target_precision>-1</target_precision>  
1120 - <target_decimal_symbol/>  
1121 - <target_grouping_symbol/>  
1122 - <target_currency_symbol/>  
1123 - <target_null_string/>  
1124 - <target_aggregation_type>-</target_aggregation_type>  
1125 - </field>  
1126 - <field>  
1127 - <field_name>all_content</field_name>  
1128 - <key_value>28</key_value>  
1129 - <target_name>fcno28</target_name>  
1130 - <target_type>String</target_type>  
1131 - <target_format/>  
1132 - <target_length>-1</target_length>  
1133 - <target_precision>-1</target_precision>  
1134 - <target_decimal_symbol/>  
1135 - <target_grouping_symbol/>  
1136 - <target_currency_symbol/>  
1137 - <target_null_string/>  
1138 - <target_aggregation_type>-</target_aggregation_type>  
1139 - </field>  
1140 - <field>  
1141 - <field_name>all_content</field_name>  
1142 - <key_value>29</key_value>  
1143 - <target_name>fcno29</target_name>  
1144 - <target_type>String</target_type>  
1145 - <target_format/>  
1146 - <target_length>-1</target_length>  
1147 - <target_precision>-1</target_precision>  
1148 - <target_decimal_symbol/>  
1149 - <target_grouping_symbol/>  
1150 - <target_currency_symbol/>  
1151 - <target_null_string/>  
1152 - <target_aggregation_type>-</target_aggregation_type>  
1153 - </field>  
1154 - <field>  
1155 - <field_name>all_content</field_name>  
1156 - <key_value>30</key_value>  
1157 - <target_name>fcno30</target_name>  
1158 - <target_type>String</target_type>  
1159 - <target_format/>  
1160 - <target_length>-1</target_length>  
1161 - <target_precision>-1</target_precision>  
1162 - <target_decimal_symbol/>  
1163 - <target_grouping_symbol/>  
1164 - <target_currency_symbol/>  
1165 - <target_null_string/>  
1166 - <target_aggregation_type>-</target_aggregation_type>  
1167 - </field>  
1168 - <field>  
1169 - <field_name>all_content</field_name>  
1170 - <key_value>31</key_value>  
1171 - <target_name>fcno31</target_name>  
1172 - <target_type>String</target_type>  
1173 - <target_format/>  
1174 - <target_length>-1</target_length>  
1175 - <target_precision>-1</target_precision>  
1176 - <target_decimal_symbol/>  
1177 - <target_grouping_symbol/>  
1178 - <target_currency_symbol/>  
1179 - <target_null_string/>  
1180 - <target_aggregation_type>-</target_aggregation_type>  
1181 - </field>  
1182 - <field>  
1183 - <field_name>all_content</field_name>  
1184 - <key_value>32</key_value>  
1185 - <target_name>fcno32</target_name>  
1186 - <target_type>String</target_type>  
1187 - <target_format/>  
1188 - <target_length>-1</target_length>  
1189 - <target_precision>-1</target_precision>  
1190 - <target_decimal_symbol/>  
1191 - <target_grouping_symbol/>  
1192 - <target_currency_symbol/>  
1193 - <target_null_string/>  
1194 - <target_aggregation_type>-</target_aggregation_type>  
1195 - </field>  
1196 - <field>  
1197 - <field_name>all_content</field_name>  
1198 - <key_value>33</key_value>  
1199 - <target_name>fcno33</target_name>  
1200 - <target_type>String</target_type>  
1201 - <target_format/>  
1202 - <target_length>-1</target_length>  
1203 - <target_precision>-1</target_precision>  
1204 - <target_decimal_symbol/>  
1205 - <target_grouping_symbol/>  
1206 - <target_currency_symbol/>  
1207 - <target_null_string/>  
1208 - <target_aggregation_type>-</target_aggregation_type>  
1209 - </field>  
1210 - <field>  
1211 - <field_name>all_content</field_name>  
1212 - <key_value>34</key_value>  
1213 - <target_name>fcno34</target_name>  
1214 - <target_type>String</target_type>  
1215 - <target_format/>  
1216 - <target_length>-1</target_length>  
1217 - <target_precision>-1</target_precision>  
1218 - <target_decimal_symbol/>  
1219 - <target_grouping_symbol/>  
1220 - <target_currency_symbol/>  
1221 - <target_null_string/>  
1222 - <target_aggregation_type>-</target_aggregation_type>  
1223 - </field>  
1224 - <field>  
1225 - <field_name>all_content</field_name>  
1226 - <key_value>35</key_value>  
1227 - <target_name>fcno35</target_name>  
1228 - <target_type>String</target_type>  
1229 - <target_format/>  
1230 - <target_length>-1</target_length>  
1231 - <target_precision>-1</target_precision>  
1232 - <target_decimal_symbol/>  
1233 - <target_grouping_symbol/>  
1234 - <target_currency_symbol/>  
1235 - <target_null_string/>  
1236 - <target_aggregation_type>-</target_aggregation_type>  
1237 - </field>  
1238 - <field>  
1239 - <field_name>all_content</field_name>  
1240 - <key_value>36</key_value>  
1241 - <target_name>fcno36</target_name>  
1242 - <target_type>String</target_type>  
1243 - <target_format/>  
1244 - <target_length>-1</target_length>  
1245 - <target_precision>-1</target_precision>  
1246 - <target_decimal_symbol/>  
1247 - <target_grouping_symbol/>  
1248 - <target_currency_symbol/>  
1249 - <target_null_string/>  
1250 - <target_aggregation_type>-</target_aggregation_type>  
1251 - </field>  
1252 - <field>  
1253 - <field_name>all_content</field_name>  
1254 - <key_value>37</key_value>  
1255 - <target_name>fcno37</target_name>  
1256 - <target_type>String</target_type>  
1257 - <target_format/>  
1258 - <target_length>-1</target_length>  
1259 - <target_precision>-1</target_precision>  
1260 - <target_decimal_symbol/>  
1261 - <target_grouping_symbol/>  
1262 - <target_currency_symbol/>  
1263 - <target_null_string/>  
1264 - <target_aggregation_type>-</target_aggregation_type>  
1265 - </field>  
1266 - <field>  
1267 - <field_name>all_content</field_name>  
1268 - <key_value>38</key_value>  
1269 - <target_name>fcno38</target_name>  
1270 - <target_type>String</target_type>  
1271 - <target_format/>  
1272 - <target_length>-1</target_length>  
1273 - <target_precision>-1</target_precision>  
1274 - <target_decimal_symbol/>  
1275 - <target_grouping_symbol/>  
1276 - <target_currency_symbol/>  
1277 - <target_null_string/>  
1278 - <target_aggregation_type>-</target_aggregation_type>  
1279 - </field>  
1280 - <field>  
1281 - <field_name>all_content</field_name>  
1282 - <key_value>39</key_value>  
1283 - <target_name>fcno39</target_name>  
1284 - <target_type>String</target_type>  
1285 - <target_format/>  
1286 - <target_length>-1</target_length>  
1287 - <target_precision>-1</target_precision>  
1288 - <target_decimal_symbol/>  
1289 - <target_grouping_symbol/>  
1290 - <target_currency_symbol/>  
1291 - <target_null_string/>  
1292 - <target_aggregation_type>-</target_aggregation_type>  
1293 - </field>  
1294 - <field>  
1295 - <field_name>all_content</field_name>  
1296 - <key_value>40</key_value>  
1297 - <target_name>fcno40</target_name>  
1298 - <target_type>String</target_type>  
1299 - <target_format/>  
1300 - <target_length>-1</target_length>  
1301 - <target_precision>-1</target_precision>  
1302 - <target_decimal_symbol/>  
1303 - <target_grouping_symbol/>  
1304 - <target_currency_symbol/>  
1305 - <target_null_string/>  
1306 - <target_aggregation_type>-</target_aggregation_type>  
1307 - </field>  
1308 - <field>  
1309 - <field_name>all_content</field_name>  
1310 - <key_value>41</key_value>  
1311 - <target_name>fcno41</target_name>  
1312 - <target_type>String</target_type>  
1313 - <target_format/>  
1314 - <target_length>-1</target_length>  
1315 - <target_precision>-1</target_precision>  
1316 - <target_decimal_symbol/>  
1317 - <target_grouping_symbol/>  
1318 - <target_currency_symbol/>  
1319 - <target_null_string/>  
1320 - <target_aggregation_type>-</target_aggregation_type>  
1321 - </field>  
1322 - <field>  
1323 - <field_name>all_content</field_name>  
1324 - <key_value>42</key_value>  
1325 - <target_name>fcno42</target_name>  
1326 - <target_type>String</target_type>  
1327 - <target_format/>  
1328 - <target_length>-1</target_length>  
1329 - <target_precision>-1</target_precision>  
1330 - <target_decimal_symbol/>  
1331 - <target_grouping_symbol/>  
1332 - <target_currency_symbol/>  
1333 - <target_null_string/>  
1334 - <target_aggregation_type>-</target_aggregation_type>  
1335 - </field>  
1336 - <field>  
1337 - <field_name>all_content</field_name>  
1338 - <key_value>43</key_value>  
1339 - <target_name>fcno43</target_name>  
1340 - <target_type>String</target_type>  
1341 - <target_format/>  
1342 - <target_length>-1</target_length>  
1343 - <target_precision>-1</target_precision>  
1344 - <target_decimal_symbol/>  
1345 - <target_grouping_symbol/>  
1346 - <target_currency_symbol/>  
1347 - <target_null_string/>  
1348 - <target_aggregation_type>-</target_aggregation_type>  
1349 - </field>  
1350 - <field>  
1351 - <field_name>all_content</field_name>  
1352 - <key_value>44</key_value>  
1353 - <target_name>fcno44</target_name>  
1354 - <target_type>String</target_type>  
1355 - <target_format/>  
1356 - <target_length>-1</target_length>  
1357 - <target_precision>-1</target_precision>  
1358 - <target_decimal_symbol/>  
1359 - <target_grouping_symbol/>  
1360 - <target_currency_symbol/>  
1361 - <target_null_string/>  
1362 - <target_aggregation_type>-</target_aggregation_type>  
1363 - </field>  
1364 - <field>  
1365 - <field_name>all_content</field_name>  
1366 - <key_value>45</key_value>  
1367 - <target_name>fcno45</target_name>  
1368 - <target_type>String</target_type>  
1369 - <target_format/>  
1370 - <target_length>-1</target_length>  
1371 - <target_precision>-1</target_precision>  
1372 - <target_decimal_symbol/>  
1373 - <target_grouping_symbol/>  
1374 - <target_currency_symbol/>  
1375 - <target_null_string/>  
1376 - <target_aggregation_type>-</target_aggregation_type>  
1377 - </field>  
1378 - <field>  
1379 - <field_name>all_content</field_name>  
1380 - <key_value>46</key_value>  
1381 - <target_name>fcno46</target_name>  
1382 - <target_type>String</target_type>  
1383 - <target_format/>  
1384 - <target_length>-1</target_length>  
1385 - <target_precision>-1</target_precision>  
1386 - <target_decimal_symbol/>  
1387 - <target_grouping_symbol/>  
1388 - <target_currency_symbol/>  
1389 - <target_null_string/>  
1390 - <target_aggregation_type>-</target_aggregation_type>  
1391 - </field>  
1392 - <field>  
1393 - <field_name>all_content</field_name>  
1394 - <key_value>47</key_value>  
1395 - <target_name>fcno47</target_name>  
1396 - <target_type>String</target_type>  
1397 - <target_format/>  
1398 - <target_length>-1</target_length>  
1399 - <target_precision>-1</target_precision>  
1400 - <target_decimal_symbol/>  
1401 - <target_grouping_symbol/>  
1402 - <target_currency_symbol/>  
1403 - <target_null_string/>  
1404 - <target_aggregation_type>-</target_aggregation_type>  
1405 - </field>  
1406 - <field>  
1407 - <field_name>all_content</field_name>  
1408 - <key_value>48</key_value>  
1409 - <target_name>fcno48</target_name>  
1410 - <target_type>String</target_type>  
1411 - <target_format/>  
1412 - <target_length>-1</target_length>  
1413 - <target_precision>-1</target_precision>  
1414 - <target_decimal_symbol/>  
1415 - <target_grouping_symbol/>  
1416 - <target_currency_symbol/>  
1417 - <target_null_string/>  
1418 - <target_aggregation_type>-</target_aggregation_type>  
1419 - </field>  
1420 - <field>  
1421 - <field_name>all_content</field_name>  
1422 - <key_value>49</key_value>  
1423 - <target_name>fcno49</target_name>  
1424 - <target_type>String</target_type>  
1425 - <target_format/>  
1426 - <target_length>-1</target_length>  
1427 - <target_precision>-1</target_precision>  
1428 - <target_decimal_symbol/>  
1429 - <target_grouping_symbol/>  
1430 - <target_currency_symbol/>  
1431 - <target_null_string/>  
1432 - <target_aggregation_type>-</target_aggregation_type>  
1433 - </field>  
1434 - <field>  
1435 - <field_name>all_content</field_name>  
1436 - <key_value>50</key_value>  
1437 - <target_name>fcno50</target_name>  
1438 - <target_type>String</target_type>  
1439 - <target_format/>  
1440 - <target_length>-1</target_length>  
1441 - <target_precision>-1</target_precision>  
1442 - <target_decimal_symbol/>  
1443 - <target_grouping_symbol/>  
1444 - <target_currency_symbol/>  
1445 - <target_null_string/>  
1446 - <target_aggregation_type>-</target_aggregation_type>  
1447 - </field>  
1448 - <field>  
1449 - <field_name>all_content</field_name>  
1450 - <key_value>51</key_value>  
1451 - <target_name>fcno51</target_name>  
1452 - <target_type>String</target_type>  
1453 - <target_format/>  
1454 - <target_length>-1</target_length>  
1455 - <target_precision>-1</target_precision>  
1456 - <target_decimal_symbol/>  
1457 - <target_grouping_symbol/>  
1458 - <target_currency_symbol/>  
1459 - <target_null_string/>  
1460 - <target_aggregation_type>-</target_aggregation_type>  
1461 - </field>  
1462 - <field>  
1463 - <field_name>all_content</field_name>  
1464 - <key_value>52</key_value>  
1465 - <target_name>fcno52</target_name>  
1466 - <target_type>String</target_type>  
1467 - <target_format/>  
1468 - <target_length>-1</target_length>  
1469 - <target_precision>-1</target_precision>  
1470 - <target_decimal_symbol/>  
1471 - <target_grouping_symbol/>  
1472 - <target_currency_symbol/>  
1473 - <target_null_string/>  
1474 - <target_aggregation_type>-</target_aggregation_type>  
1475 - </field>  
1476 - <field>  
1477 - <field_name>all_content</field_name>  
1478 - <key_value>53</key_value>  
1479 - <target_name>fcno53</target_name>  
1480 - <target_type>String</target_type>  
1481 - <target_format/>  
1482 - <target_length>-1</target_length>  
1483 - <target_precision>-1</target_precision>  
1484 - <target_decimal_symbol/>  
1485 - <target_grouping_symbol/>  
1486 - <target_currency_symbol/>  
1487 - <target_null_string/>  
1488 - <target_aggregation_type>-</target_aggregation_type>  
1489 - </field>  
1490 - <field>  
1491 - <field_name>all_content</field_name>  
1492 - <key_value>54</key_value>  
1493 - <target_name>fcno54</target_name>  
1494 - <target_type>String</target_type>  
1495 - <target_format/>  
1496 - <target_length>-1</target_length>  
1497 - <target_precision>-1</target_precision>  
1498 - <target_decimal_symbol/>  
1499 - <target_grouping_symbol/>  
1500 - <target_currency_symbol/>  
1501 - <target_null_string/>  
1502 - <target_aggregation_type>-</target_aggregation_type>  
1503 - </field>  
1504 - <field>  
1505 - <field_name>all_content</field_name>  
1506 - <key_value>55</key_value>  
1507 - <target_name>fcno55</target_name>  
1508 - <target_type>String</target_type>  
1509 - <target_format/>  
1510 - <target_length>-1</target_length>  
1511 - <target_precision>-1</target_precision>  
1512 - <target_decimal_symbol/>  
1513 - <target_grouping_symbol/>  
1514 - <target_currency_symbol/>  
1515 - <target_null_string/>  
1516 - <target_aggregation_type>-</target_aggregation_type>  
1517 - </field>  
1518 - <field>  
1519 - <field_name>all_content</field_name>  
1520 - <key_value>56</key_value>  
1521 - <target_name>fcno56</target_name>  
1522 - <target_type>String</target_type>  
1523 - <target_format/>  
1524 - <target_length>-1</target_length>  
1525 - <target_precision>-1</target_precision>  
1526 - <target_decimal_symbol/>  
1527 - <target_grouping_symbol/>  
1528 - <target_currency_symbol/>  
1529 - <target_null_string/>  
1530 - <target_aggregation_type>-</target_aggregation_type>  
1531 - </field>  
1532 - <field>  
1533 - <field_name>all_content</field_name>  
1534 - <key_value>57</key_value>  
1535 - <target_name>fcno57</target_name>  
1536 - <target_type>String</target_type>  
1537 - <target_format/>  
1538 - <target_length>-1</target_length>  
1539 - <target_precision>-1</target_precision>  
1540 - <target_decimal_symbol/>  
1541 - <target_grouping_symbol/>  
1542 - <target_currency_symbol/>  
1543 - <target_null_string/>  
1544 - <target_aggregation_type>-</target_aggregation_type>  
1545 - </field>  
1546 - <field>  
1547 - <field_name>all_content</field_name>  
1548 - <key_value>58</key_value>  
1549 - <target_name>fcno58</target_name>  
1550 - <target_type>String</target_type>  
1551 - <target_format/>  
1552 - <target_length>-1</target_length>  
1553 - <target_precision>-1</target_precision>  
1554 - <target_decimal_symbol/>  
1555 - <target_grouping_symbol/>  
1556 - <target_currency_symbol/>  
1557 - <target_null_string/>  
1558 - <target_aggregation_type>-</target_aggregation_type>  
1559 - </field>  
1560 - <field>  
1561 - <field_name>all_content</field_name>  
1562 - <key_value>59</key_value>  
1563 - <target_name>fcno59</target_name>  
1564 - <target_type>String</target_type>  
1565 - <target_format/>  
1566 - <target_length>-1</target_length>  
1567 - <target_precision>-1</target_precision>  
1568 - <target_decimal_symbol/>  
1569 - <target_grouping_symbol/>  
1570 - <target_currency_symbol/>  
1571 - <target_null_string/>  
1572 - <target_aggregation_type>-</target_aggregation_type>  
1573 - </field>  
1574 - <field>  
1575 - <field_name>all_content</field_name>  
1576 - <key_value>60</key_value>  
1577 - <target_name>fcno60</target_name>  
1578 - <target_type>String</target_type>  
1579 - <target_format/>  
1580 - <target_length>-1</target_length>  
1581 - <target_precision>-1</target_precision>  
1582 - <target_decimal_symbol/>  
1583 - <target_grouping_symbol/>  
1584 - <target_currency_symbol/>  
1585 - <target_null_string/>  
1586 - <target_aggregation_type>-</target_aggregation_type>  
1587 - </field>  
1588 - <field>  
1589 - <field_name>all_content</field_name>  
1590 - <key_value>61</key_value>  
1591 - <target_name>fcno61</target_name>  
1592 - <target_type>String</target_type>  
1593 - <target_format/>  
1594 - <target_length>-1</target_length>  
1595 - <target_precision>-1</target_precision>  
1596 - <target_decimal_symbol/>  
1597 - <target_grouping_symbol/>  
1598 - <target_currency_symbol/>  
1599 - <target_null_string/>  
1600 - <target_aggregation_type>-</target_aggregation_type>  
1601 - </field>  
1602 - <field>  
1603 - <field_name>all_content</field_name>  
1604 - <key_value>62</key_value>  
1605 - <target_name>fcno62</target_name>  
1606 - <target_type>String</target_type>  
1607 - <target_format/>  
1608 - <target_length>-1</target_length>  
1609 - <target_precision>-1</target_precision>  
1610 - <target_decimal_symbol/>  
1611 - <target_grouping_symbol/>  
1612 - <target_currency_symbol/>  
1613 - <target_null_string/>  
1614 - <target_aggregation_type>-</target_aggregation_type>  
1615 - </field>  
1616 - <field>  
1617 - <field_name>all_content</field_name>  
1618 - <key_value>63</key_value>  
1619 - <target_name>fcno63</target_name>  
1620 - <target_type>String</target_type>  
1621 - <target_format/>  
1622 - <target_length>-1</target_length>  
1623 - <target_precision>-1</target_precision>  
1624 - <target_decimal_symbol/>  
1625 - <target_grouping_symbol/>  
1626 - <target_currency_symbol/>  
1627 - <target_null_string/>  
1628 - <target_aggregation_type>-</target_aggregation_type>  
1629 - </field>  
1630 - <field>  
1631 - <field_name>all_content</field_name>  
1632 - <key_value>64</key_value>  
1633 - <target_name>fcno64</target_name>  
1634 - <target_type>String</target_type>  
1635 - <target_format/>  
1636 - <target_length>-1</target_length>  
1637 - <target_precision>-1</target_precision>  
1638 - <target_decimal_symbol/>  
1639 - <target_grouping_symbol/>  
1640 - <target_currency_symbol/>  
1641 - <target_null_string/>  
1642 - <target_aggregation_type>-</target_aggregation_type>  
1643 - </field>  
1644 - <field>  
1645 - <field_name>all_content</field_name>  
1646 - <key_value>65</key_value>  
1647 - <target_name>fcno65</target_name>  
1648 - <target_type>String</target_type>  
1649 - <target_format/>  
1650 - <target_length>-1</target_length>  
1651 - <target_precision>-1</target_precision>  
1652 - <target_decimal_symbol/>  
1653 - <target_grouping_symbol/>  
1654 - <target_currency_symbol/>  
1655 - <target_null_string/>  
1656 - <target_aggregation_type>-</target_aggregation_type>  
1657 - </field>  
1658 - <field>  
1659 - <field_name>all_content</field_name>  
1660 - <key_value>66</key_value>  
1661 - <target_name>fcno66</target_name>  
1662 - <target_type>String</target_type>  
1663 - <target_format/>  
1664 - <target_length>-1</target_length>  
1665 - <target_precision>-1</target_precision>  
1666 - <target_decimal_symbol/>  
1667 - <target_grouping_symbol/>  
1668 - <target_currency_symbol/>  
1669 - <target_null_string/>  
1670 - <target_aggregation_type>-</target_aggregation_type>  
1671 - </field>  
1672 - <field>  
1673 - <field_name>all_content</field_name>  
1674 - <key_value>67</key_value>  
1675 - <target_name>fcno67</target_name>  
1676 - <target_type>String</target_type>  
1677 - <target_format/>  
1678 - <target_length>-1</target_length>  
1679 - <target_precision>-1</target_precision>  
1680 - <target_decimal_symbol/>  
1681 - <target_grouping_symbol/>  
1682 - <target_currency_symbol/>  
1683 - <target_null_string/>  
1684 - <target_aggregation_type>-</target_aggregation_type>  
1685 - </field>  
1686 - <field>  
1687 - <field_name>all_content</field_name>  
1688 - <key_value>68</key_value>  
1689 - <target_name>fcno68</target_name>  
1690 - <target_type>String</target_type>  
1691 - <target_format/>  
1692 - <target_length>-1</target_length>  
1693 - <target_precision>-1</target_precision>  
1694 - <target_decimal_symbol/>  
1695 - <target_grouping_symbol/>  
1696 - <target_currency_symbol/>  
1697 - <target_null_string/>  
1698 - <target_aggregation_type>-</target_aggregation_type>  
1699 - </field>  
1700 - <field>  
1701 - <field_name>all_content</field_name>  
1702 - <key_value>69</key_value>  
1703 - <target_name>fcno69</target_name>  
1704 - <target_type>String</target_type>  
1705 - <target_format/>  
1706 - <target_length>-1</target_length>  
1707 - <target_precision>-1</target_precision>  
1708 - <target_decimal_symbol/>  
1709 - <target_grouping_symbol/>  
1710 - <target_currency_symbol/>  
1711 - <target_null_string/>  
1712 - <target_aggregation_type>-</target_aggregation_type>  
1713 - </field>  
1714 - <field>  
1715 - <field_name>all_content</field_name>  
1716 - <key_value>70</key_value>  
1717 - <target_name>fcno70</target_name>  
1718 - <target_type>String</target_type>  
1719 - <target_format/>  
1720 - <target_length>-1</target_length>  
1721 - <target_precision>-1</target_precision>  
1722 - <target_decimal_symbol/>  
1723 - <target_grouping_symbol/>  
1724 - <target_currency_symbol/>  
1725 - <target_null_string/>  
1726 - <target_aggregation_type>-</target_aggregation_type>  
1727 - </field>  
1728 - </fields>  
1729 - <cluster_schema/>  
1730 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1731 - <xloc>683</xloc>  
1732 - <yloc>184</yloc>  
1733 - <draw>Y</draw>  
1734 - </GUI>  
1735 - </step>  
1736 -  
1737 - <step>  
1738 - <name>&#x53bb;&#x9664;&#x5b57;&#x6bb5;</name>  
1739 - <type>SelectValues</type>  
1740 - <description/>  
1741 - <distribute>N</distribute>  
1742 - <custom_distribution/>  
1743 - <copies>1</copies>  
1744 - <partitioning>  
1745 - <method>none</method>  
1746 - <schema_name/>  
1747 - </partitioning>  
1748 - <fields> <field> <name>lp</name>  
1749 - <rename/>  
1750 - <length>-2</length>  
1751 - <precision>-2</precision>  
1752 - </field> <field> <name>fcno1</name>  
1753 - <rename/>  
1754 - <length>-2</length>  
1755 - <precision>-2</precision>  
1756 - </field> <field> <name>fcno2</name>  
1757 - <rename/>  
1758 - <length>-2</length>  
1759 - <precision>-2</precision>  
1760 - </field> <field> <name>fcno3</name>  
1761 - <rename/>  
1762 - <length>-2</length>  
1763 - <precision>-2</precision>  
1764 - </field> <field> <name>fcno4</name>  
1765 - <rename/>  
1766 - <length>-2</length>  
1767 - <precision>-2</precision>  
1768 - </field> <field> <name>fcno5</name>  
1769 - <rename/>  
1770 - <length>-2</length>  
1771 - <precision>-2</precision>  
1772 - </field> <field> <name>fcno6</name>  
1773 - <rename/>  
1774 - <length>-2</length>  
1775 - <precision>-2</precision>  
1776 - </field> <field> <name>fcno7</name>  
1777 - <rename/>  
1778 - <length>-2</length>  
1779 - <precision>-2</precision>  
1780 - </field> <field> <name>fcno8</name>  
1781 - <rename/>  
1782 - <length>-2</length>  
1783 - <precision>-2</precision>  
1784 - </field> <field> <name>fcno9</name>  
1785 - <rename/>  
1786 - <length>-2</length>  
1787 - <precision>-2</precision>  
1788 - </field> <field> <name>fcno10</name>  
1789 - <rename/>  
1790 - <length>-2</length>  
1791 - <precision>-2</precision>  
1792 - </field> <field> <name>fcno11</name>  
1793 - <rename/>  
1794 - <length>-2</length>  
1795 - <precision>-2</precision>  
1796 - </field> <field> <name>fcno12</name>  
1797 - <rename/>  
1798 - <length>-2</length>  
1799 - <precision>-2</precision>  
1800 - </field> <field> <name>fcno13</name>  
1801 - <rename/>  
1802 - <length>-2</length>  
1803 - <precision>-2</precision>  
1804 - </field> <field> <name>fcno14</name>  
1805 - <rename/>  
1806 - <length>-2</length>  
1807 - <precision>-2</precision>  
1808 - </field> <field> <name>fcno15</name>  
1809 - <rename/>  
1810 - <length>-2</length>  
1811 - <precision>-2</precision>  
1812 - </field> <field> <name>fcno16</name>  
1813 - <rename/>  
1814 - <length>-2</length>  
1815 - <precision>-2</precision>  
1816 - </field> <field> <name>fcno17</name>  
1817 - <rename/>  
1818 - <length>-2</length>  
1819 - <precision>-2</precision>  
1820 - </field> <field> <name>fcno18</name>  
1821 - <rename/>  
1822 - <length>-2</length>  
1823 - <precision>-2</precision>  
1824 - </field> <field> <name>fcno19</name>  
1825 - <rename/>  
1826 - <length>-2</length>  
1827 - <precision>-2</precision>  
1828 - </field> <field> <name>fcno20</name>  
1829 - <rename/>  
1830 - <length>-2</length>  
1831 - <precision>-2</precision>  
1832 - </field> <field> <name>fcno21</name>  
1833 - <rename/>  
1834 - <length>-2</length>  
1835 - <precision>-2</precision>  
1836 - </field> <field> <name>fcno22</name>  
1837 - <rename/>  
1838 - <length>-2</length>  
1839 - <precision>-2</precision>  
1840 - </field> <field> <name>fcno23</name>  
1841 - <rename/>  
1842 - <length>-2</length>  
1843 - <precision>-2</precision>  
1844 - </field> <field> <name>fcno24</name>  
1845 - <rename/>  
1846 - <length>-2</length>  
1847 - <precision>-2</precision>  
1848 - </field> <field> <name>fcno25</name>  
1849 - <rename/>  
1850 - <length>-2</length>  
1851 - <precision>-2</precision>  
1852 - </field> <field> <name>fcno26</name>  
1853 - <rename/>  
1854 - <length>-2</length>  
1855 - <precision>-2</precision>  
1856 - </field> <field> <name>fcno27</name>  
1857 - <rename/>  
1858 - <length>-2</length>  
1859 - <precision>-2</precision>  
1860 - </field> <field> <name>fcno28</name>  
1861 - <rename/>  
1862 - <length>-2</length>  
1863 - <precision>-2</precision>  
1864 - </field> <field> <name>fcno29</name>  
1865 - <rename/>  
1866 - <length>-2</length>  
1867 - <precision>-2</precision>  
1868 - </field> <field> <name>fcno30</name>  
1869 - <rename/>  
1870 - <length>-2</length>  
1871 - <precision>-2</precision>  
1872 - </field> <field> <name>fcno31</name>  
1873 - <rename/>  
1874 - <length>-2</length>  
1875 - <precision>-2</precision>  
1876 - </field> <field> <name>fcno32</name>  
1877 - <rename/>  
1878 - <length>-2</length>  
1879 - <precision>-2</precision>  
1880 - </field> <field> <name>fcno33</name>  
1881 - <rename/>  
1882 - <length>-2</length>  
1883 - <precision>-2</precision>  
1884 - </field> <field> <name>fcno34</name>  
1885 - <rename/>  
1886 - <length>-2</length>  
1887 - <precision>-2</precision>  
1888 - </field> <field> <name>fcno35</name>  
1889 - <rename/>  
1890 - <length>-2</length>  
1891 - <precision>-2</precision>  
1892 - </field> <field> <name>fcno36</name>  
1893 - <rename/>  
1894 - <length>-2</length>  
1895 - <precision>-2</precision>  
1896 - </field> <field> <name>fcno37</name>  
1897 - <rename/>  
1898 - <length>-2</length>  
1899 - <precision>-2</precision>  
1900 - </field> <field> <name>fcno38</name>  
1901 - <rename/>  
1902 - <length>-2</length>  
1903 - <precision>-2</precision>  
1904 - </field> <field> <name>fcno39</name>  
1905 - <rename/>  
1906 - <length>-2</length>  
1907 - <precision>-2</precision>  
1908 - </field> <field> <name>fcno40</name>  
1909 - <rename/>  
1910 - <length>-2</length>  
1911 - <precision>-2</precision>  
1912 - </field> <field> <name>fcno41</name>  
1913 - <rename/>  
1914 - <length>-2</length>  
1915 - <precision>-2</precision>  
1916 - </field> <field> <name>fcno42</name>  
1917 - <rename/>  
1918 - <length>-2</length>  
1919 - <precision>-2</precision>  
1920 - </field> <field> <name>fcno43</name>  
1921 - <rename/>  
1922 - <length>-2</length>  
1923 - <precision>-2</precision>  
1924 - </field> <field> <name>fcno44</name>  
1925 - <rename/>  
1926 - <length>-2</length>  
1927 - <precision>-2</precision>  
1928 - </field> <field> <name>fcno45</name>  
1929 - <rename/>  
1930 - <length>-2</length>  
1931 - <precision>-2</precision>  
1932 - </field> <field> <name>fcno46</name>  
1933 - <rename/>  
1934 - <length>-2</length>  
1935 - <precision>-2</precision>  
1936 - </field> <field> <name>fcno47</name>  
1937 - <rename/>  
1938 - <length>-2</length>  
1939 - <precision>-2</precision>  
1940 - </field> <field> <name>fcno48</name>  
1941 - <rename/>  
1942 - <length>-2</length>  
1943 - <precision>-2</precision>  
1944 - </field> <field> <name>fcno49</name>  
1945 - <rename/>  
1946 - <length>-2</length>  
1947 - <precision>-2</precision>  
1948 - </field> <field> <name>fcno50</name>  
1949 - <rename/>  
1950 - <length>-2</length>  
1951 - <precision>-2</precision>  
1952 - </field> <field> <name>fcno51</name>  
1953 - <rename/>  
1954 - <length>-2</length>  
1955 - <precision>-2</precision>  
1956 - </field> <field> <name>fcno52</name>  
1957 - <rename/>  
1958 - <length>-2</length>  
1959 - <precision>-2</precision>  
1960 - </field> <field> <name>fcno53</name>  
1961 - <rename/>  
1962 - <length>-2</length>  
1963 - <precision>-2</precision>  
1964 - </field> <field> <name>fcno54</name>  
1965 - <rename/>  
1966 - <length>-2</length>  
1967 - <precision>-2</precision>  
1968 - </field> <field> <name>fcno55</name>  
1969 - <rename/>  
1970 - <length>-2</length>  
1971 - <precision>-2</precision>  
1972 - </field> <field> <name>fcno56</name>  
1973 - <rename/>  
1974 - <length>-2</length>  
1975 - <precision>-2</precision>  
1976 - </field> <field> <name>fcno57</name>  
1977 - <rename/>  
1978 - <length>-2</length>  
1979 - <precision>-2</precision>  
1980 - </field> <field> <name>fcno58</name>  
1981 - <rename/>  
1982 - <length>-2</length>  
1983 - <precision>-2</precision>  
1984 - </field> <field> <name>fcno59</name>  
1985 - <rename/>  
1986 - <length>-2</length>  
1987 - <precision>-2</precision>  
1988 - </field> <field> <name>fcno60</name>  
1989 - <rename/>  
1990 - <length>-2</length>  
1991 - <precision>-2</precision>  
1992 - </field> <field> <name>fcno61</name>  
1993 - <rename/>  
1994 - <length>-2</length>  
1995 - <precision>-2</precision>  
1996 - </field> <field> <name>fcno62</name>  
1997 - <rename/>  
1998 - <length>-2</length>  
1999 - <precision>-2</precision>  
2000 - </field> <field> <name>fcno63</name>  
2001 - <rename/>  
2002 - <length>-2</length>  
2003 - <precision>-2</precision>  
2004 - </field> <field> <name>fcno64</name>  
2005 - <rename/>  
2006 - <length>-2</length>  
2007 - <precision>-2</precision>  
2008 - </field> <field> <name>fcno65</name>  
2009 - <rename/>  
2010 - <length>-2</length>  
2011 - <precision>-2</precision>  
2012 - </field> <field> <name>fcno66</name>  
2013 - <rename/>  
2014 - <length>-2</length>  
2015 - <precision>-2</precision>  
2016 - </field> <field> <name>fcno67</name>  
2017 - <rename/>  
2018 - <length>-2</length>  
2019 - <precision>-2</precision>  
2020 - </field> <field> <name>fcno68</name>  
2021 - <rename/>  
2022 - <length>-2</length>  
2023 - <precision>-2</precision>  
2024 - </field> <field> <name>fcno69</name>  
2025 - <rename/>  
2026 - <length>-2</length>  
2027 - <precision>-2</precision>  
2028 - </field> <field> <name>fcno70</name>  
2029 - <rename/>  
2030 - <length>-2</length>  
2031 - <precision>-2</precision>  
2032 - </field> <select_unspecified>N</select_unspecified>  
2033 - </fields> <cluster_schema/>  
2034 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2035 - <xloc>691</xloc>  
2036 - <yloc>361</yloc>  
2037 - <draw>Y</draw>  
2038 - </GUI>  
2039 - </step>  
2040 -  
2041 - <step>  
2042 - <name>&#x5408;&#x5e76;&#x5185;&#x5bb9;</name>  
2043 - <type>ScriptValueMod</type>  
2044 - <description/>  
2045 - <distribute>Y</distribute>  
2046 - <custom_distribution/>  
2047 - <copies>1</copies>  
2048 - <partitioning>  
2049 - <method>none</method>  
2050 - <schema_name/>  
2051 - </partitioning>  
2052 - <compatible>N</compatible>  
2053 - <optimizationLevel>9</optimizationLevel>  
2054 - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>  
2055 - <jsScript_name>Script 1</jsScript_name>  
2056 - <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;&#x2f;&#x2f; &#x987a;&#x5e8f;&#xff0c;id,fcsj,jhlc,zdname,bctype,xldir,isfb&#xa;var all_content_array &#x3d; &#x5b;&#x5d;&#x3b;&#xa;var all_content &#x3d; &#x22;&#x22;&#x3b; &#xa;all_content_array.push&#x28;id&#x29;&#x3b;&#xa;all_content_array.push&#x28;fcsj&#x29;&#x3b;&#xa;all_content_array.push&#x28;jhlc&#x29;&#x3b;&#xa;all_content_array.push&#x28;fczdName&#x29;&#x3b;&#xa;all_content_array.push&#x28;bc_type&#x29;&#x3b;&#xa;all_content_array.push&#x28;xl_dir&#x29;&#x3b;&#xa;all_content_array.push&#x28;isfb&#x29;&#x3b;&#xa;all_content_array.push&#x28;qdz_code &#x7c;&#x7c; &#x27;null&#x27;&#x29;&#x3b;&#xa;all_content_array.push&#x28;zdz_code &#x7c;&#x7c; &#x27;null&#x27;&#x29;&#x3b;&#xa;&#xa;all_content &#x3d; all_content_array.join&#x28;&#x22;,&#x22;&#x29;&#x3b; &#x2f;&#x2f; &#x9017;&#x53f7;&#x5206;&#x9694;</jsScript_script>  
2057 - </jsScript> </jsScripts> <fields> <field> <name>all_content</name>  
2058 - <rename>all_content</rename> 703 + <field>
  704 + <name>fcno71</name>
2059 <type>String</type> 705 <type>String</type>
2060 - <length>-1</length>  
2061 - <precision>-1</precision>  
2062 - <replace>N</replace>  
2063 - </field> </fields> <cluster_schema/>  
2064 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2065 - <xloc>441</xloc>  
2066 - <yloc>84</yloc>  
2067 - <draw>Y</draw>  
2068 - </GUI>  
2069 - </step>  
2070 -  
2071 - <step>  
2072 - <name>&#x6587;&#x672c;&#x6587;&#x4ef6;&#x8f93;&#x51fa;</name>  
2073 - <type>TextFileOutput</type>  
2074 - <description/>  
2075 - <distribute>Y</distribute>  
2076 - <custom_distribution/>  
2077 - <copies>1</copies>  
2078 - <partitioning>  
2079 - <method>none</method>  
2080 - <schema_name/>  
2081 - </partitioning>  
2082 - <separator>&#x3b;</separator>  
2083 - <enclosure>&#x22;</enclosure>  
2084 - <enclosure_forced>N</enclosure_forced>  
2085 - <enclosure_fix_disabled>N</enclosure_fix_disabled>  
2086 - <header>Y</header>  
2087 - <footer>N</footer>  
2088 - <format>DOS</format>  
2089 - <compression>None</compression>  
2090 - <encoding>UTF-8</encoding>  
2091 - <endedLine/>  
2092 - <fileNameInField>N</fileNameInField>  
2093 - <fileNameField/>  
2094 - <create_parent_folder>Y</create_parent_folder>  
2095 - <file>  
2096 - <name>&#x24;&#x7b;tempfilepath&#x7d;</name>  
2097 - <is_command>N</is_command>  
2098 - <servlet_output>N</servlet_output>  
2099 - <do_not_open_new_file_init>N</do_not_open_new_file_init>  
2100 - <extention>txt</extention>  
2101 - <append>N</append>  
2102 - <split>N</split>  
2103 - <haspartno>N</haspartno>  
2104 - <add_date>N</add_date>  
2105 - <add_time>N</add_time>  
2106 - <SpecifyFormat>N</SpecifyFormat>  
2107 - <date_time_format/>  
2108 - <add_to_result_filenames>Y</add_to_result_filenames>  
2109 - <pad>N</pad>  
2110 - <fast_dump>N</fast_dump>  
2111 - <splitevery>0</splitevery>  
2112 - </file>  
2113 - <fields> 706 + <format/>
  707 + </field>
  708 + <field>
  709 + <name>fcno72</name>
  710 + <type>String</type>
  711 + <format/>
  712 + </field>
  713 + <field>
  714 + <name>fcno73</name>
  715 + <type>String</type>
  716 + <format/>
  717 + </field>
  718 + <field>
  719 + <name>fcno74</name>
  720 + <type>String</type>
  721 + <format/>
  722 + </field>
  723 + <field>
  724 + <name>fcno75</name>
  725 + <type>String</type>
  726 + <format/>
  727 + </field>
  728 + <field>
  729 + <name>fcno76</name>
  730 + <type>String</type>
  731 + <format/>
  732 + </field>
2114 <field> 733 <field>
2115 - <name>lp</name> 734 + <name>fcno77</name>
2116 <type>String</type> 735 <type>String</type>
2117 <format/> 736 <format/>
2118 - <currency/>  
2119 - <decimal/>  
2120 - <group/>  
2121 - <nullif/>  
2122 - <trim_type>none</trim_type>  
2123 - <length>255</length>  
2124 - <precision>-1</precision>  
2125 </field> 737 </field>
2126 <field> 738 <field>
2127 - <name>fcno1</name> 739 + <name>fcno78</name>
2128 <type>String</type> 740 <type>String</type>
2129 <format/> 741 <format/>
2130 - <currency/>  
2131 - <decimal/>  
2132 - <group/>  
2133 - <nullif/>  
2134 - <trim_type>none</trim_type>  
2135 - <length>-1</length>  
2136 - <precision>-1</precision>  
2137 </field> 742 </field>
2138 <field> 743 <field>
2139 - <name>fcno2</name> 744 + <name>fcno79</name>
2140 <type>String</type> 745 <type>String</type>
2141 <format/> 746 <format/>
2142 - <currency/>  
2143 - <decimal/>  
2144 - <group/>  
2145 - <nullif/>  
2146 - <trim_type>none</trim_type>  
2147 - <length>-1</length>  
2148 - <precision>-1</precision>  
2149 </field> 747 </field>
2150 <field> 748 <field>
2151 - <name>fcno3</name> 749 + <name>fcno80</name>
2152 <type>String</type> 750 <type>String</type>
2153 <format/> 751 <format/>
2154 - <currency/>  
2155 - <decimal/>  
2156 - <group/>  
2157 - <nullif/>  
2158 - <trim_type>none</trim_type>  
2159 - <length>-1</length>  
2160 - <precision>-1</precision>  
2161 </field> 752 </field>
2162 <field> 753 <field>
2163 - <name>fcno4</name> 754 + <name>fcno81</name>
2164 <type>String</type> 755 <type>String</type>
2165 <format/> 756 <format/>
2166 - <currency/>  
2167 - <decimal/>  
2168 - <group/>  
2169 - <nullif/>  
2170 - <trim_type>none</trim_type>  
2171 - <length>-1</length>  
2172 - <precision>-1</precision>  
2173 </field> 757 </field>
2174 <field> 758 <field>
2175 - <name>fcno5</name> 759 + <name>fcno82</name>
2176 <type>String</type> 760 <type>String</type>
2177 <format/> 761 <format/>
2178 - <currency/>  
2179 - <decimal/>  
2180 - <group/>  
2181 - <nullif/>  
2182 - <trim_type>none</trim_type>  
2183 - <length>-1</length>  
2184 - <precision>-1</precision>  
2185 </field> 762 </field>
2186 <field> 763 <field>
2187 - <name>fcno6</name> 764 + <name>fcno83</name>
2188 <type>String</type> 765 <type>String</type>
2189 <format/> 766 <format/>
2190 - <currency/>  
2191 - <decimal/>  
2192 - <group/>  
2193 - <nullif/>  
2194 - <trim_type>none</trim_type>  
2195 - <length>-1</length>  
2196 - <precision>-1</precision>  
2197 </field> 767 </field>
2198 <field> 768 <field>
2199 - <name>fcno7</name> 769 + <name>fcno84</name>
2200 <type>String</type> 770 <type>String</type>
2201 <format/> 771 <format/>
2202 - <currency/>  
2203 - <decimal/>  
2204 - <group/>  
2205 - <nullif/>  
2206 - <trim_type>none</trim_type>  
2207 - <length>-1</length>  
2208 - <precision>-1</precision>  
2209 </field> 772 </field>
2210 <field> 773 <field>
2211 - <name>fcno8</name> 774 + <name>fcno85</name>
2212 <type>String</type> 775 <type>String</type>
2213 <format/> 776 <format/>
2214 - <currency/>  
2215 - <decimal/>  
2216 - <group/>  
2217 - <nullif/>  
2218 - <trim_type>none</trim_type>  
2219 - <length>-1</length>  
2220 - <precision>-1</precision>  
2221 </field> 777 </field>
2222 <field> 778 <field>
2223 - <name>fcno9</name> 779 + <name>fcno86</name>
2224 <type>String</type> 780 <type>String</type>
2225 <format/> 781 <format/>
2226 - <currency/>  
2227 - <decimal/>  
2228 - <group/>  
2229 - <nullif/>  
2230 - <trim_type>none</trim_type>  
2231 - <length>-1</length>  
2232 - <precision>-1</precision>  
2233 </field> 782 </field>
2234 <field> 783 <field>
2235 - <name>fcno10</name> 784 + <name>fcno87</name>
2236 <type>String</type> 785 <type>String</type>
2237 <format/> 786 <format/>
2238 - <currency/>  
2239 - <decimal/>  
2240 - <group/>  
2241 - <nullif/>  
2242 - <trim_type>none</trim_type>  
2243 - <length>-1</length>  
2244 - <precision>-1</precision>  
2245 </field> 787 </field>
2246 <field> 788 <field>
2247 - <name>fcno11</name> 789 + <name>fcno88</name>
2248 <type>String</type> 790 <type>String</type>
2249 <format/> 791 <format/>
2250 - <currency/>  
2251 - <decimal/>  
2252 - <group/>  
2253 - <nullif/>  
2254 - <trim_type>none</trim_type>  
2255 - <length>-1</length>  
2256 - <precision>-1</precision>  
2257 </field> 792 </field>
2258 <field> 793 <field>
2259 - <name>fcno12</name> 794 + <name>fcno89</name>
2260 <type>String</type> 795 <type>String</type>
2261 <format/> 796 <format/>
2262 - <currency/>  
2263 - <decimal/>  
2264 - <group/>  
2265 - <nullif/>  
2266 - <trim_type>none</trim_type>  
2267 - <length>-1</length>  
2268 - <precision>-1</precision>  
2269 </field> 797 </field>
2270 <field> 798 <field>
2271 - <name>fcno13</name> 799 + <name>fcno90</name>
2272 <type>String</type> 800 <type>String</type>
2273 <format/> 801 <format/>
2274 - <currency/>  
2275 - <decimal/>  
2276 - <group/>  
2277 - <nullif/>  
2278 - <trim_type>none</trim_type>  
2279 - <length>-1</length>  
2280 - <precision>-1</precision>  
2281 </field> 802 </field>
2282 <field> 803 <field>
2283 - <name>fcno14</name> 804 + <name>fcno91</name>
2284 <type>String</type> 805 <type>String</type>
2285 <format/> 806 <format/>
2286 - <currency/>  
2287 - <decimal/>  
2288 - <group/>  
2289 - <nullif/>  
2290 - <trim_type>none</trim_type>  
2291 - <length>-1</length>  
2292 - <precision>-1</precision>  
2293 </field> 807 </field>
2294 <field> 808 <field>
2295 - <name>fcno15</name> 809 + <name>fcno92</name>
2296 <type>String</type> 810 <type>String</type>
2297 <format/> 811 <format/>
2298 - <currency/>  
2299 - <decimal/>  
2300 - <group/>  
2301 - <nullif/>  
2302 - <trim_type>none</trim_type>  
2303 - <length>-1</length>  
2304 - <precision>-1</precision>  
2305 </field> 812 </field>
2306 <field> 813 <field>
2307 - <name>fcno16</name> 814 + <name>fcno93</name>
2308 <type>String</type> 815 <type>String</type>
2309 <format/> 816 <format/>
2310 - <currency/>  
2311 - <decimal/>  
2312 - <group/>  
2313 - <nullif/>  
2314 - <trim_type>none</trim_type>  
2315 - <length>-1</length>  
2316 - <precision>-1</precision>  
2317 </field> 817 </field>
2318 <field> 818 <field>
2319 - <name>fcno17</name> 819 + <name>fcno94</name>
2320 <type>String</type> 820 <type>String</type>
2321 <format/> 821 <format/>
2322 - <currency/>  
2323 - <decimal/>  
2324 - <group/>  
2325 - <nullif/>  
2326 - <trim_type>none</trim_type>  
2327 - <length>-1</length>  
2328 - <precision>-1</precision>  
2329 </field> 822 </field>
2330 <field> 823 <field>
2331 - <name>fcno18</name> 824 + <name>fcno95</name>
2332 <type>String</type> 825 <type>String</type>
2333 <format/> 826 <format/>
2334 - <currency/>  
2335 - <decimal/>  
2336 - <group/>  
2337 - <nullif/>  
2338 - <trim_type>none</trim_type>  
2339 - <length>-1</length>  
2340 - <precision>-1</precision>  
2341 </field> 827 </field>
2342 <field> 828 <field>
2343 - <name>fcno19</name> 829 + <name>fcno96</name>
2344 <type>String</type> 830 <type>String</type>
2345 <format/> 831 <format/>
2346 - <currency/>  
2347 - <decimal/>  
2348 - <group/>  
2349 - <nullif/>  
2350 - <trim_type>none</trim_type>  
2351 - <length>-1</length>  
2352 - <precision>-1</precision>  
2353 </field> 832 </field>
2354 <field> 833 <field>
2355 - <name>fcno20</name> 834 + <name>fcno97</name>
2356 <type>String</type> 835 <type>String</type>
2357 <format/> 836 <format/>
2358 - <currency/>  
2359 - <decimal/>  
2360 - <group/>  
2361 - <nullif/>  
2362 - <trim_type>none</trim_type>  
2363 - <length>-1</length>  
2364 - <precision>-1</precision>  
2365 </field> 837 </field>
2366 <field> 838 <field>
2367 - <name>fcno21</name> 839 + <name>fcno98</name>
2368 <type>String</type> 840 <type>String</type>
2369 <format/> 841 <format/>
2370 - <currency/>  
2371 - <decimal/>  
2372 - <group/>  
2373 - <nullif/>  
2374 - <trim_type>none</trim_type>  
2375 - <length>-1</length>  
2376 - <precision>-1</precision>  
2377 </field> 842 </field>
2378 <field> 843 <field>
2379 - <name>fcno22</name> 844 + <name>fcno99</name>
2380 <type>String</type> 845 <type>String</type>
2381 <format/> 846 <format/>
2382 - <currency/>  
2383 - <decimal/>  
2384 - <group/>  
2385 - <nullif/>  
2386 - <trim_type>none</trim_type>  
2387 - <length>-1</length>  
2388 - <precision>-1</precision>  
2389 </field> 847 </field>
2390 <field> 848 <field>
2391 - <name>fcno23</name> 849 + <name>fcno100</name>
2392 <type>String</type> 850 <type>String</type>
2393 <format/> 851 <format/>
2394 - <currency/>  
2395 - <decimal/>  
2396 - <group/>  
2397 - <nullif/>  
2398 - <trim_type>none</trim_type>  
2399 - <length>-1</length>  
2400 - <precision>-1</precision>  
2401 </field> 852 </field>
2402 <field> 853 <field>
2403 - <name>fcno24</name> 854 + <name>fcno101</name>
2404 <type>String</type> 855 <type>String</type>
2405 <format/> 856 <format/>
2406 - <currency/>  
2407 - <decimal/>  
2408 - <group/>  
2409 - <nullif/>  
2410 - <trim_type>none</trim_type>  
2411 - <length>-1</length>  
2412 - <precision>-1</precision>  
2413 </field> 857 </field>
2414 <field> 858 <field>
2415 - <name>fcno25</name> 859 + <name>fcno102</name>
2416 <type>String</type> 860 <type>String</type>
2417 <format/> 861 <format/>
2418 - <currency/>  
2419 - <decimal/>  
2420 - <group/>  
2421 - <nullif/>  
2422 - <trim_type>none</trim_type>  
2423 - <length>-1</length>  
2424 - <precision>-1</precision>  
2425 </field> 862 </field>
2426 <field> 863 <field>
2427 - <name>fcno26</name> 864 + <name>fcno103</name>
2428 <type>String</type> 865 <type>String</type>
2429 <format/> 866 <format/>
2430 - <currency/>  
2431 - <decimal/>  
2432 - <group/>  
2433 - <nullif/>  
2434 - <trim_type>none</trim_type>  
2435 - <length>-1</length>  
2436 - <precision>-1</precision>  
2437 </field> 867 </field>
2438 <field> 868 <field>
2439 - <name>fcno27</name> 869 + <name>fcno104</name>
2440 <type>String</type> 870 <type>String</type>
2441 <format/> 871 <format/>
2442 - <currency/>  
2443 - <decimal/>  
2444 - <group/>  
2445 - <nullif/>  
2446 - <trim_type>none</trim_type>  
2447 - <length>-1</length>  
2448 - <precision>-1</precision>  
2449 </field> 872 </field>
2450 <field> 873 <field>
2451 - <name>fcno28</name> 874 + <name>fcno105</name>
2452 <type>String</type> 875 <type>String</type>
2453 <format/> 876 <format/>
2454 - <currency/>  
2455 - <decimal/>  
2456 - <group/>  
2457 - <nullif/>  
2458 - <trim_type>none</trim_type>  
2459 - <length>-1</length>  
2460 - <precision>-1</precision>  
2461 </field> 877 </field>
2462 <field> 878 <field>
2463 - <name>fcno29</name> 879 + <name>fcno106</name>
2464 <type>String</type> 880 <type>String</type>
2465 <format/> 881 <format/>
2466 - <currency/>  
2467 - <decimal/>  
2468 - <group/>  
2469 - <nullif/>  
2470 - <trim_type>none</trim_type>  
2471 - <length>-1</length>  
2472 - <precision>-1</precision>  
2473 </field> 882 </field>
2474 <field> 883 <field>
2475 - <name>fcno30</name> 884 + <name>fcno107</name>
2476 <type>String</type> 885 <type>String</type>
2477 <format/> 886 <format/>
2478 - <currency/>  
2479 - <decimal/>  
2480 - <group/>  
2481 - <nullif/>  
2482 - <trim_type>none</trim_type>  
2483 - <length>-1</length>  
2484 - <precision>-1</precision>  
2485 </field> 887 </field>
2486 <field> 888 <field>
2487 - <name>fcno31</name> 889 + <name>fcno108</name>
2488 <type>String</type> 890 <type>String</type>
2489 <format/> 891 <format/>
2490 - <currency/>  
2491 - <decimal/>  
2492 - <group/>  
2493 - <nullif/>  
2494 - <trim_type>none</trim_type>  
2495 - <length>-1</length>  
2496 - <precision>-1</precision>  
2497 </field> 892 </field>
2498 <field> 893 <field>
2499 - <name>fcno32</name> 894 + <name>fcno109</name>
2500 <type>String</type> 895 <type>String</type>
2501 <format/> 896 <format/>
2502 - <currency/>  
2503 - <decimal/>  
2504 - <group/>  
2505 - <nullif/>  
2506 - <trim_type>none</trim_type>  
2507 - <length>-1</length>  
2508 - <precision>-1</precision>  
2509 </field> 897 </field>
2510 <field> 898 <field>
2511 - <name>fcno33</name> 899 + <name>fcno110</name>
2512 <type>String</type> 900 <type>String</type>
2513 <format/> 901 <format/>
2514 - <currency/>  
2515 - <decimal/>  
2516 - <group/>  
2517 - <nullif/>  
2518 - <trim_type>none</trim_type>  
2519 - <length>-1</length>  
2520 - <precision>-1</precision>  
2521 </field> 902 </field>
2522 <field> 903 <field>
2523 - <name>fcno34</name> 904 + <name>fcno111</name>
  905 + <type>String</type>
  906 + <format/>
  907 + </field>
  908 + <field>
  909 + <name>fcno112</name>
  910 + <type>String</type>
  911 + <format/>
  912 + </field>
  913 + <field>
  914 + <name>fcno113</name>
  915 + <type>String</type>
  916 + <format/>
  917 + </field>
  918 + <field>
  919 + <name>fcno114</name>
2524 <type>String</type> 920 <type>String</type>
2525 <format/> 921 <format/>
2526 - <currency/>  
2527 - <decimal/>  
2528 - <group/>  
2529 - <nullif/>  
2530 - <trim_type>none</trim_type>  
2531 - <length>-1</length>  
2532 - <precision>-1</precision>  
2533 </field> 922 </field>
2534 <field> 923 <field>
2535 - <name>fcno35</name> 924 + <name>fcno115</name>
2536 <type>String</type> 925 <type>String</type>
2537 <format/> 926 <format/>
2538 - <currency/>  
2539 - <decimal/>  
2540 - <group/>  
2541 - <nullif/>  
2542 - <trim_type>none</trim_type>  
2543 - <length>-1</length>  
2544 - <precision>-1</precision>  
2545 </field> 927 </field>
2546 <field> 928 <field>
2547 - <name>fcno36</name> 929 + <name>fcno116</name>
2548 <type>String</type> 930 <type>String</type>
2549 <format/> 931 <format/>
2550 - <currency/>  
2551 - <decimal/>  
2552 - <group/>  
2553 - <nullif/>  
2554 - <trim_type>none</trim_type>  
2555 - <length>-1</length>  
2556 - <precision>-1</precision>  
2557 </field> 932 </field>
2558 <field> 933 <field>
2559 - <name>fcno37</name> 934 + <name>fcno117</name>
2560 <type>String</type> 935 <type>String</type>
2561 <format/> 936 <format/>
2562 - <currency/>  
2563 - <decimal/>  
2564 - <group/>  
2565 - <nullif/>  
2566 - <trim_type>none</trim_type>  
2567 - <length>-1</length>  
2568 - <precision>-1</precision>  
2569 </field> 937 </field>
2570 <field> 938 <field>
2571 - <name>fcno38</name> 939 + <name>fcno118</name>
2572 <type>String</type> 940 <type>String</type>
2573 <format/> 941 <format/>
2574 - <currency/>  
2575 - <decimal/>  
2576 - <group/>  
2577 - <nullif/>  
2578 - <trim_type>none</trim_type>  
2579 - <length>-1</length>  
2580 - <precision>-1</precision>  
2581 </field> 942 </field>
2582 <field> 943 <field>
2583 - <name>fcno39</name> 944 + <name>fcno119</name>
2584 <type>String</type> 945 <type>String</type>
2585 <format/> 946 <format/>
2586 - <currency/>  
2587 - <decimal/>  
2588 - <group/>  
2589 - <nullif/>  
2590 - <trim_type>none</trim_type>  
2591 - <length>-1</length>  
2592 - <precision>-1</precision>  
2593 </field> 947 </field>
2594 <field> 948 <field>
2595 - <name>fcno40</name> 949 + <name>fcno120</name>
2596 <type>String</type> 950 <type>String</type>
2597 <format/> 951 <format/>
2598 - <currency/>  
2599 - <decimal/>  
2600 - <group/>  
2601 - <nullif/>  
2602 - <trim_type>none</trim_type>  
2603 - <length>-1</length>  
2604 - <precision>-1</precision>  
2605 </field> 952 </field>
2606 <field> 953 <field>
2607 - <name>fcno41</name> 954 + <name>fcno121</name>
2608 <type>String</type> 955 <type>String</type>
2609 <format/> 956 <format/>
2610 - <currency/>  
2611 - <decimal/>  
2612 - <group/>  
2613 - <nullif/>  
2614 - <trim_type>none</trim_type>  
2615 - <length>-1</length>  
2616 - <precision>-1</precision>  
2617 </field> 957 </field>
2618 <field> 958 <field>
2619 - <name>fcno42</name> 959 + <name>fcno122</name>
2620 <type>String</type> 960 <type>String</type>
2621 <format/> 961 <format/>
2622 - <currency/>  
2623 - <decimal/>  
2624 - <group/>  
2625 - <nullif/>  
2626 - <trim_type>none</trim_type>  
2627 - <length>-1</length>  
2628 - <precision>-1</precision>  
2629 </field> 962 </field>
2630 <field> 963 <field>
2631 - <name>fcno43</name> 964 + <name>fcno123</name>
2632 <type>String</type> 965 <type>String</type>
2633 <format/> 966 <format/>
2634 - <currency/>  
2635 - <decimal/>  
2636 - <group/>  
2637 - <nullif/>  
2638 - <trim_type>none</trim_type>  
2639 - <length>-1</length>  
2640 - <precision>-1</precision>  
2641 </field> 967 </field>
2642 <field> 968 <field>
2643 - <name>fcno44</name> 969 + <name>fcno124</name>
2644 <type>String</type> 970 <type>String</type>
2645 <format/> 971 <format/>
2646 - <currency/>  
2647 - <decimal/>  
2648 - <group/>  
2649 - <nullif/>  
2650 - <trim_type>none</trim_type>  
2651 - <length>-1</length>  
2652 - <precision>-1</precision>  
2653 </field> 972 </field>
2654 <field> 973 <field>
2655 - <name>fcno45</name> 974 + <name>fcno125</name>
2656 <type>String</type> 975 <type>String</type>
2657 <format/> 976 <format/>
2658 - <currency/>  
2659 - <decimal/>  
2660 - <group/>  
2661 - <nullif/>  
2662 - <trim_type>none</trim_type>  
2663 - <length>-1</length>  
2664 - <precision>-1</precision>  
2665 </field> 977 </field>
2666 <field> 978 <field>
2667 - <name>fcno46</name> 979 + <name>fcno126</name>
2668 <type>String</type> 980 <type>String</type>
2669 <format/> 981 <format/>
2670 - <currency/>  
2671 - <decimal/>  
2672 - <group/>  
2673 - <nullif/>  
2674 - <trim_type>none</trim_type>  
2675 - <length>-1</length>  
2676 - <precision>-1</precision>  
2677 </field> 982 </field>
2678 <field> 983 <field>
2679 - <name>fcno47</name> 984 + <name>fcno127</name>
2680 <type>String</type> 985 <type>String</type>
2681 <format/> 986 <format/>
2682 - <currency/>  
2683 - <decimal/>  
2684 - <group/>  
2685 - <nullif/>  
2686 - <trim_type>none</trim_type>  
2687 - <length>-1</length>  
2688 - <precision>-1</precision>  
2689 </field> 987 </field>
2690 <field> 988 <field>
2691 - <name>fcno48</name> 989 + <name>fcno128</name>
2692 <type>String</type> 990 <type>String</type>
2693 <format/> 991 <format/>
2694 - <currency/>  
2695 - <decimal/>  
2696 - <group/>  
2697 - <nullif/>  
2698 - <trim_type>none</trim_type>  
2699 - <length>-1</length>  
2700 - <precision>-1</precision>  
2701 </field> 992 </field>
2702 <field> 993 <field>
2703 - <name>fcno49</name> 994 + <name>fcno129</name>
2704 <type>String</type> 995 <type>String</type>
2705 <format/> 996 <format/>
2706 - <currency/>  
2707 - <decimal/>  
2708 - <group/>  
2709 - <nullif/>  
2710 - <trim_type>none</trim_type>  
2711 - <length>-1</length>  
2712 - <precision>-1</precision>  
2713 </field> 997 </field>
2714 <field> 998 <field>
2715 - <name>fcno50</name> 999 + <name>fcno130</name>
2716 <type>String</type> 1000 <type>String</type>
2717 <format/> 1001 <format/>
2718 - <currency/>  
2719 - <decimal/>  
2720 - <group/>  
2721 - <nullif/>  
2722 - <trim_type>none</trim_type>  
2723 - <length>-1</length>  
2724 - <precision>-1</precision>  
2725 </field> 1002 </field>
2726 <field> 1003 <field>
2727 - <name>fcno51</name> 1004 + <name>fcno131</name>
2728 <type>String</type> 1005 <type>String</type>
2729 <format/> 1006 <format/>
2730 - <currency/>  
2731 - <decimal/>  
2732 - <group/>  
2733 - <nullif/>  
2734 - <trim_type>none</trim_type>  
2735 - <length>-1</length>  
2736 - <precision>-1</precision>  
2737 </field> 1007 </field>
2738 <field> 1008 <field>
2739 - <name>fcno52</name> 1009 + <name>fcno132</name>
2740 <type>String</type> 1010 <type>String</type>
2741 <format/> 1011 <format/>
2742 - <currency/>  
2743 - <decimal/>  
2744 - <group/>  
2745 - <nullif/>  
2746 - <trim_type>none</trim_type>  
2747 - <length>-1</length>  
2748 - <precision>-1</precision>  
2749 </field> 1012 </field>
2750 <field> 1013 <field>
2751 - <name>fcno53</name> 1014 + <name>fcno133</name>
2752 <type>String</type> 1015 <type>String</type>
2753 <format/> 1016 <format/>
2754 - <currency/>  
2755 - <decimal/>  
2756 - <group/>  
2757 - <nullif/>  
2758 - <trim_type>none</trim_type>  
2759 - <length>-1</length>  
2760 - <precision>-1</precision>  
2761 </field> 1017 </field>
2762 <field> 1018 <field>
2763 - <name>fcno54</name> 1019 + <name>fcno134</name>
2764 <type>String</type> 1020 <type>String</type>
2765 <format/> 1021 <format/>
2766 - <currency/>  
2767 - <decimal/>  
2768 - <group/>  
2769 - <nullif/>  
2770 - <trim_type>none</trim_type>  
2771 - <length>-1</length>  
2772 - <precision>-1</precision>  
2773 </field> 1022 </field>
2774 <field> 1023 <field>
2775 - <name>fcno55</name> 1024 + <name>fcno135</name>
2776 <type>String</type> 1025 <type>String</type>
2777 <format/> 1026 <format/>
2778 - <currency/>  
2779 - <decimal/>  
2780 - <group/>  
2781 - <nullif/>  
2782 - <trim_type>none</trim_type>  
2783 - <length>-1</length>  
2784 - <precision>-1</precision>  
2785 </field> 1027 </field>
2786 <field> 1028 <field>
2787 - <name>fcno56</name> 1029 + <name>fcno136</name>
2788 <type>String</type> 1030 <type>String</type>
2789 <format/> 1031 <format/>
2790 - <currency/>  
2791 - <decimal/>  
2792 - <group/>  
2793 - <nullif/>  
2794 - <trim_type>none</trim_type>  
2795 - <length>-1</length>  
2796 - <precision>-1</precision>  
2797 </field> 1032 </field>
2798 <field> 1033 <field>
2799 - <name>fcno57</name> 1034 + <name>fcno137</name>
2800 <type>String</type> 1035 <type>String</type>
2801 <format/> 1036 <format/>
2802 - <currency/>  
2803 - <decimal/>  
2804 - <group/>  
2805 - <nullif/>  
2806 - <trim_type>none</trim_type>  
2807 - <length>-1</length>  
2808 - <precision>-1</precision>  
2809 </field> 1037 </field>
2810 <field> 1038 <field>
2811 - <name>fcno58</name> 1039 + <name>fcno138</name>
2812 <type>String</type> 1040 <type>String</type>
2813 <format/> 1041 <format/>
2814 - <currency/>  
2815 - <decimal/>  
2816 - <group/>  
2817 - <nullif/>  
2818 - <trim_type>none</trim_type>  
2819 - <length>-1</length>  
2820 - <precision>-1</precision>  
2821 </field> 1042 </field>
2822 <field> 1043 <field>
2823 - <name>fcno59</name> 1044 + <name>fcno139</name>
2824 <type>String</type> 1045 <type>String</type>
2825 <format/> 1046 <format/>
2826 - <currency/>  
2827 - <decimal/>  
2828 - <group/>  
2829 - <nullif/>  
2830 - <trim_type>none</trim_type>  
2831 - <length>-1</length>  
2832 - <precision>-1</precision>  
2833 </field> 1047 </field>
2834 <field> 1048 <field>
2835 - <name>fcno60</name> 1049 + <name>fcno140</name>
2836 <type>String</type> 1050 <type>String</type>
2837 <format/> 1051 <format/>
2838 - <currency/>  
2839 - <decimal/>  
2840 - <group/>  
2841 - <nullif/>  
2842 - <trim_type>none</trim_type>  
2843 - <length>-1</length>  
2844 - <precision>-1</precision>  
2845 </field> 1052 </field>
2846 <field> 1053 <field>
2847 - <name>fcno61</name> 1054 + <name>fcno141</name>
2848 <type>String</type> 1055 <type>String</type>
2849 <format/> 1056 <format/>
2850 - <currency/>  
2851 - <decimal/>  
2852 - <group/>  
2853 - <nullif/>  
2854 - <trim_type>none</trim_type>  
2855 - <length>-1</length>  
2856 - <precision>-1</precision>  
2857 </field> 1057 </field>
2858 <field> 1058 <field>
2859 - <name>fcno62</name> 1059 + <name>fcno142</name>
2860 <type>String</type> 1060 <type>String</type>
2861 <format/> 1061 <format/>
2862 - <currency/>  
2863 - <decimal/>  
2864 - <group/>  
2865 - <nullif/>  
2866 - <trim_type>none</trim_type>  
2867 - <length>-1</length>  
2868 - <precision>-1</precision>  
2869 </field> 1062 </field>
2870 <field> 1063 <field>
2871 - <name>fcno63</name> 1064 + <name>fcno143</name>
2872 <type>String</type> 1065 <type>String</type>
2873 <format/> 1066 <format/>
2874 - <currency/>  
2875 - <decimal/>  
2876 - <group/>  
2877 - <nullif/>  
2878 - <trim_type>none</trim_type>  
2879 - <length>-1</length>  
2880 - <precision>-1</precision>  
2881 </field> 1067 </field>
2882 <field> 1068 <field>
2883 - <name>fcno64</name> 1069 + <name>fcno144</name>
2884 <type>String</type> 1070 <type>String</type>
2885 <format/> 1071 <format/>
2886 - <currency/>  
2887 - <decimal/>  
2888 - <group/>  
2889 - <nullif/>  
2890 - <trim_type>none</trim_type>  
2891 - <length>-1</length>  
2892 - <precision>-1</precision>  
2893 </field> 1072 </field>
2894 <field> 1073 <field>
2895 - <name>fcno65</name> 1074 + <name>fcno145</name>
2896 <type>String</type> 1075 <type>String</type>
2897 <format/> 1076 <format/>
2898 - <currency/>  
2899 - <decimal/>  
2900 - <group/>  
2901 - <nullif/>  
2902 - <trim_type>none</trim_type>  
2903 - <length>-1</length>  
2904 - <precision>-1</precision>  
2905 </field> 1077 </field>
2906 <field> 1078 <field>
2907 - <name>fcno66</name> 1079 + <name>fcno146</name>
2908 <type>String</type> 1080 <type>String</type>
2909 <format/> 1081 <format/>
2910 - <currency/>  
2911 - <decimal/>  
2912 - <group/>  
2913 - <nullif/>  
2914 - <trim_type>none</trim_type>  
2915 - <length>-1</length>  
2916 - <precision>-1</precision>  
2917 </field> 1082 </field>
2918 <field> 1083 <field>
2919 - <name>fcno67</name> 1084 + <name>fcno147</name>
2920 <type>String</type> 1085 <type>String</type>
2921 <format/> 1086 <format/>
2922 - <currency/>  
2923 - <decimal/>  
2924 - <group/>  
2925 - <nullif/>  
2926 - <trim_type>none</trim_type>  
2927 - <length>-1</length>  
2928 - <precision>-1</precision>  
2929 </field> 1087 </field>
2930 <field> 1088 <field>
2931 - <name>fcno68</name> 1089 + <name>fcno148</name>
2932 <type>String</type> 1090 <type>String</type>
2933 <format/> 1091 <format/>
2934 - <currency/>  
2935 - <decimal/>  
2936 - <group/>  
2937 - <nullif/>  
2938 - <trim_type>none</trim_type>  
2939 - <length>-1</length>  
2940 - <precision>-1</precision>  
2941 </field> 1092 </field>
2942 <field> 1093 <field>
2943 - <name>fcno69</name> 1094 + <name>fcno149</name>
2944 <type>String</type> 1095 <type>String</type>
2945 <format/> 1096 <format/>
2946 - <currency/>  
2947 - <decimal/>  
2948 - <group/>  
2949 - <nullif/>  
2950 - <trim_type>none</trim_type>  
2951 - <length>-1</length>  
2952 - <precision>-1</precision>  
2953 </field> 1097 </field>
2954 <field> 1098 <field>
2955 - <name>fcno70</name> 1099 + <name>fcno150</name>
  1100 + <type>String</type>
  1101 + <format/>
  1102 + </field>
  1103 + </fields>
  1104 + <custom>
  1105 + <header_font_name>arial</header_font_name>
  1106 + <header_font_size>10</header_font_size>
  1107 + <header_font_bold>N</header_font_bold>
  1108 + <header_font_italic>N</header_font_italic>
  1109 + <header_font_underline>no</header_font_underline>
  1110 + <header_font_orientation>horizontal</header_font_orientation>
  1111 + <header_font_color>black</header_font_color>
  1112 + <header_background_color>none</header_background_color>
  1113 + <header_row_height>255</header_row_height>
  1114 + <header_alignment>left</header_alignment>
  1115 + <header_image/>
  1116 + <row_font_name>arial</row_font_name>
  1117 + <row_font_size>10</row_font_size>
  1118 + <row_font_color>black</row_font_color>
  1119 + <row_background_color>none</row_background_color>
  1120 + </custom>
  1121 + <cluster_schema/>
  1122 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1123 + <xloc>692</xloc>
  1124 + <yloc>514</yloc>
  1125 + <draw>Y</draw>
  1126 + </GUI>
  1127 + </step>
  1128 +
  1129 + <step>
  1130 + <name>&#x5217;&#x8f6c;&#x884c;</name>
  1131 + <type>Denormaliser</type>
  1132 + <description/>
  1133 + <distribute>N</distribute>
  1134 + <custom_distribution/>
  1135 + <copies>1</copies>
  1136 + <partitioning>
  1137 + <method>none</method>
  1138 + <schema_name/>
  1139 + </partitioning>
  1140 + <key_field>fcno</key_field>
  1141 + <group>
  1142 + <field>
  1143 + <name>lp</name>
  1144 + </field>
  1145 + </group>
  1146 + <fields>
  1147 + <field>
  1148 + <field_name>all_content</field_name>
  1149 + <key_value>1</key_value>
  1150 + <target_name>fcno1</target_name>
  1151 + <target_type>String</target_type>
  1152 + <target_format/>
  1153 + <target_length>-1</target_length>
  1154 + <target_precision>-1</target_precision>
  1155 + <target_decimal_symbol/>
  1156 + <target_grouping_symbol/>
  1157 + <target_currency_symbol/>
  1158 + <target_null_string/>
  1159 + <target_aggregation_type>-</target_aggregation_type>
  1160 + </field>
  1161 + <field>
  1162 + <field_name>all_content</field_name>
  1163 + <key_value>2</key_value>
  1164 + <target_name>fcno2</target_name>
  1165 + <target_type>String</target_type>
  1166 + <target_format/>
  1167 + <target_length>-1</target_length>
  1168 + <target_precision>-1</target_precision>
  1169 + <target_decimal_symbol/>
  1170 + <target_grouping_symbol/>
  1171 + <target_currency_symbol/>
  1172 + <target_null_string/>
  1173 + <target_aggregation_type>-</target_aggregation_type>
  1174 + </field>
  1175 + <field>
  1176 + <field_name>all_content</field_name>
  1177 + <key_value>3</key_value>
  1178 + <target_name>fcno3</target_name>
  1179 + <target_type>String</target_type>
  1180 + <target_format/>
  1181 + <target_length>-1</target_length>
  1182 + <target_precision>-1</target_precision>
  1183 + <target_decimal_symbol/>
  1184 + <target_grouping_symbol/>
  1185 + <target_currency_symbol/>
  1186 + <target_null_string/>
  1187 + <target_aggregation_type>-</target_aggregation_type>
  1188 + </field>
  1189 + <field>
  1190 + <field_name>all_content</field_name>
  1191 + <key_value>4</key_value>
  1192 + <target_name>fcno4</target_name>
  1193 + <target_type>String</target_type>
  1194 + <target_format/>
  1195 + <target_length>-1</target_length>
  1196 + <target_precision>-1</target_precision>
  1197 + <target_decimal_symbol/>
  1198 + <target_grouping_symbol/>
  1199 + <target_currency_symbol/>
  1200 + <target_null_string/>
  1201 + <target_aggregation_type>-</target_aggregation_type>
  1202 + </field>
  1203 + <field>
  1204 + <field_name>all_content</field_name>
  1205 + <key_value>5</key_value>
  1206 + <target_name>fcno5</target_name>
  1207 + <target_type>String</target_type>
  1208 + <target_format/>
  1209 + <target_length>-1</target_length>
  1210 + <target_precision>-1</target_precision>
  1211 + <target_decimal_symbol/>
  1212 + <target_grouping_symbol/>
  1213 + <target_currency_symbol/>
  1214 + <target_null_string/>
  1215 + <target_aggregation_type>-</target_aggregation_type>
  1216 + </field>
  1217 + <field>
  1218 + <field_name>all_content</field_name>
  1219 + <key_value>6</key_value>
  1220 + <target_name>fcno6</target_name>
  1221 + <target_type>String</target_type>
  1222 + <target_format/>
  1223 + <target_length>-1</target_length>
  1224 + <target_precision>-1</target_precision>
  1225 + <target_decimal_symbol/>
  1226 + <target_grouping_symbol/>
  1227 + <target_currency_symbol/>
  1228 + <target_null_string/>
  1229 + <target_aggregation_type>-</target_aggregation_type>
  1230 + </field>
  1231 + <field>
  1232 + <field_name>all_content</field_name>
  1233 + <key_value>7</key_value>
  1234 + <target_name>fcno7</target_name>
  1235 + <target_type>String</target_type>
  1236 + <target_format/>
  1237 + <target_length>-1</target_length>
  1238 + <target_precision>-1</target_precision>
  1239 + <target_decimal_symbol/>
  1240 + <target_grouping_symbol/>
  1241 + <target_currency_symbol/>
  1242 + <target_null_string/>
  1243 + <target_aggregation_type>-</target_aggregation_type>
  1244 + </field>
  1245 + <field>
  1246 + <field_name>all_content</field_name>
  1247 + <key_value>8</key_value>
  1248 + <target_name>fcno8</target_name>
  1249 + <target_type>String</target_type>
  1250 + <target_format/>
  1251 + <target_length>-1</target_length>
  1252 + <target_precision>-1</target_precision>
  1253 + <target_decimal_symbol/>
  1254 + <target_grouping_symbol/>
  1255 + <target_currency_symbol/>
  1256 + <target_null_string/>
  1257 + <target_aggregation_type>-</target_aggregation_type>
  1258 + </field>
  1259 + <field>
  1260 + <field_name>all_content</field_name>
  1261 + <key_value>9</key_value>
  1262 + <target_name>fcno9</target_name>
  1263 + <target_type>String</target_type>
  1264 + <target_format/>
  1265 + <target_length>-1</target_length>
  1266 + <target_precision>-1</target_precision>
  1267 + <target_decimal_symbol/>
  1268 + <target_grouping_symbol/>
  1269 + <target_currency_symbol/>
  1270 + <target_null_string/>
  1271 + <target_aggregation_type>-</target_aggregation_type>
  1272 + </field>
  1273 + <field>
  1274 + <field_name>all_content</field_name>
  1275 + <key_value>10</key_value>
  1276 + <target_name>fcno10</target_name>
  1277 + <target_type>String</target_type>
  1278 + <target_format/>
  1279 + <target_length>-1</target_length>
  1280 + <target_precision>-1</target_precision>
  1281 + <target_decimal_symbol/>
  1282 + <target_grouping_symbol/>
  1283 + <target_currency_symbol/>
  1284 + <target_null_string/>
  1285 + <target_aggregation_type>-</target_aggregation_type>
  1286 + </field>
  1287 + <field>
  1288 + <field_name>all_content</field_name>
  1289 + <key_value>11</key_value>
  1290 + <target_name>fcno11</target_name>
  1291 + <target_type>String</target_type>
  1292 + <target_format/>
  1293 + <target_length>-1</target_length>
  1294 + <target_precision>-1</target_precision>
  1295 + <target_decimal_symbol/>
  1296 + <target_grouping_symbol/>
  1297 + <target_currency_symbol/>
  1298 + <target_null_string/>
  1299 + <target_aggregation_type>-</target_aggregation_type>
  1300 + </field>
  1301 + <field>
  1302 + <field_name>all_content</field_name>
  1303 + <key_value>12</key_value>
  1304 + <target_name>fcno12</target_name>
  1305 + <target_type>String</target_type>
  1306 + <target_format/>
  1307 + <target_length>-1</target_length>
  1308 + <target_precision>-1</target_precision>
  1309 + <target_decimal_symbol/>
  1310 + <target_grouping_symbol/>
  1311 + <target_currency_symbol/>
  1312 + <target_null_string/>
  1313 + <target_aggregation_type>-</target_aggregation_type>
  1314 + </field>
  1315 + <field>
  1316 + <field_name>all_content</field_name>
  1317 + <key_value>13</key_value>
  1318 + <target_name>fcno13</target_name>
  1319 + <target_type>String</target_type>
  1320 + <target_format/>
  1321 + <target_length>-1</target_length>
  1322 + <target_precision>-1</target_precision>
  1323 + <target_decimal_symbol/>
  1324 + <target_grouping_symbol/>
  1325 + <target_currency_symbol/>
  1326 + <target_null_string/>
  1327 + <target_aggregation_type>-</target_aggregation_type>
  1328 + </field>
  1329 + <field>
  1330 + <field_name>all_content</field_name>
  1331 + <key_value>14</key_value>
  1332 + <target_name>fcno14</target_name>
  1333 + <target_type>String</target_type>
  1334 + <target_format/>
  1335 + <target_length>-1</target_length>
  1336 + <target_precision>-1</target_precision>
  1337 + <target_decimal_symbol/>
  1338 + <target_grouping_symbol/>
  1339 + <target_currency_symbol/>
  1340 + <target_null_string/>
  1341 + <target_aggregation_type>-</target_aggregation_type>
  1342 + </field>
  1343 + <field>
  1344 + <field_name>all_content</field_name>
  1345 + <key_value>15</key_value>
  1346 + <target_name>fcno15</target_name>
  1347 + <target_type>String</target_type>
  1348 + <target_format/>
  1349 + <target_length>-1</target_length>
  1350 + <target_precision>-1</target_precision>
  1351 + <target_decimal_symbol/>
  1352 + <target_grouping_symbol/>
  1353 + <target_currency_symbol/>
  1354 + <target_null_string/>
  1355 + <target_aggregation_type>-</target_aggregation_type>
  1356 + </field>
  1357 + <field>
  1358 + <field_name>all_content</field_name>
  1359 + <key_value>16</key_value>
  1360 + <target_name>fcno16</target_name>
  1361 + <target_type>String</target_type>
  1362 + <target_format/>
  1363 + <target_length>-1</target_length>
  1364 + <target_precision>-1</target_precision>
  1365 + <target_decimal_symbol/>
  1366 + <target_grouping_symbol/>
  1367 + <target_currency_symbol/>
  1368 + <target_null_string/>
  1369 + <target_aggregation_type>-</target_aggregation_type>
  1370 + </field>
  1371 + <field>
  1372 + <field_name>all_content</field_name>
  1373 + <key_value>17</key_value>
  1374 + <target_name>fcno17</target_name>
  1375 + <target_type>String</target_type>
  1376 + <target_format/>
  1377 + <target_length>-1</target_length>
  1378 + <target_precision>-1</target_precision>
  1379 + <target_decimal_symbol/>
  1380 + <target_grouping_symbol/>
  1381 + <target_currency_symbol/>
  1382 + <target_null_string/>
  1383 + <target_aggregation_type>-</target_aggregation_type>
  1384 + </field>
  1385 + <field>
  1386 + <field_name>all_content</field_name>
  1387 + <key_value>18</key_value>
  1388 + <target_name>fcno18</target_name>
  1389 + <target_type>String</target_type>
  1390 + <target_format/>
  1391 + <target_length>-1</target_length>
  1392 + <target_precision>-1</target_precision>
  1393 + <target_decimal_symbol/>
  1394 + <target_grouping_symbol/>
  1395 + <target_currency_symbol/>
  1396 + <target_null_string/>
  1397 + <target_aggregation_type>-</target_aggregation_type>
  1398 + </field>
  1399 + <field>
  1400 + <field_name>all_content</field_name>
  1401 + <key_value>19</key_value>
  1402 + <target_name>fcno19</target_name>
  1403 + <target_type>String</target_type>
  1404 + <target_format/>
  1405 + <target_length>-1</target_length>
  1406 + <target_precision>-1</target_precision>
  1407 + <target_decimal_symbol/>
  1408 + <target_grouping_symbol/>
  1409 + <target_currency_symbol/>
  1410 + <target_null_string/>
  1411 + <target_aggregation_type>-</target_aggregation_type>
  1412 + </field>
  1413 + <field>
  1414 + <field_name>all_content</field_name>
  1415 + <key_value>20</key_value>
  1416 + <target_name>fcno20</target_name>
  1417 + <target_type>String</target_type>
  1418 + <target_format/>
  1419 + <target_length>-1</target_length>
  1420 + <target_precision>-1</target_precision>
  1421 + <target_decimal_symbol/>
  1422 + <target_grouping_symbol/>
  1423 + <target_currency_symbol/>
  1424 + <target_null_string/>
  1425 + <target_aggregation_type>-</target_aggregation_type>
  1426 + </field>
  1427 + <field>
  1428 + <field_name>all_content</field_name>
  1429 + <key_value>21</key_value>
  1430 + <target_name>fcno21</target_name>
  1431 + <target_type>String</target_type>
  1432 + <target_format/>
  1433 + <target_length>-1</target_length>
  1434 + <target_precision>-1</target_precision>
  1435 + <target_decimal_symbol/>
  1436 + <target_grouping_symbol/>
  1437 + <target_currency_symbol/>
  1438 + <target_null_string/>
  1439 + <target_aggregation_type>-</target_aggregation_type>
  1440 + </field>
  1441 + <field>
  1442 + <field_name>all_content</field_name>
  1443 + <key_value>22</key_value>
  1444 + <target_name>fcno22</target_name>
  1445 + <target_type>String</target_type>
  1446 + <target_format/>
  1447 + <target_length>-1</target_length>
  1448 + <target_precision>-1</target_precision>
  1449 + <target_decimal_symbol/>
  1450 + <target_grouping_symbol/>
  1451 + <target_currency_symbol/>
  1452 + <target_null_string/>
  1453 + <target_aggregation_type>-</target_aggregation_type>
  1454 + </field>
  1455 + <field>
  1456 + <field_name>all_content</field_name>
  1457 + <key_value>23</key_value>
  1458 + <target_name>fcno23</target_name>
  1459 + <target_type>String</target_type>
  1460 + <target_format/>
  1461 + <target_length>-1</target_length>
  1462 + <target_precision>-1</target_precision>
  1463 + <target_decimal_symbol/>
  1464 + <target_grouping_symbol/>
  1465 + <target_currency_symbol/>
  1466 + <target_null_string/>
  1467 + <target_aggregation_type>-</target_aggregation_type>
  1468 + </field>
  1469 + <field>
  1470 + <field_name>all_content</field_name>
  1471 + <key_value>24</key_value>
  1472 + <target_name>fcno24</target_name>
  1473 + <target_type>String</target_type>
  1474 + <target_format/>
  1475 + <target_length>-1</target_length>
  1476 + <target_precision>-1</target_precision>
  1477 + <target_decimal_symbol/>
  1478 + <target_grouping_symbol/>
  1479 + <target_currency_symbol/>
  1480 + <target_null_string/>
  1481 + <target_aggregation_type>-</target_aggregation_type>
  1482 + </field>
  1483 + <field>
  1484 + <field_name>all_content</field_name>
  1485 + <key_value>25</key_value>
  1486 + <target_name>fcno25</target_name>
  1487 + <target_type>String</target_type>
  1488 + <target_format/>
  1489 + <target_length>-1</target_length>
  1490 + <target_precision>-1</target_precision>
  1491 + <target_decimal_symbol/>
  1492 + <target_grouping_symbol/>
  1493 + <target_currency_symbol/>
  1494 + <target_null_string/>
  1495 + <target_aggregation_type>-</target_aggregation_type>
  1496 + </field>
  1497 + <field>
  1498 + <field_name>all_content</field_name>
  1499 + <key_value>26</key_value>
  1500 + <target_name>fcno26</target_name>
  1501 + <target_type>String</target_type>
  1502 + <target_format/>
  1503 + <target_length>-1</target_length>
  1504 + <target_precision>-1</target_precision>
  1505 + <target_decimal_symbol/>
  1506 + <target_grouping_symbol/>
  1507 + <target_currency_symbol/>
  1508 + <target_null_string/>
  1509 + <target_aggregation_type>-</target_aggregation_type>
  1510 + </field>
  1511 + <field>
  1512 + <field_name>all_content</field_name>
  1513 + <key_value>27</key_value>
  1514 + <target_name>fcno27</target_name>
  1515 + <target_type>String</target_type>
  1516 + <target_format/>
  1517 + <target_length>-1</target_length>
  1518 + <target_precision>-1</target_precision>
  1519 + <target_decimal_symbol/>
  1520 + <target_grouping_symbol/>
  1521 + <target_currency_symbol/>
  1522 + <target_null_string/>
  1523 + <target_aggregation_type>-</target_aggregation_type>
  1524 + </field>
  1525 + <field>
  1526 + <field_name>all_content</field_name>
  1527 + <key_value>28</key_value>
  1528 + <target_name>fcno28</target_name>
  1529 + <target_type>String</target_type>
  1530 + <target_format/>
  1531 + <target_length>-1</target_length>
  1532 + <target_precision>-1</target_precision>
  1533 + <target_decimal_symbol/>
  1534 + <target_grouping_symbol/>
  1535 + <target_currency_symbol/>
  1536 + <target_null_string/>
  1537 + <target_aggregation_type>-</target_aggregation_type>
  1538 + </field>
  1539 + <field>
  1540 + <field_name>all_content</field_name>
  1541 + <key_value>29</key_value>
  1542 + <target_name>fcno29</target_name>
  1543 + <target_type>String</target_type>
  1544 + <target_format/>
  1545 + <target_length>-1</target_length>
  1546 + <target_precision>-1</target_precision>
  1547 + <target_decimal_symbol/>
  1548 + <target_grouping_symbol/>
  1549 + <target_currency_symbol/>
  1550 + <target_null_string/>
  1551 + <target_aggregation_type>-</target_aggregation_type>
  1552 + </field>
  1553 + <field>
  1554 + <field_name>all_content</field_name>
  1555 + <key_value>30</key_value>
  1556 + <target_name>fcno30</target_name>
  1557 + <target_type>String</target_type>
  1558 + <target_format/>
  1559 + <target_length>-1</target_length>
  1560 + <target_precision>-1</target_precision>
  1561 + <target_decimal_symbol/>
  1562 + <target_grouping_symbol/>
  1563 + <target_currency_symbol/>
  1564 + <target_null_string/>
  1565 + <target_aggregation_type>-</target_aggregation_type>
  1566 + </field>
  1567 + <field>
  1568 + <field_name>all_content</field_name>
  1569 + <key_value>31</key_value>
  1570 + <target_name>fcno31</target_name>
  1571 + <target_type>String</target_type>
  1572 + <target_format/>
  1573 + <target_length>-1</target_length>
  1574 + <target_precision>-1</target_precision>
  1575 + <target_decimal_symbol/>
  1576 + <target_grouping_symbol/>
  1577 + <target_currency_symbol/>
  1578 + <target_null_string/>
  1579 + <target_aggregation_type>-</target_aggregation_type>
  1580 + </field>
  1581 + <field>
  1582 + <field_name>all_content</field_name>
  1583 + <key_value>32</key_value>
  1584 + <target_name>fcno32</target_name>
  1585 + <target_type>String</target_type>
  1586 + <target_format/>
  1587 + <target_length>-1</target_length>
  1588 + <target_precision>-1</target_precision>
  1589 + <target_decimal_symbol/>
  1590 + <target_grouping_symbol/>
  1591 + <target_currency_symbol/>
  1592 + <target_null_string/>
  1593 + <target_aggregation_type>-</target_aggregation_type>
  1594 + </field>
  1595 + <field>
  1596 + <field_name>all_content</field_name>
  1597 + <key_value>33</key_value>
  1598 + <target_name>fcno33</target_name>
  1599 + <target_type>String</target_type>
  1600 + <target_format/>
  1601 + <target_length>-1</target_length>
  1602 + <target_precision>-1</target_precision>
  1603 + <target_decimal_symbol/>
  1604 + <target_grouping_symbol/>
  1605 + <target_currency_symbol/>
  1606 + <target_null_string/>
  1607 + <target_aggregation_type>-</target_aggregation_type>
  1608 + </field>
  1609 + <field>
  1610 + <field_name>all_content</field_name>
  1611 + <key_value>34</key_value>
  1612 + <target_name>fcno34</target_name>
  1613 + <target_type>String</target_type>
  1614 + <target_format/>
  1615 + <target_length>-1</target_length>
  1616 + <target_precision>-1</target_precision>
  1617 + <target_decimal_symbol/>
  1618 + <target_grouping_symbol/>
  1619 + <target_currency_symbol/>
  1620 + <target_null_string/>
  1621 + <target_aggregation_type>-</target_aggregation_type>
  1622 + </field>
  1623 + <field>
  1624 + <field_name>all_content</field_name>
  1625 + <key_value>35</key_value>
  1626 + <target_name>fcno35</target_name>
  1627 + <target_type>String</target_type>
  1628 + <target_format/>
  1629 + <target_length>-1</target_length>
  1630 + <target_precision>-1</target_precision>
  1631 + <target_decimal_symbol/>
  1632 + <target_grouping_symbol/>
  1633 + <target_currency_symbol/>
  1634 + <target_null_string/>
  1635 + <target_aggregation_type>-</target_aggregation_type>
  1636 + </field>
  1637 + <field>
  1638 + <field_name>all_content</field_name>
  1639 + <key_value>36</key_value>
  1640 + <target_name>fcno36</target_name>
  1641 + <target_type>String</target_type>
  1642 + <target_format/>
  1643 + <target_length>-1</target_length>
  1644 + <target_precision>-1</target_precision>
  1645 + <target_decimal_symbol/>
  1646 + <target_grouping_symbol/>
  1647 + <target_currency_symbol/>
  1648 + <target_null_string/>
  1649 + <target_aggregation_type>-</target_aggregation_type>
  1650 + </field>
  1651 + <field>
  1652 + <field_name>all_content</field_name>
  1653 + <key_value>37</key_value>
  1654 + <target_name>fcno37</target_name>
  1655 + <target_type>String</target_type>
  1656 + <target_format/>
  1657 + <target_length>-1</target_length>
  1658 + <target_precision>-1</target_precision>
  1659 + <target_decimal_symbol/>
  1660 + <target_grouping_symbol/>
  1661 + <target_currency_symbol/>
  1662 + <target_null_string/>
  1663 + <target_aggregation_type>-</target_aggregation_type>
  1664 + </field>
  1665 + <field>
  1666 + <field_name>all_content</field_name>
  1667 + <key_value>38</key_value>
  1668 + <target_name>fcno38</target_name>
  1669 + <target_type>String</target_type>
  1670 + <target_format/>
  1671 + <target_length>-1</target_length>
  1672 + <target_precision>-1</target_precision>
  1673 + <target_decimal_symbol/>
  1674 + <target_grouping_symbol/>
  1675 + <target_currency_symbol/>
  1676 + <target_null_string/>
  1677 + <target_aggregation_type>-</target_aggregation_type>
  1678 + </field>
  1679 + <field>
  1680 + <field_name>all_content</field_name>
  1681 + <key_value>39</key_value>
  1682 + <target_name>fcno39</target_name>
  1683 + <target_type>String</target_type>
  1684 + <target_format/>
  1685 + <target_length>-1</target_length>
  1686 + <target_precision>-1</target_precision>
  1687 + <target_decimal_symbol/>
  1688 + <target_grouping_symbol/>
  1689 + <target_currency_symbol/>
  1690 + <target_null_string/>
  1691 + <target_aggregation_type>-</target_aggregation_type>
  1692 + </field>
  1693 + <field>
  1694 + <field_name>all_content</field_name>
  1695 + <key_value>40</key_value>
  1696 + <target_name>fcno40</target_name>
  1697 + <target_type>String</target_type>
  1698 + <target_format/>
  1699 + <target_length>-1</target_length>
  1700 + <target_precision>-1</target_precision>
  1701 + <target_decimal_symbol/>
  1702 + <target_grouping_symbol/>
  1703 + <target_currency_symbol/>
  1704 + <target_null_string/>
  1705 + <target_aggregation_type>-</target_aggregation_type>
  1706 + </field>
  1707 + <field>
  1708 + <field_name>all_content</field_name>
  1709 + <key_value>41</key_value>
  1710 + <target_name>fcno41</target_name>
  1711 + <target_type>String</target_type>
  1712 + <target_format/>
  1713 + <target_length>-1</target_length>
  1714 + <target_precision>-1</target_precision>
  1715 + <target_decimal_symbol/>
  1716 + <target_grouping_symbol/>
  1717 + <target_currency_symbol/>
  1718 + <target_null_string/>
  1719 + <target_aggregation_type>-</target_aggregation_type>
  1720 + </field>
  1721 + <field>
  1722 + <field_name>all_content</field_name>
  1723 + <key_value>42</key_value>
  1724 + <target_name>fcno42</target_name>
  1725 + <target_type>String</target_type>
  1726 + <target_format/>
  1727 + <target_length>-1</target_length>
  1728 + <target_precision>-1</target_precision>
  1729 + <target_decimal_symbol/>
  1730 + <target_grouping_symbol/>
  1731 + <target_currency_symbol/>
  1732 + <target_null_string/>
  1733 + <target_aggregation_type>-</target_aggregation_type>
  1734 + </field>
  1735 + <field>
  1736 + <field_name>all_content</field_name>
  1737 + <key_value>43</key_value>
  1738 + <target_name>fcno43</target_name>
  1739 + <target_type>String</target_type>
  1740 + <target_format/>
  1741 + <target_length>-1</target_length>
  1742 + <target_precision>-1</target_precision>
  1743 + <target_decimal_symbol/>
  1744 + <target_grouping_symbol/>
  1745 + <target_currency_symbol/>
  1746 + <target_null_string/>
  1747 + <target_aggregation_type>-</target_aggregation_type>
  1748 + </field>
  1749 + <field>
  1750 + <field_name>all_content</field_name>
  1751 + <key_value>44</key_value>
  1752 + <target_name>fcno44</target_name>
  1753 + <target_type>String</target_type>
  1754 + <target_format/>
  1755 + <target_length>-1</target_length>
  1756 + <target_precision>-1</target_precision>
  1757 + <target_decimal_symbol/>
  1758 + <target_grouping_symbol/>
  1759 + <target_currency_symbol/>
  1760 + <target_null_string/>
  1761 + <target_aggregation_type>-</target_aggregation_type>
  1762 + </field>
  1763 + <field>
  1764 + <field_name>all_content</field_name>
  1765 + <key_value>45</key_value>
  1766 + <target_name>fcno45</target_name>
  1767 + <target_type>String</target_type>
  1768 + <target_format/>
  1769 + <target_length>-1</target_length>
  1770 + <target_precision>-1</target_precision>
  1771 + <target_decimal_symbol/>
  1772 + <target_grouping_symbol/>
  1773 + <target_currency_symbol/>
  1774 + <target_null_string/>
  1775 + <target_aggregation_type>-</target_aggregation_type>
  1776 + </field>
  1777 + <field>
  1778 + <field_name>all_content</field_name>
  1779 + <key_value>46</key_value>
  1780 + <target_name>fcno46</target_name>
  1781 + <target_type>String</target_type>
  1782 + <target_format/>
  1783 + <target_length>-1</target_length>
  1784 + <target_precision>-1</target_precision>
  1785 + <target_decimal_symbol/>
  1786 + <target_grouping_symbol/>
  1787 + <target_currency_symbol/>
  1788 + <target_null_string/>
  1789 + <target_aggregation_type>-</target_aggregation_type>
  1790 + </field>
  1791 + <field>
  1792 + <field_name>all_content</field_name>
  1793 + <key_value>47</key_value>
  1794 + <target_name>fcno47</target_name>
  1795 + <target_type>String</target_type>
  1796 + <target_format/>
  1797 + <target_length>-1</target_length>
  1798 + <target_precision>-1</target_precision>
  1799 + <target_decimal_symbol/>
  1800 + <target_grouping_symbol/>
  1801 + <target_currency_symbol/>
  1802 + <target_null_string/>
  1803 + <target_aggregation_type>-</target_aggregation_type>
  1804 + </field>
  1805 + <field>
  1806 + <field_name>all_content</field_name>
  1807 + <key_value>48</key_value>
  1808 + <target_name>fcno48</target_name>
  1809 + <target_type>String</target_type>
  1810 + <target_format/>
  1811 + <target_length>-1</target_length>
  1812 + <target_precision>-1</target_precision>
  1813 + <target_decimal_symbol/>
  1814 + <target_grouping_symbol/>
  1815 + <target_currency_symbol/>
  1816 + <target_null_string/>
  1817 + <target_aggregation_type>-</target_aggregation_type>
  1818 + </field>
  1819 + <field>
  1820 + <field_name>all_content</field_name>
  1821 + <key_value>49</key_value>
  1822 + <target_name>fcno49</target_name>
  1823 + <target_type>String</target_type>
  1824 + <target_format/>
  1825 + <target_length>-1</target_length>
  1826 + <target_precision>-1</target_precision>
  1827 + <target_decimal_symbol/>
  1828 + <target_grouping_symbol/>
  1829 + <target_currency_symbol/>
  1830 + <target_null_string/>
  1831 + <target_aggregation_type>-</target_aggregation_type>
  1832 + </field>
  1833 + <field>
  1834 + <field_name>all_content</field_name>
  1835 + <key_value>50</key_value>
  1836 + <target_name>fcno50</target_name>
  1837 + <target_type>String</target_type>
  1838 + <target_format/>
  1839 + <target_length>-1</target_length>
  1840 + <target_precision>-1</target_precision>
  1841 + <target_decimal_symbol/>
  1842 + <target_grouping_symbol/>
  1843 + <target_currency_symbol/>
  1844 + <target_null_string/>
  1845 + <target_aggregation_type>-</target_aggregation_type>
  1846 + </field>
  1847 + <field>
  1848 + <field_name>all_content</field_name>
  1849 + <key_value>51</key_value>
  1850 + <target_name>fcno51</target_name>
  1851 + <target_type>String</target_type>
  1852 + <target_format/>
  1853 + <target_length>-1</target_length>
  1854 + <target_precision>-1</target_precision>
  1855 + <target_decimal_symbol/>
  1856 + <target_grouping_symbol/>
  1857 + <target_currency_symbol/>
  1858 + <target_null_string/>
  1859 + <target_aggregation_type>-</target_aggregation_type>
  1860 + </field>
  1861 + <field>
  1862 + <field_name>all_content</field_name>
  1863 + <key_value>52</key_value>
  1864 + <target_name>fcno52</target_name>
  1865 + <target_type>String</target_type>
  1866 + <target_format/>
  1867 + <target_length>-1</target_length>
  1868 + <target_precision>-1</target_precision>
  1869 + <target_decimal_symbol/>
  1870 + <target_grouping_symbol/>
  1871 + <target_currency_symbol/>
  1872 + <target_null_string/>
  1873 + <target_aggregation_type>-</target_aggregation_type>
  1874 + </field>
  1875 + <field>
  1876 + <field_name>all_content</field_name>
  1877 + <key_value>53</key_value>
  1878 + <target_name>fcno53</target_name>
  1879 + <target_type>String</target_type>
  1880 + <target_format/>
  1881 + <target_length>-1</target_length>
  1882 + <target_precision>-1</target_precision>
  1883 + <target_decimal_symbol/>
  1884 + <target_grouping_symbol/>
  1885 + <target_currency_symbol/>
  1886 + <target_null_string/>
  1887 + <target_aggregation_type>-</target_aggregation_type>
  1888 + </field>
  1889 + <field>
  1890 + <field_name>all_content</field_name>
  1891 + <key_value>54</key_value>
  1892 + <target_name>fcno54</target_name>
  1893 + <target_type>String</target_type>
  1894 + <target_format/>
  1895 + <target_length>-1</target_length>
  1896 + <target_precision>-1</target_precision>
  1897 + <target_decimal_symbol/>
  1898 + <target_grouping_symbol/>
  1899 + <target_currency_symbol/>
  1900 + <target_null_string/>
  1901 + <target_aggregation_type>-</target_aggregation_type>
  1902 + </field>
  1903 + <field>
  1904 + <field_name>all_content</field_name>
  1905 + <key_value>55</key_value>
  1906 + <target_name>fcno55</target_name>
  1907 + <target_type>String</target_type>
  1908 + <target_format/>
  1909 + <target_length>-1</target_length>
  1910 + <target_precision>-1</target_precision>
  1911 + <target_decimal_symbol/>
  1912 + <target_grouping_symbol/>
  1913 + <target_currency_symbol/>
  1914 + <target_null_string/>
  1915 + <target_aggregation_type>-</target_aggregation_type>
  1916 + </field>
  1917 + <field>
  1918 + <field_name>all_content</field_name>
  1919 + <key_value>56</key_value>
  1920 + <target_name>fcno56</target_name>
  1921 + <target_type>String</target_type>
  1922 + <target_format/>
  1923 + <target_length>-1</target_length>
  1924 + <target_precision>-1</target_precision>
  1925 + <target_decimal_symbol/>
  1926 + <target_grouping_symbol/>
  1927 + <target_currency_symbol/>
  1928 + <target_null_string/>
  1929 + <target_aggregation_type>-</target_aggregation_type>
  1930 + </field>
  1931 + <field>
  1932 + <field_name>all_content</field_name>
  1933 + <key_value>57</key_value>
  1934 + <target_name>fcno57</target_name>
  1935 + <target_type>String</target_type>
  1936 + <target_format/>
  1937 + <target_length>-1</target_length>
  1938 + <target_precision>-1</target_precision>
  1939 + <target_decimal_symbol/>
  1940 + <target_grouping_symbol/>
  1941 + <target_currency_symbol/>
  1942 + <target_null_string/>
  1943 + <target_aggregation_type>-</target_aggregation_type>
  1944 + </field>
  1945 + <field>
  1946 + <field_name>all_content</field_name>
  1947 + <key_value>58</key_value>
  1948 + <target_name>fcno58</target_name>
  1949 + <target_type>String</target_type>
  1950 + <target_format/>
  1951 + <target_length>-1</target_length>
  1952 + <target_precision>-1</target_precision>
  1953 + <target_decimal_symbol/>
  1954 + <target_grouping_symbol/>
  1955 + <target_currency_symbol/>
  1956 + <target_null_string/>
  1957 + <target_aggregation_type>-</target_aggregation_type>
  1958 + </field>
  1959 + <field>
  1960 + <field_name>all_content</field_name>
  1961 + <key_value>59</key_value>
  1962 + <target_name>fcno59</target_name>
  1963 + <target_type>String</target_type>
  1964 + <target_format/>
  1965 + <target_length>-1</target_length>
  1966 + <target_precision>-1</target_precision>
  1967 + <target_decimal_symbol/>
  1968 + <target_grouping_symbol/>
  1969 + <target_currency_symbol/>
  1970 + <target_null_string/>
  1971 + <target_aggregation_type>-</target_aggregation_type>
  1972 + </field>
  1973 + <field>
  1974 + <field_name>all_content</field_name>
  1975 + <key_value>60</key_value>
  1976 + <target_name>fcno60</target_name>
  1977 + <target_type>String</target_type>
  1978 + <target_format/>
  1979 + <target_length>-1</target_length>
  1980 + <target_precision>-1</target_precision>
  1981 + <target_decimal_symbol/>
  1982 + <target_grouping_symbol/>
  1983 + <target_currency_symbol/>
  1984 + <target_null_string/>
  1985 + <target_aggregation_type>-</target_aggregation_type>
  1986 + </field>
  1987 + <field>
  1988 + <field_name>all_content</field_name>
  1989 + <key_value>61</key_value>
  1990 + <target_name>fcno61</target_name>
  1991 + <target_type>String</target_type>
  1992 + <target_format/>
  1993 + <target_length>-1</target_length>
  1994 + <target_precision>-1</target_precision>
  1995 + <target_decimal_symbol/>
  1996 + <target_grouping_symbol/>
  1997 + <target_currency_symbol/>
  1998 + <target_null_string/>
  1999 + <target_aggregation_type>-</target_aggregation_type>
  2000 + </field>
  2001 + <field>
  2002 + <field_name>all_content</field_name>
  2003 + <key_value>62</key_value>
  2004 + <target_name>fcno62</target_name>
  2005 + <target_type>String</target_type>
  2006 + <target_format/>
  2007 + <target_length>-1</target_length>
  2008 + <target_precision>-1</target_precision>
  2009 + <target_decimal_symbol/>
  2010 + <target_grouping_symbol/>
  2011 + <target_currency_symbol/>
  2012 + <target_null_string/>
  2013 + <target_aggregation_type>-</target_aggregation_type>
  2014 + </field>
  2015 + <field>
  2016 + <field_name>all_content</field_name>
  2017 + <key_value>63</key_value>
  2018 + <target_name>fcno63</target_name>
  2019 + <target_type>String</target_type>
  2020 + <target_format/>
  2021 + <target_length>-1</target_length>
  2022 + <target_precision>-1</target_precision>
  2023 + <target_decimal_symbol/>
  2024 + <target_grouping_symbol/>
  2025 + <target_currency_symbol/>
  2026 + <target_null_string/>
  2027 + <target_aggregation_type>-</target_aggregation_type>
  2028 + </field>
  2029 + <field>
  2030 + <field_name>all_content</field_name>
  2031 + <key_value>64</key_value>
  2032 + <target_name>fcno64</target_name>
  2033 + <target_type>String</target_type>
  2034 + <target_format/>
  2035 + <target_length>-1</target_length>
  2036 + <target_precision>-1</target_precision>
  2037 + <target_decimal_symbol/>
  2038 + <target_grouping_symbol/>
  2039 + <target_currency_symbol/>
  2040 + <target_null_string/>
  2041 + <target_aggregation_type>-</target_aggregation_type>
  2042 + </field>
  2043 + <field>
  2044 + <field_name>all_content</field_name>
  2045 + <key_value>65</key_value>
  2046 + <target_name>fcno65</target_name>
  2047 + <target_type>String</target_type>
  2048 + <target_format/>
  2049 + <target_length>-1</target_length>
  2050 + <target_precision>-1</target_precision>
  2051 + <target_decimal_symbol/>
  2052 + <target_grouping_symbol/>
  2053 + <target_currency_symbol/>
  2054 + <target_null_string/>
  2055 + <target_aggregation_type>-</target_aggregation_type>
  2056 + </field>
  2057 + <field>
  2058 + <field_name>all_content</field_name>
  2059 + <key_value>66</key_value>
  2060 + <target_name>fcno66</target_name>
  2061 + <target_type>String</target_type>
  2062 + <target_format/>
  2063 + <target_length>-1</target_length>
  2064 + <target_precision>-1</target_precision>
  2065 + <target_decimal_symbol/>
  2066 + <target_grouping_symbol/>
  2067 + <target_currency_symbol/>
  2068 + <target_null_string/>
  2069 + <target_aggregation_type>-</target_aggregation_type>
  2070 + </field>
  2071 + <field>
  2072 + <field_name>all_content</field_name>
  2073 + <key_value>67</key_value>
  2074 + <target_name>fcno67</target_name>
  2075 + <target_type>String</target_type>
  2076 + <target_format/>
  2077 + <target_length>-1</target_length>
  2078 + <target_precision>-1</target_precision>
  2079 + <target_decimal_symbol/>
  2080 + <target_grouping_symbol/>
  2081 + <target_currency_symbol/>
  2082 + <target_null_string/>
  2083 + <target_aggregation_type>-</target_aggregation_type>
  2084 + </field>
  2085 + <field>
  2086 + <field_name>all_content</field_name>
  2087 + <key_value>68</key_value>
  2088 + <target_name>fcno68</target_name>
  2089 + <target_type>String</target_type>
  2090 + <target_format/>
  2091 + <target_length>-1</target_length>
  2092 + <target_precision>-1</target_precision>
  2093 + <target_decimal_symbol/>
  2094 + <target_grouping_symbol/>
  2095 + <target_currency_symbol/>
  2096 + <target_null_string/>
  2097 + <target_aggregation_type>-</target_aggregation_type>
  2098 + </field>
  2099 + <field>
  2100 + <field_name>all_content</field_name>
  2101 + <key_value>69</key_value>
  2102 + <target_name>fcno69</target_name>
  2103 + <target_type>String</target_type>
  2104 + <target_format/>
  2105 + <target_length>-1</target_length>
  2106 + <target_precision>-1</target_precision>
  2107 + <target_decimal_symbol/>
  2108 + <target_grouping_symbol/>
  2109 + <target_currency_symbol/>
  2110 + <target_null_string/>
  2111 + <target_aggregation_type>-</target_aggregation_type>
  2112 + </field>
  2113 + <field>
  2114 + <field_name>all_content</field_name>
  2115 + <key_value>70</key_value>
  2116 + <target_name>fcno70</target_name>
  2117 + <target_type>String</target_type>
  2118 + <target_format/>
  2119 + <target_length>-1</target_length>
  2120 + <target_precision>-1</target_precision>
  2121 + <target_decimal_symbol/>
  2122 + <target_grouping_symbol/>
  2123 + <target_currency_symbol/>
  2124 + <target_null_string/>
  2125 + <target_aggregation_type>-</target_aggregation_type>
  2126 + </field>
  2127 + <field>
  2128 + <field_name>all_content</field_name>
  2129 + <key_value>71</key_value>
  2130 + <target_name>fcno71</target_name>
  2131 + <target_type>String</target_type>
  2132 + <target_format/>
  2133 + <target_length>-1</target_length>
  2134 + <target_precision>-1</target_precision>
  2135 + <target_decimal_symbol/>
  2136 + <target_grouping_symbol/>
  2137 + <target_currency_symbol/>
  2138 + <target_null_string/>
  2139 + <target_aggregation_type>-</target_aggregation_type>
  2140 + </field>
  2141 + <field>
  2142 + <field_name>all_content</field_name>
  2143 + <key_value>72</key_value>
  2144 + <target_name>fcno72</target_name>
  2145 + <target_type>String</target_type>
  2146 + <target_format/>
  2147 + <target_length>-1</target_length>
  2148 + <target_precision>-1</target_precision>
  2149 + <target_decimal_symbol/>
  2150 + <target_grouping_symbol/>
  2151 + <target_currency_symbol/>
  2152 + <target_null_string/>
  2153 + <target_aggregation_type>-</target_aggregation_type>
  2154 + </field>
  2155 + <field>
  2156 + <field_name>all_content</field_name>
  2157 + <key_value>73</key_value>
  2158 + <target_name>fcno73</target_name>
  2159 + <target_type>String</target_type>
  2160 + <target_format/>
  2161 + <target_length>-1</target_length>
  2162 + <target_precision>-1</target_precision>
  2163 + <target_decimal_symbol/>
  2164 + <target_grouping_symbol/>
  2165 + <target_currency_symbol/>
  2166 + <target_null_string/>
  2167 + <target_aggregation_type>-</target_aggregation_type>
  2168 + </field>
  2169 + <field>
  2170 + <field_name>all_content</field_name>
  2171 + <key_value>74</key_value>
  2172 + <target_name>fcno74</target_name>
  2173 + <target_type>String</target_type>
  2174 + <target_format/>
  2175 + <target_length>-1</target_length>
  2176 + <target_precision>-1</target_precision>
  2177 + <target_decimal_symbol/>
  2178 + <target_grouping_symbol/>
  2179 + <target_currency_symbol/>
  2180 + <target_null_string/>
  2181 + <target_aggregation_type>-</target_aggregation_type>
  2182 + </field>
  2183 + <field>
  2184 + <field_name>all_content</field_name>
  2185 + <key_value>75</key_value>
  2186 + <target_name>fcno75</target_name>
  2187 + <target_type>String</target_type>
  2188 + <target_format/>
  2189 + <target_length>-1</target_length>
  2190 + <target_precision>-1</target_precision>
  2191 + <target_decimal_symbol/>
  2192 + <target_grouping_symbol/>
  2193 + <target_currency_symbol/>
  2194 + <target_null_string/>
  2195 + <target_aggregation_type>-</target_aggregation_type>
  2196 + </field>
  2197 + <field>
  2198 + <field_name>all_content</field_name>
  2199 + <key_value>76</key_value>
  2200 + <target_name>fcno76</target_name>
  2201 + <target_type>String</target_type>
  2202 + <target_format/>
  2203 + <target_length>-1</target_length>
  2204 + <target_precision>-1</target_precision>
  2205 + <target_decimal_symbol/>
  2206 + <target_grouping_symbol/>
  2207 + <target_currency_symbol/>
  2208 + <target_null_string/>
  2209 + <target_aggregation_type>-</target_aggregation_type>
  2210 + </field>
  2211 + <field>
  2212 + <field_name>all_content</field_name>
  2213 + <key_value>77</key_value>
  2214 + <target_name>fcno77</target_name>
  2215 + <target_type>String</target_type>
  2216 + <target_format/>
  2217 + <target_length>-1</target_length>
  2218 + <target_precision>-1</target_precision>
  2219 + <target_decimal_symbol/>
  2220 + <target_grouping_symbol/>
  2221 + <target_currency_symbol/>
  2222 + <target_null_string/>
  2223 + <target_aggregation_type>-</target_aggregation_type>
  2224 + </field>
  2225 + <field>
  2226 + <field_name>all_content</field_name>
  2227 + <key_value>78</key_value>
  2228 + <target_name>fcno78</target_name>
  2229 + <target_type>String</target_type>
  2230 + <target_format/>
  2231 + <target_length>-1</target_length>
  2232 + <target_precision>-1</target_precision>
  2233 + <target_decimal_symbol/>
  2234 + <target_grouping_symbol/>
  2235 + <target_currency_symbol/>
  2236 + <target_null_string/>
  2237 + <target_aggregation_type>-</target_aggregation_type>
  2238 + </field>
  2239 + <field>
  2240 + <field_name>all_content</field_name>
  2241 + <key_value>79</key_value>
  2242 + <target_name>fcno79</target_name>
  2243 + <target_type>String</target_type>
  2244 + <target_format/>
  2245 + <target_length>-1</target_length>
  2246 + <target_precision>-1</target_precision>
  2247 + <target_decimal_symbol/>
  2248 + <target_grouping_symbol/>
  2249 + <target_currency_symbol/>
  2250 + <target_null_string/>
  2251 + <target_aggregation_type>-</target_aggregation_type>
  2252 + </field>
  2253 + <field>
  2254 + <field_name>all_content</field_name>
  2255 + <key_value>80</key_value>
  2256 + <target_name>fcno80</target_name>
  2257 + <target_type>String</target_type>
  2258 + <target_format/>
  2259 + <target_length>-1</target_length>
  2260 + <target_precision>-1</target_precision>
  2261 + <target_decimal_symbol/>
  2262 + <target_grouping_symbol/>
  2263 + <target_currency_symbol/>
  2264 + <target_null_string/>
  2265 + <target_aggregation_type>-</target_aggregation_type>
  2266 + </field>
  2267 + <field>
  2268 + <field_name>all_content</field_name>
  2269 + <key_value>81</key_value>
  2270 + <target_name>fcno81</target_name>
  2271 + <target_type>String</target_type>
  2272 + <target_format/>
  2273 + <target_length>-1</target_length>
  2274 + <target_precision>-1</target_precision>
  2275 + <target_decimal_symbol/>
  2276 + <target_grouping_symbol/>
  2277 + <target_currency_symbol/>
  2278 + <target_null_string/>
  2279 + <target_aggregation_type>-</target_aggregation_type>
  2280 + </field>
  2281 + <field>
  2282 + <field_name>all_content</field_name>
  2283 + <key_value>82</key_value>
  2284 + <target_name>fcno82</target_name>
  2285 + <target_type>String</target_type>
  2286 + <target_format/>
  2287 + <target_length>-1</target_length>
  2288 + <target_precision>-1</target_precision>
  2289 + <target_decimal_symbol/>
  2290 + <target_grouping_symbol/>
  2291 + <target_currency_symbol/>
  2292 + <target_null_string/>
  2293 + <target_aggregation_type>-</target_aggregation_type>
  2294 + </field>
  2295 + <field>
  2296 + <field_name>all_content</field_name>
  2297 + <key_value>83</key_value>
  2298 + <target_name>fcno83</target_name>
  2299 + <target_type>String</target_type>
  2300 + <target_format/>
  2301 + <target_length>-1</target_length>
  2302 + <target_precision>-1</target_precision>
  2303 + <target_decimal_symbol/>
  2304 + <target_grouping_symbol/>
  2305 + <target_currency_symbol/>
  2306 + <target_null_string/>
  2307 + <target_aggregation_type>-</target_aggregation_type>
  2308 + </field>
  2309 + <field>
  2310 + <field_name>all_content</field_name>
  2311 + <key_value>84</key_value>
  2312 + <target_name>fcno84</target_name>
  2313 + <target_type>String</target_type>
  2314 + <target_format/>
  2315 + <target_length>-1</target_length>
  2316 + <target_precision>-1</target_precision>
  2317 + <target_decimal_symbol/>
  2318 + <target_grouping_symbol/>
  2319 + <target_currency_symbol/>
  2320 + <target_null_string/>
  2321 + <target_aggregation_type>-</target_aggregation_type>
  2322 + </field>
  2323 + <field>
  2324 + <field_name>all_content</field_name>
  2325 + <key_value>85</key_value>
  2326 + <target_name>fcno85</target_name>
  2327 + <target_type>String</target_type>
  2328 + <target_format/>
  2329 + <target_length>-1</target_length>
  2330 + <target_precision>-1</target_precision>
  2331 + <target_decimal_symbol/>
  2332 + <target_grouping_symbol/>
  2333 + <target_currency_symbol/>
  2334 + <target_null_string/>
  2335 + <target_aggregation_type>-</target_aggregation_type>
  2336 + </field>
  2337 + <field>
  2338 + <field_name>all_content</field_name>
  2339 + <key_value>86</key_value>
  2340 + <target_name>fcno86</target_name>
  2341 + <target_type>String</target_type>
  2342 + <target_format/>
  2343 + <target_length>-1</target_length>
  2344 + <target_precision>-1</target_precision>
  2345 + <target_decimal_symbol/>
  2346 + <target_grouping_symbol/>
  2347 + <target_currency_symbol/>
  2348 + <target_null_string/>
  2349 + <target_aggregation_type>-</target_aggregation_type>
  2350 + </field>
  2351 + <field>
  2352 + <field_name>all_content</field_name>
  2353 + <key_value>87</key_value>
  2354 + <target_name>fcno87</target_name>
  2355 + <target_type>String</target_type>
  2356 + <target_format/>
  2357 + <target_length>-1</target_length>
  2358 + <target_precision>-1</target_precision>
  2359 + <target_decimal_symbol/>
  2360 + <target_grouping_symbol/>
  2361 + <target_currency_symbol/>
  2362 + <target_null_string/>
  2363 + <target_aggregation_type>-</target_aggregation_type>
  2364 + </field>
  2365 + <field>
  2366 + <field_name>all_content</field_name>
  2367 + <key_value>88</key_value>
  2368 + <target_name>fcno88</target_name>
  2369 + <target_type>String</target_type>
  2370 + <target_format/>
  2371 + <target_length>-1</target_length>
  2372 + <target_precision>-1</target_precision>
  2373 + <target_decimal_symbol/>
  2374 + <target_grouping_symbol/>
  2375 + <target_currency_symbol/>
  2376 + <target_null_string/>
  2377 + <target_aggregation_type>-</target_aggregation_type>
  2378 + </field>
  2379 + <field>
  2380 + <field_name>all_content</field_name>
  2381 + <key_value>89</key_value>
  2382 + <target_name>fcno89</target_name>
  2383 + <target_type>String</target_type>
  2384 + <target_format/>
  2385 + <target_length>-1</target_length>
  2386 + <target_precision>-1</target_precision>
  2387 + <target_decimal_symbol/>
  2388 + <target_grouping_symbol/>
  2389 + <target_currency_symbol/>
  2390 + <target_null_string/>
  2391 + <target_aggregation_type>-</target_aggregation_type>
  2392 + </field>
  2393 + <field>
  2394 + <field_name>all_content</field_name>
  2395 + <key_value>90</key_value>
  2396 + <target_name>fcno90</target_name>
  2397 + <target_type>String</target_type>
  2398 + <target_format/>
  2399 + <target_length>-1</target_length>
  2400 + <target_precision>-1</target_precision>
  2401 + <target_decimal_symbol/>
  2402 + <target_grouping_symbol/>
  2403 + <target_currency_symbol/>
  2404 + <target_null_string/>
  2405 + <target_aggregation_type>-</target_aggregation_type>
  2406 + </field>
  2407 + <field>
  2408 + <field_name>all_content</field_name>
  2409 + <key_value>91</key_value>
  2410 + <target_name>fcno91</target_name>
  2411 + <target_type>String</target_type>
  2412 + <target_format/>
  2413 + <target_length>-1</target_length>
  2414 + <target_precision>-1</target_precision>
  2415 + <target_decimal_symbol/>
  2416 + <target_grouping_symbol/>
  2417 + <target_currency_symbol/>
  2418 + <target_null_string/>
  2419 + <target_aggregation_type>-</target_aggregation_type>
  2420 + </field>
  2421 + <field>
  2422 + <field_name>all_content</field_name>
  2423 + <key_value>92</key_value>
  2424 + <target_name>fcno92</target_name>
  2425 + <target_type>String</target_type>
  2426 + <target_format/>
  2427 + <target_length>-1</target_length>
  2428 + <target_precision>-1</target_precision>
  2429 + <target_decimal_symbol/>
  2430 + <target_grouping_symbol/>
  2431 + <target_currency_symbol/>
  2432 + <target_null_string/>
  2433 + <target_aggregation_type>-</target_aggregation_type>
  2434 + </field>
  2435 + <field>
  2436 + <field_name>all_content</field_name>
  2437 + <key_value>93</key_value>
  2438 + <target_name>fcno93</target_name>
  2439 + <target_type>String</target_type>
  2440 + <target_format/>
  2441 + <target_length>-1</target_length>
  2442 + <target_precision>-1</target_precision>
  2443 + <target_decimal_symbol/>
  2444 + <target_grouping_symbol/>
  2445 + <target_currency_symbol/>
  2446 + <target_null_string/>
  2447 + <target_aggregation_type>-</target_aggregation_type>
  2448 + </field>
  2449 + <field>
  2450 + <field_name>all_content</field_name>
  2451 + <key_value>94</key_value>
  2452 + <target_name>fcno94</target_name>
  2453 + <target_type>String</target_type>
  2454 + <target_format/>
  2455 + <target_length>-1</target_length>
  2456 + <target_precision>-1</target_precision>
  2457 + <target_decimal_symbol/>
  2458 + <target_grouping_symbol/>
  2459 + <target_currency_symbol/>
  2460 + <target_null_string/>
  2461 + <target_aggregation_type>-</target_aggregation_type>
  2462 + </field>
  2463 + <field>
  2464 + <field_name>all_content</field_name>
  2465 + <key_value>95</key_value>
  2466 + <target_name>fcno95</target_name>
  2467 + <target_type>String</target_type>
  2468 + <target_format/>
  2469 + <target_length>-1</target_length>
  2470 + <target_precision>-1</target_precision>
  2471 + <target_decimal_symbol/>
  2472 + <target_grouping_symbol/>
  2473 + <target_currency_symbol/>
  2474 + <target_null_string/>
  2475 + <target_aggregation_type>-</target_aggregation_type>
  2476 + </field>
  2477 + <field>
  2478 + <field_name>all_content</field_name>
  2479 + <key_value>96</key_value>
  2480 + <target_name>fcno96</target_name>
  2481 + <target_type>String</target_type>
  2482 + <target_format/>
  2483 + <target_length>-1</target_length>
  2484 + <target_precision>-1</target_precision>
  2485 + <target_decimal_symbol/>
  2486 + <target_grouping_symbol/>
  2487 + <target_currency_symbol/>
  2488 + <target_null_string/>
  2489 + <target_aggregation_type>-</target_aggregation_type>
  2490 + </field>
  2491 + <field>
  2492 + <field_name>all_content</field_name>
  2493 + <key_value>97</key_value>
  2494 + <target_name>fcno97</target_name>
  2495 + <target_type>String</target_type>
  2496 + <target_format/>
  2497 + <target_length>-1</target_length>
  2498 + <target_precision>-1</target_precision>
  2499 + <target_decimal_symbol/>
  2500 + <target_grouping_symbol/>
  2501 + <target_currency_symbol/>
  2502 + <target_null_string/>
  2503 + <target_aggregation_type>-</target_aggregation_type>
  2504 + </field>
  2505 + <field>
  2506 + <field_name>all_content</field_name>
  2507 + <key_value>98</key_value>
  2508 + <target_name>fcno98</target_name>
  2509 + <target_type>String</target_type>
  2510 + <target_format/>
  2511 + <target_length>-1</target_length>
  2512 + <target_precision>-1</target_precision>
  2513 + <target_decimal_symbol/>
  2514 + <target_grouping_symbol/>
  2515 + <target_currency_symbol/>
  2516 + <target_null_string/>
  2517 + <target_aggregation_type>-</target_aggregation_type>
  2518 + </field>
  2519 + <field>
  2520 + <field_name>all_content</field_name>
  2521 + <key_value>99</key_value>
  2522 + <target_name>fcno99</target_name>
  2523 + <target_type>String</target_type>
  2524 + <target_format/>
  2525 + <target_length>-1</target_length>
  2526 + <target_precision>-1</target_precision>
  2527 + <target_decimal_symbol/>
  2528 + <target_grouping_symbol/>
  2529 + <target_currency_symbol/>
  2530 + <target_null_string/>
  2531 + <target_aggregation_type>-</target_aggregation_type>
  2532 + </field>
  2533 + <field>
  2534 + <field_name>all_content</field_name>
  2535 + <key_value>100</key_value>
  2536 + <target_name>fcno100</target_name>
  2537 + <target_type>String</target_type>
  2538 + <target_format/>
  2539 + <target_length>-1</target_length>
  2540 + <target_precision>-1</target_precision>
  2541 + <target_decimal_symbol/>
  2542 + <target_grouping_symbol/>
  2543 + <target_currency_symbol/>
  2544 + <target_null_string/>
  2545 + <target_aggregation_type>-</target_aggregation_type>
  2546 + </field>
  2547 + <field>
  2548 + <field_name>all_content</field_name>
  2549 + <key_value>101</key_value>
  2550 + <target_name>fcno101</target_name>
  2551 + <target_type>String</target_type>
  2552 + <target_format/>
  2553 + <target_length>-1</target_length>
  2554 + <target_precision>-1</target_precision>
  2555 + <target_decimal_symbol/>
  2556 + <target_grouping_symbol/>
  2557 + <target_currency_symbol/>
  2558 + <target_null_string/>
  2559 + <target_aggregation_type>-</target_aggregation_type>
  2560 + </field>
  2561 + <field>
  2562 + <field_name>all_content</field_name>
  2563 + <key_value>102</key_value>
  2564 + <target_name>fcno102</target_name>
  2565 + <target_type>String</target_type>
  2566 + <target_format/>
  2567 + <target_length>-1</target_length>
  2568 + <target_precision>-1</target_precision>
  2569 + <target_decimal_symbol/>
  2570 + <target_grouping_symbol/>
  2571 + <target_currency_symbol/>
  2572 + <target_null_string/>
  2573 + <target_aggregation_type>-</target_aggregation_type>
  2574 + </field>
  2575 + <field>
  2576 + <field_name>all_content</field_name>
  2577 + <key_value>103</key_value>
  2578 + <target_name>fcno103</target_name>
  2579 + <target_type>String</target_type>
  2580 + <target_format/>
  2581 + <target_length>-1</target_length>
  2582 + <target_precision>-1</target_precision>
  2583 + <target_decimal_symbol/>
  2584 + <target_grouping_symbol/>
  2585 + <target_currency_symbol/>
  2586 + <target_null_string/>
  2587 + <target_aggregation_type>-</target_aggregation_type>
  2588 + </field>
  2589 + <field>
  2590 + <field_name>all_content</field_name>
  2591 + <key_value>104</key_value>
  2592 + <target_name>fcno104</target_name>
  2593 + <target_type>String</target_type>
  2594 + <target_format/>
  2595 + <target_length>-1</target_length>
  2596 + <target_precision>-1</target_precision>
  2597 + <target_decimal_symbol/>
  2598 + <target_grouping_symbol/>
  2599 + <target_currency_symbol/>
  2600 + <target_null_string/>
  2601 + <target_aggregation_type>-</target_aggregation_type>
  2602 + </field>
  2603 + <field>
  2604 + <field_name>all_content</field_name>
  2605 + <key_value>105</key_value>
  2606 + <target_name>fcno105</target_name>
  2607 + <target_type>String</target_type>
  2608 + <target_format/>
  2609 + <target_length>-1</target_length>
  2610 + <target_precision>-1</target_precision>
  2611 + <target_decimal_symbol/>
  2612 + <target_grouping_symbol/>
  2613 + <target_currency_symbol/>
  2614 + <target_null_string/>
  2615 + <target_aggregation_type>-</target_aggregation_type>
  2616 + </field>
  2617 + <field>
  2618 + <field_name>all_content</field_name>
  2619 + <key_value>106</key_value>
  2620 + <target_name>fcno106</target_name>
  2621 + <target_type>String</target_type>
  2622 + <target_format/>
  2623 + <target_length>-1</target_length>
  2624 + <target_precision>-1</target_precision>
  2625 + <target_decimal_symbol/>
  2626 + <target_grouping_symbol/>
  2627 + <target_currency_symbol/>
  2628 + <target_null_string/>
  2629 + <target_aggregation_type>-</target_aggregation_type>
  2630 + </field>
  2631 + <field>
  2632 + <field_name>all_content</field_name>
  2633 + <key_value>107</key_value>
  2634 + <target_name>fcno107</target_name>
  2635 + <target_type>String</target_type>
  2636 + <target_format/>
  2637 + <target_length>-1</target_length>
  2638 + <target_precision>-1</target_precision>
  2639 + <target_decimal_symbol/>
  2640 + <target_grouping_symbol/>
  2641 + <target_currency_symbol/>
  2642 + <target_null_string/>
  2643 + <target_aggregation_type>-</target_aggregation_type>
  2644 + </field>
  2645 + <field>
  2646 + <field_name>all_content</field_name>
  2647 + <key_value>108</key_value>
  2648 + <target_name>fcno108</target_name>
  2649 + <target_type>String</target_type>
  2650 + <target_format/>
  2651 + <target_length>-1</target_length>
  2652 + <target_precision>-1</target_precision>
  2653 + <target_decimal_symbol/>
  2654 + <target_grouping_symbol/>
  2655 + <target_currency_symbol/>
  2656 + <target_null_string/>
  2657 + <target_aggregation_type>-</target_aggregation_type>
  2658 + </field>
  2659 + <field>
  2660 + <field_name>all_content</field_name>
  2661 + <key_value>109</key_value>
  2662 + <target_name>fcno109</target_name>
  2663 + <target_type>String</target_type>
  2664 + <target_format/>
  2665 + <target_length>-1</target_length>
  2666 + <target_precision>-1</target_precision>
  2667 + <target_decimal_symbol/>
  2668 + <target_grouping_symbol/>
  2669 + <target_currency_symbol/>
  2670 + <target_null_string/>
  2671 + <target_aggregation_type>-</target_aggregation_type>
  2672 + </field>
  2673 + <field>
  2674 + <field_name>all_content</field_name>
  2675 + <key_value>110</key_value>
  2676 + <target_name>fcno110</target_name>
  2677 + <target_type>String</target_type>
  2678 + <target_format/>
  2679 + <target_length>-1</target_length>
  2680 + <target_precision>-1</target_precision>
  2681 + <target_decimal_symbol/>
  2682 + <target_grouping_symbol/>
  2683 + <target_currency_symbol/>
  2684 + <target_null_string/>
  2685 + <target_aggregation_type>-</target_aggregation_type>
  2686 + </field>
  2687 + <field>
  2688 + <field_name>all_content</field_name>
  2689 + <key_value>111</key_value>
  2690 + <target_name>fcno111</target_name>
  2691 + <target_type>String</target_type>
  2692 + <target_format/>
  2693 + <target_length>-1</target_length>
  2694 + <target_precision>-1</target_precision>
  2695 + <target_decimal_symbol/>
  2696 + <target_grouping_symbol/>
  2697 + <target_currency_symbol/>
  2698 + <target_null_string/>
  2699 + <target_aggregation_type>-</target_aggregation_type>
  2700 + </field>
  2701 + <field>
  2702 + <field_name>all_content</field_name>
  2703 + <key_value>112</key_value>
  2704 + <target_name>fcno112</target_name>
  2705 + <target_type>String</target_type>
  2706 + <target_format/>
  2707 + <target_length>-1</target_length>
  2708 + <target_precision>-1</target_precision>
  2709 + <target_decimal_symbol/>
  2710 + <target_grouping_symbol/>
  2711 + <target_currency_symbol/>
  2712 + <target_null_string/>
  2713 + <target_aggregation_type>-</target_aggregation_type>
  2714 + </field>
  2715 + <field>
  2716 + <field_name>all_content</field_name>
  2717 + <key_value>113</key_value>
  2718 + <target_name>fcno113</target_name>
  2719 + <target_type>String</target_type>
  2720 + <target_format/>
  2721 + <target_length>-1</target_length>
  2722 + <target_precision>-1</target_precision>
  2723 + <target_decimal_symbol/>
  2724 + <target_grouping_symbol/>
  2725 + <target_currency_symbol/>
  2726 + <target_null_string/>
  2727 + <target_aggregation_type>-</target_aggregation_type>
  2728 + </field>
  2729 + <field>
  2730 + <field_name>all_content</field_name>
  2731 + <key_value>114</key_value>
  2732 + <target_name>fcno114</target_name>
  2733 + <target_type>String</target_type>
  2734 + <target_format/>
  2735 + <target_length>-1</target_length>
  2736 + <target_precision>-1</target_precision>
  2737 + <target_decimal_symbol/>
  2738 + <target_grouping_symbol/>
  2739 + <target_currency_symbol/>
  2740 + <target_null_string/>
  2741 + <target_aggregation_type>-</target_aggregation_type>
  2742 + </field>
  2743 + <field>
  2744 + <field_name>all_content</field_name>
  2745 + <key_value>115</key_value>
  2746 + <target_name>fcno115</target_name>
  2747 + <target_type>String</target_type>
  2748 + <target_format/>
  2749 + <target_length>-1</target_length>
  2750 + <target_precision>-1</target_precision>
  2751 + <target_decimal_symbol/>
  2752 + <target_grouping_symbol/>
  2753 + <target_currency_symbol/>
  2754 + <target_null_string/>
  2755 + <target_aggregation_type>-</target_aggregation_type>
  2756 + </field>
  2757 + <field>
  2758 + <field_name>all_content</field_name>
  2759 + <key_value>116</key_value>
  2760 + <target_name>fcno116</target_name>
  2761 + <target_type>String</target_type>
  2762 + <target_format/>
  2763 + <target_length>-1</target_length>
  2764 + <target_precision>-1</target_precision>
  2765 + <target_decimal_symbol/>
  2766 + <target_grouping_symbol/>
  2767 + <target_currency_symbol/>
  2768 + <target_null_string/>
  2769 + <target_aggregation_type>-</target_aggregation_type>
  2770 + </field>
  2771 + <field>
  2772 + <field_name>all_content</field_name>
  2773 + <key_value>117</key_value>
  2774 + <target_name>fcno117</target_name>
  2775 + <target_type>String</target_type>
  2776 + <target_format/>
  2777 + <target_length>-1</target_length>
  2778 + <target_precision>-1</target_precision>
  2779 + <target_decimal_symbol/>
  2780 + <target_grouping_symbol/>
  2781 + <target_currency_symbol/>
  2782 + <target_null_string/>
  2783 + <target_aggregation_type>-</target_aggregation_type>
  2784 + </field>
  2785 + <field>
  2786 + <field_name>all_content</field_name>
  2787 + <key_value>118</key_value>
  2788 + <target_name>fcno118</target_name>
  2789 + <target_type>String</target_type>
  2790 + <target_format/>
  2791 + <target_length>-1</target_length>
  2792 + <target_precision>-1</target_precision>
  2793 + <target_decimal_symbol/>
  2794 + <target_grouping_symbol/>
  2795 + <target_currency_symbol/>
  2796 + <target_null_string/>
  2797 + <target_aggregation_type>-</target_aggregation_type>
  2798 + </field>
  2799 + <field>
  2800 + <field_name>all_content</field_name>
  2801 + <key_value>119</key_value>
  2802 + <target_name>fcno119</target_name>
  2803 + <target_type>String</target_type>
  2804 + <target_format/>
  2805 + <target_length>-1</target_length>
  2806 + <target_precision>-1</target_precision>
  2807 + <target_decimal_symbol/>
  2808 + <target_grouping_symbol/>
  2809 + <target_currency_symbol/>
  2810 + <target_null_string/>
  2811 + <target_aggregation_type>-</target_aggregation_type>
  2812 + </field>
  2813 + <field>
  2814 + <field_name>all_content</field_name>
  2815 + <key_value>120</key_value>
  2816 + <target_name>fcno120</target_name>
  2817 + <target_type>String</target_type>
  2818 + <target_format/>
  2819 + <target_length>-1</target_length>
  2820 + <target_precision>-1</target_precision>
  2821 + <target_decimal_symbol/>
  2822 + <target_grouping_symbol/>
  2823 + <target_currency_symbol/>
  2824 + <target_null_string/>
  2825 + <target_aggregation_type>-</target_aggregation_type>
  2826 + </field>
  2827 + <field>
  2828 + <field_name>all_content</field_name>
  2829 + <key_value>121</key_value>
  2830 + <target_name>fcno121</target_name>
  2831 + <target_type>String</target_type>
  2832 + <target_format/>
  2833 + <target_length>-1</target_length>
  2834 + <target_precision>-1</target_precision>
  2835 + <target_decimal_symbol/>
  2836 + <target_grouping_symbol/>
  2837 + <target_currency_symbol/>
  2838 + <target_null_string/>
  2839 + <target_aggregation_type>-</target_aggregation_type>
  2840 + </field>
  2841 + <field>
  2842 + <field_name>all_content</field_name>
  2843 + <key_value>122</key_value>
  2844 + <target_name>fcno122</target_name>
  2845 + <target_type>String</target_type>
  2846 + <target_format/>
  2847 + <target_length>-1</target_length>
  2848 + <target_precision>-1</target_precision>
  2849 + <target_decimal_symbol/>
  2850 + <target_grouping_symbol/>
  2851 + <target_currency_symbol/>
  2852 + <target_null_string/>
  2853 + <target_aggregation_type>-</target_aggregation_type>
  2854 + </field>
  2855 + <field>
  2856 + <field_name>all_content</field_name>
  2857 + <key_value>123</key_value>
  2858 + <target_name>fcno123</target_name>
  2859 + <target_type>String</target_type>
  2860 + <target_format/>
  2861 + <target_length>-1</target_length>
  2862 + <target_precision>-1</target_precision>
  2863 + <target_decimal_symbol/>
  2864 + <target_grouping_symbol/>
  2865 + <target_currency_symbol/>
  2866 + <target_null_string/>
  2867 + <target_aggregation_type>-</target_aggregation_type>
  2868 + </field>
  2869 + <field>
  2870 + <field_name>all_content</field_name>
  2871 + <key_value>124</key_value>
  2872 + <target_name>fcno124</target_name>
  2873 + <target_type>String</target_type>
  2874 + <target_format/>
  2875 + <target_length>-1</target_length>
  2876 + <target_precision>-1</target_precision>
  2877 + <target_decimal_symbol/>
  2878 + <target_grouping_symbol/>
  2879 + <target_currency_symbol/>
  2880 + <target_null_string/>
  2881 + <target_aggregation_type>-</target_aggregation_type>
  2882 + </field>
  2883 + <field>
  2884 + <field_name>all_content</field_name>
  2885 + <key_value>125</key_value>
  2886 + <target_name>fcno125</target_name>
  2887 + <target_type>String</target_type>
  2888 + <target_format/>
  2889 + <target_length>-1</target_length>
  2890 + <target_precision>-1</target_precision>
  2891 + <target_decimal_symbol/>
  2892 + <target_grouping_symbol/>
  2893 + <target_currency_symbol/>
  2894 + <target_null_string/>
  2895 + <target_aggregation_type>-</target_aggregation_type>
  2896 + </field>
  2897 + <field>
  2898 + <field_name>all_content</field_name>
  2899 + <key_value>126</key_value>
  2900 + <target_name>fcno126</target_name>
  2901 + <target_type>String</target_type>
  2902 + <target_format/>
  2903 + <target_length>-1</target_length>
  2904 + <target_precision>-1</target_precision>
  2905 + <target_decimal_symbol/>
  2906 + <target_grouping_symbol/>
  2907 + <target_currency_symbol/>
  2908 + <target_null_string/>
  2909 + <target_aggregation_type>-</target_aggregation_type>
  2910 + </field>
  2911 + <field>
  2912 + <field_name>all_content</field_name>
  2913 + <key_value>127</key_value>
  2914 + <target_name>fcno127</target_name>
  2915 + <target_type>String</target_type>
  2916 + <target_format/>
  2917 + <target_length>-1</target_length>
  2918 + <target_precision>-1</target_precision>
  2919 + <target_decimal_symbol/>
  2920 + <target_grouping_symbol/>
  2921 + <target_currency_symbol/>
  2922 + <target_null_string/>
  2923 + <target_aggregation_type>-</target_aggregation_type>
  2924 + </field>
  2925 + <field>
  2926 + <field_name>all_content</field_name>
  2927 + <key_value>128</key_value>
  2928 + <target_name>fcno128</target_name>
  2929 + <target_type>String</target_type>
  2930 + <target_format/>
  2931 + <target_length>-1</target_length>
  2932 + <target_precision>-1</target_precision>
  2933 + <target_decimal_symbol/>
  2934 + <target_grouping_symbol/>
  2935 + <target_currency_symbol/>
  2936 + <target_null_string/>
  2937 + <target_aggregation_type>-</target_aggregation_type>
  2938 + </field>
  2939 + <field>
  2940 + <field_name>all_content</field_name>
  2941 + <key_value>129</key_value>
  2942 + <target_name>fcno129</target_name>
  2943 + <target_type>String</target_type>
  2944 + <target_format/>
  2945 + <target_length>-1</target_length>
  2946 + <target_precision>-1</target_precision>
  2947 + <target_decimal_symbol/>
  2948 + <target_grouping_symbol/>
  2949 + <target_currency_symbol/>
  2950 + <target_null_string/>
  2951 + <target_aggregation_type>-</target_aggregation_type>
  2952 + </field>
  2953 + <field>
  2954 + <field_name>all_content</field_name>
  2955 + <key_value>130</key_value>
  2956 + <target_name>fcno130</target_name>
  2957 + <target_type>String</target_type>
  2958 + <target_format/>
  2959 + <target_length>-1</target_length>
  2960 + <target_precision>-1</target_precision>
  2961 + <target_decimal_symbol/>
  2962 + <target_grouping_symbol/>
  2963 + <target_currency_symbol/>
  2964 + <target_null_string/>
  2965 + <target_aggregation_type>-</target_aggregation_type>
  2966 + </field>
  2967 + <field>
  2968 + <field_name>all_content</field_name>
  2969 + <key_value>131</key_value>
  2970 + <target_name>fcno131</target_name>
  2971 + <target_type>String</target_type>
  2972 + <target_format/>
  2973 + <target_length>-1</target_length>
  2974 + <target_precision>-1</target_precision>
  2975 + <target_decimal_symbol/>
  2976 + <target_grouping_symbol/>
  2977 + <target_currency_symbol/>
  2978 + <target_null_string/>
  2979 + <target_aggregation_type>-</target_aggregation_type>
  2980 + </field>
  2981 + <field>
  2982 + <field_name>all_content</field_name>
  2983 + <key_value>132</key_value>
  2984 + <target_name>fcno132</target_name>
  2985 + <target_type>String</target_type>
  2986 + <target_format/>
  2987 + <target_length>-1</target_length>
  2988 + <target_precision>-1</target_precision>
  2989 + <target_decimal_symbol/>
  2990 + <target_grouping_symbol/>
  2991 + <target_currency_symbol/>
  2992 + <target_null_string/>
  2993 + <target_aggregation_type>-</target_aggregation_type>
  2994 + </field>
  2995 + <field>
  2996 + <field_name>all_content</field_name>
  2997 + <key_value>133</key_value>
  2998 + <target_name>fcno133</target_name>
  2999 + <target_type>String</target_type>
  3000 + <target_format/>
  3001 + <target_length>-1</target_length>
  3002 + <target_precision>-1</target_precision>
  3003 + <target_decimal_symbol/>
  3004 + <target_grouping_symbol/>
  3005 + <target_currency_symbol/>
  3006 + <target_null_string/>
  3007 + <target_aggregation_type>-</target_aggregation_type>
  3008 + </field>
  3009 + <field>
  3010 + <field_name>all_content</field_name>
  3011 + <key_value>134</key_value>
  3012 + <target_name>fcno134</target_name>
  3013 + <target_type>String</target_type>
  3014 + <target_format/>
  3015 + <target_length>-1</target_length>
  3016 + <target_precision>-1</target_precision>
  3017 + <target_decimal_symbol/>
  3018 + <target_grouping_symbol/>
  3019 + <target_currency_symbol/>
  3020 + <target_null_string/>
  3021 + <target_aggregation_type>-</target_aggregation_type>
  3022 + </field>
  3023 + <field>
  3024 + <field_name>all_content</field_name>
  3025 + <key_value>135</key_value>
  3026 + <target_name>fcno135</target_name>
  3027 + <target_type>String</target_type>
  3028 + <target_format/>
  3029 + <target_length>-1</target_length>
  3030 + <target_precision>-1</target_precision>
  3031 + <target_decimal_symbol/>
  3032 + <target_grouping_symbol/>
  3033 + <target_currency_symbol/>
  3034 + <target_null_string/>
  3035 + <target_aggregation_type>-</target_aggregation_type>
  3036 + </field>
  3037 + <field>
  3038 + <field_name>all_content</field_name>
  3039 + <key_value>136</key_value>
  3040 + <target_name>fcno136</target_name>
  3041 + <target_type>String</target_type>
  3042 + <target_format/>
  3043 + <target_length>-1</target_length>
  3044 + <target_precision>-1</target_precision>
  3045 + <target_decimal_symbol/>
  3046 + <target_grouping_symbol/>
  3047 + <target_currency_symbol/>
  3048 + <target_null_string/>
  3049 + <target_aggregation_type>-</target_aggregation_type>
  3050 + </field>
  3051 + <field>
  3052 + <field_name>all_content</field_name>
  3053 + <key_value>137</key_value>
  3054 + <target_name>fcno137</target_name>
  3055 + <target_type>String</target_type>
  3056 + <target_format/>
  3057 + <target_length>-1</target_length>
  3058 + <target_precision>-1</target_precision>
  3059 + <target_decimal_symbol/>
  3060 + <target_grouping_symbol/>
  3061 + <target_currency_symbol/>
  3062 + <target_null_string/>
  3063 + <target_aggregation_type>-</target_aggregation_type>
  3064 + </field>
  3065 + <field>
  3066 + <field_name>all_content</field_name>
  3067 + <key_value>138</key_value>
  3068 + <target_name>fcno138</target_name>
  3069 + <target_type>String</target_type>
  3070 + <target_format/>
  3071 + <target_length>-1</target_length>
  3072 + <target_precision>-1</target_precision>
  3073 + <target_decimal_symbol/>
  3074 + <target_grouping_symbol/>
  3075 + <target_currency_symbol/>
  3076 + <target_null_string/>
  3077 + <target_aggregation_type>-</target_aggregation_type>
  3078 + </field>
  3079 + <field>
  3080 + <field_name>all_content</field_name>
  3081 + <key_value>139</key_value>
  3082 + <target_name>fcno139</target_name>
  3083 + <target_type>String</target_type>
  3084 + <target_format/>
  3085 + <target_length>-1</target_length>
  3086 + <target_precision>-1</target_precision>
  3087 + <target_decimal_symbol/>
  3088 + <target_grouping_symbol/>
  3089 + <target_currency_symbol/>
  3090 + <target_null_string/>
  3091 + <target_aggregation_type>-</target_aggregation_type>
  3092 + </field>
  3093 + <field>
  3094 + <field_name>all_content</field_name>
  3095 + <key_value>140</key_value>
  3096 + <target_name>fcno140</target_name>
  3097 + <target_type>String</target_type>
  3098 + <target_format/>
  3099 + <target_length>-1</target_length>
  3100 + <target_precision>-1</target_precision>
  3101 + <target_decimal_symbol/>
  3102 + <target_grouping_symbol/>
  3103 + <target_currency_symbol/>
  3104 + <target_null_string/>
  3105 + <target_aggregation_type>-</target_aggregation_type>
  3106 + </field>
  3107 + <field>
  3108 + <field_name>all_content</field_name>
  3109 + <key_value>141</key_value>
  3110 + <target_name>fcno141</target_name>
  3111 + <target_type>String</target_type>
  3112 + <target_format/>
  3113 + <target_length>-1</target_length>
  3114 + <target_precision>-1</target_precision>
  3115 + <target_decimal_symbol/>
  3116 + <target_grouping_symbol/>
  3117 + <target_currency_symbol/>
  3118 + <target_null_string/>
  3119 + <target_aggregation_type>-</target_aggregation_type>
  3120 + </field>
  3121 + <field>
  3122 + <field_name>all_content</field_name>
  3123 + <key_value>142</key_value>
  3124 + <target_name>fcno142</target_name>
  3125 + <target_type>String</target_type>
  3126 + <target_format/>
  3127 + <target_length>-1</target_length>
  3128 + <target_precision>-1</target_precision>
  3129 + <target_decimal_symbol/>
  3130 + <target_grouping_symbol/>
  3131 + <target_currency_symbol/>
  3132 + <target_null_string/>
  3133 + <target_aggregation_type>-</target_aggregation_type>
  3134 + </field>
  3135 + <field>
  3136 + <field_name>all_content</field_name>
  3137 + <key_value>143</key_value>
  3138 + <target_name>fcno143</target_name>
  3139 + <target_type>String</target_type>
  3140 + <target_format/>
  3141 + <target_length>-1</target_length>
  3142 + <target_precision>-1</target_precision>
  3143 + <target_decimal_symbol/>
  3144 + <target_grouping_symbol/>
  3145 + <target_currency_symbol/>
  3146 + <target_null_string/>
  3147 + <target_aggregation_type>-</target_aggregation_type>
  3148 + </field>
  3149 + <field>
  3150 + <field_name>all_content</field_name>
  3151 + <key_value>144</key_value>
  3152 + <target_name>fcno144</target_name>
  3153 + <target_type>String</target_type>
  3154 + <target_format/>
  3155 + <target_length>-1</target_length>
  3156 + <target_precision>-1</target_precision>
  3157 + <target_decimal_symbol/>
  3158 + <target_grouping_symbol/>
  3159 + <target_currency_symbol/>
  3160 + <target_null_string/>
  3161 + <target_aggregation_type>-</target_aggregation_type>
  3162 + </field>
  3163 + <field>
  3164 + <field_name>all_content</field_name>
  3165 + <key_value>145</key_value>
  3166 + <target_name>fcno145</target_name>
  3167 + <target_type>String</target_type>
  3168 + <target_format/>
  3169 + <target_length>-1</target_length>
  3170 + <target_precision>-1</target_precision>
  3171 + <target_decimal_symbol/>
  3172 + <target_grouping_symbol/>
  3173 + <target_currency_symbol/>
  3174 + <target_null_string/>
  3175 + <target_aggregation_type>-</target_aggregation_type>
  3176 + </field>
  3177 + <field>
  3178 + <field_name>all_content</field_name>
  3179 + <key_value>146</key_value>
  3180 + <target_name>fcno146</target_name>
  3181 + <target_type>String</target_type>
  3182 + <target_format/>
  3183 + <target_length>-1</target_length>
  3184 + <target_precision>-1</target_precision>
  3185 + <target_decimal_symbol/>
  3186 + <target_grouping_symbol/>
  3187 + <target_currency_symbol/>
  3188 + <target_null_string/>
  3189 + <target_aggregation_type>-</target_aggregation_type>
  3190 + </field>
  3191 + <field>
  3192 + <field_name>all_content</field_name>
  3193 + <key_value>147</key_value>
  3194 + <target_name>fcno147</target_name>
  3195 + <target_type>String</target_type>
  3196 + <target_format/>
  3197 + <target_length>-1</target_length>
  3198 + <target_precision>-1</target_precision>
  3199 + <target_decimal_symbol/>
  3200 + <target_grouping_symbol/>
  3201 + <target_currency_symbol/>
  3202 + <target_null_string/>
  3203 + <target_aggregation_type>-</target_aggregation_type>
  3204 + </field>
  3205 + <field>
  3206 + <field_name>all_content</field_name>
  3207 + <key_value>148</key_value>
  3208 + <target_name>fcno148</target_name>
  3209 + <target_type>String</target_type>
  3210 + <target_format/>
  3211 + <target_length>-1</target_length>
  3212 + <target_precision>-1</target_precision>
  3213 + <target_decimal_symbol/>
  3214 + <target_grouping_symbol/>
  3215 + <target_currency_symbol/>
  3216 + <target_null_string/>
  3217 + <target_aggregation_type>-</target_aggregation_type>
  3218 + </field>
  3219 + <field>
  3220 + <field_name>all_content</field_name>
  3221 + <key_value>149</key_value>
  3222 + <target_name>fcno149</target_name>
  3223 + <target_type>String</target_type>
  3224 + <target_format/>
  3225 + <target_length>-1</target_length>
  3226 + <target_precision>-1</target_precision>
  3227 + <target_decimal_symbol/>
  3228 + <target_grouping_symbol/>
  3229 + <target_currency_symbol/>
  3230 + <target_null_string/>
  3231 + <target_aggregation_type>-</target_aggregation_type>
  3232 + </field>
  3233 + <field>
  3234 + <field_name>all_content</field_name>
  3235 + <key_value>150</key_value>
  3236 + <target_name>fcno150</target_name>
  3237 + <target_type>String</target_type>
  3238 + <target_format/>
  3239 + <target_length>-1</target_length>
  3240 + <target_precision>-1</target_precision>
  3241 + <target_decimal_symbol/>
  3242 + <target_grouping_symbol/>
  3243 + <target_currency_symbol/>
  3244 + <target_null_string/>
  3245 + <target_aggregation_type>-</target_aggregation_type>
  3246 + </field>
  3247 + </fields>
  3248 + <cluster_schema/>
  3249 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  3250 + <xloc>683</xloc>
  3251 + <yloc>184</yloc>
  3252 + <draw>Y</draw>
  3253 + </GUI>
  3254 + </step>
  3255 +
  3256 + <step>
  3257 + <name>&#x53bb;&#x9664;&#x5b57;&#x6bb5;</name>
  3258 + <type>SelectValues</type>
  3259 + <description/>
  3260 + <distribute>N</distribute>
  3261 + <custom_distribution/>
  3262 + <copies>1</copies>
  3263 + <partitioning>
  3264 + <method>none</method>
  3265 + <schema_name/>
  3266 + </partitioning>
  3267 + <fields> <field> <name>lp</name>
  3268 + <rename/>
  3269 + <length>-2</length>
  3270 + <precision>-2</precision>
  3271 + </field> <field> <name>fcno1</name>
  3272 + <rename/>
  3273 + <length>-2</length>
  3274 + <precision>-2</precision>
  3275 + </field> <field> <name>fcno2</name>
  3276 + <rename/>
  3277 + <length>-2</length>
  3278 + <precision>-2</precision>
  3279 + </field> <field> <name>fcno3</name>
  3280 + <rename/>
  3281 + <length>-2</length>
  3282 + <precision>-2</precision>
  3283 + </field> <field> <name>fcno4</name>
  3284 + <rename/>
  3285 + <length>-2</length>
  3286 + <precision>-2</precision>
  3287 + </field> <field> <name>fcno5</name>
  3288 + <rename/>
  3289 + <length>-2</length>
  3290 + <precision>-2</precision>
  3291 + </field> <field> <name>fcno6</name>
  3292 + <rename/>
  3293 + <length>-2</length>
  3294 + <precision>-2</precision>
  3295 + </field> <field> <name>fcno7</name>
  3296 + <rename/>
  3297 + <length>-2</length>
  3298 + <precision>-2</precision>
  3299 + </field> <field> <name>fcno8</name>
  3300 + <rename/>
  3301 + <length>-2</length>
  3302 + <precision>-2</precision>
  3303 + </field> <field> <name>fcno9</name>
  3304 + <rename/>
  3305 + <length>-2</length>
  3306 + <precision>-2</precision>
  3307 + </field> <field> <name>fcno10</name>
  3308 + <rename/>
  3309 + <length>-2</length>
  3310 + <precision>-2</precision>
  3311 + </field> <field> <name>fcno11</name>
  3312 + <rename/>
  3313 + <length>-2</length>
  3314 + <precision>-2</precision>
  3315 + </field> <field> <name>fcno12</name>
  3316 + <rename/>
  3317 + <length>-2</length>
  3318 + <precision>-2</precision>
  3319 + </field> <field> <name>fcno13</name>
  3320 + <rename/>
  3321 + <length>-2</length>
  3322 + <precision>-2</precision>
  3323 + </field> <field> <name>fcno14</name>
  3324 + <rename/>
  3325 + <length>-2</length>
  3326 + <precision>-2</precision>
  3327 + </field> <field> <name>fcno15</name>
  3328 + <rename/>
  3329 + <length>-2</length>
  3330 + <precision>-2</precision>
  3331 + </field> <field> <name>fcno16</name>
  3332 + <rename/>
  3333 + <length>-2</length>
  3334 + <precision>-2</precision>
  3335 + </field> <field> <name>fcno17</name>
  3336 + <rename/>
  3337 + <length>-2</length>
  3338 + <precision>-2</precision>
  3339 + </field> <field> <name>fcno18</name>
  3340 + <rename/>
  3341 + <length>-2</length>
  3342 + <precision>-2</precision>
  3343 + </field> <field> <name>fcno19</name>
  3344 + <rename/>
  3345 + <length>-2</length>
  3346 + <precision>-2</precision>
  3347 + </field> <field> <name>fcno20</name>
  3348 + <rename/>
  3349 + <length>-2</length>
  3350 + <precision>-2</precision>
  3351 + </field> <field> <name>fcno21</name>
  3352 + <rename/>
  3353 + <length>-2</length>
  3354 + <precision>-2</precision>
  3355 + </field> <field> <name>fcno22</name>
  3356 + <rename/>
  3357 + <length>-2</length>
  3358 + <precision>-2</precision>
  3359 + </field> <field> <name>fcno23</name>
  3360 + <rename/>
  3361 + <length>-2</length>
  3362 + <precision>-2</precision>
  3363 + </field> <field> <name>fcno24</name>
  3364 + <rename/>
  3365 + <length>-2</length>
  3366 + <precision>-2</precision>
  3367 + </field> <field> <name>fcno25</name>
  3368 + <rename/>
  3369 + <length>-2</length>
  3370 + <precision>-2</precision>
  3371 + </field> <field> <name>fcno26</name>
  3372 + <rename/>
  3373 + <length>-2</length>
  3374 + <precision>-2</precision>
  3375 + </field> <field> <name>fcno27</name>
  3376 + <rename/>
  3377 + <length>-2</length>
  3378 + <precision>-2</precision>
  3379 + </field> <field> <name>fcno28</name>
  3380 + <rename/>
  3381 + <length>-2</length>
  3382 + <precision>-2</precision>
  3383 + </field> <field> <name>fcno29</name>
  3384 + <rename/>
  3385 + <length>-2</length>
  3386 + <precision>-2</precision>
  3387 + </field> <field> <name>fcno30</name>
  3388 + <rename/>
  3389 + <length>-2</length>
  3390 + <precision>-2</precision>
  3391 + </field> <field> <name>fcno31</name>
  3392 + <rename/>
  3393 + <length>-2</length>
  3394 + <precision>-2</precision>
  3395 + </field> <field> <name>fcno32</name>
  3396 + <rename/>
  3397 + <length>-2</length>
  3398 + <precision>-2</precision>
  3399 + </field> <field> <name>fcno33</name>
  3400 + <rename/>
  3401 + <length>-2</length>
  3402 + <precision>-2</precision>
  3403 + </field> <field> <name>fcno34</name>
  3404 + <rename/>
  3405 + <length>-2</length>
  3406 + <precision>-2</precision>
  3407 + </field> <field> <name>fcno35</name>
  3408 + <rename/>
  3409 + <length>-2</length>
  3410 + <precision>-2</precision>
  3411 + </field> <field> <name>fcno36</name>
  3412 + <rename/>
  3413 + <length>-2</length>
  3414 + <precision>-2</precision>
  3415 + </field> <field> <name>fcno37</name>
  3416 + <rename/>
  3417 + <length>-2</length>
  3418 + <precision>-2</precision>
  3419 + </field> <field> <name>fcno38</name>
  3420 + <rename/>
  3421 + <length>-2</length>
  3422 + <precision>-2</precision>
  3423 + </field> <field> <name>fcno39</name>
  3424 + <rename/>
  3425 + <length>-2</length>
  3426 + <precision>-2</precision>
  3427 + </field> <field> <name>fcno40</name>
  3428 + <rename/>
  3429 + <length>-2</length>
  3430 + <precision>-2</precision>
  3431 + </field> <field> <name>fcno41</name>
  3432 + <rename/>
  3433 + <length>-2</length>
  3434 + <precision>-2</precision>
  3435 + </field> <field> <name>fcno42</name>
  3436 + <rename/>
  3437 + <length>-2</length>
  3438 + <precision>-2</precision>
  3439 + </field> <field> <name>fcno43</name>
  3440 + <rename/>
  3441 + <length>-2</length>
  3442 + <precision>-2</precision>
  3443 + </field> <field> <name>fcno44</name>
  3444 + <rename/>
  3445 + <length>-2</length>
  3446 + <precision>-2</precision>
  3447 + </field> <field> <name>fcno45</name>
  3448 + <rename/>
  3449 + <length>-2</length>
  3450 + <precision>-2</precision>
  3451 + </field> <field> <name>fcno46</name>
  3452 + <rename/>
  3453 + <length>-2</length>
  3454 + <precision>-2</precision>
  3455 + </field> <field> <name>fcno47</name>
  3456 + <rename/>
  3457 + <length>-2</length>
  3458 + <precision>-2</precision>
  3459 + </field> <field> <name>fcno48</name>
  3460 + <rename/>
  3461 + <length>-2</length>
  3462 + <precision>-2</precision>
  3463 + </field> <field> <name>fcno49</name>
  3464 + <rename/>
  3465 + <length>-2</length>
  3466 + <precision>-2</precision>
  3467 + </field> <field> <name>fcno50</name>
  3468 + <rename/>
  3469 + <length>-2</length>
  3470 + <precision>-2</precision>
  3471 + </field> <field> <name>fcno51</name>
  3472 + <rename/>
  3473 + <length>-2</length>
  3474 + <precision>-2</precision>
  3475 + </field> <field> <name>fcno52</name>
  3476 + <rename/>
  3477 + <length>-2</length>
  3478 + <precision>-2</precision>
  3479 + </field> <field> <name>fcno53</name>
  3480 + <rename/>
  3481 + <length>-2</length>
  3482 + <precision>-2</precision>
  3483 + </field> <field> <name>fcno54</name>
  3484 + <rename/>
  3485 + <length>-2</length>
  3486 + <precision>-2</precision>
  3487 + </field> <field> <name>fcno55</name>
  3488 + <rename/>
  3489 + <length>-2</length>
  3490 + <precision>-2</precision>
  3491 + </field> <field> <name>fcno56</name>
  3492 + <rename/>
  3493 + <length>-2</length>
  3494 + <precision>-2</precision>
  3495 + </field> <field> <name>fcno57</name>
  3496 + <rename/>
  3497 + <length>-2</length>
  3498 + <precision>-2</precision>
  3499 + </field> <field> <name>fcno58</name>
  3500 + <rename/>
  3501 + <length>-2</length>
  3502 + <precision>-2</precision>
  3503 + </field> <field> <name>fcno59</name>
  3504 + <rename/>
  3505 + <length>-2</length>
  3506 + <precision>-2</precision>
  3507 + </field> <field> <name>fcno60</name>
  3508 + <rename/>
  3509 + <length>-2</length>
  3510 + <precision>-2</precision>
  3511 + </field> <field> <name>fcno61</name>
  3512 + <rename/>
  3513 + <length>-2</length>
  3514 + <precision>-2</precision>
  3515 + </field> <field> <name>fcno62</name>
  3516 + <rename/>
  3517 + <length>-2</length>
  3518 + <precision>-2</precision>
  3519 + </field> <field> <name>fcno63</name>
  3520 + <rename/>
  3521 + <length>-2</length>
  3522 + <precision>-2</precision>
  3523 + </field> <field> <name>fcno64</name>
  3524 + <rename/>
  3525 + <length>-2</length>
  3526 + <precision>-2</precision>
  3527 + </field> <field> <name>fcno65</name>
  3528 + <rename/>
  3529 + <length>-2</length>
  3530 + <precision>-2</precision>
  3531 + </field> <field> <name>fcno66</name>
  3532 + <rename/>
  3533 + <length>-2</length>
  3534 + <precision>-2</precision>
  3535 + </field> <field> <name>fcno67</name>
  3536 + <rename/>
  3537 + <length>-2</length>
  3538 + <precision>-2</precision>
  3539 + </field> <field> <name>fcno68</name>
  3540 + <rename/>
  3541 + <length>-2</length>
  3542 + <precision>-2</precision>
  3543 + </field> <field> <name>fcno69</name>
  3544 + <rename/>
  3545 + <length>-2</length>
  3546 + <precision>-2</precision>
  3547 + </field> <field> <name>fcno70</name>
  3548 + <rename/>
  3549 + <length>-2</length>
  3550 + <precision>-2</precision>
  3551 + </field> <field> <name>fcno71</name>
  3552 + <rename/>
  3553 + <length>-2</length>
  3554 + <precision>-2</precision>
  3555 + </field> <field> <name>fcno72</name>
  3556 + <rename/>
  3557 + <length>-2</length>
  3558 + <precision>-2</precision>
  3559 + </field> <field> <name>fcno73</name>
  3560 + <rename/>
  3561 + <length>-2</length>
  3562 + <precision>-2</precision>
  3563 + </field> <field> <name>fcno74</name>
  3564 + <rename/>
  3565 + <length>-2</length>
  3566 + <precision>-2</precision>
  3567 + </field> <field> <name>fcno75</name>
  3568 + <rename/>
  3569 + <length>-2</length>
  3570 + <precision>-2</precision>
  3571 + </field> <field> <name>fcno76</name>
  3572 + <rename/>
  3573 + <length>-2</length>
  3574 + <precision>-2</precision>
  3575 + </field> <field> <name>fcno77</name>
  3576 + <rename/>
  3577 + <length>-2</length>
  3578 + <precision>-2</precision>
  3579 + </field> <field> <name>fcno78</name>
  3580 + <rename/>
  3581 + <length>-2</length>
  3582 + <precision>-2</precision>
  3583 + </field> <field> <name>fcno79</name>
  3584 + <rename/>
  3585 + <length>-2</length>
  3586 + <precision>-2</precision>
  3587 + </field> <field> <name>fcno80</name>
  3588 + <rename/>
  3589 + <length>-2</length>
  3590 + <precision>-2</precision>
  3591 + </field> <field> <name>fcno81</name>
  3592 + <rename/>
  3593 + <length>-2</length>
  3594 + <precision>-2</precision>
  3595 + </field> <field> <name>fcno82</name>
  3596 + <rename/>
  3597 + <length>-2</length>
  3598 + <precision>-2</precision>
  3599 + </field> <field> <name>fcno83</name>
  3600 + <rename/>
  3601 + <length>-2</length>
  3602 + <precision>-2</precision>
  3603 + </field> <field> <name>fcno84</name>
  3604 + <rename/>
  3605 + <length>-2</length>
  3606 + <precision>-2</precision>
  3607 + </field> <field> <name>fcno85</name>
  3608 + <rename/>
  3609 + <length>-2</length>
  3610 + <precision>-2</precision>
  3611 + </field> <field> <name>fcno86</name>
  3612 + <rename/>
  3613 + <length>-2</length>
  3614 + <precision>-2</precision>
  3615 + </field> <field> <name>fcno87</name>
  3616 + <rename/>
  3617 + <length>-2</length>
  3618 + <precision>-2</precision>
  3619 + </field> <field> <name>fcno88</name>
  3620 + <rename/>
  3621 + <length>-2</length>
  3622 + <precision>-2</precision>
  3623 + </field> <field> <name>fcno89</name>
  3624 + <rename/>
  3625 + <length>-2</length>
  3626 + <precision>-2</precision>
  3627 + </field> <field> <name>fcno90</name>
  3628 + <rename/>
  3629 + <length>-2</length>
  3630 + <precision>-2</precision>
  3631 + </field> <field> <name>fcno91</name>
  3632 + <rename/>
  3633 + <length>-2</length>
  3634 + <precision>-2</precision>
  3635 + </field> <field> <name>fcno92</name>
  3636 + <rename/>
  3637 + <length>-2</length>
  3638 + <precision>-2</precision>
  3639 + </field> <field> <name>fcno93</name>
  3640 + <rename/>
  3641 + <length>-2</length>
  3642 + <precision>-2</precision>
  3643 + </field> <field> <name>fcno94</name>
  3644 + <rename/>
  3645 + <length>-2</length>
  3646 + <precision>-2</precision>
  3647 + </field> <field> <name>fcno95</name>
  3648 + <rename/>
  3649 + <length>-2</length>
  3650 + <precision>-2</precision>
  3651 + </field> <field> <name>fcno96</name>
  3652 + <rename/>
  3653 + <length>-2</length>
  3654 + <precision>-2</precision>
  3655 + </field> <field> <name>fcno97</name>
  3656 + <rename/>
  3657 + <length>-2</length>
  3658 + <precision>-2</precision>
  3659 + </field> <field> <name>fcno98</name>
  3660 + <rename/>
  3661 + <length>-2</length>
  3662 + <precision>-2</precision>
  3663 + </field> <field> <name>fcno99</name>
  3664 + <rename/>
  3665 + <length>-2</length>
  3666 + <precision>-2</precision>
  3667 + </field> <field> <name>fcno100</name>
  3668 + <rename/>
  3669 + <length>-2</length>
  3670 + <precision>-2</precision>
  3671 + </field> <field> <name>fcno101</name>
  3672 + <rename/>
  3673 + <length>-2</length>
  3674 + <precision>-2</precision>
  3675 + </field> <field> <name>fcno102</name>
  3676 + <rename/>
  3677 + <length>-2</length>
  3678 + <precision>-2</precision>
  3679 + </field> <field> <name>fcno103</name>
  3680 + <rename/>
  3681 + <length>-2</length>
  3682 + <precision>-2</precision>
  3683 + </field> <field> <name>fcno104</name>
  3684 + <rename/>
  3685 + <length>-2</length>
  3686 + <precision>-2</precision>
  3687 + </field> <field> <name>fcno105</name>
  3688 + <rename/>
  3689 + <length>-2</length>
  3690 + <precision>-2</precision>
  3691 + </field> <field> <name>fcno106</name>
  3692 + <rename/>
  3693 + <length>-2</length>
  3694 + <precision>-2</precision>
  3695 + </field> <field> <name>fcno107</name>
  3696 + <rename/>
  3697 + <length>-2</length>
  3698 + <precision>-2</precision>
  3699 + </field> <field> <name>fcno108</name>
  3700 + <rename/>
  3701 + <length>-2</length>
  3702 + <precision>-2</precision>
  3703 + </field> <field> <name>fcno109</name>
  3704 + <rename/>
  3705 + <length>-2</length>
  3706 + <precision>-2</precision>
  3707 + </field> <field> <name>fcno110</name>
  3708 + <rename/>
  3709 + <length>-2</length>
  3710 + <precision>-2</precision>
  3711 + </field> <field> <name>fcno111</name>
  3712 + <rename/>
  3713 + <length>-2</length>
  3714 + <precision>-2</precision>
  3715 + </field> <field> <name>fcno112</name>
  3716 + <rename/>
  3717 + <length>-2</length>
  3718 + <precision>-2</precision>
  3719 + </field> <field> <name>fcno113</name>
  3720 + <rename/>
  3721 + <length>-2</length>
  3722 + <precision>-2</precision>
  3723 + </field> <field> <name>fcno114</name>
  3724 + <rename/>
  3725 + <length>-2</length>
  3726 + <precision>-2</precision>
  3727 + </field> <field> <name>fcno115</name>
  3728 + <rename/>
  3729 + <length>-2</length>
  3730 + <precision>-2</precision>
  3731 + </field> <field> <name>fcno116</name>
  3732 + <rename/>
  3733 + <length>-2</length>
  3734 + <precision>-2</precision>
  3735 + </field> <field> <name>fcno117</name>
  3736 + <rename/>
  3737 + <length>-2</length>
  3738 + <precision>-2</precision>
  3739 + </field> <field> <name>fcno118</name>
  3740 + <rename/>
  3741 + <length>-2</length>
  3742 + <precision>-2</precision>
  3743 + </field> <field> <name>fcno119</name>
  3744 + <rename/>
  3745 + <length>-2</length>
  3746 + <precision>-2</precision>
  3747 + </field> <field> <name>fcno120</name>
  3748 + <rename/>
  3749 + <length>-2</length>
  3750 + <precision>-2</precision>
  3751 + </field> <field> <name>fcno121</name>
  3752 + <rename/>
  3753 + <length>-2</length>
  3754 + <precision>-2</precision>
  3755 + </field> <field> <name>fcno122</name>
  3756 + <rename/>
  3757 + <length>-2</length>
  3758 + <precision>-2</precision>
  3759 + </field> <field> <name>fcno123</name>
  3760 + <rename/>
  3761 + <length>-2</length>
  3762 + <precision>-2</precision>
  3763 + </field> <field> <name>fcno124</name>
  3764 + <rename/>
  3765 + <length>-2</length>
  3766 + <precision>-2</precision>
  3767 + </field> <field> <name>fcno125</name>
  3768 + <rename/>
  3769 + <length>-2</length>
  3770 + <precision>-2</precision>
  3771 + </field> <field> <name>fcno126</name>
  3772 + <rename/>
  3773 + <length>-2</length>
  3774 + <precision>-2</precision>
  3775 + </field> <field> <name>fcno127</name>
  3776 + <rename/>
  3777 + <length>-2</length>
  3778 + <precision>-2</precision>
  3779 + </field> <field> <name>fcno128</name>
  3780 + <rename/>
  3781 + <length>-2</length>
  3782 + <precision>-2</precision>
  3783 + </field> <field> <name>fcno129</name>
  3784 + <rename/>
  3785 + <length>-2</length>
  3786 + <precision>-2</precision>
  3787 + </field> <field> <name>fcno130</name>
  3788 + <rename/>
  3789 + <length>-2</length>
  3790 + <precision>-2</precision>
  3791 + </field> <field> <name>fcno131</name>
  3792 + <rename/>
  3793 + <length>-2</length>
  3794 + <precision>-2</precision>
  3795 + </field> <field> <name>fcno132</name>
  3796 + <rename/>
  3797 + <length>-2</length>
  3798 + <precision>-2</precision>
  3799 + </field> <field> <name>fcno133</name>
  3800 + <rename/>
  3801 + <length>-2</length>
  3802 + <precision>-2</precision>
  3803 + </field> <field> <name>fcno134</name>
  3804 + <rename/>
  3805 + <length>-2</length>
  3806 + <precision>-2</precision>
  3807 + </field> <field> <name>fcno135</name>
  3808 + <rename/>
  3809 + <length>-2</length>
  3810 + <precision>-2</precision>
  3811 + </field> <field> <name>fcno136</name>
  3812 + <rename/>
  3813 + <length>-2</length>
  3814 + <precision>-2</precision>
  3815 + </field> <field> <name>fcno137</name>
  3816 + <rename/>
  3817 + <length>-2</length>
  3818 + <precision>-2</precision>
  3819 + </field> <field> <name>fcno138</name>
  3820 + <rename/>
  3821 + <length>-2</length>
  3822 + <precision>-2</precision>
  3823 + </field> <field> <name>fcno139</name>
  3824 + <rename/>
  3825 + <length>-2</length>
  3826 + <precision>-2</precision>
  3827 + </field> <field> <name>fcno140</name>
  3828 + <rename/>
  3829 + <length>-2</length>
  3830 + <precision>-2</precision>
  3831 + </field> <field> <name>fcno141</name>
  3832 + <rename/>
  3833 + <length>-2</length>
  3834 + <precision>-2</precision>
  3835 + </field> <field> <name>fcno142</name>
  3836 + <rename/>
  3837 + <length>-2</length>
  3838 + <precision>-2</precision>
  3839 + </field> <field> <name>fcno143</name>
  3840 + <rename/>
  3841 + <length>-2</length>
  3842 + <precision>-2</precision>
  3843 + </field> <field> <name>fcno144</name>
  3844 + <rename/>
  3845 + <length>-2</length>
  3846 + <precision>-2</precision>
  3847 + </field> <field> <name>fcno145</name>
  3848 + <rename/>
  3849 + <length>-2</length>
  3850 + <precision>-2</precision>
  3851 + </field> <field> <name>fcno146</name>
  3852 + <rename/>
  3853 + <length>-2</length>
  3854 + <precision>-2</precision>
  3855 + </field> <field> <name>fcno147</name>
  3856 + <rename/>
  3857 + <length>-2</length>
  3858 + <precision>-2</precision>
  3859 + </field> <field> <name>fcno148</name>
  3860 + <rename/>
  3861 + <length>-2</length>
  3862 + <precision>-2</precision>
  3863 + </field> <field> <name>fcno149</name>
  3864 + <rename/>
  3865 + <length>-2</length>
  3866 + <precision>-2</precision>
  3867 + </field> <field> <name>fcno150</name>
  3868 + <rename/>
  3869 + <length>-2</length>
  3870 + <precision>-2</precision>
  3871 + </field> <select_unspecified>N</select_unspecified>
  3872 + </fields> <cluster_schema/>
  3873 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  3874 + <xloc>691</xloc>
  3875 + <yloc>361</yloc>
  3876 + <draw>Y</draw>
  3877 + </GUI>
  3878 + </step>
  3879 +
  3880 + <step>
  3881 + <name>&#x5408;&#x5e76;&#x5185;&#x5bb9;</name>
  3882 + <type>ScriptValueMod</type>
  3883 + <description/>
  3884 + <distribute>Y</distribute>
  3885 + <custom_distribution/>
  3886 + <copies>1</copies>
  3887 + <partitioning>
  3888 + <method>none</method>
  3889 + <schema_name/>
  3890 + </partitioning>
  3891 + <compatible>N</compatible>
  3892 + <optimizationLevel>9</optimizationLevel>
  3893 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  3894 + <jsScript_name>Script 1</jsScript_name>
  3895 + <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;&#x2f;&#x2f; &#x987a;&#x5e8f;&#xff0c;id,fcsj,jhlc,zdname,bctype,xldir,isfb&#xa;var all_content_array &#x3d; &#x5b;&#x5d;&#x3b;&#xa;var all_content &#x3d; &#x22;&#x22;&#x3b; &#xa;all_content_array.push&#x28;id&#x29;&#x3b;&#xa;all_content_array.push&#x28;fcsj&#x29;&#x3b;&#xa;all_content_array.push&#x28;jhlc&#x29;&#x3b;&#xa;all_content_array.push&#x28;fczdName&#x29;&#x3b;&#xa;all_content_array.push&#x28;bc_type&#x29;&#x3b;&#xa;all_content_array.push&#x28;xl_dir&#x29;&#x3b;&#xa;all_content_array.push&#x28;isfb&#x29;&#x3b;&#xa;all_content_array.push&#x28;qdz_code &#x7c;&#x7c; &#x27;null&#x27;&#x29;&#x3b;&#xa;all_content_array.push&#x28;zdz_code &#x7c;&#x7c; &#x27;null&#x27;&#x29;&#x3b;&#xa;&#xa;all_content &#x3d; all_content_array.join&#x28;&#x22;,&#x22;&#x29;&#x3b; &#x2f;&#x2f; &#x9017;&#x53f7;&#x5206;&#x9694;</jsScript_script>
  3896 + </jsScript> </jsScripts> <fields> <field> <name>all_content</name>
  3897 + <rename>all_content</rename>
2956 <type>String</type> 3898 <type>String</type>
2957 - <format/>  
2958 - <currency/>  
2959 - <decimal/>  
2960 - <group/>  
2961 - <nullif/>  
2962 - <trim_type>none</trim_type>  
2963 <length>-1</length> 3899 <length>-1</length>
2964 <precision>-1</precision> 3900 <precision>-1</precision>
2965 - </field>  
2966 - </fields>  
2967 - <cluster_schema/> 3901 + <replace>N</replace>
  3902 + </field> </fields> <cluster_schema/>
2968 <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> 3903 <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2969 - <xloc>880</xloc>  
2970 - <yloc>365</yloc> 3904 + <xloc>441</xloc>
  3905 + <yloc>84</yloc>
2971 <draw>Y</draw> 3906 <draw>Y</draw>
2972 </GUI> 3907 </GUI>
2973 </step> 3908 </step>
src/main/resources/static/pages/scheduleApp/module/core/schedulePlanManage/report/ext/edit.html
@@ -119,7 +119,7 @@ @@ -119,7 +119,7 @@
119 icname="id" 119 icname="id"
120 dsparams="{{ {type: 'local', param: 'ry' } | json }}" 120 dsparams="{{ {type: 'local', param: 'ry' } | json }}"
121 iterobjname="item" 121 iterobjname="item"
122 - iterobjexp="item.personnelName" 122 + iterobjexp="item.personnelName + '(' + item.jobCode + ')'"
123 searchph="请输拼音..." 123 searchph="请输拼音..."
124 searchexp="this.personnelName" 124 searchexp="this.personnelName"
125 > 125 >
@@ -137,7 +137,7 @@ @@ -137,7 +137,7 @@
137 icname="id" 137 icname="id"
138 dsparams="{{ {type: 'local', param: 'ry' } | json }}" 138 dsparams="{{ {type: 'local', param: 'ry' } | json }}"
139 iterobjname="item" 139 iterobjname="item"
140 - iterobjexp="item.personnelName" 140 + iterobjexp="item.personnelName + '(' + item.jobCode + ')'"
141 searchph="请输拼音..." 141 searchph="请输拼音..."
142 searchexp="this.personnelName" 142 searchexp="this.personnelName"
143 > 143 >
@@ -155,7 +155,7 @@ @@ -155,7 +155,7 @@
155 icname="id" 155 icname="id"
156 dsparams="{{ {type: 'local', param: 'ry' } | json }}" 156 dsparams="{{ {type: 'local', param: 'ry' } | json }}"
157 iterobjname="item" 157 iterobjname="item"
158 - iterobjexp="item.personnelName" 158 + iterobjexp="item.personnelName + '(' + item.jobCode + ')'"
159 searchph="请输拼音..." 159 searchph="请输拼音..."
160 searchexp="this.personnelName" 160 searchexp="this.personnelName"
161 > 161 >
@@ -173,7 +173,7 @@ @@ -173,7 +173,7 @@
173 icname="id" 173 icname="id"
174 dsparams="{{ {type: 'local', param: 'ry' } | json }}" 174 dsparams="{{ {type: 'local', param: 'ry' } | json }}"
175 iterobjname="item" 175 iterobjname="item"
176 - iterobjexp="item.personnelName" 176 + iterobjexp="item.personnelName + '(' + item.jobCode + ')'"
177 searchph="请输拼音..." 177 searchph="请输拼音..."
178 searchexp="this.personnelName" 178 searchexp="this.personnelName"
179 > 179 >
@@ -191,7 +191,7 @@ @@ -191,7 +191,7 @@
191 icname="id" 191 icname="id"
192 dsparams="{{ {type: 'local', param: 'ry' } | json }}" 192 dsparams="{{ {type: 'local', param: 'ry' } | json }}"
193 iterobjname="item" 193 iterobjname="item"
194 - iterobjexp="item.personnelName" 194 + iterobjexp="item.personnelName + '(' + item.jobCode + ')'"
195 searchph="请输拼音..." 195 searchph="请输拼音..."
196 searchexp="this.personnelName" 196 searchexp="this.personnelName"
197 > 197 >
src/main/resources/static/pages/scheduleApp/module/core/schedulePlanManage/report/ext/module.js
@@ -58,6 +58,26 @@ angular.module(&#39;ScheduleApp&#39;).factory( @@ -58,6 +58,26 @@ angular.module(&#39;ScheduleApp&#39;).factory(
58 58
59 angular.forEach(rs, function(obj) { 59 angular.forEach(rs, function(obj) {
60 console.log(rs.length); 60 console.log(rs.length);
  61 +
  62 + // 处理工号,带-的去掉
  63 + var temp = [];
  64 + if (obj.jGh) {
  65 + temp = obj.jGh.split("-");
  66 + if (temp.length > 1) {
  67 + obj.jGh = temp[1];
  68 + } else {
  69 + obj.jGh = temp[0];
  70 + }
  71 + }
  72 + if (obj.sGh) {
  73 + temp = obj.sGh.split("-");
  74 + if (temp.length > 1) {
  75 + obj.sGh = temp[1];
  76 + } else {
  77 + obj.sGh = temp[0];
  78 + }
  79 + }
  80 +
61 queryClass.save(obj, 81 queryClass.save(obj,
62 function(value) { 82 function(value) {
63 if (value.status == 'ERROR') { 83 if (value.status == 'ERROR') {
@@ -252,4 +272,3 @@ angular.module(&#39;ScheduleApp&#39;).controller( @@ -252,4 +272,3 @@ angular.module(&#39;ScheduleApp&#39;).controller(
252 ); 272 );
253 273
254 274
255 -  
src/main/resources/static/pages/scheduleApp/module/core/ttInfoManage/detailedit/edit-detail2.html
@@ -79,7 +79,7 @@ @@ -79,7 +79,7 @@
79 iterobjexp="item.aname" 79 iterobjexp="item.aname"
80 searchph="请输拼音..." 80 searchph="请输拼音..."
81 searchexp="this.aname" 81 searchexp="this.aname"
82 - required > 82 + >
83 </sa-Select5> 83 </sa-Select5>
84 </div> 84 </div>
85 </div> 85 </div>
@@ -96,7 +96,7 @@ @@ -96,7 +96,7 @@
96 iterobjexp="item.aname" 96 iterobjexp="item.aname"
97 searchph="请输拼音..." 97 searchph="请输拼音..."
98 searchexp="this.aname" 98 searchexp="this.aname"
99 - required > 99 + >
100 </sa-Select5> 100 </sa-Select5>
101 </div> 101 </div>
102 </div> 102 </div>
@@ -145,8 +145,7 @@ @@ -145,8 +145,7 @@
145 </div> 145 </div>
146 146
147 </div> 147 </div>
148 - <div class="form-group"  
149 - ng-if="ctrl.isZdModify == true"> 148 + <div class="form-group">
150 <label class="col-md-2 control-label">班次类型:</label> 149 <label class="col-md-2 control-label">班次类型:</label>
151 <div class="col-md-3"> 150 <div class="col-md-3">
152 <sa-Select5 name="bcType" 151 <sa-Select5 name="bcType"
src/main/resources/static/pages/scheduleApp/module/core/ttInfoManage/detailedit/timeTableDetailManage_old.js
@@ -587,29 +587,52 @@ angular.module(&#39;ScheduleApp&#39;).controller( @@ -587,29 +587,52 @@ angular.module(&#39;ScheduleApp&#39;).controller(
587 // 修正self.tt 587 // 修正self.tt
588 588
589 self.isZdModify = false; // 是否可以修改站点(如果不是同一圈的数据是不能修改站点的) 589 self.isZdModify = false; // 是否可以修改站点(如果不是同一圈的数据是不能修改站点的)
590 - var colIndexs_maps = {}; 590 + //var colIndexs_maps = {};
  591 + //var detailInfos = service.getEditInfo().detailInfos;
  592 + //for (var i = 0; i < detailInfos.length; i++) {
  593 + // for (var j = 0; j < detailInfos[i].length; j++) {
  594 + // if (detailInfos[i][j].sel == true) {
  595 + // colIndexs_maps[j] = j;
  596 + // }
  597 + // }
  598 + //}
  599 + //var colIndexs = [];
  600 + //for (var kk in colIndexs_maps) {
  601 + // colIndexs.push(kk);
  602 + //}
  603 + //if (colIndexs.length == 1) {
  604 + // self.isZdModify = true;
  605 + // var columnBcInfo = service.getEditInfo().columnBcInfo[colIndexs[0]];
  606 + //
  607 + // self.tt.xlDir = columnBcInfo.xldir;
  608 + // self.tt.bcType = columnBcInfo.bc_type;
  609 + // self.tt.qdzCode = columnBcInfo.qdzCode;
  610 + // self.tt.zdzCode = columnBcInfo.zdzCode;
  611 + //}
  612 + var selXldir = [];
591 var detailInfos = service.getEditInfo().detailInfos; 613 var detailInfos = service.getEditInfo().detailInfos;
592 for (var i = 0; i < detailInfos.length; i++) { 614 for (var i = 0; i < detailInfos.length; i++) {
593 for (var j = 0; j < detailInfos[i].length; j++) { 615 for (var j = 0; j < detailInfos[i].length; j++) {
594 if (detailInfos[i][j].sel == true) { 616 if (detailInfos[i][j].sel == true) {
595 - colIndexs_maps[j] = j; 617 + if (selXldir.length > 0) {
  618 + if (detailInfos[i][j].xldir != selXldir[0]) {
  619 + selXldir.push(detailInfos[i][j].xldir);
  620 + }
  621 + } else {
  622 + selXldir.push(detailInfos[i][j].xldir);
  623 + }
596 } 624 }
597 } 625 }
598 } 626 }
599 - var colIndexs = [];  
600 - for (var kk in colIndexs_maps) {  
601 - colIndexs.push(kk);  
602 - }  
603 - if (colIndexs.length == 1) { 627 + if (selXldir.length == 1) {
604 self.isZdModify = true; 628 self.isZdModify = true;
605 - var columnBcInfo = service.getEditInfo().columnBcInfo[colIndexs[0]];  
606 -  
607 - self.tt.xlDir = columnBcInfo.xldir;  
608 - self.tt.bcType = columnBcInfo.bc_type;  
609 - self.tt.qdzCode = columnBcInfo.qdzCode;  
610 - self.tt.zdzCode = columnBcInfo.zdzCode; 629 + self.tt.xlDir = selXldir[0];
  630 + } else {
  631 + self.isZdModify = false
611 } 632 }
612 633
  634 +
  635 +
613 // 提交方法 636 // 提交方法
614 self.submit = function() { 637 self.submit = function() {
615 //service.editInfos(self.tt).then(function() { 638 //service.editInfos(self.tt).then(function() {
src/main/resources/static/real_control_v2/js/main.js
@@ -169,8 +169,8 @@ var disabled_submit_btn = function (form) { @@ -169,8 +169,8 @@ var disabled_submit_btn = function (form) {
169 function showUpdateDescription() { 169 function showUpdateDescription() {
170 //更新说明 170 //更新说明
171 var updateDescription = { 171 var updateDescription = {
172 - date: '2017-05-04',  
173 - text: '<h5>修复了一个问题,该问题导致在应急停靠时间设置为0的时候,待发时间不会自动调整。</h5>' 172 + date: '2017-05-07',
  173 + text: '<h5>修复了一个问题,该问题导致在某些特定情况下,报出的发车时间比实际的要晚1~3分钟。</h5>'
174 }; 174 };
175 175
176 var storage = window.localStorage 176 var storage = window.localStorage
src/test/resources/testdata/problem.properties
@@ -3,7 +3,7 @@ @@ -3,7 +3,7 @@
3 3=时刻表导入,可以选一个已经存在的时刻表导入,而不是excel文件 3 3=时刻表导入,可以选一个已经存在的时刻表导入,而不是excel文件
4 ##4=所有的删除,作废,都要有提示框操作 4 ##4=所有的删除,作废,都要有提示框操作
5 5=排班计划错误提示,如果选的排班日期之前没有排班,提示错误,排班结果有重复与时刻表不符合,显示错误 5 5=排班计划错误提示,如果选的排班日期之前没有排班,提示错误,排班结果有重复与时刻表不符合,显示错误
6 -6=调度执行日报,显示最近排班日期,修改操作强化 6 +##6=调度执行日报,显示最近排班日期,修改操作强化
7 7=警告功能,如时刻表选择相同的常规有效日,特殊有效日,车辆,人员配置重复等等 7 7=警告功能,如时刻表选择相同的常规有效日,特殊有效日,车辆,人员配置重复等等
8 8=时刻表明细编辑,颜色覆盖冲突 8 8=时刻表明细编辑,颜色覆盖冲突
9 9=下拉框貌似中文不能搜索 9 9=下拉框貌似中文不能搜索
@@ -13,15 +13,19 @@ @@ -13,15 +13,19 @@
13 13=导入数据功能,需要加用户名 13 13=导入数据功能,需要加用户名
14 14=路牌编号自动生成 14 14=路牌编号自动生成
15 15=时刻表导入的时候表头后面不需要加数字 15 15=时刻表导入的时候表头后面不需要加数字
16 -16=时间框中文 16 +##16=时间框中文
17 17=人员工号前公司编码自动加 17 17=人员工号前公司编码自动加
18 18=排班计划明细可以修改(修改到每个班次) 18 18=排班计划明细可以修改(修改到每个班次)
19 19=线路运营概览 19 19=线路运营概览
20 20=排班规则备注 20 20=排班规则备注
21 -21=时刻表,两点间空驶,算空驶 21 +##21=时刻表,两点间空驶,算空驶
22 22=搭班编码自动生成 22 22=搭班编码自动生成
23 23=时刻表明细修改终点站停驶(停止1个半小时以上) 23 23=时刻表明细修改终点站停驶(停止1个半小时以上)
24 ##24=线路标准里如果里程是0,用标准里程 24 ##24=线路标准里如果里程是0,用标准里程
25 -25=规则导出的日期格式修正 25 +##25=规则导出的日期格式修正
26 ##26=人员录入,工号规则前加 "{公司编码}-" 26 ##26=人员录入,工号规则前加 "{公司编码}-"
27 27
  28 +##27=调度执勤日报,换人后,工号前的-去掉
  29 +##28=时刻表导出,元数据ktr转换站名匹配有问题
  30 +##29=时刻编辑,超过70个班次,报错,改成150个班次
  31 +##30=时刻表公里数 三位数