Commit 22a1793b50b0794a792fdd090bda73052a633535

Authored by 徐烜
1 parent c8cc89c2

Update

src/main/java/com/bsth/service/schedule/impl/TTInfoDetailServiceImpl.java
... ... @@ -236,6 +236,7 @@ public class TTInfoDetailServiceImpl extends BServiceImpl<TTInfoDetail, Long> im
236 236  
237 237 // 1.6、获取最大的发车数,用于输出数据的数量
238 238 Long maxfcno = ttInfoDetailRepository.findMaxFcno(xlid, ttid);
  239 + LOGGER.info("最大发车顺序号={}", maxfcno);
239 240 if (maxfcno != null) {
240 241 // 2、读取ktr生成的excel数据,组织编辑用数据返回
241 242 // 2-1、读取Excel文件
... ... @@ -263,39 +264,47 @@ public class TTInfoDetailServiceImpl extends BServiceImpl<TTInfoDetail, Long> im
263 264 double lc_ks = 0; // 空驶里程
264 265 double lc_yy = 0; // 营运里程
265 266  
266   - for (int c = 1; c <= maxfcno * 7; ) {
267   - String ttdid_str = sheet.getCell(c, r).getContents(); // 时刻表明细id
268   - String fcsj = sheet.getCell(c + 1, r).getContents(); // 发车时间
269   - String jhlc = sheet.getCell(c + 2, r).getContents(); // 计划里程
270   - String fzdname = sheet.getCell(c + 3, r).getContents(); // 发车站点名称
271   - String bctype = sheet.getCell(c + 4, r).getContents(); // 班次类型
272   - String xldir = sheet.getCell(c + 5, r).getContents(); // 线路上下行
273   - String isfb = sheet.getCell(c + 6, r).getContents(); // 是否分班
  267 + for (int c = 1; c <= maxfcno; c++) {
  268 + String content_str = sheet.getCell(c, r).getContents();
  269 + try {
  270 + String[] content = StringUtils.isEmpty(content_str) ? null : content_str.split(","); // 总的内容
274 271  
275   - FcInfo fcInfo = new FcInfo(ttdid_str, bctype, fcsj, xldir, isfb);
  272 + String ttdid_str = content == null ? "" : content[0]; // 时刻表明细id
  273 + String fcsj = content == null ? "" : content[1]; // 发车时间
  274 + String jhlc = content == null ? "" : content[2]; // 计划里程
  275 + String fzdname = content == null ? "" : content[3]; // 发车站点名称
  276 + String bctype = content == null ? "" : content[4]; // 班次类型
  277 + String xldir = content == null ? "" : content[5]; // 线路上下行
  278 + String isfb = content == null ? "" : content[6]; // 是否分班
276 279  
277   - if (StringUtils.isNotEmpty(fzdname))
278   - headarrays[(int)(c / 7) + 1] = fzdname;
279   - fcInfos.add(fcInfo);
  280 + FcInfo fcInfo = new FcInfo(ttdid_str, bctype, fcsj, xldir, isfb);
280 281  
281   - c += 7;
  282 + if (StringUtils.isNotEmpty(fzdname))
  283 + headarrays[c + 1] = fzdname;
  284 + fcInfos.add(fcInfo);
282 285  
283   - // 计算班次里程
284   - if (StringUtils.isNotEmpty(jhlc)) {
285   - if ("in".equals(bctype) || "out".equals(bctype)) {
286   - bc_ks += 1;
287   - lc_ks += Double.valueOf(jhlc);
288 286  
289   - all_bc += 1;
290   - all_lc_ks += Double.valueOf(jhlc);
  287 + // 计算班次里程
  288 + if (StringUtils.isNotEmpty(jhlc)) {
  289 + if ("in".equals(bctype) || "out".equals(bctype)) {
  290 + bc_ks += 1;
  291 + lc_ks += Double.valueOf(jhlc);
291 292  
292   - } else {
293   - bc_yy += 1;
294   - lc_yy += Double.valueOf(jhlc);
  293 + all_bc += 1;
  294 + all_lc_ks += Double.valueOf(jhlc);
  295 +
  296 + } else {
  297 + bc_yy += 1;
  298 + lc_yy += Double.valueOf(jhlc);
295 299  
296   - all_bc += 1;
297   - all_lc_yy += Double.valueOf(jhlc);
  300 + all_bc += 1;
  301 + all_lc_yy += Double.valueOf(jhlc);
  302 + }
298 303 }
  304 +
  305 + } catch (Exception exp) {
  306 + LOGGER.info("{}行,{}数据有问题,数据={},异常message={}", r, c, content_str, exp);
  307 + break;
299 308 }
300 309  
301 310 }
... ...
src/main/resources/datatools/ktrs/ttinfodetailoutputforedit.ktr
1   -<?xml version="1.0" encoding="UTF-8"?>
2   -<transformation>
3   - <info>
4   - <name>ttinfodetailoutputforedit</name>
5   - <description/>
6   - <extended_description/>
7   - <trans_version/>
8   - <trans_type>Normal</trans_type>
9   - <trans_status>0</trans_status>
10   - <directory>&#x2f;</directory>
11   - <parameters>
12   - <parameter>
13   - <name>tempfilepath</name>
14   - <default_value>&#x2f;Users&#x2f;xu&#x2f;resource&#x2f;project_code&#x2f;runtime_temp&#x2f;bsth_control_u_d_files&#x2f;temp&#x2f;test</default_value>
15   - <description>&#x9ed8;&#x8ba4;&#x8f93;&#x51fa;&#x7684;&#x6587;&#x4ef6;&#x8def;&#x5f84;&#x540d;</description>
16   - </parameter>
17   - <parameter>
18   - <name>ttid</name>
19   - <default_value>63</default_value>
20   - <description>&#x65f6;&#x523b;&#x8868;id</description>
21   - </parameter>
22   - <parameter>
23   - <name>xlid</name>
24   - <default_value>63017</default_value>
25   - <description>&#x7ebf;&#x8def;id</description>
26   - </parameter>
27   - </parameters>
28   - <log>
29   -<trans-log-table><connection/>
30   -<schema/>
31   -<table/>
32   -<size_limit_lines/>
33   -<interval/>
34   -<timeout_days/>
35   -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STATUS</id><enabled>Y</enabled><name>STATUS</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name><subject/></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name><subject/></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name><subject/></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name><subject/></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name><subject/></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name><subject/></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>STARTDATE</id><enabled>Y</enabled><name>STARTDATE</name></field><field><id>ENDDATE</id><enabled>Y</enabled><name>ENDDATE</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>DEPDATE</id><enabled>Y</enabled><name>DEPDATE</name></field><field><id>REPLAYDATE</id><enabled>Y</enabled><name>REPLAYDATE</name></field><field><id>LOG_FIELD</id><enabled>Y</enabled><name>LOG_FIELD</name></field><field><id>EXECUTING_SERVER</id><enabled>N</enabled><name>EXECUTING_SERVER</name></field><field><id>EXECUTING_USER</id><enabled>N</enabled><name>EXECUTING_USER</name></field><field><id>CLIENT</id><enabled>N</enabled><name>CLIENT</name></field></trans-log-table>
36   -<perf-log-table><connection/>
37   -<schema/>
38   -<table/>
39   -<interval/>
40   -<timeout_days/>
41   -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>SEQ_NR</id><enabled>Y</enabled><name>SEQ_NR</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>INPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>INPUT_BUFFER_ROWS</name></field><field><id>OUTPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>OUTPUT_BUFFER_ROWS</name></field></perf-log-table>
42   -<channel-log-table><connection/>
43   -<schema/>
44   -<table/>
45   -<timeout_days/>
46   -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>LOGGING_OBJECT_TYPE</id><enabled>Y</enabled><name>LOGGING_OBJECT_TYPE</name></field><field><id>OBJECT_NAME</id><enabled>Y</enabled><name>OBJECT_NAME</name></field><field><id>OBJECT_COPY</id><enabled>Y</enabled><name>OBJECT_COPY</name></field><field><id>REPOSITORY_DIRECTORY</id><enabled>Y</enabled><name>REPOSITORY_DIRECTORY</name></field><field><id>FILENAME</id><enabled>Y</enabled><name>FILENAME</name></field><field><id>OBJECT_ID</id><enabled>Y</enabled><name>OBJECT_ID</name></field><field><id>OBJECT_REVISION</id><enabled>Y</enabled><name>OBJECT_REVISION</name></field><field><id>PARENT_CHANNEL_ID</id><enabled>Y</enabled><name>PARENT_CHANNEL_ID</name></field><field><id>ROOT_CHANNEL_ID</id><enabled>Y</enabled><name>ROOT_CHANNEL_ID</name></field></channel-log-table>
47   -<step-log-table><connection/>
48   -<schema/>
49   -<table/>
50   -<timeout_days/>
51   -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>LOG_FIELD</id><enabled>N</enabled><name>LOG_FIELD</name></field></step-log-table>
52   -<metrics-log-table><connection/>
53   -<schema/>
54   -<table/>
55   -<timeout_days/>
56   -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>METRICS_DATE</id><enabled>Y</enabled><name>METRICS_DATE</name></field><field><id>METRICS_CODE</id><enabled>Y</enabled><name>METRICS_CODE</name></field><field><id>METRICS_DESCRIPTION</id><enabled>Y</enabled><name>METRICS_DESCRIPTION</name></field><field><id>METRICS_SUBJECT</id><enabled>Y</enabled><name>METRICS_SUBJECT</name></field><field><id>METRICS_TYPE</id><enabled>Y</enabled><name>METRICS_TYPE</name></field><field><id>METRICS_VALUE</id><enabled>Y</enabled><name>METRICS_VALUE</name></field></metrics-log-table>
57   - </log>
58   - <maxdate>
59   - <connection/>
60   - <table/>
61   - <field/>
62   - <offset>0.0</offset>
63   - <maxdiff>0.0</maxdiff>
64   - </maxdate>
65   - <size_rowset>10000</size_rowset>
66   - <sleep_time_empty>50</sleep_time_empty>
67   - <sleep_time_full>50</sleep_time_full>
68   - <unique_connections>N</unique_connections>
69   - <feedback_shown>Y</feedback_shown>
70   - <feedback_size>50000</feedback_size>
71   - <using_thread_priorities>Y</using_thread_priorities>
72   - <shared_objects_file/>
73   - <capture_step_performance>N</capture_step_performance>
74   - <step_performance_capturing_delay>1000</step_performance_capturing_delay>
75   - <step_performance_capturing_size_limit>100</step_performance_capturing_size_limit>
76   - <dependencies>
77   - </dependencies>
78   - <partitionschemas>
79   - </partitionschemas>
80   - <slaveservers>
81   - </slaveservers>
82   - <clusterschemas>
83   - </clusterschemas>
84   - <created_user>-</created_user>
85   - <created_date>2016&#x2f;07&#x2f;11 21&#x3a;45&#x3a;05.041</created_date>
86   - <modified_user>-</modified_user>
87   - <modified_date>2016&#x2f;07&#x2f;11 21&#x3a;45&#x3a;05.041</modified_date>
88   - <key_for_session_key>H4sIAAAAAAAAAAMAAAAAAAAAAAA&#x3d;</key_for_session_key>
89   - <is_key_private>N</is_key_private>
90   - </info>
91   - <notepads>
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>135</xloc>
95   - <yloc>299</yloc>
96   - <width>333</width>
97   - <heigth>90</heigth>
98   - <fontname>YaHei Consolas Hybrid</fontname>
99   - <fontsize>12</fontsize>
100   - <fontbold>N</fontbold>
101   - <fontitalic>N</fontitalic>
102   - <fontcolorred>0</fontcolorred>
103   - <fontcolorgreen>0</fontcolorgreen>
104   - <fontcolorblue>0</fontcolorblue>
105   - <backgroundcolorred>255</backgroundcolorred>
106   - <backgroundcolorgreen>205</backgroundcolorgreen>
107   - <backgroundcolorblue>112</backgroundcolorblue>
108   - <bordercolorred>100</bordercolorred>
109   - <bordercolorgreen>100</bordercolorgreen>
110   - <bordercolorblue>100</bordercolorblue>
111   - <drawshadow>Y</drawshadow>
112   - </notepad>
113   - </notepads>
114   - <connection>
115   - <name>bus_control_variable</name>
116   - <server>&#x24;&#x7b;v_db_ip&#x7d;</server>
117   - <type>MYSQL</type>
118   - <access>Native</access>
119   - <database>&#x24;&#x7b;v_db_dname&#x7d;</database>
120   - <port>3306</port>
121   - <username>&#x24;&#x7b;v_db_uname&#x7d;</username>
122   - <password>&#x24;&#x7b;v_db_pwd&#x7d;</password>
123   - <servername/>
124   - <data_tablespace/>
125   - <index_tablespace/>
126   - <attributes>
127   - <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>
128   - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
129   - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
130   - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
131   - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
132   - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
133   - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
134   - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
135   - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
136   - <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>
137   - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
138   - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
139   - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
140   - </attributes>
141   - </connection>
142   - <connection>
143   - <name>bus_control_&#x516c;&#x53f8;_201</name>
144   - <server>localhost</server>
145   - <type>MYSQL</type>
146   - <access>Native</access>
147   - <database>control</database>
148   - <port>3306</port>
149   - <username>root</username>
150   - <password>Encrypted </password>
151   - <servername/>
152   - <data_tablespace/>
153   - <index_tablespace/>
154   - <attributes>
155   - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
156   - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
157   - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
158   - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
159   - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
160   - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
161   - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
162   - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
163   - <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>
164   - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
165   - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
166   - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
167   - </attributes>
168   - </connection>
169   - <connection>
170   - <name>bus_control_&#x672c;&#x673a;</name>
171   - <server>localhost</server>
172   - <type>MYSQL</type>
173   - <access>Native</access>
174   - <database>control</database>
175   - <port>3306</port>
176   - <username>root</username>
177   - <password>Encrypted </password>
178   - <servername/>
179   - <data_tablespace/>
180   - <index_tablespace/>
181   - <attributes>
182   - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
183   - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
184   - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
185   - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
186   - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
187   - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
188   - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
189   - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
190   - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
191   - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
192   - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
193   - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
194   - </attributes>
195   - </connection>
196   - <connection>
197   - <name>xlab_mysql_youle</name>
198   - <server>101.231.124.8</server>
199   - <type>MYSQL</type>
200   - <access>Native</access>
201   - <database>xlab_youle</database>
202   - <port>45687</port>
203   - <username>xlab-youle</username>
204   - <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password>
205   - <servername/>
206   - <data_tablespace/>
207   - <index_tablespace/>
208   - <attributes>
209   - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
210   - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
211   - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
212   - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
213   - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
214   - <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute>
215   - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
216   - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
217   - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
218   - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>
219   - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>
220   - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
221   - </attributes>
222   - </connection>
223   - <connection>
224   - <name>xlab_mysql_youle&#xff08;&#x672c;&#x673a;&#xff09;</name>
225   - <server>localhost</server>
226   - <type>MYSQL</type>
227   - <access>Native</access>
228   - <database>xlab_youle</database>
229   - <port>3306</port>
230   - <username>root</username>
231   - <password>Encrypted </password>
232   - <servername/>
233   - <data_tablespace/>
234   - <index_tablespace/>
235   - <attributes>
236   - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
237   - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
238   - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
239   - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
240   - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
241   - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
242   - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
243   - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
244   - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
245   - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>
246   - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>
247   - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
248   - </attributes>
249   - </connection>
250   - <connection>
251   - <name>xlab_youle</name>
252   - <server/>
253   - <type>MYSQL</type>
254   - <access>JNDI</access>
255   - <database>xlab_youle</database>
256   - <port>1521</port>
257   - <username/>
258   - <password>Encrypted </password>
259   - <servername/>
260   - <data_tablespace/>
261   - <index_tablespace/>
262   - <attributes>
263   - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
264   - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
265   - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
266   - <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
267   - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
268   - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
269   - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
270   - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
271   - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
272   - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
273   - </attributes>
274   - </connection>
275   - <order>
276   - <hop> <from>&#x8868;&#x8f93;&#x5165;</from><to>&#x8fc7;&#x6ee4;&#x8bb0;&#x5f55;</to><enabled>Y</enabled> </hop>
277   - <hop> <from>&#x8fc7;&#x6ee4;&#x8bb0;&#x5f55;</from><to>&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x7ad9;&#x70b9;&#x67e5;&#x8be2;&#x7528;&#x6570;&#x636e;</to><enabled>Y</enabled> </hop>
278   - <hop> <from>&#x8fc7;&#x6ee4;&#x8bb0;&#x5f55;</from><to>&#x8fdb;&#x573a;&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x67e5;&#x8be2;&#x7528;&#x7684;&#x6570;&#x636e;</to><enabled>Y</enabled> </hop>
279   - <hop> <from>&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x7ad9;&#x70b9;&#x67e5;&#x8be2;&#x7528;&#x6570;&#x636e;</from><to>&#x67e5;&#x627e;&#x8d77;&#x70b9;&#x7ad9;&#x540d;&#x79f0;</to><enabled>Y</enabled> </hop>
280   - <hop> <from>&#x67e5;&#x627e;&#x8d77;&#x70b9;&#x7ad9;&#x540d;&#x79f0;</from><to>&#x67e5;&#x627e;&#x7ec8;&#x70b9;&#x7ad9;&#x540d;&#x79f0;</to><enabled>Y</enabled> </hop>
281   - <hop> <from>&#x67e5;&#x627e;&#x7ec8;&#x70b9;&#x7ad9;&#x540d;&#x79f0;</from><to>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</to><enabled>Y</enabled> </hop>
282   - <hop> <from>&#x8fdb;&#x573a;&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x67e5;&#x8be2;&#x7528;&#x7684;&#x6570;&#x636e;</from><to>&#x5b57;&#x6bb5;&#x9009;&#x62e9; 2</to><enabled>Y</enabled> </hop>
283   - <hop> <from>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</from><to>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</to><enabled>Y</enabled> </hop>
284   - <hop> <from>&#x5b57;&#x6bb5;&#x9009;&#x62e9; 2</from><to>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</to><enabled>Y</enabled> </hop>
285   - <hop> <from>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</from><to>&#x8ba1;&#x7b97;&#x53d1;&#x8f66;&#x7ad9;&#x540d;</to><enabled>Y</enabled> </hop>
286   - <hop> <from>&#x8ba1;&#x7b97;&#x53d1;&#x8f66;&#x7ad9;&#x540d;</from><to>&#x5217;&#x8f6c;&#x884c;</to><enabled>Y</enabled> </hop>
287   - <hop> <from>&#x5217;&#x8f6c;&#x884c;</from><to>&#x53bb;&#x9664;&#x5b57;&#x6bb5;</to><enabled>Y</enabled> </hop>
288   - <hop> <from>&#x53bb;&#x9664;&#x5b57;&#x6bb5;</from><to>Excel&#x8f93;&#x51fa;</to><enabled>Y</enabled> </hop>
289   - <hop> <from>&#x83b7;&#x53d6;&#x53d8;&#x91cf;</from><to>&#x8868;&#x8f93;&#x5165;</to><enabled>Y</enabled> </hop>
290   - </order>
291   - <step>
292   - <name>Excel&#x8f93;&#x51fa;</name>
293   - <type>ExcelOutput</type>
294   - <description/>
295   - <distribute>Y</distribute>
296   - <custom_distribution/>
297   - <copies>1</copies>
298   - <partitioning>
299   - <method>none</method>
300   - <schema_name/>
301   - </partitioning>
302   - <header>Y</header>
303   - <footer>N</footer>
304   - <encoding/>
305   - <append>N</append>
306   - <add_to_result_filenames>Y</add_to_result_filenames>
307   - <file>
308   - <name>&#x24;&#x7b;tempfilepath&#x7d;</name>
309   - <extention>xls</extention>
310   - <do_not_open_newfile_init>N</do_not_open_newfile_init>
311   - <create_parent_folder>N</create_parent_folder>
312   - <split>N</split>
313   - <add_date>N</add_date>
314   - <add_time>N</add_time>
315   - <SpecifyFormat>N</SpecifyFormat>
316   - <date_time_format/>
317   - <sheetname>Sheet1</sheetname>
318   - <autosizecolums>N</autosizecolums>
319   - <nullisblank>N</nullisblank>
320   - <protect_sheet>N</protect_sheet>
321   - <password>Encrypted </password>
322   - <splitevery>0</splitevery>
323   - <usetempfiles>N</usetempfiles>
324   - <tempdirectory/>
325   - </file>
326   - <template>
327   - <enabled>N</enabled>
328   - <append>N</append>
329   - <filename>template.xls</filename>
330   - </template>
331   - <fields>
332   - <field>
333   - <name>lp</name>
334   - <type>String</type>
335   - <format/>
336   - </field>
337   - <field>
338   - <name>fcno1_id</name>
339   - <type>String</type>
340   - <format/>
341   - </field>
342   - <field>
343   - <name>fcno1_fcsj</name>
344   - <type>String</type>
345   - <format/>
346   - </field>
347   - <field>
348   - <name>fcno1_jhlc</name>
349   - <type>None</type>
350   - <format/>
351   - </field>
352   - <field>
353   - <name>fcno1_zdname</name>
354   - <type>String</type>
355   - <format/>
356   - </field>
357   - <field>
358   - <name>fcno1_bctype</name>
359   - <type>String</type>
360   - <format/>
361   - </field>
362   - <field>
363   - <name>fcno1_xldir</name>
364   - <type>String</type>
365   - <format/>
366   - </field>
367   - <field>
368   - <name>fcno1_isfb</name>
369   - <type>String</type>
370   - <format/>
371   - </field>
372   - <field>
373   - <name>fcno2_id</name>
374   - <type>String</type>
375   - <format/>
376   - </field>
377   - <field>
378   - <name>fcno2_fcsj</name>
379   - <type>String</type>
380   - <format/>
381   - </field>
382   - <field>
383   - <name>fcno2_jhlc</name>
384   - <type>None</type>
385   - <format/>
386   - </field>
387   - <field>
388   - <name>fcno2_zdname</name>
389   - <type>String</type>
390   - <format/>
391   - </field>
392   - <field>
393   - <name>fcno2_bctype</name>
394   - <type>String</type>
395   - <format/>
396   - </field>
397   - <field>
398   - <name>fcno2_xldir</name>
399   - <type>String</type>
400   - <format/>
401   - </field>
402   - <field>
403   - <name>fcno2_isfb</name>
404   - <type>String</type>
405   - <format/>
406   - </field>
407   - <field>
408   - <name>fcno3_id</name>
409   - <type>String</type>
410   - <format/>
411   - </field>
412   - <field>
413   - <name>fcno3_fcsj</name>
414   - <type>String</type>
415   - <format/>
416   - </field>
417   - <field>
418   - <name>fcno3_jhlc</name>
419   - <type>None</type>
420   - <format/>
421   - </field>
422   - <field>
423   - <name>fcno3_zdname</name>
424   - <type>String</type>
425   - <format/>
426   - </field>
427   - <field>
428   - <name>fcno3_bctype</name>
429   - <type>String</type>
430   - <format/>
431   - </field>
432   - <field>
433   - <name>fcno3_xldir</name>
434   - <type>String</type>
435   - <format/>
436   - </field>
437   - <field>
438   - <name>fcno3_isfb</name>
439   - <type>String</type>
440   - <format/>
441   - </field>
442   - <field>
443   - <name>fcno4_id</name>
444   - <type>String</type>
445   - <format/>
446   - </field>
447   - <field>
448   - <name>fcno4_fcsj</name>
449   - <type>String</type>
450   - <format/>
451   - </field>
452   - <field>
453   - <name>fcno5_jhlc</name>
454   - <type>None</type>
455   - <format/>
456   - </field>
457   - <field>
458   - <name>fcno4_zdname</name>
459   - <type>String</type>
460   - <format/>
461   - </field>
462   - <field>
463   - <name>fcno4_bctype</name>
464   - <type>String</type>
465   - <format/>
466   - </field>
467   - <field>
468   - <name>fcno4_xldir</name>
469   - <type>String</type>
470   - <format/>
471   - </field>
472   - <field>
473   - <name>fcno4_isfb</name>
474   - <type>String</type>
475   - <format/>
476   - </field>
477   - <field>
478   - <name>fcno5_id</name>
479   - <type>String</type>
480   - <format/>
481   - </field>
482   - <field>
483   - <name>fcno5_fcsj</name>
484   - <type>String</type>
485   - <format/>
486   - </field>
487   - <field>
488   - <name>fcno5_jhlc_1</name>
489   - <type>None</type>
490   - <format/>
491   - </field>
492   - <field>
493   - <name>fcno5_zdname</name>
494   - <type>String</type>
495   - <format/>
496   - </field>
497   - <field>
498   - <name>fcno5_bctype</name>
499   - <type>String</type>
500   - <format/>
501   - </field>
502   - <field>
503   - <name>fcno5_xldir</name>
504   - <type>String</type>
505   - <format/>
506   - </field>
507   - <field>
508   - <name>fcno5_isfb</name>
509   - <type>String</type>
510   - <format/>
511   - </field>
512   - <field>
513   - <name>fcno6_id</name>
514   - <type>String</type>
515   - <format/>
516   - </field>
517   - <field>
518   - <name>fcno6_fcsj</name>
519   - <type>String</type>
520   - <format/>
521   - </field>
522   - <field>
523   - <name>fcno6_jhlc</name>
524   - <type>None</type>
525   - <format/>
526   - </field>
527   - <field>
528   - <name>fcno6_zdname</name>
529   - <type>String</type>
530   - <format/>
531   - </field>
532   - <field>
533   - <name>fcno6_bctype</name>
534   - <type>String</type>
535   - <format/>
536   - </field>
537   - <field>
538   - <name>fcno6_xldir</name>
539   - <type>String</type>
540   - <format/>
541   - </field>
542   - <field>
543   - <name>fcno6_isfb</name>
544   - <type>String</type>
545   - <format/>
546   - </field>
547   - <field>
548   - <name>fcno7_id</name>
549   - <type>String</type>
550   - <format/>
551   - </field>
552   - <field>
553   - <name>fcno7_fcsj</name>
554   - <type>String</type>
555   - <format/>
556   - </field>
557   - <field>
558   - <name>fcno7_jhlc</name>
559   - <type>None</type>
560   - <format/>
561   - </field>
562   - <field>
563   - <name>fcno7_zdname</name>
564   - <type>String</type>
565   - <format/>
566   - </field>
567   - <field>
568   - <name>fcno7_bctype</name>
569   - <type>String</type>
570   - <format/>
571   - </field>
572   - <field>
573   - <name>fcno7_xldir</name>
574   - <type>String</type>
575   - <format/>
576   - </field>
577   - <field>
578   - <name>fcno7_isfb</name>
579   - <type>String</type>
580   - <format/>
581   - </field>
582   - <field>
583   - <name>fcno8_id</name>
584   - <type>String</type>
585   - <format/>
586   - </field>
587   - <field>
588   - <name>fcno8_fcsj</name>
589   - <type>String</type>
590   - <format/>
591   - </field>
592   - <field>
593   - <name>fcno8_jhlc</name>
594   - <type>None</type>
595   - <format/>
596   - </field>
597   - <field>
598   - <name>fcno8_zdname</name>
599   - <type>String</type>
600   - <format/>
601   - </field>
602   - <field>
603   - <name>fcno8_bctype</name>
604   - <type>String</type>
605   - <format/>
606   - </field>
607   - <field>
608   - <name>fcno8_xldir</name>
609   - <type>String</type>
610   - <format/>
611   - </field>
612   - <field>
613   - <name>fcno8_isfb</name>
614   - <type>String</type>
615   - <format/>
616   - </field>
617   - <field>
618   - <name>fcno9_id</name>
619   - <type>String</type>
620   - <format/>
621   - </field>
622   - <field>
623   - <name>fcno9_fcsj</name>
624   - <type>String</type>
625   - <format/>
626   - </field>
627   - <field>
628   - <name>fcno9_jhlc</name>
629   - <type>None</type>
630   - <format/>
631   - </field>
632   - <field>
633   - <name>fcno9_zdname</name>
634   - <type>String</type>
635   - <format/>
636   - </field>
637   - <field>
638   - <name>fcno9_bctype</name>
639   - <type>String</type>
640   - <format/>
641   - </field>
642   - <field>
643   - <name>fcno9_xldir</name>
644   - <type>String</type>
645   - <format/>
646   - </field>
647   - <field>
648   - <name>fcno9_isfb</name>
649   - <type>String</type>
650   - <format/>
651   - </field>
652   - <field>
653   - <name>fcno10_id</name>
654   - <type>String</type>
655   - <format/>
656   - </field>
657   - <field>
658   - <name>fcno10_fcsj</name>
659   - <type>String</type>
660   - <format/>
661   - </field>
662   - <field>
663   - <name>fcno10_jhlc</name>
664   - <type>None</type>
665   - <format/>
666   - </field>
667   - <field>
668   - <name>fcno10_zdname</name>
669   - <type>String</type>
670   - <format/>
671   - </field>
672   - <field>
673   - <name>fcno10_bctype</name>
674   - <type>String</type>
675   - <format/>
676   - </field>
677   - <field>
678   - <name>fcno10_xldir</name>
679   - <type>String</type>
680   - <format/>
681   - </field>
682   - <field>
683   - <name>fcno10_isfb</name>
684   - <type>String</type>
685   - <format/>
686   - </field>
687   - <field>
688   - <name>fcno11_id</name>
689   - <type>String</type>
690   - <format/>
691   - </field>
692   - <field>
693   - <name>fcno11_fcsj</name>
694   - <type>String</type>
695   - <format/>
696   - </field>
697   - <field>
698   - <name>fcno11_jhlc</name>
699   - <type>None</type>
700   - <format/>
701   - </field>
702   - <field>
703   - <name>fcno11_zdname</name>
704   - <type>String</type>
705   - <format/>
706   - </field>
707   - <field>
708   - <name>fcno11_bctype</name>
709   - <type>String</type>
710   - <format/>
711   - </field>
712   - <field>
713   - <name>fcno11_xldir</name>
714   - <type>String</type>
715   - <format/>
716   - </field>
717   - <field>
718   - <name>fcno11_isfb</name>
719   - <type>String</type>
720   - <format/>
721   - </field>
722   - <field>
723   - <name>fcno12_id</name>
724   - <type>String</type>
725   - <format/>
726   - </field>
727   - <field>
728   - <name>fcno12_fcsj</name>
729   - <type>String</type>
730   - <format/>
731   - </field>
732   - <field>
733   - <name>fcno12_jhlc</name>
734   - <type>None</type>
735   - <format/>
736   - </field>
737   - <field>
738   - <name>fcno12_zdname</name>
739   - <type>String</type>
740   - <format/>
741   - </field>
742   - <field>
743   - <name>fcno12_bctype</name>
744   - <type>String</type>
745   - <format/>
746   - </field>
747   - <field>
748   - <name>fcno12_xldir</name>
749   - <type>String</type>
750   - <format/>
751   - </field>
752   - <field>
753   - <name>fcno12_isfb</name>
754   - <type>String</type>
755   - <format/>
756   - </field>
757   - <field>
758   - <name>fcno13_id</name>
759   - <type>String</type>
760   - <format/>
761   - </field>
762   - <field>
763   - <name>fcno13_fcsj</name>
764   - <type>String</type>
765   - <format/>
766   - </field>
767   - <field>
768   - <name>fcno13_jhlc</name>
769   - <type>None</type>
770   - <format/>
771   - </field>
772   - <field>
773   - <name>fcno13_zdname</name>
774   - <type>String</type>
775   - <format/>
776   - </field>
777   - <field>
778   - <name>fcno13_bctype</name>
779   - <type>String</type>
780   - <format/>
781   - </field>
782   - <field>
783   - <name>fcno13_xldir</name>
784   - <type>String</type>
785   - <format/>
786   - </field>
787   - <field>
788   - <name>fcno13_isfb</name>
789   - <type>String</type>
790   - <format/>
791   - </field>
792   - <field>
793   - <name>fcno14_id</name>
794   - <type>String</type>
795   - <format/>
796   - </field>
797   - <field>
798   - <name>fcno14_fcsj</name>
799   - <type>String</type>
800   - <format/>
801   - </field>
802   - <field>
803   - <name>fcno14_jhlc</name>
804   - <type>None</type>
805   - <format/>
806   - </field>
807   - <field>
808   - <name>fcno14_zdname</name>
809   - <type>String</type>
810   - <format/>
811   - </field>
812   - <field>
813   - <name>fcno14_bctype</name>
814   - <type>String</type>
815   - <format/>
816   - </field>
817   - <field>
818   - <name>fcno14_xldir</name>
819   - <type>String</type>
820   - <format/>
821   - </field>
822   - <field>
823   - <name>fcno14_isfb</name>
824   - <type>String</type>
825   - <format/>
826   - </field>
827   - <field>
828   - <name>fcno15_id</name>
829   - <type>String</type>
830   - <format/>
831   - </field>
832   - <field>
833   - <name>fcno15_fcsj</name>
834   - <type>String</type>
835   - <format/>
836   - </field>
837   - <field>
838   - <name>fcno15_jhlc</name>
839   - <type>None</type>
840   - <format/>
841   - </field>
842   - <field>
843   - <name>fcno15_zdname</name>
844   - <type>String</type>
845   - <format/>
846   - </field>
847   - <field>
848   - <name>fcno15_bctype</name>
849   - <type>String</type>
850   - <format/>
851   - </field>
852   - <field>
853   - <name>fcno15_xldir</name>
854   - <type>String</type>
855   - <format/>
856   - </field>
857   - <field>
858   - <name>fcno15_isfb</name>
859   - <type>String</type>
860   - <format/>
861   - </field>
862   - <field>
863   - <name>fcno16_id</name>
864   - <type>String</type>
865   - <format/>
866   - </field>
867   - <field>
868   - <name>fcno16_fcsj</name>
869   - <type>String</type>
870   - <format/>
871   - </field>
872   - <field>
873   - <name>fcno16_jhlc</name>
874   - <type>None</type>
875   - <format/>
876   - </field>
877   - <field>
878   - <name>fcno16_zdname</name>
879   - <type>String</type>
880   - <format/>
881   - </field>
882   - <field>
883   - <name>fcno16_bctype</name>
884   - <type>String</type>
885   - <format/>
886   - </field>
887   - <field>
888   - <name>fcno16_xldir</name>
889   - <type>String</type>
890   - <format/>
891   - </field>
892   - <field>
893   - <name>fcno16_isfb</name>
894   - <type>String</type>
895   - <format/>
896   - </field>
897   - <field>
898   - <name>fcno17_id</name>
899   - <type>String</type>
900   - <format/>
901   - </field>
902   - <field>
903   - <name>fcno17_fcsj</name>
904   - <type>String</type>
905   - <format/>
906   - </field>
907   - <field>
908   - <name>fcno17_jhlc</name>
909   - <type>None</type>
910   - <format/>
911   - </field>
912   - <field>
913   - <name>fcno17_zdname</name>
914   - <type>String</type>
915   - <format/>
916   - </field>
917   - <field>
918   - <name>fcno17_bctype</name>
919   - <type>String</type>
920   - <format/>
921   - </field>
922   - <field>
923   - <name>fcno17_xldir</name>
924   - <type>String</type>
925   - <format/>
926   - </field>
927   - <field>
928   - <name>fcno17_isfb</name>
929   - <type>String</type>
930   - <format/>
931   - </field>
932   - <field>
933   - <name>fcno18_id</name>
934   - <type>String</type>
935   - <format/>
936   - </field>
937   - <field>
938   - <name>fcno18_fcsj</name>
939   - <type>String</type>
940   - <format/>
941   - </field>
942   - <field>
943   - <name>fcno18_jhlc</name>
944   - <type>None</type>
945   - <format/>
946   - </field>
947   - <field>
948   - <name>fcno18_zdname</name>
949   - <type>String</type>
950   - <format/>
951   - </field>
952   - <field>
953   - <name>fcno18_bctype</name>
954   - <type>String</type>
955   - <format/>
956   - </field>
957   - <field>
958   - <name>fcno18_xldir</name>
959   - <type>String</type>
960   - <format/>
961   - </field>
962   - <field>
963   - <name>fcno18_isfb</name>
964   - <type>String</type>
965   - <format/>
966   - </field>
967   - <field>
968   - <name>fcno19_id</name>
969   - <type>String</type>
970   - <format/>
971   - </field>
972   - <field>
973   - <name>fcno19_fcsj</name>
974   - <type>String</type>
975   - <format/>
976   - </field>
977   - <field>
978   - <name>fcno19_jhlc</name>
979   - <type>None</type>
980   - <format/>
981   - </field>
982   - <field>
983   - <name>fcno19_zdname</name>
984   - <type>String</type>
985   - <format/>
986   - </field>
987   - <field>
988   - <name>fcno19_bctype</name>
989   - <type>String</type>
990   - <format/>
991   - </field>
992   - <field>
993   - <name>fcno19_xldir</name>
994   - <type>String</type>
995   - <format/>
996   - </field>
997   - <field>
998   - <name>fcno19_isfb</name>
999   - <type>String</type>
1000   - <format/>
1001   - </field>
1002   - <field>
1003   - <name>fcno20_id</name>
1004   - <type>String</type>
1005   - <format/>
1006   - </field>
1007   - <field>
1008   - <name>fcno20_fcsj</name>
1009   - <type>String</type>
1010   - <format/>
1011   - </field>
1012   - <field>
1013   - <name>fcno20_jhlc</name>
1014   - <type>None</type>
1015   - <format/>
1016   - </field>
1017   - <field>
1018   - <name>fcno20_zdname</name>
1019   - <type>String</type>
1020   - <format/>
1021   - </field>
1022   - <field>
1023   - <name>fcno20_bctype</name>
1024   - <type>String</type>
1025   - <format/>
1026   - </field>
1027   - <field>
1028   - <name>fcno20_xldir</name>
1029   - <type>String</type>
1030   - <format/>
1031   - </field>
1032   - <field>
1033   - <name>fcno20_isfb</name>
1034   - <type>String</type>
1035   - <format/>
1036   - </field>
1037   - <field>
1038   - <name>fcno21_id</name>
1039   - <type>String</type>
1040   - <format/>
1041   - </field>
1042   - <field>
1043   - <name>fcno21_fcsj</name>
1044   - <type>String</type>
1045   - <format/>
1046   - </field>
1047   - <field>
1048   - <name>fcno21_jhlc</name>
1049   - <type>None</type>
1050   - <format/>
1051   - </field>
1052   - <field>
1053   - <name>fcno21_zdname</name>
1054   - <type>String</type>
1055   - <format/>
1056   - </field>
1057   - <field>
1058   - <name>fcno21_bctype</name>
1059   - <type>String</type>
1060   - <format/>
1061   - </field>
1062   - <field>
1063   - <name>fcno21_xldir</name>
1064   - <type>String</type>
1065   - <format/>
1066   - </field>
1067   - <field>
1068   - <name>fcno21_isfb</name>
1069   - <type>String</type>
1070   - <format/>
1071   - </field>
1072   - <field>
1073   - <name>fcno22_id</name>
1074   - <type>String</type>
1075   - <format/>
1076   - </field>
1077   - <field>
1078   - <name>fcno22_fcsj</name>
1079   - <type>String</type>
1080   - <format/>
1081   - </field>
1082   - <field>
1083   - <name>fcno22_jhlc</name>
1084   - <type>None</type>
1085   - <format/>
1086   - </field>
1087   - <field>
1088   - <name>fcno22_zdname</name>
1089   - <type>String</type>
1090   - <format/>
1091   - </field>
1092   - <field>
1093   - <name>fcno22_bctype</name>
1094   - <type>String</type>
1095   - <format/>
1096   - </field>
1097   - <field>
1098   - <name>fcno22_xldir</name>
1099   - <type>String</type>
1100   - <format/>
1101   - </field>
1102   - <field>
1103   - <name>fcno22_isfb</name>
1104   - <type>String</type>
1105   - <format/>
1106   - </field>
1107   - <field>
1108   - <name>fcno23_id</name>
1109   - <type>String</type>
1110   - <format/>
1111   - </field>
1112   - <field>
1113   - <name>fcno23_fcsj</name>
1114   - <type>String</type>
1115   - <format/>
1116   - </field>
1117   - <field>
1118   - <name>fcno23_jhlc</name>
1119   - <type>None</type>
1120   - <format/>
1121   - </field>
1122   - <field>
1123   - <name>fcno23_zdname</name>
1124   - <type>String</type>
1125   - <format/>
1126   - </field>
1127   - <field>
1128   - <name>fcno23_bctype</name>
1129   - <type>String</type>
1130   - <format/>
1131   - </field>
1132   - <field>
1133   - <name>fcno23_xldir</name>
1134   - <type>String</type>
1135   - <format/>
1136   - </field>
1137   - <field>
1138   - <name>fcno23_isfb</name>
1139   - <type>String</type>
1140   - <format/>
1141   - </field>
1142   - <field>
1143   - <name>fcno24_id</name>
1144   - <type>String</type>
1145   - <format/>
1146   - </field>
1147   - <field>
1148   - <name>fcno24_fcsj</name>
1149   - <type>String</type>
1150   - <format/>
1151   - </field>
1152   - <field>
1153   - <name>fcno24_jhlc</name>
1154   - <type>None</type>
1155   - <format/>
1156   - </field>
1157   - <field>
1158   - <name>fcno24_zdname</name>
1159   - <type>String</type>
1160   - <format/>
1161   - </field>
1162   - <field>
1163   - <name>fcno24_bctype</name>
1164   - <type>String</type>
1165   - <format/>
1166   - </field>
1167   - <field>
1168   - <name>fcno24_xldir</name>
1169   - <type>String</type>
1170   - <format/>
1171   - </field>
1172   - <field>
1173   - <name>fcno24_isfb</name>
1174   - <type>String</type>
1175   - <format/>
1176   - </field>
1177   - <field>
1178   - <name>fcno25_id</name>
1179   - <type>String</type>
1180   - <format/>
1181   - </field>
1182   - <field>
1183   - <name>fcno25_fcsj</name>
1184   - <type>String</type>
1185   - <format/>
1186   - </field>
1187   - <field>
1188   - <name>fcno25_jhlc</name>
1189   - <type>None</type>
1190   - <format/>
1191   - </field>
1192   - <field>
1193   - <name>fcno25_zdname</name>
1194   - <type>String</type>
1195   - <format/>
1196   - </field>
1197   - <field>
1198   - <name>fcno25_bctype</name>
1199   - <type>String</type>
1200   - <format/>
1201   - </field>
1202   - <field>
1203   - <name>fcno25_xldir</name>
1204   - <type>String</type>
1205   - <format/>
1206   - </field>
1207   - <field>
1208   - <name>fcno25_isfb</name>
1209   - <type>String</type>
1210   - <format/>
1211   - </field>
1212   - <field>
1213   - <name>fcno26_id</name>
1214   - <type>String</type>
1215   - <format/>
1216   - </field>
1217   - <field>
1218   - <name>fcno26_fcsj</name>
1219   - <type>String</type>
1220   - <format/>
1221   - </field>
1222   - <field>
1223   - <name>fcno26_jhlc</name>
1224   - <type>None</type>
1225   - <format/>
1226   - </field>
1227   - <field>
1228   - <name>fcno26_zdname</name>
1229   - <type>String</type>
1230   - <format/>
1231   - </field>
1232   - <field>
1233   - <name>fcno26_bctype</name>
1234   - <type>String</type>
1235   - <format/>
1236   - </field>
1237   - <field>
1238   - <name>fcno26_xldir</name>
1239   - <type>String</type>
1240   - <format/>
1241   - </field>
1242   - <field>
1243   - <name>fcno26_isfb</name>
1244   - <type>String</type>
1245   - <format/>
1246   - </field>
1247   - <field>
1248   - <name>fcno27_id</name>
1249   - <type>String</type>
1250   - <format/>
1251   - </field>
1252   - <field>
1253   - <name>fcno27_fcsj</name>
1254   - <type>String</type>
1255   - <format/>
1256   - </field>
1257   - <field>
1258   - <name>fcno27_jhlc</name>
1259   - <type>None</type>
1260   - <format/>
1261   - </field>
1262   - <field>
1263   - <name>fcno27_zdname</name>
1264   - <type>String</type>
1265   - <format/>
1266   - </field>
1267   - <field>
1268   - <name>fcno27_bctype</name>
1269   - <type>String</type>
1270   - <format/>
1271   - </field>
1272   - <field>
1273   - <name>fcno27_xldir</name>
1274   - <type>String</type>
1275   - <format/>
1276   - </field>
1277   - <field>
1278   - <name>fcno27_isfb</name>
1279   - <type>String</type>
1280   - <format/>
1281   - </field>
1282   - <field>
1283   - <name>fcno28_id</name>
1284   - <type>String</type>
1285   - <format/>
1286   - </field>
1287   - <field>
1288   - <name>fcno28_fcsj</name>
1289   - <type>String</type>
1290   - <format/>
1291   - </field>
1292   - <field>
1293   - <name>fcno28_jhlc</name>
1294   - <type>None</type>
1295   - <format/>
1296   - </field>
1297   - <field>
1298   - <name>fcno28_zdname</name>
1299   - <type>String</type>
1300   - <format/>
1301   - </field>
1302   - <field>
1303   - <name>fcno28_bctype</name>
1304   - <type>String</type>
1305   - <format/>
1306   - </field>
1307   - <field>
1308   - <name>fcno28_xldir</name>
1309   - <type>String</type>
1310   - <format/>
1311   - </field>
1312   - <field>
1313   - <name>fcno28_isfb</name>
1314   - <type>String</type>
1315   - <format/>
1316   - </field>
1317   - <field>
1318   - <name>fcno29_id</name>
1319   - <type>String</type>
1320   - <format/>
1321   - </field>
1322   - <field>
1323   - <name>fcno29_fcsj</name>
1324   - <type>String</type>
1325   - <format/>
1326   - </field>
1327   - <field>
1328   - <name>fcno29_jhlc</name>
1329   - <type>None</type>
1330   - <format/>
1331   - </field>
1332   - <field>
1333   - <name>fcno29_zdname</name>
1334   - <type>String</type>
1335   - <format/>
1336   - </field>
1337   - <field>
1338   - <name>fcno29_bctype</name>
1339   - <type>String</type>
1340   - <format/>
1341   - </field>
1342   - <field>
1343   - <name>fcno29_xldir</name>
1344   - <type>String</type>
1345   - <format/>
1346   - </field>
1347   - <field>
1348   - <name>fcno29_isfb</name>
1349   - <type>String</type>
1350   - <format/>
1351   - </field>
1352   - <field>
1353   - <name>fcno30_id</name>
1354   - <type>String</type>
1355   - <format/>
1356   - </field>
1357   - <field>
1358   - <name>fcno30_fcsj</name>
1359   - <type>String</type>
1360   - <format/>
1361   - </field>
1362   - <field>
1363   - <name>fcno30_jhlc</name>
1364   - <type>None</type>
1365   - <format/>
1366   - </field>
1367   - <field>
1368   - <name>fcno30_zdname</name>
1369   - <type>String</type>
1370   - <format/>
1371   - </field>
1372   - <field>
1373   - <name>fcno30_bctype</name>
1374   - <type>String</type>
1375   - <format/>
1376   - </field>
1377   - <field>
1378   - <name>fcno30_xldir</name>
1379   - <type>String</type>
1380   - <format/>
1381   - </field>
1382   - <field>
1383   - <name>fcno30_isfb</name>
1384   - <type>String</type>
1385   - <format/>
1386   - </field>
1387   - <field>
1388   - <name>fcno31_id</name>
1389   - <type>String</type>
1390   - <format/>
1391   - </field>
1392   - <field>
1393   - <name>fcno31_fcsj</name>
1394   - <type>String</type>
1395   - <format/>
1396   - </field>
1397   - <field>
1398   - <name>fcno31_jhlc</name>
1399   - <type>None</type>
1400   - <format/>
1401   - </field>
1402   - <field>
1403   - <name>fcno31_zdname</name>
1404   - <type>String</type>
1405   - <format/>
1406   - </field>
1407   - <field>
1408   - <name>fcno31_bctype</name>
1409   - <type>String</type>
1410   - <format/>
1411   - </field>
1412   - <field>
1413   - <name>fcno31_xldir</name>
1414   - <type>String</type>
1415   - <format/>
1416   - </field>
1417   - <field>
1418   - <name>fcno31_isfb</name>
1419   - <type>String</type>
1420   - <format/>
1421   - </field>
1422   - <field>
1423   - <name>fcno32_id</name>
1424   - <type>String</type>
1425   - <format/>
1426   - </field>
1427   - <field>
1428   - <name>fcno32_fcsj</name>
1429   - <type>String</type>
1430   - <format/>
1431   - </field>
1432   - <field>
1433   - <name>fcno32_jhlc</name>
1434   - <type>None</type>
1435   - <format/>
1436   - </field>
1437   - <field>
1438   - <name>fcno32_zdname</name>
1439   - <type>String</type>
1440   - <format/>
1441   - </field>
1442   - <field>
1443   - <name>fcno32_bctype</name>
1444   - <type>String</type>
1445   - <format/>
1446   - </field>
1447   - <field>
1448   - <name>fcno32_xldir</name>
1449   - <type>String</type>
1450   - <format/>
1451   - </field>
1452   - <field>
1453   - <name>fcno32_isfb</name>
1454   - <type>String</type>
1455   - <format/>
1456   - </field>
1457   - <field>
1458   - <name>fcno33_id</name>
1459   - <type>String</type>
1460   - <format/>
1461   - </field>
1462   - <field>
1463   - <name>fcno33_fcsj</name>
1464   - <type>String</type>
1465   - <format/>
1466   - </field>
1467   - <field>
1468   - <name>fcno33_jhlc</name>
1469   - <type>None</type>
1470   - <format/>
1471   - </field>
1472   - <field>
1473   - <name>fcno33_zdname</name>
1474   - <type>String</type>
1475   - <format/>
1476   - </field>
1477   - <field>
1478   - <name>fcno33_bctype</name>
1479   - <type>String</type>
1480   - <format/>
1481   - </field>
1482   - <field>
1483   - <name>fcno33_xldir</name>
1484   - <type>String</type>
1485   - <format/>
1486   - </field>
1487   - <field>
1488   - <name>fcno33_isfb</name>
1489   - <type>String</type>
1490   - <format/>
1491   - </field>
1492   - <field>
1493   - <name>fcno34_id</name>
1494   - <type>String</type>
1495   - <format/>
1496   - </field>
1497   - <field>
1498   - <name>fcno34_fcsj</name>
1499   - <type>String</type>
1500   - <format/>
1501   - </field>
1502   - <field>
1503   - <name>fcno34_jhlc</name>
1504   - <type>None</type>
1505   - <format/>
1506   - </field>
1507   - <field>
1508   - <name>fcno34_zdname</name>
1509   - <type>String</type>
1510   - <format/>
1511   - </field>
1512   - <field>
1513   - <name>fcno34_bctype</name>
1514   - <type>String</type>
1515   - <format/>
1516   - </field>
1517   - <field>
1518   - <name>fcno34_xldir</name>
1519   - <type>String</type>
1520   - <format/>
1521   - </field>
1522   - <field>
1523   - <name>fcno34_isfb</name>
1524   - <type>String</type>
1525   - <format/>
1526   - </field>
1527   - <field>
1528   - <name>fcno35_id</name>
1529   - <type>String</type>
1530   - <format/>
1531   - </field>
1532   - <field>
1533   - <name>fcno35_fcsj</name>
1534   - <type>String</type>
1535   - <format/>
1536   - </field>
1537   - <field>
1538   - <name>fcno35_jhlc</name>
1539   - <type>None</type>
1540   - <format/>
1541   - </field>
1542   - <field>
1543   - <name>fcno35_zdname</name>
1544   - <type>String</type>
1545   - <format/>
1546   - </field>
1547   - <field>
1548   - <name>fcno35_bctype</name>
1549   - <type>String</type>
1550   - <format/>
1551   - </field>
1552   - <field>
1553   - <name>fcno35_xldir</name>
1554   - <type>String</type>
1555   - <format/>
1556   - </field>
1557   - <field>
1558   - <name>fcno35_isfb</name>
1559   - <type>String</type>
1560   - <format/>
1561   - </field>
1562   - </fields>
1563   - <custom>
1564   - <header_font_name>arial</header_font_name>
1565   - <header_font_size>10</header_font_size>
1566   - <header_font_bold>N</header_font_bold>
1567   - <header_font_italic>N</header_font_italic>
1568   - <header_font_underline>no</header_font_underline>
1569   - <header_font_orientation>horizontal</header_font_orientation>
1570   - <header_font_color>black</header_font_color>
1571   - <header_background_color>none</header_background_color>
1572   - <header_row_height>255</header_row_height>
1573   - <header_alignment>left</header_alignment>
1574   - <header_image/>
1575   - <row_font_name>arial</row_font_name>
1576   - <row_font_size>10</row_font_size>
1577   - <row_font_color>black</row_font_color>
1578   - <row_background_color>none</row_background_color>
1579   - </custom>
1580   - <cluster_schema/>
1581   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
1582   - <xloc>696</xloc>
1583   - <yloc>476</yloc>
1584   - <draw>Y</draw>
1585   - </GUI>
1586   - </step>
1587   -
1588   - <step>
1589   - <name>&#x5217;&#x8f6c;&#x884c;</name>
1590   - <type>Denormaliser</type>
1591   - <description/>
1592   - <distribute>Y</distribute>
1593   - <custom_distribution/>
1594   - <copies>1</copies>
1595   - <partitioning>
1596   - <method>none</method>
1597   - <schema_name/>
1598   - </partitioning>
1599   - <key_field>fcno</key_field>
1600   - <group>
1601   - <field>
1602   - <name>lp</name>
1603   - </field>
1604   - </group>
1605   - <fields>
1606   - <field>
1607   - <field_name>id</field_name>
1608   - <key_value>1</key_value>
1609   - <target_name>fcno1_id</target_name>
1610   - <target_type>String</target_type>
1611   - <target_format/>
1612   - <target_length>-1</target_length>
1613   - <target_precision>-1</target_precision>
1614   - <target_decimal_symbol/>
1615   - <target_grouping_symbol/>
1616   - <target_currency_symbol/>
1617   - <target_null_string/>
1618   - <target_aggregation_type>-</target_aggregation_type>
1619   - </field>
1620   - <field>
1621   - <field_name>fcsj</field_name>
1622   - <key_value>1</key_value>
1623   - <target_name>fcno1_fcsj</target_name>
1624   - <target_type>String</target_type>
1625   - <target_format/>
1626   - <target_length>-1</target_length>
1627   - <target_precision>-1</target_precision>
1628   - <target_decimal_symbol/>
1629   - <target_grouping_symbol/>
1630   - <target_currency_symbol/>
1631   - <target_null_string/>
1632   - <target_aggregation_type>-</target_aggregation_type>
1633   - </field>
1634   - <field>
1635   - <field_name>jhlc</field_name>
1636   - <key_value>1</key_value>
1637   - <target_name>fcno1_jhlc</target_name>
1638   - <target_type>String</target_type>
1639   - <target_format/>
1640   - <target_length>-1</target_length>
1641   - <target_precision>-1</target_precision>
1642   - <target_decimal_symbol/>
1643   - <target_grouping_symbol/>
1644   - <target_currency_symbol/>
1645   - <target_null_string/>
1646   - <target_aggregation_type>-</target_aggregation_type>
1647   - </field>
1648   - <field>
1649   - <field_name>fczdName</field_name>
1650   - <key_value>1</key_value>
1651   - <target_name>fcno1_zdname</target_name>
1652   - <target_type>String</target_type>
1653   - <target_format/>
1654   - <target_length>-1</target_length>
1655   - <target_precision>-1</target_precision>
1656   - <target_decimal_symbol/>
1657   - <target_grouping_symbol/>
1658   - <target_currency_symbol/>
1659   - <target_null_string/>
1660   - <target_aggregation_type>-</target_aggregation_type>
1661   - </field>
1662   - <field>
1663   - <field_name>bc_type</field_name>
1664   - <key_value>1</key_value>
1665   - <target_name>fcno1_bctype</target_name>
1666   - <target_type>String</target_type>
1667   - <target_format/>
1668   - <target_length>-1</target_length>
1669   - <target_precision>-1</target_precision>
1670   - <target_decimal_symbol/>
1671   - <target_grouping_symbol/>
1672   - <target_currency_symbol/>
1673   - <target_null_string/>
1674   - <target_aggregation_type>-</target_aggregation_type>
1675   - </field>
1676   - <field>
1677   - <field_name>xl_dir</field_name>
1678   - <key_value>1</key_value>
1679   - <target_name>fcno1_xldir</target_name>
1680   - <target_type>String</target_type>
1681   - <target_format/>
1682   - <target_length>-1</target_length>
1683   - <target_precision>-1</target_precision>
1684   - <target_decimal_symbol/>
1685   - <target_grouping_symbol/>
1686   - <target_currency_symbol/>
1687   - <target_null_string/>
1688   - <target_aggregation_type>-</target_aggregation_type>
1689   - </field>
1690   - <field>
1691   - <field_name>isfb</field_name>
1692   - <key_value>1</key_value>
1693   - <target_name>fcno1_isfb</target_name>
1694   - <target_type>String</target_type>
1695   - <target_format/>
1696   - <target_length>-1</target_length>
1697   - <target_precision>-1</target_precision>
1698   - <target_decimal_symbol/>
1699   - <target_grouping_symbol/>
1700   - <target_currency_symbol/>
1701   - <target_null_string/>
1702   - <target_aggregation_type>-</target_aggregation_type>
1703   - </field>
1704   - <field>
1705   - <field_name>id</field_name>
1706   - <key_value>2</key_value>
1707   - <target_name>fcno2_id</target_name>
1708   - <target_type>String</target_type>
1709   - <target_format/>
1710   - <target_length>-1</target_length>
1711   - <target_precision>-1</target_precision>
1712   - <target_decimal_symbol/>
1713   - <target_grouping_symbol/>
1714   - <target_currency_symbol/>
1715   - <target_null_string/>
1716   - <target_aggregation_type>-</target_aggregation_type>
1717   - </field>
1718   - <field>
1719   - <field_name>fcsj</field_name>
1720   - <key_value>2</key_value>
1721   - <target_name>fcno2_fcsj</target_name>
1722   - <target_type>String</target_type>
1723   - <target_format/>
1724   - <target_length>-1</target_length>
1725   - <target_precision>-1</target_precision>
1726   - <target_decimal_symbol/>
1727   - <target_grouping_symbol/>
1728   - <target_currency_symbol/>
1729   - <target_null_string/>
1730   - <target_aggregation_type>-</target_aggregation_type>
1731   - </field>
1732   - <field>
1733   - <field_name>jhlc</field_name>
1734   - <key_value>2</key_value>
1735   - <target_name>fcno2_jhlc</target_name>
1736   - <target_type>String</target_type>
1737   - <target_format/>
1738   - <target_length>-1</target_length>
1739   - <target_precision>-1</target_precision>
1740   - <target_decimal_symbol/>
1741   - <target_grouping_symbol/>
1742   - <target_currency_symbol/>
1743   - <target_null_string/>
1744   - <target_aggregation_type>-</target_aggregation_type>
1745   - </field>
1746   - <field>
1747   - <field_name>fczdName</field_name>
1748   - <key_value>2</key_value>
1749   - <target_name>fcno2_zdname</target_name>
1750   - <target_type>String</target_type>
1751   - <target_format/>
1752   - <target_length>-1</target_length>
1753   - <target_precision>-1</target_precision>
1754   - <target_decimal_symbol/>
1755   - <target_grouping_symbol/>
1756   - <target_currency_symbol/>
1757   - <target_null_string/>
1758   - <target_aggregation_type>-</target_aggregation_type>
1759   - </field>
1760   - <field>
1761   - <field_name>bc_type</field_name>
1762   - <key_value>2</key_value>
1763   - <target_name>fcno2_bctype</target_name>
1764   - <target_type>String</target_type>
1765   - <target_format/>
1766   - <target_length>-1</target_length>
1767   - <target_precision>-1</target_precision>
1768   - <target_decimal_symbol/>
1769   - <target_grouping_symbol/>
1770   - <target_currency_symbol/>
1771   - <target_null_string/>
1772   - <target_aggregation_type>-</target_aggregation_type>
1773   - </field>
1774   - <field>
1775   - <field_name>xl_dir</field_name>
1776   - <key_value>2</key_value>
1777   - <target_name>fcno2_xldir</target_name>
1778   - <target_type>String</target_type>
1779   - <target_format/>
1780   - <target_length>-1</target_length>
1781   - <target_precision>-1</target_precision>
1782   - <target_decimal_symbol/>
1783   - <target_grouping_symbol/>
1784   - <target_currency_symbol/>
1785   - <target_null_string/>
1786   - <target_aggregation_type>-</target_aggregation_type>
1787   - </field>
1788   - <field>
1789   - <field_name>isfb</field_name>
1790   - <key_value>2</key_value>
1791   - <target_name>fcno2_isfb</target_name>
1792   - <target_type>String</target_type>
1793   - <target_format/>
1794   - <target_length>-1</target_length>
1795   - <target_precision>-1</target_precision>
1796   - <target_decimal_symbol/>
1797   - <target_grouping_symbol/>
1798   - <target_currency_symbol/>
1799   - <target_null_string/>
1800   - <target_aggregation_type>-</target_aggregation_type>
1801   - </field>
1802   - <field>
1803   - <field_name>id</field_name>
1804   - <key_value>3</key_value>
1805   - <target_name>fcno3_id</target_name>
1806   - <target_type>String</target_type>
1807   - <target_format/>
1808   - <target_length>-1</target_length>
1809   - <target_precision>-1</target_precision>
1810   - <target_decimal_symbol/>
1811   - <target_grouping_symbol/>
1812   - <target_currency_symbol/>
1813   - <target_null_string/>
1814   - <target_aggregation_type>-</target_aggregation_type>
1815   - </field>
1816   - <field>
1817   - <field_name>fcsj</field_name>
1818   - <key_value>3</key_value>
1819   - <target_name>fcno3_fcsj</target_name>
1820   - <target_type>String</target_type>
1821   - <target_format/>
1822   - <target_length>-1</target_length>
1823   - <target_precision>-1</target_precision>
1824   - <target_decimal_symbol/>
1825   - <target_grouping_symbol/>
1826   - <target_currency_symbol/>
1827   - <target_null_string/>
1828   - <target_aggregation_type>-</target_aggregation_type>
1829   - </field>
1830   - <field>
1831   - <field_name>jhlc</field_name>
1832   - <key_value>3</key_value>
1833   - <target_name>fcno3_jhlc</target_name>
1834   - <target_type>String</target_type>
1835   - <target_format/>
1836   - <target_length>-1</target_length>
1837   - <target_precision>-1</target_precision>
1838   - <target_decimal_symbol/>
1839   - <target_grouping_symbol/>
1840   - <target_currency_symbol/>
1841   - <target_null_string/>
1842   - <target_aggregation_type>-</target_aggregation_type>
1843   - </field>
1844   - <field>
1845   - <field_name>fczdName</field_name>
1846   - <key_value>3</key_value>
1847   - <target_name>fcno3_zdname</target_name>
1848   - <target_type>String</target_type>
1849   - <target_format/>
1850   - <target_length>-1</target_length>
1851   - <target_precision>-1</target_precision>
1852   - <target_decimal_symbol/>
1853   - <target_grouping_symbol/>
1854   - <target_currency_symbol/>
1855   - <target_null_string/>
1856   - <target_aggregation_type>-</target_aggregation_type>
1857   - </field>
1858   - <field>
1859   - <field_name>bc_type</field_name>
1860   - <key_value>3</key_value>
1861   - <target_name>fcno3_bctype</target_name>
1862   - <target_type>String</target_type>
1863   - <target_format/>
1864   - <target_length>-1</target_length>
1865   - <target_precision>-1</target_precision>
1866   - <target_decimal_symbol/>
1867   - <target_grouping_symbol/>
1868   - <target_currency_symbol/>
1869   - <target_null_string/>
1870   - <target_aggregation_type>-</target_aggregation_type>
1871   - </field>
1872   - <field>
1873   - <field_name>xl_dir</field_name>
1874   - <key_value>3</key_value>
1875   - <target_name>fcno3_xldir</target_name>
1876   - <target_type>String</target_type>
1877   - <target_format/>
1878   - <target_length>-1</target_length>
1879   - <target_precision>-1</target_precision>
1880   - <target_decimal_symbol/>
1881   - <target_grouping_symbol/>
1882   - <target_currency_symbol/>
1883   - <target_null_string/>
1884   - <target_aggregation_type>-</target_aggregation_type>
1885   - </field>
1886   - <field>
1887   - <field_name>isfb</field_name>
1888   - <key_value>3</key_value>
1889   - <target_name>fcno3_isfb</target_name>
1890   - <target_type>String</target_type>
1891   - <target_format/>
1892   - <target_length>-1</target_length>
1893   - <target_precision>-1</target_precision>
1894   - <target_decimal_symbol/>
1895   - <target_grouping_symbol/>
1896   - <target_currency_symbol/>
1897   - <target_null_string/>
1898   - <target_aggregation_type>-</target_aggregation_type>
1899   - </field>
1900   - <field>
1901   - <field_name>id</field_name>
1902   - <key_value>4</key_value>
1903   - <target_name>fcno4_id</target_name>
1904   - <target_type>String</target_type>
1905   - <target_format/>
1906   - <target_length>-1</target_length>
1907   - <target_precision>-1</target_precision>
1908   - <target_decimal_symbol/>
1909   - <target_grouping_symbol/>
1910   - <target_currency_symbol/>
1911   - <target_null_string/>
1912   - <target_aggregation_type>-</target_aggregation_type>
1913   - </field>
1914   - <field>
1915   - <field_name>fcsj</field_name>
1916   - <key_value>4</key_value>
1917   - <target_name>fcno4_fcsj</target_name>
1918   - <target_type>String</target_type>
1919   - <target_format/>
1920   - <target_length>-1</target_length>
1921   - <target_precision>-1</target_precision>
1922   - <target_decimal_symbol/>
1923   - <target_grouping_symbol/>
1924   - <target_currency_symbol/>
1925   - <target_null_string/>
1926   - <target_aggregation_type>-</target_aggregation_type>
1927   - </field>
1928   - <field>
1929   - <field_name>jhlc</field_name>
1930   - <key_value>4</key_value>
1931   - <target_name>fcno5_jhlc</target_name>
1932   - <target_type>String</target_type>
1933   - <target_format/>
1934   - <target_length>-1</target_length>
1935   - <target_precision>-1</target_precision>
1936   - <target_decimal_symbol/>
1937   - <target_grouping_symbol/>
1938   - <target_currency_symbol/>
1939   - <target_null_string/>
1940   - <target_aggregation_type>-</target_aggregation_type>
1941   - </field>
1942   - <field>
1943   - <field_name>fczdName</field_name>
1944   - <key_value>4</key_value>
1945   - <target_name>fcno4_zdname</target_name>
1946   - <target_type>String</target_type>
1947   - <target_format/>
1948   - <target_length>-1</target_length>
1949   - <target_precision>-1</target_precision>
1950   - <target_decimal_symbol/>
1951   - <target_grouping_symbol/>
1952   - <target_currency_symbol/>
1953   - <target_null_string/>
1954   - <target_aggregation_type>-</target_aggregation_type>
1955   - </field>
1956   - <field>
1957   - <field_name>bc_type</field_name>
1958   - <key_value>4</key_value>
1959   - <target_name>fcno4_bctype</target_name>
1960   - <target_type>String</target_type>
1961   - <target_format/>
1962   - <target_length>-1</target_length>
1963   - <target_precision>-1</target_precision>
1964   - <target_decimal_symbol/>
1965   - <target_grouping_symbol/>
1966   - <target_currency_symbol/>
1967   - <target_null_string/>
1968   - <target_aggregation_type>-</target_aggregation_type>
1969   - </field>
1970   - <field>
1971   - <field_name>xl_dir</field_name>
1972   - <key_value>4</key_value>
1973   - <target_name>fcno4_xldir</target_name>
1974   - <target_type>String</target_type>
1975   - <target_format/>
1976   - <target_length>-1</target_length>
1977   - <target_precision>-1</target_precision>
1978   - <target_decimal_symbol/>
1979   - <target_grouping_symbol/>
1980   - <target_currency_symbol/>
1981   - <target_null_string/>
1982   - <target_aggregation_type>-</target_aggregation_type>
1983   - </field>
1984   - <field>
1985   - <field_name>isfb</field_name>
1986   - <key_value>4</key_value>
1987   - <target_name>fcno4_isfb</target_name>
1988   - <target_type>String</target_type>
1989   - <target_format/>
1990   - <target_length>-1</target_length>
1991   - <target_precision>-1</target_precision>
1992   - <target_decimal_symbol/>
1993   - <target_grouping_symbol/>
1994   - <target_currency_symbol/>
1995   - <target_null_string/>
1996   - <target_aggregation_type>-</target_aggregation_type>
1997   - </field>
1998   - <field>
1999   - <field_name>id</field_name>
2000   - <key_value>5</key_value>
2001   - <target_name>fcno5_id</target_name>
2002   - <target_type>String</target_type>
2003   - <target_format/>
2004   - <target_length>-1</target_length>
2005   - <target_precision>-1</target_precision>
2006   - <target_decimal_symbol/>
2007   - <target_grouping_symbol/>
2008   - <target_currency_symbol/>
2009   - <target_null_string/>
2010   - <target_aggregation_type>-</target_aggregation_type>
2011   - </field>
2012   - <field>
2013   - <field_name>fcsj</field_name>
2014   - <key_value>5</key_value>
2015   - <target_name>fcno5_fcsj</target_name>
2016   - <target_type>String</target_type>
2017   - <target_format/>
2018   - <target_length>-1</target_length>
2019   - <target_precision>-1</target_precision>
2020   - <target_decimal_symbol/>
2021   - <target_grouping_symbol/>
2022   - <target_currency_symbol/>
2023   - <target_null_string/>
2024   - <target_aggregation_type>-</target_aggregation_type>
2025   - </field>
2026   - <field>
2027   - <field_name>jhlc</field_name>
2028   - <key_value>5</key_value>
2029   - <target_name>fcno5_jhlc</target_name>
2030   - <target_type>String</target_type>
2031   - <target_format/>
2032   - <target_length>-1</target_length>
2033   - <target_precision>-1</target_precision>
2034   - <target_decimal_symbol/>
2035   - <target_grouping_symbol/>
2036   - <target_currency_symbol/>
2037   - <target_null_string/>
2038   - <target_aggregation_type>-</target_aggregation_type>
2039   - </field>
2040   - <field>
2041   - <field_name>fczdName</field_name>
2042   - <key_value>5</key_value>
2043   - <target_name>fcno5_zdname</target_name>
2044   - <target_type>String</target_type>
2045   - <target_format/>
2046   - <target_length>-1</target_length>
2047   - <target_precision>-1</target_precision>
2048   - <target_decimal_symbol/>
2049   - <target_grouping_symbol/>
2050   - <target_currency_symbol/>
2051   - <target_null_string/>
2052   - <target_aggregation_type>-</target_aggregation_type>
2053   - </field>
2054   - <field>
2055   - <field_name>bc_type</field_name>
2056   - <key_value>5</key_value>
2057   - <target_name>fcno5_bctype</target_name>
2058   - <target_type>String</target_type>
2059   - <target_format/>
2060   - <target_length>-1</target_length>
2061   - <target_precision>-1</target_precision>
2062   - <target_decimal_symbol/>
2063   - <target_grouping_symbol/>
2064   - <target_currency_symbol/>
2065   - <target_null_string/>
2066   - <target_aggregation_type>-</target_aggregation_type>
2067   - </field>
2068   - <field>
2069   - <field_name>xl_dir</field_name>
2070   - <key_value>5</key_value>
2071   - <target_name>fcno5_xldir</target_name>
2072   - <target_type>String</target_type>
2073   - <target_format/>
2074   - <target_length>-1</target_length>
2075   - <target_precision>-1</target_precision>
2076   - <target_decimal_symbol/>
2077   - <target_grouping_symbol/>
2078   - <target_currency_symbol/>
2079   - <target_null_string/>
2080   - <target_aggregation_type>-</target_aggregation_type>
2081   - </field>
2082   - <field>
2083   - <field_name>isfb</field_name>
2084   - <key_value>5</key_value>
2085   - <target_name>fcno5_isfb</target_name>
2086   - <target_type>String</target_type>
2087   - <target_format/>
2088   - <target_length>-1</target_length>
2089   - <target_precision>-1</target_precision>
2090   - <target_decimal_symbol/>
2091   - <target_grouping_symbol/>
2092   - <target_currency_symbol/>
2093   - <target_null_string/>
2094   - <target_aggregation_type>-</target_aggregation_type>
2095   - </field>
2096   - <field>
2097   - <field_name>id</field_name>
2098   - <key_value>6</key_value>
2099   - <target_name>fcno6_id</target_name>
2100   - <target_type>String</target_type>
2101   - <target_format/>
2102   - <target_length>-1</target_length>
2103   - <target_precision>-1</target_precision>
2104   - <target_decimal_symbol/>
2105   - <target_grouping_symbol/>
2106   - <target_currency_symbol/>
2107   - <target_null_string/>
2108   - <target_aggregation_type>-</target_aggregation_type>
2109   - </field>
2110   - <field>
2111   - <field_name>fcsj</field_name>
2112   - <key_value>6</key_value>
2113   - <target_name>fcno6_fcsj</target_name>
2114   - <target_type>String</target_type>
2115   - <target_format/>
2116   - <target_length>-1</target_length>
2117   - <target_precision>-1</target_precision>
2118   - <target_decimal_symbol/>
2119   - <target_grouping_symbol/>
2120   - <target_currency_symbol/>
2121   - <target_null_string/>
2122   - <target_aggregation_type>-</target_aggregation_type>
2123   - </field>
2124   - <field>
2125   - <field_name>jhlc</field_name>
2126   - <key_value>6</key_value>
2127   - <target_name>fcno6_jhlc</target_name>
2128   - <target_type>String</target_type>
2129   - <target_format/>
2130   - <target_length>-1</target_length>
2131   - <target_precision>-1</target_precision>
2132   - <target_decimal_symbol/>
2133   - <target_grouping_symbol/>
2134   - <target_currency_symbol/>
2135   - <target_null_string/>
2136   - <target_aggregation_type>-</target_aggregation_type>
2137   - </field>
2138   - <field>
2139   - <field_name>fczdName</field_name>
2140   - <key_value>6</key_value>
2141   - <target_name>fcno6_zdname</target_name>
2142   - <target_type>String</target_type>
2143   - <target_format/>
2144   - <target_length>-1</target_length>
2145   - <target_precision>-1</target_precision>
2146   - <target_decimal_symbol/>
2147   - <target_grouping_symbol/>
2148   - <target_currency_symbol/>
2149   - <target_null_string/>
2150   - <target_aggregation_type>-</target_aggregation_type>
2151   - </field>
2152   - <field>
2153   - <field_name>bc_type</field_name>
2154   - <key_value>6</key_value>
2155   - <target_name>fcno6_bctype</target_name>
2156   - <target_type>String</target_type>
2157   - <target_format/>
2158   - <target_length>-1</target_length>
2159   - <target_precision>-1</target_precision>
2160   - <target_decimal_symbol/>
2161   - <target_grouping_symbol/>
2162   - <target_currency_symbol/>
2163   - <target_null_string/>
2164   - <target_aggregation_type>-</target_aggregation_type>
2165   - </field>
2166   - <field>
2167   - <field_name>xl_dir</field_name>
2168   - <key_value>6</key_value>
2169   - <target_name>fcno6_xldir</target_name>
2170   - <target_type>String</target_type>
2171   - <target_format/>
2172   - <target_length>-1</target_length>
2173   - <target_precision>-1</target_precision>
2174   - <target_decimal_symbol/>
2175   - <target_grouping_symbol/>
2176   - <target_currency_symbol/>
2177   - <target_null_string/>
2178   - <target_aggregation_type>-</target_aggregation_type>
2179   - </field>
2180   - <field>
2181   - <field_name>isfb</field_name>
2182   - <key_value>6</key_value>
2183   - <target_name>fcno6_isfb</target_name>
2184   - <target_type>String</target_type>
2185   - <target_format/>
2186   - <target_length>-1</target_length>
2187   - <target_precision>-1</target_precision>
2188   - <target_decimal_symbol/>
2189   - <target_grouping_symbol/>
2190   - <target_currency_symbol/>
2191   - <target_null_string/>
2192   - <target_aggregation_type>-</target_aggregation_type>
2193   - </field>
2194   - <field>
2195   - <field_name>id</field_name>
2196   - <key_value>7</key_value>
2197   - <target_name>fcno7_id</target_name>
2198   - <target_type>String</target_type>
2199   - <target_format/>
2200   - <target_length>-1</target_length>
2201   - <target_precision>-1</target_precision>
2202   - <target_decimal_symbol/>
2203   - <target_grouping_symbol/>
2204   - <target_currency_symbol/>
2205   - <target_null_string/>
2206   - <target_aggregation_type>-</target_aggregation_type>
2207   - </field>
2208   - <field>
2209   - <field_name>fcsj</field_name>
2210   - <key_value>7</key_value>
2211   - <target_name>fcno7_fcsj</target_name>
2212   - <target_type>String</target_type>
2213   - <target_format/>
2214   - <target_length>-1</target_length>
2215   - <target_precision>-1</target_precision>
2216   - <target_decimal_symbol/>
2217   - <target_grouping_symbol/>
2218   - <target_currency_symbol/>
2219   - <target_null_string/>
2220   - <target_aggregation_type>-</target_aggregation_type>
2221   - </field>
2222   - <field>
2223   - <field_name>jhlc</field_name>
2224   - <key_value>7</key_value>
2225   - <target_name>fcno7_jhlc</target_name>
2226   - <target_type>String</target_type>
2227   - <target_format/>
2228   - <target_length>-1</target_length>
2229   - <target_precision>-1</target_precision>
2230   - <target_decimal_symbol/>
2231   - <target_grouping_symbol/>
2232   - <target_currency_symbol/>
2233   - <target_null_string/>
2234   - <target_aggregation_type>-</target_aggregation_type>
2235   - </field>
2236   - <field>
2237   - <field_name>fczdName</field_name>
2238   - <key_value>7</key_value>
2239   - <target_name>fcno7_zdname</target_name>
2240   - <target_type>String</target_type>
2241   - <target_format/>
2242   - <target_length>-1</target_length>
2243   - <target_precision>-1</target_precision>
2244   - <target_decimal_symbol/>
2245   - <target_grouping_symbol/>
2246   - <target_currency_symbol/>
2247   - <target_null_string/>
2248   - <target_aggregation_type>-</target_aggregation_type>
2249   - </field>
2250   - <field>
2251   - <field_name>bc_type</field_name>
2252   - <key_value>7</key_value>
2253   - <target_name>fcno7_bctype</target_name>
2254   - <target_type>String</target_type>
2255   - <target_format/>
2256   - <target_length>-1</target_length>
2257   - <target_precision>-1</target_precision>
2258   - <target_decimal_symbol/>
2259   - <target_grouping_symbol/>
2260   - <target_currency_symbol/>
2261   - <target_null_string/>
2262   - <target_aggregation_type>-</target_aggregation_type>
2263   - </field>
2264   - <field>
2265   - <field_name>xl_dir</field_name>
2266   - <key_value>7</key_value>
2267   - <target_name>fcno7_xldir</target_name>
2268   - <target_type>String</target_type>
2269   - <target_format/>
2270   - <target_length>-1</target_length>
2271   - <target_precision>-1</target_precision>
2272   - <target_decimal_symbol/>
2273   - <target_grouping_symbol/>
2274   - <target_currency_symbol/>
2275   - <target_null_string/>
2276   - <target_aggregation_type>-</target_aggregation_type>
2277   - </field>
2278   - <field>
2279   - <field_name>isfb</field_name>
2280   - <key_value>7</key_value>
2281   - <target_name>fcno7_isfb</target_name>
2282   - <target_type>String</target_type>
2283   - <target_format/>
2284   - <target_length>-1</target_length>
2285   - <target_precision>-1</target_precision>
2286   - <target_decimal_symbol/>
2287   - <target_grouping_symbol/>
2288   - <target_currency_symbol/>
2289   - <target_null_string/>
2290   - <target_aggregation_type>-</target_aggregation_type>
2291   - </field>
2292   - <field>
2293   - <field_name>id</field_name>
2294   - <key_value>8</key_value>
2295   - <target_name>fcno8_id</target_name>
2296   - <target_type>String</target_type>
2297   - <target_format/>
2298   - <target_length>-1</target_length>
2299   - <target_precision>-1</target_precision>
2300   - <target_decimal_symbol/>
2301   - <target_grouping_symbol/>
2302   - <target_currency_symbol/>
2303   - <target_null_string/>
2304   - <target_aggregation_type>-</target_aggregation_type>
2305   - </field>
2306   - <field>
2307   - <field_name>fcsj</field_name>
2308   - <key_value>8</key_value>
2309   - <target_name>fcno8_fcsj</target_name>
2310   - <target_type>String</target_type>
2311   - <target_format/>
2312   - <target_length>-1</target_length>
2313   - <target_precision>-1</target_precision>
2314   - <target_decimal_symbol/>
2315   - <target_grouping_symbol/>
2316   - <target_currency_symbol/>
2317   - <target_null_string/>
2318   - <target_aggregation_type>-</target_aggregation_type>
2319   - </field>
2320   - <field>
2321   - <field_name>jhlc</field_name>
2322   - <key_value>8</key_value>
2323   - <target_name>fcno8_jhlc</target_name>
2324   - <target_type>String</target_type>
2325   - <target_format/>
2326   - <target_length>-1</target_length>
2327   - <target_precision>-1</target_precision>
2328   - <target_decimal_symbol/>
2329   - <target_grouping_symbol/>
2330   - <target_currency_symbol/>
2331   - <target_null_string/>
2332   - <target_aggregation_type>-</target_aggregation_type>
2333   - </field>
2334   - <field>
2335   - <field_name>fczdName</field_name>
2336   - <key_value>8</key_value>
2337   - <target_name>fcno8_zdname</target_name>
2338   - <target_type>String</target_type>
2339   - <target_format/>
2340   - <target_length>-1</target_length>
2341   - <target_precision>-1</target_precision>
2342   - <target_decimal_symbol/>
2343   - <target_grouping_symbol/>
2344   - <target_currency_symbol/>
2345   - <target_null_string/>
2346   - <target_aggregation_type>-</target_aggregation_type>
2347   - </field>
2348   - <field>
2349   - <field_name>bc_type</field_name>
2350   - <key_value>8</key_value>
2351   - <target_name>fcno8_bctype</target_name>
2352   - <target_type>String</target_type>
2353   - <target_format/>
2354   - <target_length>-1</target_length>
2355   - <target_precision>-1</target_precision>
2356   - <target_decimal_symbol/>
2357   - <target_grouping_symbol/>
2358   - <target_currency_symbol/>
2359   - <target_null_string/>
2360   - <target_aggregation_type>-</target_aggregation_type>
2361   - </field>
2362   - <field>
2363   - <field_name>xl_dir</field_name>
2364   - <key_value>8</key_value>
2365   - <target_name>fcno8_xldir</target_name>
2366   - <target_type>String</target_type>
2367   - <target_format/>
2368   - <target_length>-1</target_length>
2369   - <target_precision>-1</target_precision>
2370   - <target_decimal_symbol/>
2371   - <target_grouping_symbol/>
2372   - <target_currency_symbol/>
2373   - <target_null_string/>
2374   - <target_aggregation_type>-</target_aggregation_type>
2375   - </field>
2376   - <field>
2377   - <field_name>isfb</field_name>
2378   - <key_value>8</key_value>
2379   - <target_name>fcno8_isfb</target_name>
2380   - <target_type>String</target_type>
2381   - <target_format/>
2382   - <target_length>-1</target_length>
2383   - <target_precision>-1</target_precision>
2384   - <target_decimal_symbol/>
2385   - <target_grouping_symbol/>
2386   - <target_currency_symbol/>
2387   - <target_null_string/>
2388   - <target_aggregation_type>-</target_aggregation_type>
2389   - </field>
2390   - <field>
2391   - <field_name>id</field_name>
2392   - <key_value>9</key_value>
2393   - <target_name>fcno9_id</target_name>
2394   - <target_type>String</target_type>
2395   - <target_format/>
2396   - <target_length>-1</target_length>
2397   - <target_precision>-1</target_precision>
2398   - <target_decimal_symbol/>
2399   - <target_grouping_symbol/>
2400   - <target_currency_symbol/>
2401   - <target_null_string/>
2402   - <target_aggregation_type>-</target_aggregation_type>
2403   - </field>
2404   - <field>
2405   - <field_name>fcsj</field_name>
2406   - <key_value>9</key_value>
2407   - <target_name>fcno9_fcsj</target_name>
2408   - <target_type>String</target_type>
2409   - <target_format/>
2410   - <target_length>-1</target_length>
2411   - <target_precision>-1</target_precision>
2412   - <target_decimal_symbol/>
2413   - <target_grouping_symbol/>
2414   - <target_currency_symbol/>
2415   - <target_null_string/>
2416   - <target_aggregation_type>-</target_aggregation_type>
2417   - </field>
2418   - <field>
2419   - <field_name>jhlc</field_name>
2420   - <key_value>9</key_value>
2421   - <target_name>fcno9_jhlc</target_name>
2422   - <target_type>String</target_type>
2423   - <target_format/>
2424   - <target_length>-1</target_length>
2425   - <target_precision>-1</target_precision>
2426   - <target_decimal_symbol/>
2427   - <target_grouping_symbol/>
2428   - <target_currency_symbol/>
2429   - <target_null_string/>
2430   - <target_aggregation_type>-</target_aggregation_type>
2431   - </field>
2432   - <field>
2433   - <field_name>fczdName</field_name>
2434   - <key_value>9</key_value>
2435   - <target_name>fcno9_zdname</target_name>
2436   - <target_type>String</target_type>
2437   - <target_format/>
2438   - <target_length>-1</target_length>
2439   - <target_precision>-1</target_precision>
2440   - <target_decimal_symbol/>
2441   - <target_grouping_symbol/>
2442   - <target_currency_symbol/>
2443   - <target_null_string/>
2444   - <target_aggregation_type>-</target_aggregation_type>
2445   - </field>
2446   - <field>
2447   - <field_name>bc_type</field_name>
2448   - <key_value>9</key_value>
2449   - <target_name>fcno9_bctype</target_name>
2450   - <target_type>String</target_type>
2451   - <target_format/>
2452   - <target_length>-1</target_length>
2453   - <target_precision>-1</target_precision>
2454   - <target_decimal_symbol/>
2455   - <target_grouping_symbol/>
2456   - <target_currency_symbol/>
2457   - <target_null_string/>
2458   - <target_aggregation_type>-</target_aggregation_type>
2459   - </field>
2460   - <field>
2461   - <field_name>xl_dir</field_name>
2462   - <key_value>9</key_value>
2463   - <target_name>fcno9_xldir</target_name>
2464   - <target_type>String</target_type>
2465   - <target_format/>
2466   - <target_length>-1</target_length>
2467   - <target_precision>-1</target_precision>
2468   - <target_decimal_symbol/>
2469   - <target_grouping_symbol/>
2470   - <target_currency_symbol/>
2471   - <target_null_string/>
2472   - <target_aggregation_type>-</target_aggregation_type>
2473   - </field>
2474   - <field>
2475   - <field_name>isfb</field_name>
2476   - <key_value>9</key_value>
2477   - <target_name>fcno9_isfb</target_name>
2478   - <target_type>String</target_type>
2479   - <target_format/>
2480   - <target_length>-1</target_length>
2481   - <target_precision>-1</target_precision>
2482   - <target_decimal_symbol/>
2483   - <target_grouping_symbol/>
2484   - <target_currency_symbol/>
2485   - <target_null_string/>
2486   - <target_aggregation_type>-</target_aggregation_type>
2487   - </field>
2488   - <field>
2489   - <field_name>id</field_name>
2490   - <key_value>10</key_value>
2491   - <target_name>fcno10_id</target_name>
2492   - <target_type>String</target_type>
2493   - <target_format/>
2494   - <target_length>-1</target_length>
2495   - <target_precision>-1</target_precision>
2496   - <target_decimal_symbol/>
2497   - <target_grouping_symbol/>
2498   - <target_currency_symbol/>
2499   - <target_null_string/>
2500   - <target_aggregation_type>-</target_aggregation_type>
2501   - </field>
2502   - <field>
2503   - <field_name>fcsj</field_name>
2504   - <key_value>10</key_value>
2505   - <target_name>fcno10_fcsj</target_name>
2506   - <target_type>String</target_type>
2507   - <target_format/>
2508   - <target_length>-1</target_length>
2509   - <target_precision>-1</target_precision>
2510   - <target_decimal_symbol/>
2511   - <target_grouping_symbol/>
2512   - <target_currency_symbol/>
2513   - <target_null_string/>
2514   - <target_aggregation_type>-</target_aggregation_type>
2515   - </field>
2516   - <field>
2517   - <field_name>jhlc</field_name>
2518   - <key_value>10</key_value>
2519   - <target_name>fcno10_jhlc</target_name>
2520   - <target_type>String</target_type>
2521   - <target_format/>
2522   - <target_length>-1</target_length>
2523   - <target_precision>-1</target_precision>
2524   - <target_decimal_symbol/>
2525   - <target_grouping_symbol/>
2526   - <target_currency_symbol/>
2527   - <target_null_string/>
2528   - <target_aggregation_type>-</target_aggregation_type>
2529   - </field>
2530   - <field>
2531   - <field_name>fczdName</field_name>
2532   - <key_value>10</key_value>
2533   - <target_name>fcno10_zdname</target_name>
2534   - <target_type>String</target_type>
2535   - <target_format/>
2536   - <target_length>-1</target_length>
2537   - <target_precision>-1</target_precision>
2538   - <target_decimal_symbol/>
2539   - <target_grouping_symbol/>
2540   - <target_currency_symbol/>
2541   - <target_null_string/>
2542   - <target_aggregation_type>-</target_aggregation_type>
2543   - </field>
2544   - <field>
2545   - <field_name>bc_type</field_name>
2546   - <key_value>10</key_value>
2547   - <target_name>fcno10_bctype</target_name>
2548   - <target_type>String</target_type>
2549   - <target_format/>
2550   - <target_length>-1</target_length>
2551   - <target_precision>-1</target_precision>
2552   - <target_decimal_symbol/>
2553   - <target_grouping_symbol/>
2554   - <target_currency_symbol/>
2555   - <target_null_string/>
2556   - <target_aggregation_type>-</target_aggregation_type>
2557   - </field>
2558   - <field>
2559   - <field_name>xl_dir</field_name>
2560   - <key_value>10</key_value>
2561   - <target_name>fcno10_xldir</target_name>
2562   - <target_type>String</target_type>
2563   - <target_format/>
2564   - <target_length>-1</target_length>
2565   - <target_precision>-1</target_precision>
2566   - <target_decimal_symbol/>
2567   - <target_grouping_symbol/>
2568   - <target_currency_symbol/>
2569   - <target_null_string/>
2570   - <target_aggregation_type>-</target_aggregation_type>
2571   - </field>
2572   - <field>
2573   - <field_name>isfb</field_name>
2574   - <key_value>10</key_value>
2575   - <target_name>fcno10_isfb</target_name>
2576   - <target_type>String</target_type>
2577   - <target_format/>
2578   - <target_length>-1</target_length>
2579   - <target_precision>-1</target_precision>
2580   - <target_decimal_symbol/>
2581   - <target_grouping_symbol/>
2582   - <target_currency_symbol/>
2583   - <target_null_string/>
2584   - <target_aggregation_type>-</target_aggregation_type>
2585   - </field>
2586   - <field>
2587   - <field_name>id</field_name>
2588   - <key_value>11</key_value>
2589   - <target_name>fcno11_id</target_name>
2590   - <target_type>String</target_type>
2591   - <target_format/>
2592   - <target_length>-1</target_length>
2593   - <target_precision>-1</target_precision>
2594   - <target_decimal_symbol/>
2595   - <target_grouping_symbol/>
2596   - <target_currency_symbol/>
2597   - <target_null_string/>
2598   - <target_aggregation_type>-</target_aggregation_type>
2599   - </field>
2600   - <field>
2601   - <field_name>fcsj</field_name>
2602   - <key_value>11</key_value>
2603   - <target_name>fcno11_fcsj</target_name>
2604   - <target_type>String</target_type>
2605   - <target_format/>
2606   - <target_length>-1</target_length>
2607   - <target_precision>-1</target_precision>
2608   - <target_decimal_symbol/>
2609   - <target_grouping_symbol/>
2610   - <target_currency_symbol/>
2611   - <target_null_string/>
2612   - <target_aggregation_type>-</target_aggregation_type>
2613   - </field>
2614   - <field>
2615   - <field_name>jhlc</field_name>
2616   - <key_value>11</key_value>
2617   - <target_name>fcno11_jhlc</target_name>
2618   - <target_type>String</target_type>
2619   - <target_format/>
2620   - <target_length>-1</target_length>
2621   - <target_precision>-1</target_precision>
2622   - <target_decimal_symbol/>
2623   - <target_grouping_symbol/>
2624   - <target_currency_symbol/>
2625   - <target_null_string/>
2626   - <target_aggregation_type>-</target_aggregation_type>
2627   - </field>
2628   - <field>
2629   - <field_name>fczdName</field_name>
2630   - <key_value>11</key_value>
2631   - <target_name>fcno11_zdname</target_name>
2632   - <target_type>String</target_type>
2633   - <target_format/>
2634   - <target_length>-1</target_length>
2635   - <target_precision>-1</target_precision>
2636   - <target_decimal_symbol/>
2637   - <target_grouping_symbol/>
2638   - <target_currency_symbol/>
2639   - <target_null_string/>
2640   - <target_aggregation_type>-</target_aggregation_type>
2641   - </field>
2642   - <field>
2643   - <field_name>bc_type</field_name>
2644   - <key_value>11</key_value>
2645   - <target_name>fcno11_bctype</target_name>
2646   - <target_type>String</target_type>
2647   - <target_format/>
2648   - <target_length>-1</target_length>
2649   - <target_precision>-1</target_precision>
2650   - <target_decimal_symbol/>
2651   - <target_grouping_symbol/>
2652   - <target_currency_symbol/>
2653   - <target_null_string/>
2654   - <target_aggregation_type>-</target_aggregation_type>
2655   - </field>
2656   - <field>
2657   - <field_name>xl_dir</field_name>
2658   - <key_value>11</key_value>
2659   - <target_name>fcno11_xldir</target_name>
2660   - <target_type>String</target_type>
2661   - <target_format/>
2662   - <target_length>-1</target_length>
2663   - <target_precision>-1</target_precision>
2664   - <target_decimal_symbol/>
2665   - <target_grouping_symbol/>
2666   - <target_currency_symbol/>
2667   - <target_null_string/>
2668   - <target_aggregation_type>-</target_aggregation_type>
2669   - </field>
2670   - <field>
2671   - <field_name>isfb</field_name>
2672   - <key_value>11</key_value>
2673   - <target_name>fcno11_isfb</target_name>
2674   - <target_type>String</target_type>
2675   - <target_format/>
2676   - <target_length>-1</target_length>
2677   - <target_precision>-1</target_precision>
2678   - <target_decimal_symbol/>
2679   - <target_grouping_symbol/>
2680   - <target_currency_symbol/>
2681   - <target_null_string/>
2682   - <target_aggregation_type>-</target_aggregation_type>
2683   - </field>
2684   - <field>
2685   - <field_name>id</field_name>
2686   - <key_value>12</key_value>
2687   - <target_name>fcno12_id</target_name>
2688   - <target_type>String</target_type>
2689   - <target_format/>
2690   - <target_length>-1</target_length>
2691   - <target_precision>-1</target_precision>
2692   - <target_decimal_symbol/>
2693   - <target_grouping_symbol/>
2694   - <target_currency_symbol/>
2695   - <target_null_string/>
2696   - <target_aggregation_type>-</target_aggregation_type>
2697   - </field>
2698   - <field>
2699   - <field_name>fcsj</field_name>
2700   - <key_value>12</key_value>
2701   - <target_name>fcno12_fcsj</target_name>
2702   - <target_type>String</target_type>
2703   - <target_format/>
2704   - <target_length>-1</target_length>
2705   - <target_precision>-1</target_precision>
2706   - <target_decimal_symbol/>
2707   - <target_grouping_symbol/>
2708   - <target_currency_symbol/>
2709   - <target_null_string/>
2710   - <target_aggregation_type>-</target_aggregation_type>
2711   - </field>
2712   - <field>
2713   - <field_name>jhlc</field_name>
2714   - <key_value>12</key_value>
2715   - <target_name>fcno12_jhlc</target_name>
2716   - <target_type>String</target_type>
2717   - <target_format/>
2718   - <target_length>-1</target_length>
2719   - <target_precision>-1</target_precision>
2720   - <target_decimal_symbol/>
2721   - <target_grouping_symbol/>
2722   - <target_currency_symbol/>
2723   - <target_null_string/>
2724   - <target_aggregation_type>-</target_aggregation_type>
2725   - </field>
2726   - <field>
2727   - <field_name>fczdName</field_name>
2728   - <key_value>12</key_value>
2729   - <target_name>fcno12_zdname</target_name>
2730   - <target_type>String</target_type>
2731   - <target_format/>
2732   - <target_length>-1</target_length>
2733   - <target_precision>-1</target_precision>
2734   - <target_decimal_symbol/>
2735   - <target_grouping_symbol/>
2736   - <target_currency_symbol/>
2737   - <target_null_string/>
2738   - <target_aggregation_type>-</target_aggregation_type>
2739   - </field>
2740   - <field>
2741   - <field_name>bc_type</field_name>
2742   - <key_value>12</key_value>
2743   - <target_name>fcno12_bctype</target_name>
2744   - <target_type>String</target_type>
2745   - <target_format/>
2746   - <target_length>-1</target_length>
2747   - <target_precision>-1</target_precision>
2748   - <target_decimal_symbol/>
2749   - <target_grouping_symbol/>
2750   - <target_currency_symbol/>
2751   - <target_null_string/>
2752   - <target_aggregation_type>-</target_aggregation_type>
2753   - </field>
2754   - <field>
2755   - <field_name>xl_dir</field_name>
2756   - <key_value>12</key_value>
2757   - <target_name>fcno12_xldir</target_name>
2758   - <target_type>String</target_type>
2759   - <target_format/>
2760   - <target_length>-1</target_length>
2761   - <target_precision>-1</target_precision>
2762   - <target_decimal_symbol/>
2763   - <target_grouping_symbol/>
2764   - <target_currency_symbol/>
2765   - <target_null_string/>
2766   - <target_aggregation_type>-</target_aggregation_type>
2767   - </field>
2768   - <field>
2769   - <field_name>isfb</field_name>
2770   - <key_value>12</key_value>
2771   - <target_name>fcno12_isfb</target_name>
2772   - <target_type>String</target_type>
2773   - <target_format/>
2774   - <target_length>-1</target_length>
2775   - <target_precision>-1</target_precision>
2776   - <target_decimal_symbol/>
2777   - <target_grouping_symbol/>
2778   - <target_currency_symbol/>
2779   - <target_null_string/>
2780   - <target_aggregation_type>-</target_aggregation_type>
2781   - </field>
2782   - <field>
2783   - <field_name>id</field_name>
2784   - <key_value>13</key_value>
2785   - <target_name>fcno13_id</target_name>
2786   - <target_type>String</target_type>
2787   - <target_format/>
2788   - <target_length>-1</target_length>
2789   - <target_precision>-1</target_precision>
2790   - <target_decimal_symbol/>
2791   - <target_grouping_symbol/>
2792   - <target_currency_symbol/>
2793   - <target_null_string/>
2794   - <target_aggregation_type>-</target_aggregation_type>
2795   - </field>
2796   - <field>
2797   - <field_name>fcsj</field_name>
2798   - <key_value>13</key_value>
2799   - <target_name>fcno13_fcsj</target_name>
2800   - <target_type>String</target_type>
2801   - <target_format/>
2802   - <target_length>-1</target_length>
2803   - <target_precision>-1</target_precision>
2804   - <target_decimal_symbol/>
2805   - <target_grouping_symbol/>
2806   - <target_currency_symbol/>
2807   - <target_null_string/>
2808   - <target_aggregation_type>-</target_aggregation_type>
2809   - </field>
2810   - <field>
2811   - <field_name>jhlc</field_name>
2812   - <key_value>13</key_value>
2813   - <target_name>fcno13_jhlc</target_name>
2814   - <target_type>String</target_type>
2815   - <target_format/>
2816   - <target_length>-1</target_length>
2817   - <target_precision>-1</target_precision>
2818   - <target_decimal_symbol/>
2819   - <target_grouping_symbol/>
2820   - <target_currency_symbol/>
2821   - <target_null_string/>
2822   - <target_aggregation_type>-</target_aggregation_type>
2823   - </field>
2824   - <field>
2825   - <field_name>fczdName</field_name>
2826   - <key_value>13</key_value>
2827   - <target_name>fcno13_zdname</target_name>
2828   - <target_type>String</target_type>
2829   - <target_format/>
2830   - <target_length>-1</target_length>
2831   - <target_precision>-1</target_precision>
2832   - <target_decimal_symbol/>
2833   - <target_grouping_symbol/>
2834   - <target_currency_symbol/>
2835   - <target_null_string/>
2836   - <target_aggregation_type>-</target_aggregation_type>
2837   - </field>
2838   - <field>
2839   - <field_name>bc_type</field_name>
2840   - <key_value>13</key_value>
2841   - <target_name>fcno13_bctype</target_name>
2842   - <target_type>String</target_type>
2843   - <target_format/>
2844   - <target_length>-1</target_length>
2845   - <target_precision>-1</target_precision>
2846   - <target_decimal_symbol/>
2847   - <target_grouping_symbol/>
2848   - <target_currency_symbol/>
2849   - <target_null_string/>
2850   - <target_aggregation_type>-</target_aggregation_type>
2851   - </field>
2852   - <field>
2853   - <field_name>xl_dir</field_name>
2854   - <key_value>13</key_value>
2855   - <target_name>fcno13_xldir</target_name>
2856   - <target_type>String</target_type>
2857   - <target_format/>
2858   - <target_length>-1</target_length>
2859   - <target_precision>-1</target_precision>
2860   - <target_decimal_symbol/>
2861   - <target_grouping_symbol/>
2862   - <target_currency_symbol/>
2863   - <target_null_string/>
2864   - <target_aggregation_type>-</target_aggregation_type>
2865   - </field>
2866   - <field>
2867   - <field_name>isfb</field_name>
2868   - <key_value>13</key_value>
2869   - <target_name>fcno13_isfb</target_name>
2870   - <target_type>String</target_type>
2871   - <target_format/>
2872   - <target_length>-1</target_length>
2873   - <target_precision>-1</target_precision>
2874   - <target_decimal_symbol/>
2875   - <target_grouping_symbol/>
2876   - <target_currency_symbol/>
2877   - <target_null_string/>
2878   - <target_aggregation_type>-</target_aggregation_type>
2879   - </field>
2880   - <field>
2881   - <field_name>id</field_name>
2882   - <key_value>14</key_value>
2883   - <target_name>fcno14_id</target_name>
2884   - <target_type>String</target_type>
2885   - <target_format/>
2886   - <target_length>-1</target_length>
2887   - <target_precision>-1</target_precision>
2888   - <target_decimal_symbol/>
2889   - <target_grouping_symbol/>
2890   - <target_currency_symbol/>
2891   - <target_null_string/>
2892   - <target_aggregation_type>-</target_aggregation_type>
2893   - </field>
2894   - <field>
2895   - <field_name>fcsj</field_name>
2896   - <key_value>14</key_value>
2897   - <target_name>fcno14_fcsj</target_name>
2898   - <target_type>String</target_type>
2899   - <target_format/>
2900   - <target_length>-1</target_length>
2901   - <target_precision>-1</target_precision>
2902   - <target_decimal_symbol/>
2903   - <target_grouping_symbol/>
2904   - <target_currency_symbol/>
2905   - <target_null_string/>
2906   - <target_aggregation_type>-</target_aggregation_type>
2907   - </field>
2908   - <field>
2909   - <field_name>jhlc</field_name>
2910   - <key_value>14</key_value>
2911   - <target_name>fcno14_jhlc</target_name>
2912   - <target_type>String</target_type>
2913   - <target_format/>
2914   - <target_length>-1</target_length>
2915   - <target_precision>-1</target_precision>
2916   - <target_decimal_symbol/>
2917   - <target_grouping_symbol/>
2918   - <target_currency_symbol/>
2919   - <target_null_string/>
2920   - <target_aggregation_type>-</target_aggregation_type>
2921   - </field>
2922   - <field>
2923   - <field_name>fczdName</field_name>
2924   - <key_value>14</key_value>
2925   - <target_name>fcno14_zdname</target_name>
2926   - <target_type>String</target_type>
2927   - <target_format/>
2928   - <target_length>-1</target_length>
2929   - <target_precision>-1</target_precision>
2930   - <target_decimal_symbol/>
2931   - <target_grouping_symbol/>
2932   - <target_currency_symbol/>
2933   - <target_null_string/>
2934   - <target_aggregation_type>-</target_aggregation_type>
2935   - </field>
2936   - <field>
2937   - <field_name>bc_type</field_name>
2938   - <key_value>14</key_value>
2939   - <target_name>fcno14_bctype</target_name>
2940   - <target_type>String</target_type>
2941   - <target_format/>
2942   - <target_length>-1</target_length>
2943   - <target_precision>-1</target_precision>
2944   - <target_decimal_symbol/>
2945   - <target_grouping_symbol/>
2946   - <target_currency_symbol/>
2947   - <target_null_string/>
2948   - <target_aggregation_type>-</target_aggregation_type>
2949   - </field>
2950   - <field>
2951   - <field_name>xl_dir</field_name>
2952   - <key_value>14</key_value>
2953   - <target_name>fcno14_xldir</target_name>
2954   - <target_type>String</target_type>
2955   - <target_format/>
2956   - <target_length>-1</target_length>
2957   - <target_precision>-1</target_precision>
2958   - <target_decimal_symbol/>
2959   - <target_grouping_symbol/>
2960   - <target_currency_symbol/>
2961   - <target_null_string/>
2962   - <target_aggregation_type>-</target_aggregation_type>
2963   - </field>
2964   - <field>
2965   - <field_name>isfb</field_name>
2966   - <key_value>14</key_value>
2967   - <target_name>fcno14_isfb</target_name>
2968   - <target_type>String</target_type>
2969   - <target_format/>
2970   - <target_length>-1</target_length>
2971   - <target_precision>-1</target_precision>
2972   - <target_decimal_symbol/>
2973   - <target_grouping_symbol/>
2974   - <target_currency_symbol/>
2975   - <target_null_string/>
2976   - <target_aggregation_type>-</target_aggregation_type>
2977   - </field>
2978   - <field>
2979   - <field_name>id</field_name>
2980   - <key_value>15</key_value>
2981   - <target_name>fcno15_id</target_name>
2982   - <target_type>String</target_type>
2983   - <target_format/>
2984   - <target_length>-1</target_length>
2985   - <target_precision>-1</target_precision>
2986   - <target_decimal_symbol/>
2987   - <target_grouping_symbol/>
2988   - <target_currency_symbol/>
2989   - <target_null_string/>
2990   - <target_aggregation_type>-</target_aggregation_type>
2991   - </field>
2992   - <field>
2993   - <field_name>fcsj</field_name>
2994   - <key_value>15</key_value>
2995   - <target_name>fcno15_fcsj</target_name>
2996   - <target_type>String</target_type>
2997   - <target_format/>
2998   - <target_length>-1</target_length>
2999   - <target_precision>-1</target_precision>
3000   - <target_decimal_symbol/>
3001   - <target_grouping_symbol/>
3002   - <target_currency_symbol/>
3003   - <target_null_string/>
3004   - <target_aggregation_type>-</target_aggregation_type>
3005   - </field>
3006   - <field>
3007   - <field_name>jhlc</field_name>
3008   - <key_value>15</key_value>
3009   - <target_name>fcno15_jhlc</target_name>
3010   - <target_type>String</target_type>
3011   - <target_format/>
3012   - <target_length>-1</target_length>
3013   - <target_precision>-1</target_precision>
3014   - <target_decimal_symbol/>
3015   - <target_grouping_symbol/>
3016   - <target_currency_symbol/>
3017   - <target_null_string/>
3018   - <target_aggregation_type>-</target_aggregation_type>
3019   - </field>
3020   - <field>
3021   - <field_name>fczdName</field_name>
3022   - <key_value>15</key_value>
3023   - <target_name>fcno15_zdname</target_name>
3024   - <target_type>String</target_type>
3025   - <target_format/>
3026   - <target_length>-1</target_length>
3027   - <target_precision>-1</target_precision>
3028   - <target_decimal_symbol/>
3029   - <target_grouping_symbol/>
3030   - <target_currency_symbol/>
3031   - <target_null_string/>
3032   - <target_aggregation_type>-</target_aggregation_type>
3033   - </field>
3034   - <field>
3035   - <field_name>bc_type</field_name>
3036   - <key_value>15</key_value>
3037   - <target_name>fcno15_bctype</target_name>
3038   - <target_type>String</target_type>
3039   - <target_format/>
3040   - <target_length>-1</target_length>
3041   - <target_precision>-1</target_precision>
3042   - <target_decimal_symbol/>
3043   - <target_grouping_symbol/>
3044   - <target_currency_symbol/>
3045   - <target_null_string/>
3046   - <target_aggregation_type>-</target_aggregation_type>
3047   - </field>
3048   - <field>
3049   - <field_name>xl_dir</field_name>
3050   - <key_value>15</key_value>
3051   - <target_name>fcno15_xldir</target_name>
3052   - <target_type>String</target_type>
3053   - <target_format/>
3054   - <target_length>-1</target_length>
3055   - <target_precision>-1</target_precision>
3056   - <target_decimal_symbol/>
3057   - <target_grouping_symbol/>
3058   - <target_currency_symbol/>
3059   - <target_null_string/>
3060   - <target_aggregation_type>-</target_aggregation_type>
3061   - </field>
3062   - <field>
3063   - <field_name>isfb</field_name>
3064   - <key_value>15</key_value>
3065   - <target_name>fcno15_isfb</target_name>
3066   - <target_type>String</target_type>
3067   - <target_format/>
3068   - <target_length>-1</target_length>
3069   - <target_precision>-1</target_precision>
3070   - <target_decimal_symbol/>
3071   - <target_grouping_symbol/>
3072   - <target_currency_symbol/>
3073   - <target_null_string/>
3074   - <target_aggregation_type>-</target_aggregation_type>
3075   - </field>
3076   - <field>
3077   - <field_name>id</field_name>
3078   - <key_value>16</key_value>
3079   - <target_name>fcno16_id</target_name>
3080   - <target_type>String</target_type>
3081   - <target_format/>
3082   - <target_length>-1</target_length>
3083   - <target_precision>-1</target_precision>
3084   - <target_decimal_symbol/>
3085   - <target_grouping_symbol/>
3086   - <target_currency_symbol/>
3087   - <target_null_string/>
3088   - <target_aggregation_type>-</target_aggregation_type>
3089   - </field>
3090   - <field>
3091   - <field_name>fcsj</field_name>
3092   - <key_value>16</key_value>
3093   - <target_name>fcno16_fcsj</target_name>
3094   - <target_type>String</target_type>
3095   - <target_format/>
3096   - <target_length>-1</target_length>
3097   - <target_precision>-1</target_precision>
3098   - <target_decimal_symbol/>
3099   - <target_grouping_symbol/>
3100   - <target_currency_symbol/>
3101   - <target_null_string/>
3102   - <target_aggregation_type>-</target_aggregation_type>
3103   - </field>
3104   - <field>
3105   - <field_name>jhlc</field_name>
3106   - <key_value>16</key_value>
3107   - <target_name>fcno16_jhlc</target_name>
3108   - <target_type>String</target_type>
3109   - <target_format/>
3110   - <target_length>-1</target_length>
3111   - <target_precision>-1</target_precision>
3112   - <target_decimal_symbol/>
3113   - <target_grouping_symbol/>
3114   - <target_currency_symbol/>
3115   - <target_null_string/>
3116   - <target_aggregation_type>-</target_aggregation_type>
3117   - </field>
3118   - <field>
3119   - <field_name>fczdName</field_name>
3120   - <key_value>16</key_value>
3121   - <target_name>fcno16_zdname</target_name>
3122   - <target_type>String</target_type>
3123   - <target_format/>
3124   - <target_length>-1</target_length>
3125   - <target_precision>-1</target_precision>
3126   - <target_decimal_symbol/>
3127   - <target_grouping_symbol/>
3128   - <target_currency_symbol/>
3129   - <target_null_string/>
3130   - <target_aggregation_type>-</target_aggregation_type>
3131   - </field>
3132   - <field>
3133   - <field_name>bc_type</field_name>
3134   - <key_value>16</key_value>
3135   - <target_name>fcno16_bctype</target_name>
3136   - <target_type>String</target_type>
3137   - <target_format/>
3138   - <target_length>-1</target_length>
3139   - <target_precision>-1</target_precision>
3140   - <target_decimal_symbol/>
3141   - <target_grouping_symbol/>
3142   - <target_currency_symbol/>
3143   - <target_null_string/>
3144   - <target_aggregation_type>-</target_aggregation_type>
3145   - </field>
3146   - <field>
3147   - <field_name>xl_dir</field_name>
3148   - <key_value>16</key_value>
3149   - <target_name>fcno16_xldir</target_name>
3150   - <target_type>String</target_type>
3151   - <target_format/>
3152   - <target_length>-1</target_length>
3153   - <target_precision>-1</target_precision>
3154   - <target_decimal_symbol/>
3155   - <target_grouping_symbol/>
3156   - <target_currency_symbol/>
3157   - <target_null_string/>
3158   - <target_aggregation_type>-</target_aggregation_type>
3159   - </field>
3160   - <field>
3161   - <field_name>isfb</field_name>
3162   - <key_value>16</key_value>
3163   - <target_name>fcno16_isfb</target_name>
3164   - <target_type>String</target_type>
3165   - <target_format/>
3166   - <target_length>-1</target_length>
3167   - <target_precision>-1</target_precision>
3168   - <target_decimal_symbol/>
3169   - <target_grouping_symbol/>
3170   - <target_currency_symbol/>
3171   - <target_null_string/>
3172   - <target_aggregation_type>-</target_aggregation_type>
3173   - </field>
3174   - <field>
3175   - <field_name>id</field_name>
3176   - <key_value>17</key_value>
3177   - <target_name>fcno17_id</target_name>
3178   - <target_type>String</target_type>
3179   - <target_format/>
3180   - <target_length>-1</target_length>
3181   - <target_precision>-1</target_precision>
3182   - <target_decimal_symbol/>
3183   - <target_grouping_symbol/>
3184   - <target_currency_symbol/>
3185   - <target_null_string/>
3186   - <target_aggregation_type>-</target_aggregation_type>
3187   - </field>
3188   - <field>
3189   - <field_name>fcsj</field_name>
3190   - <key_value>17</key_value>
3191   - <target_name>fcno17_fcsj</target_name>
3192   - <target_type>String</target_type>
3193   - <target_format/>
3194   - <target_length>-1</target_length>
3195   - <target_precision>-1</target_precision>
3196   - <target_decimal_symbol/>
3197   - <target_grouping_symbol/>
3198   - <target_currency_symbol/>
3199   - <target_null_string/>
3200   - <target_aggregation_type>-</target_aggregation_type>
3201   - </field>
3202   - <field>
3203   - <field_name>jhlc</field_name>
3204   - <key_value>17</key_value>
3205   - <target_name>fcno17_jhlc</target_name>
3206   - <target_type>String</target_type>
3207   - <target_format/>
3208   - <target_length>-1</target_length>
3209   - <target_precision>-1</target_precision>
3210   - <target_decimal_symbol/>
3211   - <target_grouping_symbol/>
3212   - <target_currency_symbol/>
3213   - <target_null_string/>
3214   - <target_aggregation_type>-</target_aggregation_type>
3215   - </field>
3216   - <field>
3217   - <field_name>fczdName</field_name>
3218   - <key_value>17</key_value>
3219   - <target_name>fcno17_zdname</target_name>
3220   - <target_type>String</target_type>
3221   - <target_format/>
3222   - <target_length>-1</target_length>
3223   - <target_precision>-1</target_precision>
3224   - <target_decimal_symbol/>
3225   - <target_grouping_symbol/>
3226   - <target_currency_symbol/>
3227   - <target_null_string/>
3228   - <target_aggregation_type>-</target_aggregation_type>
3229   - </field>
3230   - <field>
3231   - <field_name>bc_type</field_name>
3232   - <key_value>17</key_value>
3233   - <target_name>fcno17_bctype</target_name>
3234   - <target_type>String</target_type>
3235   - <target_format/>
3236   - <target_length>-1</target_length>
3237   - <target_precision>-1</target_precision>
3238   - <target_decimal_symbol/>
3239   - <target_grouping_symbol/>
3240   - <target_currency_symbol/>
3241   - <target_null_string/>
3242   - <target_aggregation_type>-</target_aggregation_type>
3243   - </field>
3244   - <field>
3245   - <field_name>xl_dir</field_name>
3246   - <key_value>17</key_value>
3247   - <target_name>fcno17_xldir</target_name>
3248   - <target_type>String</target_type>
3249   - <target_format/>
3250   - <target_length>-1</target_length>
3251   - <target_precision>-1</target_precision>
3252   - <target_decimal_symbol/>
3253   - <target_grouping_symbol/>
3254   - <target_currency_symbol/>
3255   - <target_null_string/>
3256   - <target_aggregation_type>-</target_aggregation_type>
3257   - </field>
3258   - <field>
3259   - <field_name>isfb</field_name>
3260   - <key_value>17</key_value>
3261   - <target_name>fcno17_isfb</target_name>
3262   - <target_type>String</target_type>
3263   - <target_format/>
3264   - <target_length>-1</target_length>
3265   - <target_precision>-1</target_precision>
3266   - <target_decimal_symbol/>
3267   - <target_grouping_symbol/>
3268   - <target_currency_symbol/>
3269   - <target_null_string/>
3270   - <target_aggregation_type>-</target_aggregation_type>
3271   - </field>
3272   - <field>
3273   - <field_name>id</field_name>
3274   - <key_value>18</key_value>
3275   - <target_name>fcno18_id</target_name>
3276   - <target_type>String</target_type>
3277   - <target_format/>
3278   - <target_length>-1</target_length>
3279   - <target_precision>-1</target_precision>
3280   - <target_decimal_symbol/>
3281   - <target_grouping_symbol/>
3282   - <target_currency_symbol/>
3283   - <target_null_string/>
3284   - <target_aggregation_type>-</target_aggregation_type>
3285   - </field>
3286   - <field>
3287   - <field_name>fcsj</field_name>
3288   - <key_value>18</key_value>
3289   - <target_name>fcno18_fcsj</target_name>
3290   - <target_type>String</target_type>
3291   - <target_format/>
3292   - <target_length>-1</target_length>
3293   - <target_precision>-1</target_precision>
3294   - <target_decimal_symbol/>
3295   - <target_grouping_symbol/>
3296   - <target_currency_symbol/>
3297   - <target_null_string/>
3298   - <target_aggregation_type>-</target_aggregation_type>
3299   - </field>
3300   - <field>
3301   - <field_name>jhlc</field_name>
3302   - <key_value>18</key_value>
3303   - <target_name>fcno18_jhlc</target_name>
3304   - <target_type>String</target_type>
3305   - <target_format/>
3306   - <target_length>-1</target_length>
3307   - <target_precision>-1</target_precision>
3308   - <target_decimal_symbol/>
3309   - <target_grouping_symbol/>
3310   - <target_currency_symbol/>
3311   - <target_null_string/>
3312   - <target_aggregation_type>-</target_aggregation_type>
3313   - </field>
3314   - <field>
3315   - <field_name>fczdName</field_name>
3316   - <key_value>18</key_value>
3317   - <target_name>fcno18_zdname</target_name>
3318   - <target_type>String</target_type>
3319   - <target_format/>
3320   - <target_length>-1</target_length>
3321   - <target_precision>-1</target_precision>
3322   - <target_decimal_symbol/>
3323   - <target_grouping_symbol/>
3324   - <target_currency_symbol/>
3325   - <target_null_string/>
3326   - <target_aggregation_type>-</target_aggregation_type>
3327   - </field>
3328   - <field>
3329   - <field_name>bc_type</field_name>
3330   - <key_value>18</key_value>
3331   - <target_name>fcno18_bctype</target_name>
3332   - <target_type>String</target_type>
3333   - <target_format/>
3334   - <target_length>-1</target_length>
3335   - <target_precision>-1</target_precision>
3336   - <target_decimal_symbol/>
3337   - <target_grouping_symbol/>
3338   - <target_currency_symbol/>
3339   - <target_null_string/>
3340   - <target_aggregation_type>-</target_aggregation_type>
3341   - </field>
3342   - <field>
3343   - <field_name>xl_dir</field_name>
3344   - <key_value>18</key_value>
3345   - <target_name>fcno18_xldir</target_name>
3346   - <target_type>String</target_type>
3347   - <target_format/>
3348   - <target_length>-1</target_length>
3349   - <target_precision>-1</target_precision>
3350   - <target_decimal_symbol/>
3351   - <target_grouping_symbol/>
3352   - <target_currency_symbol/>
3353   - <target_null_string/>
3354   - <target_aggregation_type>-</target_aggregation_type>
3355   - </field>
3356   - <field>
3357   - <field_name>isfb</field_name>
3358   - <key_value>18</key_value>
3359   - <target_name>fcno18_isfb</target_name>
3360   - <target_type>String</target_type>
3361   - <target_format/>
3362   - <target_length>-1</target_length>
3363   - <target_precision>-1</target_precision>
3364   - <target_decimal_symbol/>
3365   - <target_grouping_symbol/>
3366   - <target_currency_symbol/>
3367   - <target_null_string/>
3368   - <target_aggregation_type>-</target_aggregation_type>
3369   - </field>
3370   - <field>
3371   - <field_name>id</field_name>
3372   - <key_value>19</key_value>
3373   - <target_name>fcno19_id</target_name>
3374   - <target_type>String</target_type>
3375   - <target_format/>
3376   - <target_length>-1</target_length>
3377   - <target_precision>-1</target_precision>
3378   - <target_decimal_symbol/>
3379   - <target_grouping_symbol/>
3380   - <target_currency_symbol/>
3381   - <target_null_string/>
3382   - <target_aggregation_type>-</target_aggregation_type>
3383   - </field>
3384   - <field>
3385   - <field_name>fcsj</field_name>
3386   - <key_value>19</key_value>
3387   - <target_name>fcno19_fcsj</target_name>
3388   - <target_type>String</target_type>
3389   - <target_format/>
3390   - <target_length>-1</target_length>
3391   - <target_precision>-1</target_precision>
3392   - <target_decimal_symbol/>
3393   - <target_grouping_symbol/>
3394   - <target_currency_symbol/>
3395   - <target_null_string/>
3396   - <target_aggregation_type>-</target_aggregation_type>
3397   - </field>
3398   - <field>
3399   - <field_name>jhlc</field_name>
3400   - <key_value>19</key_value>
3401   - <target_name>fcno19_jhlc</target_name>
3402   - <target_type>String</target_type>
3403   - <target_format/>
3404   - <target_length>-1</target_length>
3405   - <target_precision>-1</target_precision>
3406   - <target_decimal_symbol/>
3407   - <target_grouping_symbol/>
3408   - <target_currency_symbol/>
3409   - <target_null_string/>
3410   - <target_aggregation_type>-</target_aggregation_type>
3411   - </field>
3412   - <field>
3413   - <field_name>fczdName</field_name>
3414   - <key_value>19</key_value>
3415   - <target_name>fcno19_zdname</target_name>
3416   - <target_type>String</target_type>
3417   - <target_format/>
3418   - <target_length>-1</target_length>
3419   - <target_precision>-1</target_precision>
3420   - <target_decimal_symbol/>
3421   - <target_grouping_symbol/>
3422   - <target_currency_symbol/>
3423   - <target_null_string/>
3424   - <target_aggregation_type>-</target_aggregation_type>
3425   - </field>
3426   - <field>
3427   - <field_name>bc_type</field_name>
3428   - <key_value>19</key_value>
3429   - <target_name>fcno19_bctype</target_name>
3430   - <target_type>String</target_type>
3431   - <target_format/>
3432   - <target_length>-1</target_length>
3433   - <target_precision>-1</target_precision>
3434   - <target_decimal_symbol/>
3435   - <target_grouping_symbol/>
3436   - <target_currency_symbol/>
3437   - <target_null_string/>
3438   - <target_aggregation_type>-</target_aggregation_type>
3439   - </field>
3440   - <field>
3441   - <field_name>xl_dir</field_name>
3442   - <key_value>19</key_value>
3443   - <target_name>fcno19_xldir</target_name>
3444   - <target_type>String</target_type>
3445   - <target_format/>
3446   - <target_length>-1</target_length>
3447   - <target_precision>-1</target_precision>
3448   - <target_decimal_symbol/>
3449   - <target_grouping_symbol/>
3450   - <target_currency_symbol/>
3451   - <target_null_string/>
3452   - <target_aggregation_type>-</target_aggregation_type>
3453   - </field>
3454   - <field>
3455   - <field_name>isfb</field_name>
3456   - <key_value>19</key_value>
3457   - <target_name>fcno19_isfb</target_name>
3458   - <target_type>String</target_type>
3459   - <target_format/>
3460   - <target_length>-1</target_length>
3461   - <target_precision>-1</target_precision>
3462   - <target_decimal_symbol/>
3463   - <target_grouping_symbol/>
3464   - <target_currency_symbol/>
3465   - <target_null_string/>
3466   - <target_aggregation_type>-</target_aggregation_type>
3467   - </field>
3468   - <field>
3469   - <field_name>id</field_name>
3470   - <key_value>20</key_value>
3471   - <target_name>fcno20_id</target_name>
3472   - <target_type>String</target_type>
3473   - <target_format/>
3474   - <target_length>-1</target_length>
3475   - <target_precision>-1</target_precision>
3476   - <target_decimal_symbol/>
3477   - <target_grouping_symbol/>
3478   - <target_currency_symbol/>
3479   - <target_null_string/>
3480   - <target_aggregation_type>-</target_aggregation_type>
3481   - </field>
3482   - <field>
3483   - <field_name>fcsj</field_name>
3484   - <key_value>20</key_value>
3485   - <target_name>fcno20_fcsj</target_name>
3486   - <target_type>String</target_type>
3487   - <target_format/>
3488   - <target_length>-1</target_length>
3489   - <target_precision>-1</target_precision>
3490   - <target_decimal_symbol/>
3491   - <target_grouping_symbol/>
3492   - <target_currency_symbol/>
3493   - <target_null_string/>
3494   - <target_aggregation_type>-</target_aggregation_type>
3495   - </field>
3496   - <field>
3497   - <field_name>jhlc</field_name>
3498   - <key_value>20</key_value>
3499   - <target_name>fcno20_jhlc</target_name>
3500   - <target_type>String</target_type>
3501   - <target_format/>
3502   - <target_length>-1</target_length>
3503   - <target_precision>-1</target_precision>
3504   - <target_decimal_symbol/>
3505   - <target_grouping_symbol/>
3506   - <target_currency_symbol/>
3507   - <target_null_string/>
3508   - <target_aggregation_type>-</target_aggregation_type>
3509   - </field>
3510   - <field>
3511   - <field_name>fczdName</field_name>
3512   - <key_value>20</key_value>
3513   - <target_name>fcno20_zdname</target_name>
3514   - <target_type>String</target_type>
3515   - <target_format/>
3516   - <target_length>-1</target_length>
3517   - <target_precision>-1</target_precision>
3518   - <target_decimal_symbol/>
3519   - <target_grouping_symbol/>
3520   - <target_currency_symbol/>
3521   - <target_null_string/>
3522   - <target_aggregation_type>-</target_aggregation_type>
3523   - </field>
3524   - <field>
3525   - <field_name>bc_type</field_name>
3526   - <key_value>20</key_value>
3527   - <target_name>fcno20_bctype</target_name>
3528   - <target_type>String</target_type>
3529   - <target_format/>
3530   - <target_length>-1</target_length>
3531   - <target_precision>-1</target_precision>
3532   - <target_decimal_symbol/>
3533   - <target_grouping_symbol/>
3534   - <target_currency_symbol/>
3535   - <target_null_string/>
3536   - <target_aggregation_type>-</target_aggregation_type>
3537   - </field>
3538   - <field>
3539   - <field_name>xl_dir</field_name>
3540   - <key_value>20</key_value>
3541   - <target_name>fcno20_xldir</target_name>
3542   - <target_type>String</target_type>
3543   - <target_format/>
3544   - <target_length>-1</target_length>
3545   - <target_precision>-1</target_precision>
3546   - <target_decimal_symbol/>
3547   - <target_grouping_symbol/>
3548   - <target_currency_symbol/>
3549   - <target_null_string/>
3550   - <target_aggregation_type>-</target_aggregation_type>
3551   - </field>
3552   - <field>
3553   - <field_name>isfb</field_name>
3554   - <key_value>20</key_value>
3555   - <target_name>fcno20_isfb</target_name>
3556   - <target_type>String</target_type>
3557   - <target_format/>
3558   - <target_length>-1</target_length>
3559   - <target_precision>-1</target_precision>
3560   - <target_decimal_symbol/>
3561   - <target_grouping_symbol/>
3562   - <target_currency_symbol/>
3563   - <target_null_string/>
3564   - <target_aggregation_type>-</target_aggregation_type>
3565   - </field>
3566   - <field>
3567   - <field_name>id</field_name>
3568   - <key_value>21</key_value>
3569   - <target_name>fcno21_id</target_name>
3570   - <target_type>String</target_type>
3571   - <target_format/>
3572   - <target_length>-1</target_length>
3573   - <target_precision>-1</target_precision>
3574   - <target_decimal_symbol/>
3575   - <target_grouping_symbol/>
3576   - <target_currency_symbol/>
3577   - <target_null_string/>
3578   - <target_aggregation_type>-</target_aggregation_type>
3579   - </field>
3580   - <field>
3581   - <field_name>fcsj</field_name>
3582   - <key_value>21</key_value>
3583   - <target_name>fcno21_fcsj</target_name>
3584   - <target_type>String</target_type>
3585   - <target_format/>
3586   - <target_length>-1</target_length>
3587   - <target_precision>-1</target_precision>
3588   - <target_decimal_symbol/>
3589   - <target_grouping_symbol/>
3590   - <target_currency_symbol/>
3591   - <target_null_string/>
3592   - <target_aggregation_type>-</target_aggregation_type>
3593   - </field>
3594   - <field>
3595   - <field_name>jhlc</field_name>
3596   - <key_value>21</key_value>
3597   - <target_name>fcno21_jhlc</target_name>
3598   - <target_type>String</target_type>
3599   - <target_format/>
3600   - <target_length>-1</target_length>
3601   - <target_precision>-1</target_precision>
3602   - <target_decimal_symbol/>
3603   - <target_grouping_symbol/>
3604   - <target_currency_symbol/>
3605   - <target_null_string/>
3606   - <target_aggregation_type>-</target_aggregation_type>
3607   - </field>
3608   - <field>
3609   - <field_name>fczdName</field_name>
3610   - <key_value>21</key_value>
3611   - <target_name>fcno21_zdname</target_name>
3612   - <target_type>String</target_type>
3613   - <target_format/>
3614   - <target_length>-1</target_length>
3615   - <target_precision>-1</target_precision>
3616   - <target_decimal_symbol/>
3617   - <target_grouping_symbol/>
3618   - <target_currency_symbol/>
3619   - <target_null_string/>
3620   - <target_aggregation_type>-</target_aggregation_type>
3621   - </field>
3622   - <field>
3623   - <field_name>bc_type</field_name>
3624   - <key_value>21</key_value>
3625   - <target_name>fcno21_bctype</target_name>
3626   - <target_type>String</target_type>
3627   - <target_format/>
3628   - <target_length>-1</target_length>
3629   - <target_precision>-1</target_precision>
3630   - <target_decimal_symbol/>
3631   - <target_grouping_symbol/>
3632   - <target_currency_symbol/>
3633   - <target_null_string/>
3634   - <target_aggregation_type>-</target_aggregation_type>
3635   - </field>
3636   - <field>
3637   - <field_name>xl_dir</field_name>
3638   - <key_value>21</key_value>
3639   - <target_name>fcno21_xldir</target_name>
3640   - <target_type>String</target_type>
3641   - <target_format/>
3642   - <target_length>-1</target_length>
3643   - <target_precision>-1</target_precision>
3644   - <target_decimal_symbol/>
3645   - <target_grouping_symbol/>
3646   - <target_currency_symbol/>
3647   - <target_null_string/>
3648   - <target_aggregation_type>-</target_aggregation_type>
3649   - </field>
3650   - <field>
3651   - <field_name>isfb</field_name>
3652   - <key_value>21</key_value>
3653   - <target_name>fcno21_isfb</target_name>
3654   - <target_type>String</target_type>
3655   - <target_format/>
3656   - <target_length>-1</target_length>
3657   - <target_precision>-1</target_precision>
3658   - <target_decimal_symbol/>
3659   - <target_grouping_symbol/>
3660   - <target_currency_symbol/>
3661   - <target_null_string/>
3662   - <target_aggregation_type>-</target_aggregation_type>
3663   - </field>
3664   - <field>
3665   - <field_name>id</field_name>
3666   - <key_value>22</key_value>
3667   - <target_name>fcno22_id</target_name>
3668   - <target_type>String</target_type>
3669   - <target_format/>
3670   - <target_length>-1</target_length>
3671   - <target_precision>-1</target_precision>
3672   - <target_decimal_symbol/>
3673   - <target_grouping_symbol/>
3674   - <target_currency_symbol/>
3675   - <target_null_string/>
3676   - <target_aggregation_type>-</target_aggregation_type>
3677   - </field>
3678   - <field>
3679   - <field_name>fcsj</field_name>
3680   - <key_value>22</key_value>
3681   - <target_name>fcno22_fcsj</target_name>
3682   - <target_type>String</target_type>
3683   - <target_format/>
3684   - <target_length>-1</target_length>
3685   - <target_precision>-1</target_precision>
3686   - <target_decimal_symbol/>
3687   - <target_grouping_symbol/>
3688   - <target_currency_symbol/>
3689   - <target_null_string/>
3690   - <target_aggregation_type>-</target_aggregation_type>
3691   - </field>
3692   - <field>
3693   - <field_name>jhlc</field_name>
3694   - <key_value>22</key_value>
3695   - <target_name>fcno22_jhlc</target_name>
3696   - <target_type>String</target_type>
3697   - <target_format/>
3698   - <target_length>-1</target_length>
3699   - <target_precision>-1</target_precision>
3700   - <target_decimal_symbol/>
3701   - <target_grouping_symbol/>
3702   - <target_currency_symbol/>
3703   - <target_null_string/>
3704   - <target_aggregation_type>-</target_aggregation_type>
3705   - </field>
3706   - <field>
3707   - <field_name>fczdName</field_name>
3708   - <key_value>22</key_value>
3709   - <target_name>fcno22_zdname</target_name>
3710   - <target_type>String</target_type>
3711   - <target_format/>
3712   - <target_length>-1</target_length>
3713   - <target_precision>-1</target_precision>
3714   - <target_decimal_symbol/>
3715   - <target_grouping_symbol/>
3716   - <target_currency_symbol/>
3717   - <target_null_string/>
3718   - <target_aggregation_type>-</target_aggregation_type>
3719   - </field>
3720   - <field>
3721   - <field_name>bc_type</field_name>
3722   - <key_value>22</key_value>
3723   - <target_name>fcno22_bctype</target_name>
3724   - <target_type>String</target_type>
3725   - <target_format/>
3726   - <target_length>-1</target_length>
3727   - <target_precision>-1</target_precision>
3728   - <target_decimal_symbol/>
3729   - <target_grouping_symbol/>
3730   - <target_currency_symbol/>
3731   - <target_null_string/>
3732   - <target_aggregation_type>-</target_aggregation_type>
3733   - </field>
3734   - <field>
3735   - <field_name>xl_dir</field_name>
3736   - <key_value>22</key_value>
3737   - <target_name>fcno22_xldir</target_name>
3738   - <target_type>String</target_type>
3739   - <target_format/>
3740   - <target_length>-1</target_length>
3741   - <target_precision>-1</target_precision>
3742   - <target_decimal_symbol/>
3743   - <target_grouping_symbol/>
3744   - <target_currency_symbol/>
3745   - <target_null_string/>
3746   - <target_aggregation_type>-</target_aggregation_type>
3747   - </field>
3748   - <field>
3749   - <field_name>isfb</field_name>
3750   - <key_value>22</key_value>
3751   - <target_name>fcno22_isfb</target_name>
3752   - <target_type>String</target_type>
3753   - <target_format/>
3754   - <target_length>-1</target_length>
3755   - <target_precision>-1</target_precision>
3756   - <target_decimal_symbol/>
3757   - <target_grouping_symbol/>
3758   - <target_currency_symbol/>
3759   - <target_null_string/>
3760   - <target_aggregation_type>-</target_aggregation_type>
3761   - </field>
3762   - <field>
3763   - <field_name>id</field_name>
3764   - <key_value>23</key_value>
3765   - <target_name>fcno23_id</target_name>
3766   - <target_type>String</target_type>
3767   - <target_format/>
3768   - <target_length>-1</target_length>
3769   - <target_precision>-1</target_precision>
3770   - <target_decimal_symbol/>
3771   - <target_grouping_symbol/>
3772   - <target_currency_symbol/>
3773   - <target_null_string/>
3774   - <target_aggregation_type>-</target_aggregation_type>
3775   - </field>
3776   - <field>
3777   - <field_name>fcsj</field_name>
3778   - <key_value>23</key_value>
3779   - <target_name>fcno23_fcsj</target_name>
3780   - <target_type>String</target_type>
3781   - <target_format/>
3782   - <target_length>-1</target_length>
3783   - <target_precision>-1</target_precision>
3784   - <target_decimal_symbol/>
3785   - <target_grouping_symbol/>
3786   - <target_currency_symbol/>
3787   - <target_null_string/>
3788   - <target_aggregation_type>-</target_aggregation_type>
3789   - </field>
3790   - <field>
3791   - <field_name>jhlc</field_name>
3792   - <key_value>23</key_value>
3793   - <target_name>fcno23_jhlc</target_name>
3794   - <target_type>String</target_type>
3795   - <target_format/>
3796   - <target_length>-1</target_length>
3797   - <target_precision>-1</target_precision>
3798   - <target_decimal_symbol/>
3799   - <target_grouping_symbol/>
3800   - <target_currency_symbol/>
3801   - <target_null_string/>
3802   - <target_aggregation_type>-</target_aggregation_type>
3803   - </field>
3804   - <field>
3805   - <field_name>fczdName</field_name>
3806   - <key_value>23</key_value>
3807   - <target_name>fcno23_zdname</target_name>
3808   - <target_type>String</target_type>
3809   - <target_format/>
3810   - <target_length>-1</target_length>
3811   - <target_precision>-1</target_precision>
3812   - <target_decimal_symbol/>
3813   - <target_grouping_symbol/>
3814   - <target_currency_symbol/>
3815   - <target_null_string/>
3816   - <target_aggregation_type>-</target_aggregation_type>
3817   - </field>
3818   - <field>
3819   - <field_name>bc_type</field_name>
3820   - <key_value>23</key_value>
3821   - <target_name>fcno23_bctype</target_name>
3822   - <target_type>String</target_type>
3823   - <target_format/>
3824   - <target_length>-1</target_length>
3825   - <target_precision>-1</target_precision>
3826   - <target_decimal_symbol/>
3827   - <target_grouping_symbol/>
3828   - <target_currency_symbol/>
3829   - <target_null_string/>
3830   - <target_aggregation_type>-</target_aggregation_type>
3831   - </field>
3832   - <field>
3833   - <field_name>xl_dir</field_name>
3834   - <key_value>23</key_value>
3835   - <target_name>fcno23_xldir</target_name>
3836   - <target_type>String</target_type>
3837   - <target_format/>
3838   - <target_length>-1</target_length>
3839   - <target_precision>-1</target_precision>
3840   - <target_decimal_symbol/>
3841   - <target_grouping_symbol/>
3842   - <target_currency_symbol/>
3843   - <target_null_string/>
3844   - <target_aggregation_type>-</target_aggregation_type>
3845   - </field>
3846   - <field>
3847   - <field_name>isfb</field_name>
3848   - <key_value>23</key_value>
3849   - <target_name>fcno23_isfb</target_name>
3850   - <target_type>String</target_type>
3851   - <target_format/>
3852   - <target_length>-1</target_length>
3853   - <target_precision>-1</target_precision>
3854   - <target_decimal_symbol/>
3855   - <target_grouping_symbol/>
3856   - <target_currency_symbol/>
3857   - <target_null_string/>
3858   - <target_aggregation_type>-</target_aggregation_type>
3859   - </field>
3860   - <field>
3861   - <field_name>id</field_name>
3862   - <key_value>24</key_value>
3863   - <target_name>fcno24_id</target_name>
3864   - <target_type>String</target_type>
3865   - <target_format/>
3866   - <target_length>-1</target_length>
3867   - <target_precision>-1</target_precision>
3868   - <target_decimal_symbol/>
3869   - <target_grouping_symbol/>
3870   - <target_currency_symbol/>
3871   - <target_null_string/>
3872   - <target_aggregation_type>-</target_aggregation_type>
3873   - </field>
3874   - <field>
3875   - <field_name>fcsj</field_name>
3876   - <key_value>24</key_value>
3877   - <target_name>fcno24_fcsj</target_name>
3878   - <target_type>String</target_type>
3879   - <target_format/>
3880   - <target_length>-1</target_length>
3881   - <target_precision>-1</target_precision>
3882   - <target_decimal_symbol/>
3883   - <target_grouping_symbol/>
3884   - <target_currency_symbol/>
3885   - <target_null_string/>
3886   - <target_aggregation_type>-</target_aggregation_type>
3887   - </field>
3888   - <field>
3889   - <field_name>jhlc</field_name>
3890   - <key_value>24</key_value>
3891   - <target_name>fcno24_jhlc</target_name>
3892   - <target_type>String</target_type>
3893   - <target_format/>
3894   - <target_length>-1</target_length>
3895   - <target_precision>-1</target_precision>
3896   - <target_decimal_symbol/>
3897   - <target_grouping_symbol/>
3898   - <target_currency_symbol/>
3899   - <target_null_string/>
3900   - <target_aggregation_type>-</target_aggregation_type>
3901   - </field>
3902   - <field>
3903   - <field_name>fczdName</field_name>
3904   - <key_value>24</key_value>
3905   - <target_name>fcno24_zdname</target_name>
3906   - <target_type>String</target_type>
3907   - <target_format/>
3908   - <target_length>-1</target_length>
3909   - <target_precision>-1</target_precision>
3910   - <target_decimal_symbol/>
3911   - <target_grouping_symbol/>
3912   - <target_currency_symbol/>
3913   - <target_null_string/>
3914   - <target_aggregation_type>-</target_aggregation_type>
3915   - </field>
3916   - <field>
3917   - <field_name>bc_type</field_name>
3918   - <key_value>24</key_value>
3919   - <target_name>fcno24_bctype</target_name>
3920   - <target_type>String</target_type>
3921   - <target_format/>
3922   - <target_length>-1</target_length>
3923   - <target_precision>-1</target_precision>
3924   - <target_decimal_symbol/>
3925   - <target_grouping_symbol/>
3926   - <target_currency_symbol/>
3927   - <target_null_string/>
3928   - <target_aggregation_type>-</target_aggregation_type>
3929   - </field>
3930   - <field>
3931   - <field_name>xl_dir</field_name>
3932   - <key_value>24</key_value>
3933   - <target_name>fcno24_xldir</target_name>
3934   - <target_type>String</target_type>
3935   - <target_format/>
3936   - <target_length>-1</target_length>
3937   - <target_precision>-1</target_precision>
3938   - <target_decimal_symbol/>
3939   - <target_grouping_symbol/>
3940   - <target_currency_symbol/>
3941   - <target_null_string/>
3942   - <target_aggregation_type>-</target_aggregation_type>
3943   - </field>
3944   - <field>
3945   - <field_name>isfb</field_name>
3946   - <key_value>24</key_value>
3947   - <target_name>fcno24_isfb</target_name>
3948   - <target_type>String</target_type>
3949   - <target_format/>
3950   - <target_length>-1</target_length>
3951   - <target_precision>-1</target_precision>
3952   - <target_decimal_symbol/>
3953   - <target_grouping_symbol/>
3954   - <target_currency_symbol/>
3955   - <target_null_string/>
3956   - <target_aggregation_type>-</target_aggregation_type>
3957   - </field>
3958   - <field>
3959   - <field_name>id</field_name>
3960   - <key_value>25</key_value>
3961   - <target_name>fcno25_id</target_name>
3962   - <target_type>String</target_type>
3963   - <target_format/>
3964   - <target_length>-1</target_length>
3965   - <target_precision>-1</target_precision>
3966   - <target_decimal_symbol/>
3967   - <target_grouping_symbol/>
3968   - <target_currency_symbol/>
3969   - <target_null_string/>
3970   - <target_aggregation_type>-</target_aggregation_type>
3971   - </field>
3972   - <field>
3973   - <field_name>fcsj</field_name>
3974   - <key_value>25</key_value>
3975   - <target_name>fcno25_fcsj</target_name>
3976   - <target_type>String</target_type>
3977   - <target_format/>
3978   - <target_length>-1</target_length>
3979   - <target_precision>-1</target_precision>
3980   - <target_decimal_symbol/>
3981   - <target_grouping_symbol/>
3982   - <target_currency_symbol/>
3983   - <target_null_string/>
3984   - <target_aggregation_type>-</target_aggregation_type>
3985   - </field>
3986   - <field>
3987   - <field_name>jhlc</field_name>
3988   - <key_value>25</key_value>
3989   - <target_name>fcno25_jhlc</target_name>
3990   - <target_type>String</target_type>
3991   - <target_format/>
3992   - <target_length>-1</target_length>
3993   - <target_precision>-1</target_precision>
3994   - <target_decimal_symbol/>
3995   - <target_grouping_symbol/>
3996   - <target_currency_symbol/>
3997   - <target_null_string/>
3998   - <target_aggregation_type>-</target_aggregation_type>
3999   - </field>
4000   - <field>
4001   - <field_name>fczdName</field_name>
4002   - <key_value>25</key_value>
4003   - <target_name>fcno25_zdname</target_name>
4004   - <target_type>String</target_type>
4005   - <target_format/>
4006   - <target_length>-1</target_length>
4007   - <target_precision>-1</target_precision>
4008   - <target_decimal_symbol/>
4009   - <target_grouping_symbol/>
4010   - <target_currency_symbol/>
4011   - <target_null_string/>
4012   - <target_aggregation_type>-</target_aggregation_type>
4013   - </field>
4014   - <field>
4015   - <field_name>bc_type</field_name>
4016   - <key_value>25</key_value>
4017   - <target_name>fcno25_bctype</target_name>
4018   - <target_type>String</target_type>
4019   - <target_format/>
4020   - <target_length>-1</target_length>
4021   - <target_precision>-1</target_precision>
4022   - <target_decimal_symbol/>
4023   - <target_grouping_symbol/>
4024   - <target_currency_symbol/>
4025   - <target_null_string/>
4026   - <target_aggregation_type>-</target_aggregation_type>
4027   - </field>
4028   - <field>
4029   - <field_name>xl_dir</field_name>
4030   - <key_value>25</key_value>
4031   - <target_name>fcno25_xldir</target_name>
4032   - <target_type>String</target_type>
4033   - <target_format/>
4034   - <target_length>-1</target_length>
4035   - <target_precision>-1</target_precision>
4036   - <target_decimal_symbol/>
4037   - <target_grouping_symbol/>
4038   - <target_currency_symbol/>
4039   - <target_null_string/>
4040   - <target_aggregation_type>-</target_aggregation_type>
4041   - </field>
4042   - <field>
4043   - <field_name>isfb</field_name>
4044   - <key_value>25</key_value>
4045   - <target_name>fcno25_isfb</target_name>
4046   - <target_type>String</target_type>
4047   - <target_format/>
4048   - <target_length>-1</target_length>
4049   - <target_precision>-1</target_precision>
4050   - <target_decimal_symbol/>
4051   - <target_grouping_symbol/>
4052   - <target_currency_symbol/>
4053   - <target_null_string/>
4054   - <target_aggregation_type>-</target_aggregation_type>
4055   - </field>
4056   - <field>
4057   - <field_name>id</field_name>
4058   - <key_value>26</key_value>
4059   - <target_name>fcno26_id</target_name>
4060   - <target_type>String</target_type>
4061   - <target_format/>
4062   - <target_length>-1</target_length>
4063   - <target_precision>-1</target_precision>
4064   - <target_decimal_symbol/>
4065   - <target_grouping_symbol/>
4066   - <target_currency_symbol/>
4067   - <target_null_string/>
4068   - <target_aggregation_type>-</target_aggregation_type>
4069   - </field>
4070   - <field>
4071   - <field_name>fcsj</field_name>
4072   - <key_value>26</key_value>
4073   - <target_name>fcno26_fcsj</target_name>
4074   - <target_type>String</target_type>
4075   - <target_format/>
4076   - <target_length>-1</target_length>
4077   - <target_precision>-1</target_precision>
4078   - <target_decimal_symbol/>
4079   - <target_grouping_symbol/>
4080   - <target_currency_symbol/>
4081   - <target_null_string/>
4082   - <target_aggregation_type>-</target_aggregation_type>
4083   - </field>
4084   - <field>
4085   - <field_name>jhlc</field_name>
4086   - <key_value>26</key_value>
4087   - <target_name>fcno26_jhlc</target_name>
4088   - <target_type>String</target_type>
4089   - <target_format/>
4090   - <target_length>-1</target_length>
4091   - <target_precision>-1</target_precision>
4092   - <target_decimal_symbol/>
4093   - <target_grouping_symbol/>
4094   - <target_currency_symbol/>
4095   - <target_null_string/>
4096   - <target_aggregation_type>-</target_aggregation_type>
4097   - </field>
4098   - <field>
4099   - <field_name>fczdName</field_name>
4100   - <key_value>26</key_value>
4101   - <target_name>fcno26_zdname</target_name>
4102   - <target_type>String</target_type>
4103   - <target_format/>
4104   - <target_length>-1</target_length>
4105   - <target_precision>-1</target_precision>
4106   - <target_decimal_symbol/>
4107   - <target_grouping_symbol/>
4108   - <target_currency_symbol/>
4109   - <target_null_string/>
4110   - <target_aggregation_type>-</target_aggregation_type>
4111   - </field>
4112   - <field>
4113   - <field_name>bc_type</field_name>
4114   - <key_value>26</key_value>
4115   - <target_name>fcno26_bctype</target_name>
4116   - <target_type>String</target_type>
4117   - <target_format/>
4118   - <target_length>-1</target_length>
4119   - <target_precision>-1</target_precision>
4120   - <target_decimal_symbol/>
4121   - <target_grouping_symbol/>
4122   - <target_currency_symbol/>
4123   - <target_null_string/>
4124   - <target_aggregation_type>-</target_aggregation_type>
4125   - </field>
4126   - <field>
4127   - <field_name>xl_dir</field_name>
4128   - <key_value>26</key_value>
4129   - <target_name>fcno26_xldir</target_name>
4130   - <target_type>String</target_type>
4131   - <target_format/>
4132   - <target_length>-1</target_length>
4133   - <target_precision>-1</target_precision>
4134   - <target_decimal_symbol/>
4135   - <target_grouping_symbol/>
4136   - <target_currency_symbol/>
4137   - <target_null_string/>
4138   - <target_aggregation_type>-</target_aggregation_type>
4139   - </field>
4140   - <field>
4141   - <field_name>isfb</field_name>
4142   - <key_value>26</key_value>
4143   - <target_name>fcno26_isfb</target_name>
4144   - <target_type>String</target_type>
4145   - <target_format/>
4146   - <target_length>-1</target_length>
4147   - <target_precision>-1</target_precision>
4148   - <target_decimal_symbol/>
4149   - <target_grouping_symbol/>
4150   - <target_currency_symbol/>
4151   - <target_null_string/>
4152   - <target_aggregation_type>-</target_aggregation_type>
4153   - </field>
4154   - <field>
4155   - <field_name>id</field_name>
4156   - <key_value>27</key_value>
4157   - <target_name>fcno27_id</target_name>
4158   - <target_type>String</target_type>
4159   - <target_format/>
4160   - <target_length>-1</target_length>
4161   - <target_precision>-1</target_precision>
4162   - <target_decimal_symbol/>
4163   - <target_grouping_symbol/>
4164   - <target_currency_symbol/>
4165   - <target_null_string/>
4166   - <target_aggregation_type>-</target_aggregation_type>
4167   - </field>
4168   - <field>
4169   - <field_name>fcsj</field_name>
4170   - <key_value>27</key_value>
4171   - <target_name>fcno27_fcsj</target_name>
4172   - <target_type>String</target_type>
4173   - <target_format/>
4174   - <target_length>-1</target_length>
4175   - <target_precision>-1</target_precision>
4176   - <target_decimal_symbol/>
4177   - <target_grouping_symbol/>
4178   - <target_currency_symbol/>
4179   - <target_null_string/>
4180   - <target_aggregation_type>-</target_aggregation_type>
4181   - </field>
4182   - <field>
4183   - <field_name>jhlc</field_name>
4184   - <key_value>27</key_value>
4185   - <target_name>fcno27_jhlc</target_name>
4186   - <target_type>String</target_type>
4187   - <target_format/>
4188   - <target_length>-1</target_length>
4189   - <target_precision>-1</target_precision>
4190   - <target_decimal_symbol/>
4191   - <target_grouping_symbol/>
4192   - <target_currency_symbol/>
4193   - <target_null_string/>
4194   - <target_aggregation_type>-</target_aggregation_type>
4195   - </field>
4196   - <field>
4197   - <field_name>fczdName</field_name>
4198   - <key_value>27</key_value>
4199   - <target_name>fcno27_zdname</target_name>
4200   - <target_type>String</target_type>
4201   - <target_format/>
4202   - <target_length>-1</target_length>
4203   - <target_precision>-1</target_precision>
4204   - <target_decimal_symbol/>
4205   - <target_grouping_symbol/>
4206   - <target_currency_symbol/>
4207   - <target_null_string/>
4208   - <target_aggregation_type>-</target_aggregation_type>
4209   - </field>
4210   - <field>
4211   - <field_name>bc_type</field_name>
4212   - <key_value>27</key_value>
4213   - <target_name>fcno27_bctype</target_name>
4214   - <target_type>String</target_type>
4215   - <target_format/>
4216   - <target_length>-1</target_length>
4217   - <target_precision>-1</target_precision>
4218   - <target_decimal_symbol/>
4219   - <target_grouping_symbol/>
4220   - <target_currency_symbol/>
4221   - <target_null_string/>
4222   - <target_aggregation_type>-</target_aggregation_type>
4223   - </field>
4224   - <field>
4225   - <field_name>xl_dir</field_name>
4226   - <key_value>27</key_value>
4227   - <target_name>fcno27_xldir</target_name>
4228   - <target_type>String</target_type>
4229   - <target_format/>
4230   - <target_length>-1</target_length>
4231   - <target_precision>-1</target_precision>
4232   - <target_decimal_symbol/>
4233   - <target_grouping_symbol/>
4234   - <target_currency_symbol/>
4235   - <target_null_string/>
4236   - <target_aggregation_type>-</target_aggregation_type>
4237   - </field>
4238   - <field>
4239   - <field_name>isfb</field_name>
4240   - <key_value>27</key_value>
4241   - <target_name>fcno27_isfb</target_name>
4242   - <target_type>String</target_type>
4243   - <target_format/>
4244   - <target_length>-1</target_length>
4245   - <target_precision>-1</target_precision>
4246   - <target_decimal_symbol/>
4247   - <target_grouping_symbol/>
4248   - <target_currency_symbol/>
4249   - <target_null_string/>
4250   - <target_aggregation_type>-</target_aggregation_type>
4251   - </field>
4252   - <field>
4253   - <field_name>id</field_name>
4254   - <key_value>28</key_value>
4255   - <target_name>fcno28_id</target_name>
4256   - <target_type>String</target_type>
4257   - <target_format/>
4258   - <target_length>-1</target_length>
4259   - <target_precision>-1</target_precision>
4260   - <target_decimal_symbol/>
4261   - <target_grouping_symbol/>
4262   - <target_currency_symbol/>
4263   - <target_null_string/>
4264   - <target_aggregation_type>-</target_aggregation_type>
4265   - </field>
4266   - <field>
4267   - <field_name>fcsj</field_name>
4268   - <key_value>28</key_value>
4269   - <target_name>fcno28_fcsj</target_name>
4270   - <target_type>String</target_type>
4271   - <target_format/>
4272   - <target_length>-1</target_length>
4273   - <target_precision>-1</target_precision>
4274   - <target_decimal_symbol/>
4275   - <target_grouping_symbol/>
4276   - <target_currency_symbol/>
4277   - <target_null_string/>
4278   - <target_aggregation_type>-</target_aggregation_type>
4279   - </field>
4280   - <field>
4281   - <field_name>jhlc</field_name>
4282   - <key_value>28</key_value>
4283   - <target_name>fcno28_jhlc</target_name>
4284   - <target_type>String</target_type>
4285   - <target_format/>
4286   - <target_length>-1</target_length>
4287   - <target_precision>-1</target_precision>
4288   - <target_decimal_symbol/>
4289   - <target_grouping_symbol/>
4290   - <target_currency_symbol/>
4291   - <target_null_string/>
4292   - <target_aggregation_type>-</target_aggregation_type>
4293   - </field>
4294   - <field>
4295   - <field_name>fczdName</field_name>
4296   - <key_value>28</key_value>
4297   - <target_name>fcno28_zdname</target_name>
4298   - <target_type>String</target_type>
4299   - <target_format/>
4300   - <target_length>-1</target_length>
4301   - <target_precision>-1</target_precision>
4302   - <target_decimal_symbol/>
4303   - <target_grouping_symbol/>
4304   - <target_currency_symbol/>
4305   - <target_null_string/>
4306   - <target_aggregation_type>-</target_aggregation_type>
4307   - </field>
4308   - <field>
4309   - <field_name>bc_type</field_name>
4310   - <key_value>28</key_value>
4311   - <target_name>fcno28_bctype</target_name>
4312   - <target_type>String</target_type>
4313   - <target_format/>
4314   - <target_length>-1</target_length>
4315   - <target_precision>-1</target_precision>
4316   - <target_decimal_symbol/>
4317   - <target_grouping_symbol/>
4318   - <target_currency_symbol/>
4319   - <target_null_string/>
4320   - <target_aggregation_type>-</target_aggregation_type>
4321   - </field>
4322   - <field>
4323   - <field_name>xl_dir</field_name>
4324   - <key_value>28</key_value>
4325   - <target_name>fcno28_xldir</target_name>
4326   - <target_type>String</target_type>
4327   - <target_format/>
4328   - <target_length>-1</target_length>
4329   - <target_precision>-1</target_precision>
4330   - <target_decimal_symbol/>
4331   - <target_grouping_symbol/>
4332   - <target_currency_symbol/>
4333   - <target_null_string/>
4334   - <target_aggregation_type>-</target_aggregation_type>
4335   - </field>
4336   - <field>
4337   - <field_name>isfb</field_name>
4338   - <key_value>28</key_value>
4339   - <target_name>fcno28_isfb</target_name>
4340   - <target_type>String</target_type>
4341   - <target_format/>
4342   - <target_length>-1</target_length>
4343   - <target_precision>-1</target_precision>
4344   - <target_decimal_symbol/>
4345   - <target_grouping_symbol/>
4346   - <target_currency_symbol/>
4347   - <target_null_string/>
4348   - <target_aggregation_type>-</target_aggregation_type>
4349   - </field>
4350   - <field>
4351   - <field_name>id</field_name>
4352   - <key_value>29</key_value>
4353   - <target_name>fcno29_id</target_name>
4354   - <target_type>String</target_type>
4355   - <target_format/>
4356   - <target_length>-1</target_length>
4357   - <target_precision>-1</target_precision>
4358   - <target_decimal_symbol/>
4359   - <target_grouping_symbol/>
4360   - <target_currency_symbol/>
4361   - <target_null_string/>
4362   - <target_aggregation_type>-</target_aggregation_type>
4363   - </field>
4364   - <field>
4365   - <field_name>fcsj</field_name>
4366   - <key_value>29</key_value>
4367   - <target_name>fcno29_fcsj</target_name>
4368   - <target_type>String</target_type>
4369   - <target_format/>
4370   - <target_length>-1</target_length>
4371   - <target_precision>-1</target_precision>
4372   - <target_decimal_symbol/>
4373   - <target_grouping_symbol/>
4374   - <target_currency_symbol/>
4375   - <target_null_string/>
4376   - <target_aggregation_type>-</target_aggregation_type>
4377   - </field>
4378   - <field>
4379   - <field_name>jhlc</field_name>
4380   - <key_value>29</key_value>
4381   - <target_name>fcno29_jhlc</target_name>
4382   - <target_type>String</target_type>
4383   - <target_format/>
4384   - <target_length>-1</target_length>
4385   - <target_precision>-1</target_precision>
4386   - <target_decimal_symbol/>
4387   - <target_grouping_symbol/>
4388   - <target_currency_symbol/>
4389   - <target_null_string/>
4390   - <target_aggregation_type>-</target_aggregation_type>
4391   - </field>
4392   - <field>
4393   - <field_name>fczdName</field_name>
4394   - <key_value>29</key_value>
4395   - <target_name>fcno29_zdname</target_name>
4396   - <target_type>String</target_type>
4397   - <target_format/>
4398   - <target_length>-1</target_length>
4399   - <target_precision>-1</target_precision>
4400   - <target_decimal_symbol/>
4401   - <target_grouping_symbol/>
4402   - <target_currency_symbol/>
4403   - <target_null_string/>
4404   - <target_aggregation_type>-</target_aggregation_type>
4405   - </field>
4406   - <field>
4407   - <field_name>bc_type</field_name>
4408   - <key_value>29</key_value>
4409   - <target_name>fcno29_bctype</target_name>
4410   - <target_type>String</target_type>
4411   - <target_format/>
4412   - <target_length>-1</target_length>
4413   - <target_precision>-1</target_precision>
4414   - <target_decimal_symbol/>
4415   - <target_grouping_symbol/>
4416   - <target_currency_symbol/>
4417   - <target_null_string/>
4418   - <target_aggregation_type>-</target_aggregation_type>
4419   - </field>
4420   - <field>
4421   - <field_name>xl_dir</field_name>
4422   - <key_value>29</key_value>
4423   - <target_name>fcno29_xldir</target_name>
4424   - <target_type>String</target_type>
4425   - <target_format/>
4426   - <target_length>-1</target_length>
4427   - <target_precision>-1</target_precision>
4428   - <target_decimal_symbol/>
4429   - <target_grouping_symbol/>
4430   - <target_currency_symbol/>
4431   - <target_null_string/>
4432   - <target_aggregation_type>-</target_aggregation_type>
4433   - </field>
4434   - <field>
4435   - <field_name>isfb</field_name>
4436   - <key_value>29</key_value>
4437   - <target_name>fcno29_isfb</target_name>
4438   - <target_type>String</target_type>
4439   - <target_format/>
4440   - <target_length>-1</target_length>
4441   - <target_precision>-1</target_precision>
4442   - <target_decimal_symbol/>
4443   - <target_grouping_symbol/>
4444   - <target_currency_symbol/>
4445   - <target_null_string/>
4446   - <target_aggregation_type>-</target_aggregation_type>
4447   - </field>
4448   - <field>
4449   - <field_name>id</field_name>
4450   - <key_value>30</key_value>
4451   - <target_name>fcno30_id</target_name>
4452   - <target_type>String</target_type>
4453   - <target_format/>
4454   - <target_length>-1</target_length>
4455   - <target_precision>-1</target_precision>
4456   - <target_decimal_symbol/>
4457   - <target_grouping_symbol/>
4458   - <target_currency_symbol/>
4459   - <target_null_string/>
4460   - <target_aggregation_type>-</target_aggregation_type>
4461   - </field>
4462   - <field>
4463   - <field_name>fcsj</field_name>
4464   - <key_value>30</key_value>
4465   - <target_name>fcno30_fcsj</target_name>
4466   - <target_type>String</target_type>
4467   - <target_format/>
4468   - <target_length>-1</target_length>
4469   - <target_precision>-1</target_precision>
4470   - <target_decimal_symbol/>
4471   - <target_grouping_symbol/>
4472   - <target_currency_symbol/>
4473   - <target_null_string/>
4474   - <target_aggregation_type>-</target_aggregation_type>
4475   - </field>
4476   - <field>
4477   - <field_name>jhlc</field_name>
4478   - <key_value>30</key_value>
4479   - <target_name>fcno30_jhlc</target_name>
4480   - <target_type>String</target_type>
4481   - <target_format/>
4482   - <target_length>-1</target_length>
4483   - <target_precision>-1</target_precision>
4484   - <target_decimal_symbol/>
4485   - <target_grouping_symbol/>
4486   - <target_currency_symbol/>
4487   - <target_null_string/>
4488   - <target_aggregation_type>-</target_aggregation_type>
4489   - </field>
4490   - <field>
4491   - <field_name>fczdName</field_name>
4492   - <key_value>30</key_value>
4493   - <target_name>fcno30_zdname</target_name>
4494   - <target_type>String</target_type>
4495   - <target_format/>
4496   - <target_length>-1</target_length>
4497   - <target_precision>-1</target_precision>
4498   - <target_decimal_symbol/>
4499   - <target_grouping_symbol/>
4500   - <target_currency_symbol/>
4501   - <target_null_string/>
4502   - <target_aggregation_type>-</target_aggregation_type>
4503   - </field>
4504   - <field>
4505   - <field_name>bc_type</field_name>
4506   - <key_value>30</key_value>
4507   - <target_name>fcno30_bctype</target_name>
4508   - <target_type>String</target_type>
4509   - <target_format/>
4510   - <target_length>-1</target_length>
4511   - <target_precision>-1</target_precision>
4512   - <target_decimal_symbol/>
4513   - <target_grouping_symbol/>
4514   - <target_currency_symbol/>
4515   - <target_null_string/>
4516   - <target_aggregation_type>-</target_aggregation_type>
4517   - </field>
4518   - <field>
4519   - <field_name>xl_dir</field_name>
4520   - <key_value>30</key_value>
4521   - <target_name>fcno30_xldir</target_name>
4522   - <target_type>String</target_type>
4523   - <target_format/>
4524   - <target_length>-1</target_length>
4525   - <target_precision>-1</target_precision>
4526   - <target_decimal_symbol/>
4527   - <target_grouping_symbol/>
4528   - <target_currency_symbol/>
4529   - <target_null_string/>
4530   - <target_aggregation_type>-</target_aggregation_type>
4531   - </field>
4532   - <field>
4533   - <field_name>isfb</field_name>
4534   - <key_value>30</key_value>
4535   - <target_name>fcno30_isfb</target_name>
4536   - <target_type>String</target_type>
4537   - <target_format/>
4538   - <target_length>-1</target_length>
4539   - <target_precision>-1</target_precision>
4540   - <target_decimal_symbol/>
4541   - <target_grouping_symbol/>
4542   - <target_currency_symbol/>
4543   - <target_null_string/>
4544   - <target_aggregation_type>-</target_aggregation_type>
4545   - </field>
4546   - <field>
4547   - <field_name>id</field_name>
4548   - <key_value>31</key_value>
4549   - <target_name>fcno31_id</target_name>
4550   - <target_type>String</target_type>
4551   - <target_format/>
4552   - <target_length>-1</target_length>
4553   - <target_precision>-1</target_precision>
4554   - <target_decimal_symbol/>
4555   - <target_grouping_symbol/>
4556   - <target_currency_symbol/>
4557   - <target_null_string/>
4558   - <target_aggregation_type>-</target_aggregation_type>
4559   - </field>
4560   - <field>
4561   - <field_name>fcsj</field_name>
4562   - <key_value>31</key_value>
4563   - <target_name>fcno31_fcsj</target_name>
4564   - <target_type>String</target_type>
4565   - <target_format/>
4566   - <target_length>-1</target_length>
4567   - <target_precision>-1</target_precision>
4568   - <target_decimal_symbol/>
4569   - <target_grouping_symbol/>
4570   - <target_currency_symbol/>
4571   - <target_null_string/>
4572   - <target_aggregation_type>-</target_aggregation_type>
4573   - </field>
4574   - <field>
4575   - <field_name>jhlc</field_name>
4576   - <key_value>31</key_value>
4577   - <target_name>fcno31_jhlc</target_name>
4578   - <target_type>String</target_type>
4579   - <target_format/>
4580   - <target_length>-1</target_length>
4581   - <target_precision>-1</target_precision>
4582   - <target_decimal_symbol/>
4583   - <target_grouping_symbol/>
4584   - <target_currency_symbol/>
4585   - <target_null_string/>
4586   - <target_aggregation_type>-</target_aggregation_type>
4587   - </field>
4588   - <field>
4589   - <field_name>fczdName</field_name>
4590   - <key_value>31</key_value>
4591   - <target_name>fcno31_zdname</target_name>
4592   - <target_type>String</target_type>
4593   - <target_format/>
4594   - <target_length>-1</target_length>
4595   - <target_precision>-1</target_precision>
4596   - <target_decimal_symbol/>
4597   - <target_grouping_symbol/>
4598   - <target_currency_symbol/>
4599   - <target_null_string/>
4600   - <target_aggregation_type>-</target_aggregation_type>
4601   - </field>
4602   - <field>
4603   - <field_name>bc_type</field_name>
4604   - <key_value>31</key_value>
4605   - <target_name>fcno31_bctype</target_name>
4606   - <target_type>String</target_type>
4607   - <target_format/>
4608   - <target_length>-1</target_length>
4609   - <target_precision>-1</target_precision>
4610   - <target_decimal_symbol/>
4611   - <target_grouping_symbol/>
4612   - <target_currency_symbol/>
4613   - <target_null_string/>
4614   - <target_aggregation_type>-</target_aggregation_type>
4615   - </field>
4616   - <field>
4617   - <field_name>xl_dir</field_name>
4618   - <key_value>31</key_value>
4619   - <target_name>fcno31_xldir</target_name>
4620   - <target_type>String</target_type>
4621   - <target_format/>
4622   - <target_length>-1</target_length>
4623   - <target_precision>-1</target_precision>
4624   - <target_decimal_symbol/>
4625   - <target_grouping_symbol/>
4626   - <target_currency_symbol/>
4627   - <target_null_string/>
4628   - <target_aggregation_type>-</target_aggregation_type>
4629   - </field>
4630   - <field>
4631   - <field_name>isfb</field_name>
4632   - <key_value>31</key_value>
4633   - <target_name>fcno31_isfb</target_name>
4634   - <target_type>String</target_type>
4635   - <target_format/>
4636   - <target_length>-1</target_length>
4637   - <target_precision>-1</target_precision>
4638   - <target_decimal_symbol/>
4639   - <target_grouping_symbol/>
4640   - <target_currency_symbol/>
4641   - <target_null_string/>
4642   - <target_aggregation_type>-</target_aggregation_type>
4643   - </field>
4644   - <field>
4645   - <field_name>id</field_name>
4646   - <key_value>32</key_value>
4647   - <target_name>fcno32_id</target_name>
4648   - <target_type>String</target_type>
4649   - <target_format/>
4650   - <target_length>-1</target_length>
4651   - <target_precision>-1</target_precision>
4652   - <target_decimal_symbol/>
4653   - <target_grouping_symbol/>
4654   - <target_currency_symbol/>
4655   - <target_null_string/>
4656   - <target_aggregation_type>-</target_aggregation_type>
4657   - </field>
4658   - <field>
4659   - <field_name>fcsj</field_name>
4660   - <key_value>32</key_value>
4661   - <target_name>fcno32_fcsj</target_name>
4662   - <target_type>String</target_type>
4663   - <target_format/>
4664   - <target_length>-1</target_length>
4665   - <target_precision>-1</target_precision>
4666   - <target_decimal_symbol/>
4667   - <target_grouping_symbol/>
4668   - <target_currency_symbol/>
4669   - <target_null_string/>
4670   - <target_aggregation_type>-</target_aggregation_type>
4671   - </field>
4672   - <field>
4673   - <field_name>jhlc</field_name>
4674   - <key_value>32</key_value>
4675   - <target_name>fcno32_jhlc</target_name>
4676   - <target_type>String</target_type>
4677   - <target_format/>
4678   - <target_length>-1</target_length>
4679   - <target_precision>-1</target_precision>
4680   - <target_decimal_symbol/>
4681   - <target_grouping_symbol/>
4682   - <target_currency_symbol/>
4683   - <target_null_string/>
4684   - <target_aggregation_type>-</target_aggregation_type>
4685   - </field>
4686   - <field>
4687   - <field_name>fczdName</field_name>
4688   - <key_value>32</key_value>
4689   - <target_name>fcno32_zdname</target_name>
4690   - <target_type>String</target_type>
4691   - <target_format/>
4692   - <target_length>-1</target_length>
4693   - <target_precision>-1</target_precision>
4694   - <target_decimal_symbol/>
4695   - <target_grouping_symbol/>
4696   - <target_currency_symbol/>
4697   - <target_null_string/>
4698   - <target_aggregation_type>-</target_aggregation_type>
4699   - </field>
4700   - <field>
4701   - <field_name>bc_type</field_name>
4702   - <key_value>32</key_value>
4703   - <target_name>fcno32_bctype</target_name>
4704   - <target_type>String</target_type>
4705   - <target_format/>
4706   - <target_length>-1</target_length>
4707   - <target_precision>-1</target_precision>
4708   - <target_decimal_symbol/>
4709   - <target_grouping_symbol/>
4710   - <target_currency_symbol/>
4711   - <target_null_string/>
4712   - <target_aggregation_type>-</target_aggregation_type>
4713   - </field>
4714   - <field>
4715   - <field_name>xl_dir</field_name>
4716   - <key_value>32</key_value>
4717   - <target_name>fcno32_xldir</target_name>
4718   - <target_type>String</target_type>
4719   - <target_format/>
4720   - <target_length>-1</target_length>
4721   - <target_precision>-1</target_precision>
4722   - <target_decimal_symbol/>
4723   - <target_grouping_symbol/>
4724   - <target_currency_symbol/>
4725   - <target_null_string/>
4726   - <target_aggregation_type>-</target_aggregation_type>
4727   - </field>
4728   - <field>
4729   - <field_name>isfb</field_name>
4730   - <key_value>32</key_value>
4731   - <target_name>fcno32_isfb</target_name>
4732   - <target_type>String</target_type>
4733   - <target_format/>
4734   - <target_length>-1</target_length>
4735   - <target_precision>-1</target_precision>
4736   - <target_decimal_symbol/>
4737   - <target_grouping_symbol/>
4738   - <target_currency_symbol/>
4739   - <target_null_string/>
4740   - <target_aggregation_type>-</target_aggregation_type>
4741   - </field>
4742   - <field>
4743   - <field_name>id</field_name>
4744   - <key_value>33</key_value>
4745   - <target_name>fcno33_id</target_name>
4746   - <target_type>String</target_type>
4747   - <target_format/>
4748   - <target_length>-1</target_length>
4749   - <target_precision>-1</target_precision>
4750   - <target_decimal_symbol/>
4751   - <target_grouping_symbol/>
4752   - <target_currency_symbol/>
4753   - <target_null_string/>
4754   - <target_aggregation_type>-</target_aggregation_type>
4755   - </field>
4756   - <field>
4757   - <field_name>fcsj</field_name>
4758   - <key_value>33</key_value>
4759   - <target_name>fcno33_fcsj</target_name>
4760   - <target_type>String</target_type>
4761   - <target_format/>
4762   - <target_length>-1</target_length>
4763   - <target_precision>-1</target_precision>
4764   - <target_decimal_symbol/>
4765   - <target_grouping_symbol/>
4766   - <target_currency_symbol/>
4767   - <target_null_string/>
4768   - <target_aggregation_type>-</target_aggregation_type>
4769   - </field>
4770   - <field>
4771   - <field_name>jhlc</field_name>
4772   - <key_value>33</key_value>
4773   - <target_name>fcno33_jhlc</target_name>
4774   - <target_type>String</target_type>
4775   - <target_format/>
4776   - <target_length>-1</target_length>
4777   - <target_precision>-1</target_precision>
4778   - <target_decimal_symbol/>
4779   - <target_grouping_symbol/>
4780   - <target_currency_symbol/>
4781   - <target_null_string/>
4782   - <target_aggregation_type>-</target_aggregation_type>
4783   - </field>
4784   - <field>
4785   - <field_name>fczdName</field_name>
4786   - <key_value>33</key_value>
4787   - <target_name>fcno33_zdname</target_name>
4788   - <target_type>String</target_type>
4789   - <target_format/>
4790   - <target_length>-1</target_length>
4791   - <target_precision>-1</target_precision>
4792   - <target_decimal_symbol/>
4793   - <target_grouping_symbol/>
4794   - <target_currency_symbol/>
4795   - <target_null_string/>
4796   - <target_aggregation_type>-</target_aggregation_type>
4797   - </field>
4798   - <field>
4799   - <field_name>bc_type</field_name>
4800   - <key_value>33</key_value>
4801   - <target_name>fcno33_bctype</target_name>
4802   - <target_type>String</target_type>
4803   - <target_format/>
4804   - <target_length>-1</target_length>
4805   - <target_precision>-1</target_precision>
4806   - <target_decimal_symbol/>
4807   - <target_grouping_symbol/>
4808   - <target_currency_symbol/>
4809   - <target_null_string/>
4810   - <target_aggregation_type>-</target_aggregation_type>
4811   - </field>
4812   - <field>
4813   - <field_name>xl_dir</field_name>
4814   - <key_value>33</key_value>
4815   - <target_name>fcno33_xldir</target_name>
4816   - <target_type>String</target_type>
4817   - <target_format/>
4818   - <target_length>-1</target_length>
4819   - <target_precision>-1</target_precision>
4820   - <target_decimal_symbol/>
4821   - <target_grouping_symbol/>
4822   - <target_currency_symbol/>
4823   - <target_null_string/>
4824   - <target_aggregation_type>-</target_aggregation_type>
4825   - </field>
4826   - <field>
4827   - <field_name>isfb</field_name>
4828   - <key_value>33</key_value>
4829   - <target_name>fcno33_isfb</target_name>
4830   - <target_type>String</target_type>
4831   - <target_format/>
4832   - <target_length>-1</target_length>
4833   - <target_precision>-1</target_precision>
4834   - <target_decimal_symbol/>
4835   - <target_grouping_symbol/>
4836   - <target_currency_symbol/>
4837   - <target_null_string/>
4838   - <target_aggregation_type>-</target_aggregation_type>
4839   - </field>
4840   - <field>
4841   - <field_name>id</field_name>
4842   - <key_value>34</key_value>
4843   - <target_name>fcno34_id</target_name>
4844   - <target_type>String</target_type>
4845   - <target_format/>
4846   - <target_length>-1</target_length>
4847   - <target_precision>-1</target_precision>
4848   - <target_decimal_symbol/>
4849   - <target_grouping_symbol/>
4850   - <target_currency_symbol/>
4851   - <target_null_string/>
4852   - <target_aggregation_type>-</target_aggregation_type>
4853   - </field>
4854   - <field>
4855   - <field_name>fcsj</field_name>
4856   - <key_value>34</key_value>
4857   - <target_name>fcno34_fcsj</target_name>
4858   - <target_type>String</target_type>
4859   - <target_format/>
4860   - <target_length>-1</target_length>
4861   - <target_precision>-1</target_precision>
4862   - <target_decimal_symbol/>
4863   - <target_grouping_symbol/>
4864   - <target_currency_symbol/>
4865   - <target_null_string/>
4866   - <target_aggregation_type>-</target_aggregation_type>
4867   - </field>
4868   - <field>
4869   - <field_name>jhlc</field_name>
4870   - <key_value>34</key_value>
4871   - <target_name>fcno34_jhlc</target_name>
4872   - <target_type>String</target_type>
4873   - <target_format/>
4874   - <target_length>-1</target_length>
4875   - <target_precision>-1</target_precision>
4876   - <target_decimal_symbol/>
4877   - <target_grouping_symbol/>
4878   - <target_currency_symbol/>
4879   - <target_null_string/>
4880   - <target_aggregation_type>-</target_aggregation_type>
4881   - </field>
4882   - <field>
4883   - <field_name>fczdName</field_name>
4884   - <key_value>34</key_value>
4885   - <target_name>fcno34_zdname</target_name>
4886   - <target_type>String</target_type>
4887   - <target_format/>
4888   - <target_length>-1</target_length>
4889   - <target_precision>-1</target_precision>
4890   - <target_decimal_symbol/>
4891   - <target_grouping_symbol/>
4892   - <target_currency_symbol/>
4893   - <target_null_string/>
4894   - <target_aggregation_type>-</target_aggregation_type>
4895   - </field>
4896   - <field>
4897   - <field_name>bc_type</field_name>
4898   - <key_value>34</key_value>
4899   - <target_name>fcno34_bctype</target_name>
4900   - <target_type>String</target_type>
4901   - <target_format/>
4902   - <target_length>-1</target_length>
4903   - <target_precision>-1</target_precision>
4904   - <target_decimal_symbol/>
4905   - <target_grouping_symbol/>
4906   - <target_currency_symbol/>
4907   - <target_null_string/>
4908   - <target_aggregation_type>-</target_aggregation_type>
4909   - </field>
4910   - <field>
4911   - <field_name>xl_dir</field_name>
4912   - <key_value>34</key_value>
4913   - <target_name>fcno34_xldir</target_name>
4914   - <target_type>String</target_type>
4915   - <target_format/>
4916   - <target_length>-1</target_length>
4917   - <target_precision>-1</target_precision>
4918   - <target_decimal_symbol/>
4919   - <target_grouping_symbol/>
4920   - <target_currency_symbol/>
4921   - <target_null_string/>
4922   - <target_aggregation_type>-</target_aggregation_type>
4923   - </field>
4924   - <field>
4925   - <field_name>isfb</field_name>
4926   - <key_value>34</key_value>
4927   - <target_name>fcno34_isfb</target_name>
4928   - <target_type>String</target_type>
4929   - <target_format/>
4930   - <target_length>-1</target_length>
4931   - <target_precision>-1</target_precision>
4932   - <target_decimal_symbol/>
4933   - <target_grouping_symbol/>
4934   - <target_currency_symbol/>
4935   - <target_null_string/>
4936   - <target_aggregation_type>-</target_aggregation_type>
4937   - </field>
4938   - <field>
4939   - <field_name>id</field_name>
4940   - <key_value>35</key_value>
4941   - <target_name>fcno35_id</target_name>
4942   - <target_type>String</target_type>
4943   - <target_format/>
4944   - <target_length>-1</target_length>
4945   - <target_precision>-1</target_precision>
4946   - <target_decimal_symbol/>
4947   - <target_grouping_symbol/>
4948   - <target_currency_symbol/>
4949   - <target_null_string/>
4950   - <target_aggregation_type>-</target_aggregation_type>
4951   - </field>
4952   - <field>
4953   - <field_name>fcsj</field_name>
4954   - <key_value>35</key_value>
4955   - <target_name>fcno35_fcsj</target_name>
4956   - <target_type>String</target_type>
4957   - <target_format/>
4958   - <target_length>-1</target_length>
4959   - <target_precision>-1</target_precision>
4960   - <target_decimal_symbol/>
4961   - <target_grouping_symbol/>
4962   - <target_currency_symbol/>
4963   - <target_null_string/>
4964   - <target_aggregation_type>-</target_aggregation_type>
4965   - </field>
4966   - <field>
4967   - <field_name>jhlc</field_name>
4968   - <key_value>35</key_value>
4969   - <target_name>fcno35_jhlc</target_name>
4970   - <target_type>String</target_type>
4971   - <target_format/>
4972   - <target_length>-1</target_length>
4973   - <target_precision>-1</target_precision>
4974   - <target_decimal_symbol/>
4975   - <target_grouping_symbol/>
4976   - <target_currency_symbol/>
4977   - <target_null_string/>
4978   - <target_aggregation_type>-</target_aggregation_type>
4979   - </field>
4980   - <field>
4981   - <field_name>fczdName</field_name>
4982   - <key_value>35</key_value>
4983   - <target_name>fcno35_zdname</target_name>
4984   - <target_type>String</target_type>
4985   - <target_format/>
4986   - <target_length>-1</target_length>
4987   - <target_precision>-1</target_precision>
4988   - <target_decimal_symbol/>
4989   - <target_grouping_symbol/>
4990   - <target_currency_symbol/>
4991   - <target_null_string/>
4992   - <target_aggregation_type>-</target_aggregation_type>
4993   - </field>
4994   - <field>
4995   - <field_name>bc_type</field_name>
4996   - <key_value>35</key_value>
4997   - <target_name>fcno35_bctype</target_name>
4998   - <target_type>String</target_type>
4999   - <target_format/>
5000   - <target_length>-1</target_length>
5001   - <target_precision>-1</target_precision>
5002   - <target_decimal_symbol/>
5003   - <target_grouping_symbol/>
5004   - <target_currency_symbol/>
5005   - <target_null_string/>
5006   - <target_aggregation_type>-</target_aggregation_type>
5007   - </field>
5008   - <field>
5009   - <field_name>xl_dir</field_name>
5010   - <key_value>35</key_value>
5011   - <target_name>fcno35_xldir</target_name>
5012   - <target_type>String</target_type>
5013   - <target_format/>
5014   - <target_length>-1</target_length>
5015   - <target_precision>-1</target_precision>
5016   - <target_decimal_symbol/>
5017   - <target_grouping_symbol/>
5018   - <target_currency_symbol/>
5019   - <target_null_string/>
5020   - <target_aggregation_type>-</target_aggregation_type>
5021   - </field>
5022   - <field>
5023   - <field_name>isfb</field_name>
5024   - <key_value>35</key_value>
5025   - <target_name>fcno35_isfb</target_name>
5026   - <target_type>String</target_type>
5027   - <target_format/>
5028   - <target_length>-1</target_length>
5029   - <target_precision>-1</target_precision>
5030   - <target_decimal_symbol/>
5031   - <target_grouping_symbol/>
5032   - <target_currency_symbol/>
5033   - <target_null_string/>
5034   - <target_aggregation_type>-</target_aggregation_type>
5035   - </field>
5036   - </fields>
5037   - <cluster_schema/>
5038   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
5039   - <xloc>693</xloc>
5040   - <yloc>275</yloc>
5041   - <draw>Y</draw>
5042   - </GUI>
5043   - </step>
5044   -
5045   - <step>
5046   - <name>&#x53bb;&#x9664;&#x5b57;&#x6bb5;</name>
5047   - <type>SelectValues</type>
5048   - <description/>
5049   - <distribute>Y</distribute>
5050   - <custom_distribution/>
5051   - <copies>1</copies>
5052   - <partitioning>
5053   - <method>none</method>
5054   - <schema_name/>
5055   - </partitioning>
5056   - <fields> <select_unspecified>N</select_unspecified>
5057   - <remove> <name>bcs</name>
5058   - </remove> <remove> <name>qdzName</name>
5059   - </remove> <remove> <name>zdzName</name>
5060   - </remove> </fields> <cluster_schema/>
5061   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
5062   - <xloc>694</xloc>
5063   - <yloc>364</yloc>
5064   - <draw>Y</draw>
5065   - </GUI>
5066   - </step>
5067   -
5068   - <step>
5069   - <name>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</name>
5070   - <type>SelectValues</type>
5071   - <description/>
5072   - <distribute>Y</distribute>
5073   - <custom_distribution/>
5074   - <copies>1</copies>
5075   - <partitioning>
5076   - <method>none</method>
5077   - <schema_name/>
5078   - </partitioning>
5079   - <fields> <field> <name>id</name>
5080   - <rename/>
5081   - <length>-2</length>
5082   - <precision>-2</precision>
5083   - </field> <field> <name>lp</name>
5084   - <rename/>
5085   - <length>-2</length>
5086   - <precision>-2</precision>
5087   - </field> <field> <name>fcsj</name>
5088   - <rename/>
5089   - <length>-2</length>
5090   - <precision>-2</precision>
5091   - </field> <field> <name>fcno</name>
5092   - <rename/>
5093   - <length>-2</length>
5094   - <precision>-2</precision>
5095   - </field> <field> <name>bcs</name>
5096   - <rename/>
5097   - <length>-2</length>
5098   - <precision>-2</precision>
5099   - </field> <field> <name>bc_type</name>
5100   - <rename/>
5101   - <length>-2</length>
5102   - <precision>-2</precision>
5103   - </field> <field> <name>qdzName</name>
5104   - <rename/>
5105   - <length>-2</length>
5106   - <precision>-2</precision>
5107   - </field> <field> <name>zdzName</name>
5108   - <rename/>
5109   - <length>-2</length>
5110   - <precision>-2</precision>
5111   - </field> <field> <name>xl_dir</name>
5112   - <rename/>
5113   - <length>-2</length>
5114   - <precision>-2</precision>
5115   - </field> <field> <name>isfb</name>
5116   - <rename/>
5117   - <length>-2</length>
5118   - <precision>-2</precision>
5119   - </field> <field> <name>jhlc</name>
5120   - <rename/>
5121   - <length>-2</length>
5122   - <precision>-2</precision>
5123   - </field> <select_unspecified>N</select_unspecified>
5124   - </fields> <cluster_schema/>
5125   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
5126   - <xloc>690</xloc>
5127   - <yloc>188</yloc>
5128   - <draw>Y</draw>
5129   - </GUI>
5130   - </step>
5131   -
5132   - <step>
5133   - <name>&#x5b57;&#x6bb5;&#x9009;&#x62e9; 2</name>
5134   - <type>SelectValues</type>
5135   - <description/>
5136   - <distribute>Y</distribute>
5137   - <custom_distribution/>
5138   - <copies>1</copies>
5139   - <partitioning>
5140   - <method>none</method>
5141   - <schema_name/>
5142   - </partitioning>
5143   - <fields> <field> <name>id</name>
5144   - <rename/>
5145   - <length>-2</length>
5146   - <precision>-2</precision>
5147   - </field> <field> <name>lp</name>
5148   - <rename/>
5149   - <length>-2</length>
5150   - <precision>-2</precision>
5151   - </field> <field> <name>fcsj</name>
5152   - <rename/>
5153   - <length>-2</length>
5154   - <precision>-2</precision>
5155   - </field> <field> <name>fcno</name>
5156   - <rename/>
5157   - <length>-2</length>
5158   - <precision>-2</precision>
5159   - </field> <field> <name>bcs</name>
5160   - <rename/>
5161   - <length>-2</length>
5162   - <precision>-2</precision>
5163   - </field> <field> <name>bc_type</name>
5164   - <rename/>
5165   - <length>-2</length>
5166   - <precision>-2</precision>
5167   - </field> <field> <name>qdzName</name>
5168   - <rename/>
5169   - <length>-2</length>
5170   - <precision>-2</precision>
5171   - </field> <field> <name>zdzName</name>
5172   - <rename/>
5173   - <length>-2</length>
5174   - <precision>-2</precision>
5175   - </field> <field> <name>xl_dir</name>
5176   - <rename/>
5177   - <length>-2</length>
5178   - <precision>-2</precision>
5179   - </field> <field> <name>isfb</name>
5180   - <rename/>
5181   - <length>-2</length>
5182   - <precision>-2</precision>
5183   - </field> <field> <name>jhlc</name>
5184   - <rename/>
5185   - <length>-2</length>
5186   - <precision>-2</precision>
5187   - </field> <select_unspecified>N</select_unspecified>
5188   - </fields> <cluster_schema/>
5189   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
5190   - <xloc>402</xloc>
5191   - <yloc>189</yloc>
5192   - <draw>Y</draw>
5193   - </GUI>
5194   - </step>
5195   -
5196   - <step>
5197   - <name>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</name>
5198   - <type>SortRows</type>
5199   - <description/>
5200   - <distribute>Y</distribute>
5201   - <custom_distribution/>
5202   - <copies>1</copies>
5203   - <partitioning>
5204   - <method>none</method>
5205   - <schema_name/>
5206   - </partitioning>
5207   - <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>
5208   - <prefix>out</prefix>
5209   - <sort_size>1000000</sort_size>
5210   - <free_memory/>
5211   - <compress>N</compress>
5212   - <compress_variable/>
5213   - <unique_rows>N</unique_rows>
5214   - <fields>
5215   - <field>
5216   - <name>bcs</name>
5217   - <ascending>Y</ascending>
5218   - <case_sensitive>N</case_sensitive>
5219   - <presorted>N</presorted>
5220   - </field>
5221   - </fields>
5222   - <cluster_schema/>
5223   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
5224   - <xloc>549</xloc>
5225   - <yloc>191</yloc>
5226   - <draw>Y</draw>
5227   - </GUI>
5228   - </step>
5229   -
5230   - <step>
5231   - <name>&#x67e5;&#x627e;&#x7ec8;&#x70b9;&#x7ad9;&#x540d;&#x79f0;</name>
5232   - <type>DBLookup</type>
5233   - <description/>
5234   - <distribute>Y</distribute>
5235   - <custom_distribution/>
5236   - <copies>1</copies>
5237   - <partitioning>
5238   - <method>none</method>
5239   - <schema_name/>
5240   - </partitioning>
5241   - <connection>bus_control_variable</connection>
5242   - <cache>Y</cache>
5243   - <cache_load_all>Y</cache_load_all>
5244   - <cache_size>0</cache_size>
5245   - <lookup>
5246   - <schema/>
5247   - <table>bsth_c_stationroute</table>
5248   - <orderby/>
5249   - <fail_on_multiple>N</fail_on_multiple>
5250   - <eat_row_on_failure>N</eat_row_on_failure>
5251   - <key>
5252   - <name>xl</name>
5253   - <field>line</field>
5254   - <condition>&#x3d;</condition>
5255   - <name2/>
5256   - </key>
5257   - <key>
5258   - <name>xl_dir</name>
5259   - <field>directions</field>
5260   - <condition>&#x3d;</condition>
5261   - <name2/>
5262   - </key>
5263   - <key>
5264   - <name>endZdType</name>
5265   - <field>station_mark</field>
5266   - <condition>&#x3d;</condition>
5267   - <name2/>
5268   - </key>
5269   - <value>
5270   - <name>station_name</name>
5271   - <rename>zdzName</rename>
5272   - <default/>
5273   - <type>String</type>
5274   - </value>
5275   - </lookup>
5276   - <cluster_schema/>
5277   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
5278   - <xloc>688</xloc>
5279   - <yloc>86</yloc>
5280   - <draw>Y</draw>
5281   - </GUI>
5282   - </step>
5283   -
5284   - <step>
5285   - <name>&#x67e5;&#x627e;&#x8d77;&#x70b9;&#x7ad9;&#x540d;&#x79f0;</name>
5286   - <type>DBLookup</type>
5287   - <description/>
5288   - <distribute>Y</distribute>
5289   - <custom_distribution/>
5290   - <copies>1</copies>
5291   - <partitioning>
5292   - <method>none</method>
5293   - <schema_name/>
5294   - </partitioning>
5295   - <connection>bus_control_variable</connection>
5296   - <cache>Y</cache>
5297   - <cache_load_all>Y</cache_load_all>
5298   - <cache_size>0</cache_size>
5299   - <lookup>
5300   - <schema/>
5301   - <table>bsth_c_stationroute</table>
5302   - <orderby/>
5303   - <fail_on_multiple>N</fail_on_multiple>
5304   - <eat_row_on_failure>N</eat_row_on_failure>
5305   - <key>
5306   - <name>xl</name>
5307   - <field>line</field>
5308   - <condition>&#x3d;</condition>
5309   - <name2/>
5310   - </key>
5311   - <key>
5312   - <name>xl_dir</name>
5313   - <field>directions</field>
5314   - <condition>&#x3d;</condition>
5315   - <name2/>
5316   - </key>
5317   - <key>
5318   - <name>startZdType</name>
5319   - <field>station_mark</field>
5320   - <condition>&#x3d;</condition>
5321   - <name2/>
5322   - </key>
5323   - <value>
5324   - <name>station_name</name>
5325   - <rename>qdzName</rename>
5326   - <default/>
5327   - <type>String</type>
5328   - </value>
5329   - </lookup>
5330   - <cluster_schema/>
5331   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
5332   - <xloc>553</xloc>
5333   - <yloc>86</yloc>
5334   - <draw>Y</draw>
5335   - </GUI>
5336   - </step>
5337   -
5338   - <step>
5339   - <name>&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x7ad9;&#x70b9;&#x67e5;&#x8be2;&#x7528;&#x6570;&#x636e;</name>
5340   - <type>ScriptValueMod</type>
5341   - <description/>
5342   - <distribute>Y</distribute>
5343   - <custom_distribution/>
5344   - <copies>1</copies>
5345   - <partitioning>
5346   - <method>none</method>
5347   - <schema_name/>
5348   - </partitioning>
5349   - <compatible>N</compatible>
5350   - <optimizationLevel>9</optimizationLevel>
5351   - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
5352   - <jsScript_name>Script 1</jsScript_name>
5353   - <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;var startZdType &#x3d; &#x27;B&#x27;&#x3b; &#x2f;&#x2f; &#x8d77;&#x70b9;&#x7ad9;&#x7ad9;&#x70b9;&#x7c7b;&#x578b;&#x6807;&#x8bc6;&#x522b;&#xa;var endZdType &#x3d; &#x27;E&#x27;&#x3b; &#x2f;&#x2f; &#x7ec8;&#x70b9;&#x7ad9;&#x7ad9;&#x70b9;&#x7c7b;&#x578b;&#x6807;&#x8bc6;</jsScript_script>
5354   - </jsScript> </jsScripts> <fields> <field> <name>startZdType</name>
5355   - <rename>startZdType</rename>
5356   - <type>String</type>
5357   - <length>-1</length>
5358   - <precision>-1</precision>
5359   - <replace>N</replace>
5360   - </field> <field> <name>endZdType</name>
5361   - <rename>endZdType</rename>
5362   - <type>String</type>
5363   - <length>-1</length>
5364   - <precision>-1</precision>
5365   - <replace>N</replace>
5366   - </field> </fields> <cluster_schema/>
5367   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
5368   - <xloc>391</xloc>
5369   - <yloc>87</yloc>
5370   - <draw>Y</draw>
5371   - </GUI>
5372   - </step>
5373   -
5374   - <step>
5375   - <name>&#x83b7;&#x53d6;&#x53d8;&#x91cf;</name>
5376   - <type>GetVariable</type>
5377   - <description/>
5378   - <distribute>Y</distribute>
5379   - <custom_distribution/>
5380   - <copies>1</copies>
5381   - <partitioning>
5382   - <method>none</method>
5383   - <schema_name/>
5384   - </partitioning>
5385   - <fields>
5386   - <field>
5387   - <name>xlid_</name>
5388   - <variable>&#x24;&#x7b;xlid&#x7d;</variable>
5389   - <type>Integer</type>
5390   - <format/>
5391   - <currency/>
5392   - <decimal/>
5393   - <group/>
5394   - <length>-1</length>
5395   - <precision>-1</precision>
5396   - <trim_type>none</trim_type>
5397   - </field>
5398   - <field>
5399   - <name>ttid_</name>
5400   - <variable>&#x24;&#x7b;ttid&#x7d;</variable>
5401   - <type>Number</type>
5402   - <format/>
5403   - <currency/>
5404   - <decimal/>
5405   - <group/>
5406   - <length>-1</length>
5407   - <precision>-1</precision>
5408   - <trim_type>none</trim_type>
5409   - </field>
5410   - </fields>
5411   - <cluster_schema/>
5412   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
5413   - <xloc>45</xloc>
5414   - <yloc>189</yloc>
5415   - <draw>Y</draw>
5416   - </GUI>
5417   - </step>
5418   -
5419   - <step>
5420   - <name>&#x8868;&#x8f93;&#x5165;</name>
5421   - <type>TableInput</type>
5422   - <description/>
5423   - <distribute>Y</distribute>
5424   - <custom_distribution/>
5425   - <copies>1</copies>
5426   - <partitioning>
5427   - <method>none</method>
5428   - <schema_name/>
5429   - </partitioning>
5430   - <connection>bus_control_variable</connection>
5431   - <sql>select &#xa;t.id as id&#xa;, g.lp_name as lp&#xa;, g.xl as xl&#xa;, qdz&#xa;, zdz&#xa;, tcc&#xa;, fcsj&#xa;, jhlc&#xa;, bc_type &#xa;, bcs&#xa;, fcno&#xa;, xl_dir&#xa;, isfb&#xa;from bsth_c_s_ttinfo_detail t left join &#xa;bsth_c_s_gbi g on t.lp &#x3d; g.id &#xa;where &#xa;g.xl &#x3d; &#x3f; and&#xa;t.ttinfo &#x3d; &#x3f; &#xa;order by t.bcs asc</sql>
5432   - <limit>0</limit>
5433   - <lookup>&#x83b7;&#x53d6;&#x53d8;&#x91cf;</lookup>
5434   - <execute_each_row>N</execute_each_row>
5435   - <variables_active>Y</variables_active>
5436   - <lazy_conversion_active>N</lazy_conversion_active>
5437   - <cluster_schema/>
5438   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
5439   - <xloc>130</xloc>
5440   - <yloc>85</yloc>
5441   - <draw>Y</draw>
5442   - </GUI>
5443   - </step>
5444   -
5445   - <step>
5446   - <name>&#x8ba1;&#x7b97;&#x53d1;&#x8f66;&#x7ad9;&#x540d;</name>
5447   - <type>ScriptValueMod</type>
5448   - <description/>
5449   - <distribute>Y</distribute>
5450   - <custom_distribution/>
5451   - <copies>1</copies>
5452   - <partitioning>
5453   - <method>none</method>
5454   - <schema_name/>
5455   - </partitioning>
5456   - <compatible>N</compatible>
5457   - <optimizationLevel>9</optimizationLevel>
5458   - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
5459   - <jsScript_name>Script 1</jsScript_name>
5460   - <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;var fczdName &#x3d; null&#x3b; &#x2f;&#x2f; &#x53d1;&#x8f66;&#x7ad9;&#x70b9;&#x540d;&#x5b57;&#xa;if &#x28;bc_type &#x3d;&#x3d; &#x22;in&#x22;&#x29; &#x7b;&#xa; fczdName &#x3d; &#x22;&#x8fdb;&#x573a;&#x22;&#x3b;&#xa;&#x7d; else if &#x28;bc_type &#x3d;&#x3d; &#x22;out&#x22;&#x29; &#x7b;&#xa; fczdName &#x3d; &#x22;&#x51fa;&#x573a;&#x22;&#x3b;&#xa;&#x7d; else &#x7b;&#xa; fczdName &#x3d; qdzName&#x3b;&#xa;&#x7d;</jsScript_script>
5461   - </jsScript> </jsScripts> <fields> <field> <name>fczdName</name>
5462   - <rename>fczdName</rename>
5463   - <type>String</type>
5464   - <length>-1</length>
5465   - <precision>-1</precision>
5466   - <replace>N</replace>
5467   - </field> </fields> <cluster_schema/>
5468   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
5469   - <xloc>550</xloc>
5470   - <yloc>276</yloc>
5471   - <draw>Y</draw>
5472   - </GUI>
5473   - </step>
5474   -
5475   - <step>
5476   - <name>&#x8fc7;&#x6ee4;&#x8bb0;&#x5f55;</name>
5477   - <type>FilterRows</type>
5478   - <description/>
5479   - <distribute>Y</distribute>
5480   - <custom_distribution/>
5481   - <copies>1</copies>
5482   - <partitioning>
5483   - <method>none</method>
5484   - <schema_name/>
5485   - </partitioning>
5486   -<send_true_to>&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x7ad9;&#x70b9;&#x67e5;&#x8be2;&#x7528;&#x6570;&#x636e;</send_true_to>
5487   -<send_false_to>&#x8fdb;&#x573a;&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x67e5;&#x8be2;&#x7528;&#x7684;&#x6570;&#x636e;</send_false_to>
5488   - <compare>
5489   -<condition>
5490   - <negated>N</negated>
5491   - <leftvalue>bc_type</leftvalue>
5492   - <function>&#x3d;</function>
5493   - <rightvalue/>
5494   - <value><name>constant</name><type>String</type><text>normal</text><length>-1</length><precision>-1</precision><isnull>N</isnull><mask/></value> </condition>
5495   - </compare>
5496   - <cluster_schema/>
5497   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
5498   - <xloc>248</xloc>
5499   - <yloc>87</yloc>
5500   - <draw>Y</draw>
5501   - </GUI>
5502   - </step>
5503   -
5504   - <step>
5505   - <name>&#x8fdb;&#x573a;&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x67e5;&#x8be2;&#x7528;&#x7684;&#x6570;&#x636e;</name>
5506   - <type>ScriptValueMod</type>
5507   - <description/>
5508   - <distribute>Y</distribute>
5509   - <custom_distribution/>
5510   - <copies>1</copies>
5511   - <partitioning>
5512   - <method>none</method>
5513   - <schema_name/>
5514   - </partitioning>
5515   - <compatible>N</compatible>
5516   - <optimizationLevel>9</optimizationLevel>
5517   - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
5518   - <jsScript_name>Script 1</jsScript_name>
5519   - <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;var qdzName &#x3d; null&#x3b; &#x2f;&#x2f; &#x8d77;&#x70b9;&#x7ad9;&#x540d;&#x5b57;&#xa;var zdzName &#x3d; null&#x3b; &#x2f;&#x2f; &#x7ec8;&#x70b9;&#x7ad9;&#x540d;&#x5b57;</jsScript_script>
5520   - </jsScript> </jsScripts> <fields> <field> <name>qdzName</name>
5521   - <rename>qdzName</rename>
5522   - <type>String</type>
5523   - <length>-1</length>
5524   - <precision>-1</precision>
5525   - <replace>N</replace>
5526   - </field> <field> <name>zdzName</name>
5527   - <rename>zdzName</rename>
5528   - <type>String</type>
5529   - <length>-1</length>
5530   - <precision>-1</precision>
5531   - <replace>N</replace>
5532   - </field> </fields> <cluster_schema/>
5533   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
5534   - <xloc>250</xloc>
5535   - <yloc>188</yloc>
5536   - <draw>Y</draw>
5537   - </GUI>
5538   - </step>
5539   -
5540   - <step_error_handling>
5541   - </step_error_handling>
5542   - <slave-step-copy-partition-distribution>
5543   -</slave-step-copy-partition-distribution>
5544   - <slave_transformation>N</slave_transformation>
5545   -
5546   -</transformation>
  1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<transformation>
  3 + <info>
  4 + <name>ttinfodetailoutputforedit</name>
  5 + <description/>
  6 + <extended_description/>
  7 + <trans_version/>
  8 + <trans_type>Normal</trans_type>
  9 + <trans_status>0</trans_status>
  10 + <directory>&#x2f;</directory>
  11 + <parameters>
  12 + <parameter>
  13 + <name>tempfilepath</name>
  14 + <default_value>&#x2f;Users&#x2f;xu&#x2f;resource&#x2f;project_code&#x2f;runtime_temp&#x2f;bsth_control_u_d_files&#x2f;temp&#x2f;test</default_value>
  15 + <description>&#x9ed8;&#x8ba4;&#x8f93;&#x51fa;&#x7684;&#x6587;&#x4ef6;&#x8def;&#x5f84;&#x540d;</description>
  16 + </parameter>
  17 + <parameter>
  18 + <name>ttid</name>
  19 + <default_value>63</default_value>
  20 + <description>&#x65f6;&#x523b;&#x8868;id</description>
  21 + </parameter>
  22 + <parameter>
  23 + <name>xlid</name>
  24 + <default_value>63017</default_value>
  25 + <description>&#x7ebf;&#x8def;id</description>
  26 + </parameter>
  27 + </parameters>
  28 + <log>
  29 +<trans-log-table><connection/>
  30 +<schema/>
  31 +<table/>
  32 +<size_limit_lines/>
  33 +<interval/>
  34 +<timeout_days/>
  35 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STATUS</id><enabled>Y</enabled><name>STATUS</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name><subject/></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name><subject/></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name><subject/></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name><subject/></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name><subject/></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name><subject/></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>STARTDATE</id><enabled>Y</enabled><name>STARTDATE</name></field><field><id>ENDDATE</id><enabled>Y</enabled><name>ENDDATE</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>DEPDATE</id><enabled>Y</enabled><name>DEPDATE</name></field><field><id>REPLAYDATE</id><enabled>Y</enabled><name>REPLAYDATE</name></field><field><id>LOG_FIELD</id><enabled>Y</enabled><name>LOG_FIELD</name></field><field><id>EXECUTING_SERVER</id><enabled>N</enabled><name>EXECUTING_SERVER</name></field><field><id>EXECUTING_USER</id><enabled>N</enabled><name>EXECUTING_USER</name></field><field><id>CLIENT</id><enabled>N</enabled><name>CLIENT</name></field></trans-log-table>
  36 +<perf-log-table><connection/>
  37 +<schema/>
  38 +<table/>
  39 +<interval/>
  40 +<timeout_days/>
  41 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>SEQ_NR</id><enabled>Y</enabled><name>SEQ_NR</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>INPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>INPUT_BUFFER_ROWS</name></field><field><id>OUTPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>OUTPUT_BUFFER_ROWS</name></field></perf-log-table>
  42 +<channel-log-table><connection/>
  43 +<schema/>
  44 +<table/>
  45 +<timeout_days/>
  46 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>LOGGING_OBJECT_TYPE</id><enabled>Y</enabled><name>LOGGING_OBJECT_TYPE</name></field><field><id>OBJECT_NAME</id><enabled>Y</enabled><name>OBJECT_NAME</name></field><field><id>OBJECT_COPY</id><enabled>Y</enabled><name>OBJECT_COPY</name></field><field><id>REPOSITORY_DIRECTORY</id><enabled>Y</enabled><name>REPOSITORY_DIRECTORY</name></field><field><id>FILENAME</id><enabled>Y</enabled><name>FILENAME</name></field><field><id>OBJECT_ID</id><enabled>Y</enabled><name>OBJECT_ID</name></field><field><id>OBJECT_REVISION</id><enabled>Y</enabled><name>OBJECT_REVISION</name></field><field><id>PARENT_CHANNEL_ID</id><enabled>Y</enabled><name>PARENT_CHANNEL_ID</name></field><field><id>ROOT_CHANNEL_ID</id><enabled>Y</enabled><name>ROOT_CHANNEL_ID</name></field></channel-log-table>
  47 +<step-log-table><connection/>
  48 +<schema/>
  49 +<table/>
  50 +<timeout_days/>
  51 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>LOG_FIELD</id><enabled>N</enabled><name>LOG_FIELD</name></field></step-log-table>
  52 +<metrics-log-table><connection/>
  53 +<schema/>
  54 +<table/>
  55 +<timeout_days/>
  56 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>METRICS_DATE</id><enabled>Y</enabled><name>METRICS_DATE</name></field><field><id>METRICS_CODE</id><enabled>Y</enabled><name>METRICS_CODE</name></field><field><id>METRICS_DESCRIPTION</id><enabled>Y</enabled><name>METRICS_DESCRIPTION</name></field><field><id>METRICS_SUBJECT</id><enabled>Y</enabled><name>METRICS_SUBJECT</name></field><field><id>METRICS_TYPE</id><enabled>Y</enabled><name>METRICS_TYPE</name></field><field><id>METRICS_VALUE</id><enabled>Y</enabled><name>METRICS_VALUE</name></field></metrics-log-table>
  57 + </log>
  58 + <maxdate>
  59 + <connection/>
  60 + <table/>
  61 + <field/>
  62 + <offset>0.0</offset>
  63 + <maxdiff>0.0</maxdiff>
  64 + </maxdate>
  65 + <size_rowset>10000</size_rowset>
  66 + <sleep_time_empty>50</sleep_time_empty>
  67 + <sleep_time_full>50</sleep_time_full>
  68 + <unique_connections>N</unique_connections>
  69 + <feedback_shown>Y</feedback_shown>
  70 + <feedback_size>50000</feedback_size>
  71 + <using_thread_priorities>Y</using_thread_priorities>
  72 + <shared_objects_file/>
  73 + <capture_step_performance>N</capture_step_performance>
  74 + <step_performance_capturing_delay>1000</step_performance_capturing_delay>
  75 + <step_performance_capturing_size_limit>100</step_performance_capturing_size_limit>
  76 + <dependencies>
  77 + </dependencies>
  78 + <partitionschemas>
  79 + </partitionschemas>
  80 + <slaveservers>
  81 + </slaveservers>
  82 + <clusterschemas>
  83 + </clusterschemas>
  84 + <created_user>-</created_user>
  85 + <created_date>2016&#x2f;07&#x2f;11 21&#x3a;45&#x3a;05.041</created_date>
  86 + <modified_user>-</modified_user>
  87 + <modified_date>2016&#x2f;07&#x2f;11 21&#x3a;45&#x3a;05.041</modified_date>
  88 + <key_for_session_key>H4sIAAAAAAAAAAMAAAAAAAAAAAA&#x3d;</key_for_session_key>
  89 + <is_key_private>N</is_key_private>
  90 + </info>
  91 + <notepads>
  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>45</xloc>
  95 + <yloc>261</yloc>
  96 + <width>333</width>
  97 + <heigth>90</heigth>
  98 + <fontname>YaHei Consolas Hybrid</fontname>
  99 + <fontsize>12</fontsize>
  100 + <fontbold>N</fontbold>
  101 + <fontitalic>N</fontitalic>
  102 + <fontcolorred>0</fontcolorred>
  103 + <fontcolorgreen>0</fontcolorgreen>
  104 + <fontcolorblue>0</fontcolorblue>
  105 + <backgroundcolorred>255</backgroundcolorred>
  106 + <backgroundcolorgreen>205</backgroundcolorgreen>
  107 + <backgroundcolorblue>112</backgroundcolorblue>
  108 + <bordercolorred>100</bordercolorred>
  109 + <bordercolorgreen>100</bordercolorgreen>
  110 + <bordercolorblue>100</bordercolorblue>
  111 + <drawshadow>Y</drawshadow>
  112 + </notepad>
  113 + <notepad>
  114 + <note>&#x6b64;&#x5904;&#x8f6c;&#x6362;excel&#x6709;&#x95ee;&#x9898;&#xff0c;&#xa;2003&#x683c;&#x5f0f;&#x7684;xls&#x6700;&#x591a;256&#x5217;&#xff0c;&#xa;&#x8fd9;&#x91cc;&#x660e;&#x663e;&#x8d85;&#x8fc7;&#xff0c;&#x6240;&#x4ee5;&#x628a;&#x6240;&#x6709;&#x5185;&#x5bb9;&#x5408;&#x5e76;&#x6210;1&#x5217;&#xff0c;&#xa;&#x7528;,&#x5206;&#x9694;</note>
  115 + <xloc>256</xloc>
  116 + <yloc>397</yloc>
  117 + <width>245</width>
  118 + <heigth>74</heigth>
  119 + <fontname>YaHei Consolas Hybrid</fontname>
  120 + <fontsize>12</fontsize>
  121 + <fontbold>N</fontbold>
  122 + <fontitalic>N</fontitalic>
  123 + <fontcolorred>0</fontcolorred>
  124 + <fontcolorgreen>0</fontcolorgreen>
  125 + <fontcolorblue>0</fontcolorblue>
  126 + <backgroundcolorred>255</backgroundcolorred>
  127 + <backgroundcolorgreen>205</backgroundcolorgreen>
  128 + <backgroundcolorblue>112</backgroundcolorblue>
  129 + <bordercolorred>100</bordercolorred>
  130 + <bordercolorgreen>100</bordercolorgreen>
  131 + <bordercolorblue>100</bordercolorblue>
  132 + <drawshadow>Y</drawshadow>
  133 + </notepad>
  134 + </notepads>
  135 + <connection>
  136 + <name>bus_control_variable</name>
  137 + <server>&#x24;&#x7b;v_db_ip&#x7d;</server>
  138 + <type>MYSQL</type>
  139 + <access>Native</access>
  140 + <database>&#x24;&#x7b;v_db_dname&#x7d;</database>
  141 + <port>3306</port>
  142 + <username>&#x24;&#x7b;v_db_uname&#x7d;</username>
  143 + <password>&#x24;&#x7b;v_db_pwd&#x7d;</password>
  144 + <servername/>
  145 + <data_tablespace/>
  146 + <index_tablespace/>
  147 + <attributes>
  148 + <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>
  149 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  150 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  151 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  152 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  153 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  154 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  155 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  156 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  157 + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>
  158 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  159 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  160 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  161 + </attributes>
  162 + </connection>
  163 + <connection>
  164 + <name>bus_control_&#x516c;&#x53f8;_201</name>
  165 + <server>localhost</server>
  166 + <type>MYSQL</type>
  167 + <access>Native</access>
  168 + <database>control</database>
  169 + <port>3306</port>
  170 + <username>root</username>
  171 + <password>Encrypted </password>
  172 + <servername/>
  173 + <data_tablespace/>
  174 + <index_tablespace/>
  175 + <attributes>
  176 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  177 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  178 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  179 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  180 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  181 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  182 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  183 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  184 + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>
  185 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  186 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  187 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  188 + </attributes>
  189 + </connection>
  190 + <connection>
  191 + <name>bus_control_&#x672c;&#x673a;</name>
  192 + <server>localhost</server>
  193 + <type>MYSQL</type>
  194 + <access>Native</access>
  195 + <database>control</database>
  196 + <port>3306</port>
  197 + <username>root</username>
  198 + <password>Encrypted </password>
  199 + <servername/>
  200 + <data_tablespace/>
  201 + <index_tablespace/>
  202 + <attributes>
  203 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  204 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  205 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  206 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  207 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  208 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  209 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  210 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  211 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  212 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  213 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  214 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  215 + </attributes>
  216 + </connection>
  217 + <connection>
  218 + <name>xlab_mysql_youle</name>
  219 + <server>101.231.124.8</server>
  220 + <type>MYSQL</type>
  221 + <access>Native</access>
  222 + <database>xlab_youle</database>
  223 + <port>45687</port>
  224 + <username>xlab-youle</username>
  225 + <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password>
  226 + <servername/>
  227 + <data_tablespace/>
  228 + <index_tablespace/>
  229 + <attributes>
  230 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  231 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  232 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  233 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  234 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  235 + <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute>
  236 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  237 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  238 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  239 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>
  240 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>
  241 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  242 + </attributes>
  243 + </connection>
  244 + <connection>
  245 + <name>xlab_mysql_youle&#xff08;&#x672c;&#x673a;&#xff09;</name>
  246 + <server>localhost</server>
  247 + <type>MYSQL</type>
  248 + <access>Native</access>
  249 + <database>xlab_youle</database>
  250 + <port>3306</port>
  251 + <username>root</username>
  252 + <password>Encrypted </password>
  253 + <servername/>
  254 + <data_tablespace/>
  255 + <index_tablespace/>
  256 + <attributes>
  257 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  258 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  259 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  260 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  261 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  262 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  263 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  264 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  265 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  266 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>
  267 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>
  268 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  269 + </attributes>
  270 + </connection>
  271 + <connection>
  272 + <name>xlab_youle</name>
  273 + <server/>
  274 + <type>MYSQL</type>
  275 + <access>JNDI</access>
  276 + <database>xlab_youle</database>
  277 + <port>1521</port>
  278 + <username/>
  279 + <password>Encrypted </password>
  280 + <servername/>
  281 + <data_tablespace/>
  282 + <index_tablespace/>
  283 + <attributes>
  284 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  285 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  286 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  287 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  288 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  289 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  290 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  291 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  292 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  293 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  294 + </attributes>
  295 + </connection>
  296 + <order>
  297 + <hop> <from>&#x8868;&#x8f93;&#x5165;</from><to>&#x8fc7;&#x6ee4;&#x8bb0;&#x5f55;</to><enabled>Y</enabled> </hop>
  298 + <hop> <from>&#x8fc7;&#x6ee4;&#x8bb0;&#x5f55;</from><to>&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x7ad9;&#x70b9;&#x67e5;&#x8be2;&#x7528;&#x6570;&#x636e;</to><enabled>Y</enabled> </hop>
  299 + <hop> <from>&#x8fc7;&#x6ee4;&#x8bb0;&#x5f55;</from><to>&#x8fdb;&#x573a;&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x67e5;&#x8be2;&#x7528;&#x7684;&#x6570;&#x636e;</to><enabled>Y</enabled> </hop>
  300 + <hop> <from>&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x7ad9;&#x70b9;&#x67e5;&#x8be2;&#x7528;&#x6570;&#x636e;</from><to>&#x67e5;&#x627e;&#x8d77;&#x70b9;&#x7ad9;&#x540d;&#x79f0;</to><enabled>Y</enabled> </hop>
  301 + <hop> <from>&#x67e5;&#x627e;&#x8d77;&#x70b9;&#x7ad9;&#x540d;&#x79f0;</from><to>&#x67e5;&#x627e;&#x7ec8;&#x70b9;&#x7ad9;&#x540d;&#x79f0;</to><enabled>Y</enabled> </hop>
  302 + <hop> <from>&#x67e5;&#x627e;&#x7ec8;&#x70b9;&#x7ad9;&#x540d;&#x79f0;</from><to>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</to><enabled>Y</enabled> </hop>
  303 + <hop> <from>&#x8fdb;&#x573a;&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x67e5;&#x8be2;&#x7528;&#x7684;&#x6570;&#x636e;</from><to>&#x5b57;&#x6bb5;&#x9009;&#x62e9; 2</to><enabled>Y</enabled> </hop>
  304 + <hop> <from>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</from><to>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</to><enabled>Y</enabled> </hop>
  305 + <hop> <from>&#x5b57;&#x6bb5;&#x9009;&#x62e9; 2</from><to>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</to><enabled>Y</enabled> </hop>
  306 + <hop> <from>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</from><to>&#x8ba1;&#x7b97;&#x53d1;&#x8f66;&#x7ad9;&#x540d;</to><enabled>Y</enabled> </hop>
  307 + <hop> <from>&#x5217;&#x8f6c;&#x884c;</from><to>&#x53bb;&#x9664;&#x5b57;&#x6bb5;</to><enabled>Y</enabled> </hop>
  308 + <hop> <from>&#x53bb;&#x9664;&#x5b57;&#x6bb5;</from><to>Excel&#x8f93;&#x51fa;</to><enabled>Y</enabled> </hop>
  309 + <hop> <from>&#x83b7;&#x53d6;&#x53d8;&#x91cf;</from><to>&#x8868;&#x8f93;&#x5165;</to><enabled>Y</enabled> </hop>
  310 + <hop> <from>&#x8ba1;&#x7b97;&#x53d1;&#x8f66;&#x7ad9;&#x540d;</from><to>&#x5408;&#x5e76;&#x5185;&#x5bb9;</to><enabled>Y</enabled> </hop>
  311 + <hop> <from>&#x5408;&#x5e76;&#x5185;&#x5bb9;</from><to>&#x5217;&#x8f6c;&#x884c;</to><enabled>Y</enabled> </hop>
  312 + <hop> <from>&#x53bb;&#x9664;&#x5b57;&#x6bb5;</from><to>&#x6587;&#x672c;&#x6587;&#x4ef6;&#x8f93;&#x51fa;</to><enabled>Y</enabled> </hop>
  313 + </order>
  314 + <step>
  315 + <name>Excel&#x8f93;&#x51fa;</name>
  316 + <type>ExcelOutput</type>
  317 + <description/>
  318 + <distribute>Y</distribute>
  319 + <custom_distribution/>
  320 + <copies>1</copies>
  321 + <partitioning>
  322 + <method>none</method>
  323 + <schema_name/>
  324 + </partitioning>
  325 + <header>Y</header>
  326 + <footer>N</footer>
  327 + <encoding/>
  328 + <append>N</append>
  329 + <add_to_result_filenames>Y</add_to_result_filenames>
  330 + <file>
  331 + <name>&#x24;&#x7b;tempfilepath&#x7d;</name>
  332 + <extention>xls</extention>
  333 + <do_not_open_newfile_init>N</do_not_open_newfile_init>
  334 + <create_parent_folder>N</create_parent_folder>
  335 + <split>N</split>
  336 + <add_date>N</add_date>
  337 + <add_time>N</add_time>
  338 + <SpecifyFormat>N</SpecifyFormat>
  339 + <date_time_format/>
  340 + <sheetname>Sheet1</sheetname>
  341 + <autosizecolums>N</autosizecolums>
  342 + <nullisblank>N</nullisblank>
  343 + <protect_sheet>N</protect_sheet>
  344 + <password>Encrypted </password>
  345 + <splitevery>0</splitevery>
  346 + <usetempfiles>N</usetempfiles>
  347 + <tempdirectory/>
  348 + </file>
  349 + <template>
  350 + <enabled>N</enabled>
  351 + <append>N</append>
  352 + <filename>template.xls</filename>
  353 + </template>
  354 + <fields>
  355 + <field>
  356 + <name>lp</name>
  357 + <type>String</type>
  358 + <format/>
  359 + </field>
  360 + <field>
  361 + <name>fcno1</name>
  362 + <type>String</type>
  363 + <format/>
  364 + </field>
  365 + <field>
  366 + <name>fcno2</name>
  367 + <type>String</type>
  368 + <format/>
  369 + </field>
  370 + <field>
  371 + <name>fcno3</name>
  372 + <type>String</type>
  373 + <format/>
  374 + </field>
  375 + <field>
  376 + <name>fcno4</name>
  377 + <type>String</type>
  378 + <format/>
  379 + </field>
  380 + <field>
  381 + <name>fcno5</name>
  382 + <type>String</type>
  383 + <format/>
  384 + </field>
  385 + <field>
  386 + <name>fcno6</name>
  387 + <type>String</type>
  388 + <format/>
  389 + </field>
  390 + <field>
  391 + <name>fcno7</name>
  392 + <type>String</type>
  393 + <format/>
  394 + </field>
  395 + <field>
  396 + <name>fcno8</name>
  397 + <type>String</type>
  398 + <format/>
  399 + </field>
  400 + <field>
  401 + <name>fcno9</name>
  402 + <type>String</type>
  403 + <format/>
  404 + </field>
  405 + <field>
  406 + <name>fcno10</name>
  407 + <type>String</type>
  408 + <format/>
  409 + </field>
  410 + <field>
  411 + <name>fcno11</name>
  412 + <type>String</type>
  413 + <format/>
  414 + </field>
  415 + <field>
  416 + <name>fcno12</name>
  417 + <type>String</type>
  418 + <format/>
  419 + </field>
  420 + <field>
  421 + <name>fcno13</name>
  422 + <type>String</type>
  423 + <format/>
  424 + </field>
  425 + <field>
  426 + <name>fcno14</name>
  427 + <type>String</type>
  428 + <format/>
  429 + </field>
  430 + <field>
  431 + <name>fcno15</name>
  432 + <type>String</type>
  433 + <format/>
  434 + </field>
  435 + <field>
  436 + <name>fcno16</name>
  437 + <type>String</type>
  438 + <format/>
  439 + </field>
  440 + <field>
  441 + <name>fcno17</name>
  442 + <type>String</type>
  443 + <format/>
  444 + </field>
  445 + <field>
  446 + <name>fcno18</name>
  447 + <type>String</type>
  448 + <format/>
  449 + </field>
  450 + <field>
  451 + <name>fcno19</name>
  452 + <type>String</type>
  453 + <format/>
  454 + </field>
  455 + <field>
  456 + <name>fcno20</name>
  457 + <type>String</type>
  458 + <format/>
  459 + </field>
  460 + <field>
  461 + <name>fcno21</name>
  462 + <type>String</type>
  463 + <format/>
  464 + </field>
  465 + <field>
  466 + <name>fcno22</name>
  467 + <type>String</type>
  468 + <format/>
  469 + </field>
  470 + <field>
  471 + <name>fcno23</name>
  472 + <type>String</type>
  473 + <format/>
  474 + </field>
  475 + <field>
  476 + <name>fcno24</name>
  477 + <type>String</type>
  478 + <format/>
  479 + </field>
  480 + <field>
  481 + <name>fcno25</name>
  482 + <type>String</type>
  483 + <format/>
  484 + </field>
  485 + <field>
  486 + <name>fcno26</name>
  487 + <type>String</type>
  488 + <format/>
  489 + </field>
  490 + <field>
  491 + <name>fcno27</name>
  492 + <type>String</type>
  493 + <format/>
  494 + </field>
  495 + <field>
  496 + <name>fcno28</name>
  497 + <type>String</type>
  498 + <format/>
  499 + </field>
  500 + <field>
  501 + <name>fcno29</name>
  502 + <type>String</type>
  503 + <format/>
  504 + </field>
  505 + <field>
  506 + <name>fcno30</name>
  507 + <type>String</type>
  508 + <format/>
  509 + </field>
  510 + <field>
  511 + <name>fcno31</name>
  512 + <type>String</type>
  513 + <format/>
  514 + </field>
  515 + <field>
  516 + <name>fcno32</name>
  517 + <type>String</type>
  518 + <format/>
  519 + </field>
  520 + <field>
  521 + <name>fcno33</name>
  522 + <type>String</type>
  523 + <format/>
  524 + </field>
  525 + <field>
  526 + <name>fcno34</name>
  527 + <type>String</type>
  528 + <format/>
  529 + </field>
  530 + <field>
  531 + <name>fcno35</name>
  532 + <type>String</type>
  533 + <format/>
  534 + </field>
  535 + <field>
  536 + <name>fcno36</name>
  537 + <type>String</type>
  538 + <format/>
  539 + </field>
  540 + <field>
  541 + <name>fcno37</name>
  542 + <type>String</type>
  543 + <format/>
  544 + </field>
  545 + <field>
  546 + <name>fcno38</name>
  547 + <type>String</type>
  548 + <format/>
  549 + </field>
  550 + <field>
  551 + <name>fcno39</name>
  552 + <type>String</type>
  553 + <format/>
  554 + </field>
  555 + <field>
  556 + <name>fcno40</name>
  557 + <type>String</type>
  558 + <format/>
  559 + </field>
  560 + <field>
  561 + <name>fcno41</name>
  562 + <type>String</type>
  563 + <format/>
  564 + </field>
  565 + <field>
  566 + <name>fcno42</name>
  567 + <type>String</type>
  568 + <format/>
  569 + </field>
  570 + <field>
  571 + <name>fcno43</name>
  572 + <type>String</type>
  573 + <format/>
  574 + </field>
  575 + <field>
  576 + <name>fcno44</name>
  577 + <type>String</type>
  578 + <format/>
  579 + </field>
  580 + <field>
  581 + <name>fcno45</name>
  582 + <type>String</type>
  583 + <format/>
  584 + </field>
  585 + <field>
  586 + <name>fcno46</name>
  587 + <type>String</type>
  588 + <format/>
  589 + </field>
  590 + <field>
  591 + <name>fcno47</name>
  592 + <type>String</type>
  593 + <format/>
  594 + </field>
  595 + <field>
  596 + <name>fcno48</name>
  597 + <type>String</type>
  598 + <format/>
  599 + </field>
  600 + <field>
  601 + <name>fcno49</name>
  602 + <type>String</type>
  603 + <format/>
  604 + </field>
  605 + <field>
  606 + <name>fcno50</name>
  607 + <type>String</type>
  608 + <format/>
  609 + </field>
  610 + <field>
  611 + <name>fcno51</name>
  612 + <type>String</type>
  613 + <format/>
  614 + </field>
  615 + <field>
  616 + <name>fcno52</name>
  617 + <type>String</type>
  618 + <format/>
  619 + </field>
  620 + <field>
  621 + <name>fcno53</name>
  622 + <type>String</type>
  623 + <format/>
  624 + </field>
  625 + <field>
  626 + <name>fcno54</name>
  627 + <type>String</type>
  628 + <format/>
  629 + </field>
  630 + <field>
  631 + <name>fcno55</name>
  632 + <type>String</type>
  633 + <format/>
  634 + </field>
  635 + <field>
  636 + <name>fcno56</name>
  637 + <type>String</type>
  638 + <format/>
  639 + </field>
  640 + <field>
  641 + <name>fcno57</name>
  642 + <type>String</type>
  643 + <format/>
  644 + </field>
  645 + <field>
  646 + <name>fcno58</name>
  647 + <type>String</type>
  648 + <format/>
  649 + </field>
  650 + <field>
  651 + <name>fcno59</name>
  652 + <type>String</type>
  653 + <format/>
  654 + </field>
  655 + <field>
  656 + <name>fcno60</name>
  657 + <type>String</type>
  658 + <format/>
  659 + </field>
  660 + <field>
  661 + <name>fcno61</name>
  662 + <type>String</type>
  663 + <format/>
  664 + </field>
  665 + <field>
  666 + <name>fcno62</name>
  667 + <type>String</type>
  668 + <format/>
  669 + </field>
  670 + <field>
  671 + <name>fcno63</name>
  672 + <type>String</type>
  673 + <format/>
  674 + </field>
  675 + <field>
  676 + <name>fcno64</name>
  677 + <type>String</type>
  678 + <format/>
  679 + </field>
  680 + <field>
  681 + <name>fcno65</name>
  682 + <type>String</type>
  683 + <format/>
  684 + </field>
  685 + <field>
  686 + <name>fcno66</name>
  687 + <type>String</type>
  688 + <format/>
  689 + </field>
  690 + <field>
  691 + <name>fcno67</name>
  692 + <type>String</type>
  693 + <format/>
  694 + </field>
  695 + <field>
  696 + <name>fcno68</name>
  697 + <type>String</type>
  698 + <format/>
  699 + </field>
  700 + <field>
  701 + <name>fcno69</name>
  702 + <type>String</type>
  703 + <format/>
  704 + </field>
  705 + <field>
  706 + <name>fcno70</name>
  707 + <type>String</type>
  708 + <format/>
  709 + </field>
  710 + </fields>
  711 + <custom>
  712 + <header_font_name>arial</header_font_name>
  713 + <header_font_size>10</header_font_size>
  714 + <header_font_bold>N</header_font_bold>
  715 + <header_font_italic>N</header_font_italic>
  716 + <header_font_underline>no</header_font_underline>
  717 + <header_font_orientation>horizontal</header_font_orientation>
  718 + <header_font_color>black</header_font_color>
  719 + <header_background_color>none</header_background_color>
  720 + <header_row_height>255</header_row_height>
  721 + <header_alignment>left</header_alignment>
  722 + <header_image/>
  723 + <row_font_name>arial</row_font_name>
  724 + <row_font_size>10</row_font_size>
  725 + <row_font_color>black</row_font_color>
  726 + <row_background_color>none</row_background_color>
  727 + </custom>
  728 + <cluster_schema/>
  729 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  730 + <xloc>692</xloc>
  731 + <yloc>514</yloc>
  732 + <draw>Y</draw>
  733 + </GUI>
  734 + </step>
  735 +
  736 + <step>
  737 + <name>&#x5217;&#x8f6c;&#x884c;</name>
  738 + <type>Denormaliser</type>
  739 + <description/>
  740 + <distribute>N</distribute>
  741 + <custom_distribution/>
  742 + <copies>1</copies>
  743 + <partitioning>
  744 + <method>none</method>
  745 + <schema_name/>
  746 + </partitioning>
  747 + <key_field>fcno</key_field>
  748 + <group>
  749 + <field>
  750 + <name>lp</name>
  751 + </field>
  752 + </group>
  753 + <fields>
  754 + <field>
  755 + <field_name>all_content</field_name>
  756 + <key_value>1</key_value>
  757 + <target_name>fcno1</target_name>
  758 + <target_type>String</target_type>
  759 + <target_format/>
  760 + <target_length>-1</target_length>
  761 + <target_precision>-1</target_precision>
  762 + <target_decimal_symbol/>
  763 + <target_grouping_symbol/>
  764 + <target_currency_symbol/>
  765 + <target_null_string/>
  766 + <target_aggregation_type>-</target_aggregation_type>
  767 + </field>
  768 + <field>
  769 + <field_name>all_content</field_name>
  770 + <key_value>2</key_value>
  771 + <target_name>fcno2</target_name>
  772 + <target_type>String</target_type>
  773 + <target_format/>
  774 + <target_length>-1</target_length>
  775 + <target_precision>-1</target_precision>
  776 + <target_decimal_symbol/>
  777 + <target_grouping_symbol/>
  778 + <target_currency_symbol/>
  779 + <target_null_string/>
  780 + <target_aggregation_type>-</target_aggregation_type>
  781 + </field>
  782 + <field>
  783 + <field_name>all_content</field_name>
  784 + <key_value>3</key_value>
  785 + <target_name>fcno3</target_name>
  786 + <target_type>String</target_type>
  787 + <target_format/>
  788 + <target_length>-1</target_length>
  789 + <target_precision>-1</target_precision>
  790 + <target_decimal_symbol/>
  791 + <target_grouping_symbol/>
  792 + <target_currency_symbol/>
  793 + <target_null_string/>
  794 + <target_aggregation_type>-</target_aggregation_type>
  795 + </field>
  796 + <field>
  797 + <field_name>all_content</field_name>
  798 + <key_value>4</key_value>
  799 + <target_name>fcno4</target_name>
  800 + <target_type>String</target_type>
  801 + <target_format/>
  802 + <target_length>-1</target_length>
  803 + <target_precision>-1</target_precision>
  804 + <target_decimal_symbol/>
  805 + <target_grouping_symbol/>
  806 + <target_currency_symbol/>
  807 + <target_null_string/>
  808 + <target_aggregation_type>-</target_aggregation_type>
  809 + </field>
  810 + <field>
  811 + <field_name>all_content</field_name>
  812 + <key_value>5</key_value>
  813 + <target_name>fcno5</target_name>
  814 + <target_type>String</target_type>
  815 + <target_format/>
  816 + <target_length>-1</target_length>
  817 + <target_precision>-1</target_precision>
  818 + <target_decimal_symbol/>
  819 + <target_grouping_symbol/>
  820 + <target_currency_symbol/>
  821 + <target_null_string/>
  822 + <target_aggregation_type>-</target_aggregation_type>
  823 + </field>
  824 + <field>
  825 + <field_name>all_content</field_name>
  826 + <key_value>6</key_value>
  827 + <target_name>fcno6</target_name>
  828 + <target_type>String</target_type>
  829 + <target_format/>
  830 + <target_length>-1</target_length>
  831 + <target_precision>-1</target_precision>
  832 + <target_decimal_symbol/>
  833 + <target_grouping_symbol/>
  834 + <target_currency_symbol/>
  835 + <target_null_string/>
  836 + <target_aggregation_type>-</target_aggregation_type>
  837 + </field>
  838 + <field>
  839 + <field_name>all_content</field_name>
  840 + <key_value>7</key_value>
  841 + <target_name>fcno7</target_name>
  842 + <target_type>String</target_type>
  843 + <target_format/>
  844 + <target_length>-1</target_length>
  845 + <target_precision>-1</target_precision>
  846 + <target_decimal_symbol/>
  847 + <target_grouping_symbol/>
  848 + <target_currency_symbol/>
  849 + <target_null_string/>
  850 + <target_aggregation_type>-</target_aggregation_type>
  851 + </field>
  852 + <field>
  853 + <field_name>all_content</field_name>
  854 + <key_value>8</key_value>
  855 + <target_name>fcno8</target_name>
  856 + <target_type>String</target_type>
  857 + <target_format/>
  858 + <target_length>-1</target_length>
  859 + <target_precision>-1</target_precision>
  860 + <target_decimal_symbol/>
  861 + <target_grouping_symbol/>
  862 + <target_currency_symbol/>
  863 + <target_null_string/>
  864 + <target_aggregation_type>-</target_aggregation_type>
  865 + </field>
  866 + <field>
  867 + <field_name>all_content</field_name>
  868 + <key_value>9</key_value>
  869 + <target_name>fcno9</target_name>
  870 + <target_type>String</target_type>
  871 + <target_format/>
  872 + <target_length>-1</target_length>
  873 + <target_precision>-1</target_precision>
  874 + <target_decimal_symbol/>
  875 + <target_grouping_symbol/>
  876 + <target_currency_symbol/>
  877 + <target_null_string/>
  878 + <target_aggregation_type>-</target_aggregation_type>
  879 + </field>
  880 + <field>
  881 + <field_name>all_content</field_name>
  882 + <key_value>10</key_value>
  883 + <target_name>fcno10</target_name>
  884 + <target_type>String</target_type>
  885 + <target_format/>
  886 + <target_length>-1</target_length>
  887 + <target_precision>-1</target_precision>
  888 + <target_decimal_symbol/>
  889 + <target_grouping_symbol/>
  890 + <target_currency_symbol/>
  891 + <target_null_string/>
  892 + <target_aggregation_type>-</target_aggregation_type>
  893 + </field>
  894 + <field>
  895 + <field_name>all_content</field_name>
  896 + <key_value>11</key_value>
  897 + <target_name>fcno11</target_name>
  898 + <target_type>String</target_type>
  899 + <target_format/>
  900 + <target_length>-1</target_length>
  901 + <target_precision>-1</target_precision>
  902 + <target_decimal_symbol/>
  903 + <target_grouping_symbol/>
  904 + <target_currency_symbol/>
  905 + <target_null_string/>
  906 + <target_aggregation_type>-</target_aggregation_type>
  907 + </field>
  908 + <field>
  909 + <field_name>all_content</field_name>
  910 + <key_value>12</key_value>
  911 + <target_name>fcno12</target_name>
  912 + <target_type>String</target_type>
  913 + <target_format/>
  914 + <target_length>-1</target_length>
  915 + <target_precision>-1</target_precision>
  916 + <target_decimal_symbol/>
  917 + <target_grouping_symbol/>
  918 + <target_currency_symbol/>
  919 + <target_null_string/>
  920 + <target_aggregation_type>-</target_aggregation_type>
  921 + </field>
  922 + <field>
  923 + <field_name>all_content</field_name>
  924 + <key_value>13</key_value>
  925 + <target_name>fcno13</target_name>
  926 + <target_type>String</target_type>
  927 + <target_format/>
  928 + <target_length>-1</target_length>
  929 + <target_precision>-1</target_precision>
  930 + <target_decimal_symbol/>
  931 + <target_grouping_symbol/>
  932 + <target_currency_symbol/>
  933 + <target_null_string/>
  934 + <target_aggregation_type>-</target_aggregation_type>
  935 + </field>
  936 + <field>
  937 + <field_name>all_content</field_name>
  938 + <key_value>14</key_value>
  939 + <target_name>fcno14</target_name>
  940 + <target_type>String</target_type>
  941 + <target_format/>
  942 + <target_length>-1</target_length>
  943 + <target_precision>-1</target_precision>
  944 + <target_decimal_symbol/>
  945 + <target_grouping_symbol/>
  946 + <target_currency_symbol/>
  947 + <target_null_string/>
  948 + <target_aggregation_type>-</target_aggregation_type>
  949 + </field>
  950 + <field>
  951 + <field_name>all_content</field_name>
  952 + <key_value>15</key_value>
  953 + <target_name>fcno15</target_name>
  954 + <target_type>String</target_type>
  955 + <target_format/>
  956 + <target_length>-1</target_length>
  957 + <target_precision>-1</target_precision>
  958 + <target_decimal_symbol/>
  959 + <target_grouping_symbol/>
  960 + <target_currency_symbol/>
  961 + <target_null_string/>
  962 + <target_aggregation_type>-</target_aggregation_type>
  963 + </field>
  964 + <field>
  965 + <field_name>all_content</field_name>
  966 + <key_value>16</key_value>
  967 + <target_name>fcno16</target_name>
  968 + <target_type>String</target_type>
  969 + <target_format/>
  970 + <target_length>-1</target_length>
  971 + <target_precision>-1</target_precision>
  972 + <target_decimal_symbol/>
  973 + <target_grouping_symbol/>
  974 + <target_currency_symbol/>
  975 + <target_null_string/>
  976 + <target_aggregation_type>-</target_aggregation_type>
  977 + </field>
  978 + <field>
  979 + <field_name>all_content</field_name>
  980 + <key_value>17</key_value>
  981 + <target_name>fcno17</target_name>
  982 + <target_type>String</target_type>
  983 + <target_format/>
  984 + <target_length>-1</target_length>
  985 + <target_precision>-1</target_precision>
  986 + <target_decimal_symbol/>
  987 + <target_grouping_symbol/>
  988 + <target_currency_symbol/>
  989 + <target_null_string/>
  990 + <target_aggregation_type>-</target_aggregation_type>
  991 + </field>
  992 + <field>
  993 + <field_name>all_content</field_name>
  994 + <key_value>18</key_value>
  995 + <target_name>fcno18</target_name>
  996 + <target_type>String</target_type>
  997 + <target_format/>
  998 + <target_length>-1</target_length>
  999 + <target_precision>-1</target_precision>
  1000 + <target_decimal_symbol/>
  1001 + <target_grouping_symbol/>
  1002 + <target_currency_symbol/>
  1003 + <target_null_string/>
  1004 + <target_aggregation_type>-</target_aggregation_type>
  1005 + </field>
  1006 + <field>
  1007 + <field_name>all_content</field_name>
  1008 + <key_value>19</key_value>
  1009 + <target_name>fcno19</target_name>
  1010 + <target_type>String</target_type>
  1011 + <target_format/>
  1012 + <target_length>-1</target_length>
  1013 + <target_precision>-1</target_precision>
  1014 + <target_decimal_symbol/>
  1015 + <target_grouping_symbol/>
  1016 + <target_currency_symbol/>
  1017 + <target_null_string/>
  1018 + <target_aggregation_type>-</target_aggregation_type>
  1019 + </field>
  1020 + <field>
  1021 + <field_name>all_content</field_name>
  1022 + <key_value>20</key_value>
  1023 + <target_name>fcno20</target_name>
  1024 + <target_type>String</target_type>
  1025 + <target_format/>
  1026 + <target_length>-1</target_length>
  1027 + <target_precision>-1</target_precision>
  1028 + <target_decimal_symbol/>
  1029 + <target_grouping_symbol/>
  1030 + <target_currency_symbol/>
  1031 + <target_null_string/>
  1032 + <target_aggregation_type>-</target_aggregation_type>
  1033 + </field>
  1034 + <field>
  1035 + <field_name>all_content</field_name>
  1036 + <key_value>21</key_value>
  1037 + <target_name>fcno21</target_name>
  1038 + <target_type>String</target_type>
  1039 + <target_format/>
  1040 + <target_length>-1</target_length>
  1041 + <target_precision>-1</target_precision>
  1042 + <target_decimal_symbol/>
  1043 + <target_grouping_symbol/>
  1044 + <target_currency_symbol/>
  1045 + <target_null_string/>
  1046 + <target_aggregation_type>-</target_aggregation_type>
  1047 + </field>
  1048 + <field>
  1049 + <field_name>all_content</field_name>
  1050 + <key_value>22</key_value>
  1051 + <target_name>fcno22</target_name>
  1052 + <target_type>String</target_type>
  1053 + <target_format/>
  1054 + <target_length>-1</target_length>
  1055 + <target_precision>-1</target_precision>
  1056 + <target_decimal_symbol/>
  1057 + <target_grouping_symbol/>
  1058 + <target_currency_symbol/>
  1059 + <target_null_string/>
  1060 + <target_aggregation_type>-</target_aggregation_type>
  1061 + </field>
  1062 + <field>
  1063 + <field_name>all_content</field_name>
  1064 + <key_value>23</key_value>
  1065 + <target_name>fcno23</target_name>
  1066 + <target_type>String</target_type>
  1067 + <target_format/>
  1068 + <target_length>-1</target_length>
  1069 + <target_precision>-1</target_precision>
  1070 + <target_decimal_symbol/>
  1071 + <target_grouping_symbol/>
  1072 + <target_currency_symbol/>
  1073 + <target_null_string/>
  1074 + <target_aggregation_type>-</target_aggregation_type>
  1075 + </field>
  1076 + <field>
  1077 + <field_name>all_content</field_name>
  1078 + <key_value>24</key_value>
  1079 + <target_name>fcno24</target_name>
  1080 + <target_type>String</target_type>
  1081 + <target_format/>
  1082 + <target_length>-1</target_length>
  1083 + <target_precision>-1</target_precision>
  1084 + <target_decimal_symbol/>
  1085 + <target_grouping_symbol/>
  1086 + <target_currency_symbol/>
  1087 + <target_null_string/>
  1088 + <target_aggregation_type>-</target_aggregation_type>
  1089 + </field>
  1090 + <field>
  1091 + <field_name>all_content</field_name>
  1092 + <key_value>25</key_value>
  1093 + <target_name>fcno25</target_name>
  1094 + <target_type>String</target_type>
  1095 + <target_format/>
  1096 + <target_length>-1</target_length>
  1097 + <target_precision>-1</target_precision>
  1098 + <target_decimal_symbol/>
  1099 + <target_grouping_symbol/>
  1100 + <target_currency_symbol/>
  1101 + <target_null_string/>
  1102 + <target_aggregation_type>-</target_aggregation_type>
  1103 + </field>
  1104 + <field>
  1105 + <field_name>all_content</field_name>
  1106 + <key_value>26</key_value>
  1107 + <target_name>fcno26</target_name>
  1108 + <target_type>String</target_type>
  1109 + <target_format/>
  1110 + <target_length>-1</target_length>
  1111 + <target_precision>-1</target_precision>
  1112 + <target_decimal_symbol/>
  1113 + <target_grouping_symbol/>
  1114 + <target_currency_symbol/>
  1115 + <target_null_string/>
  1116 + <target_aggregation_type>-</target_aggregation_type>
  1117 + </field>
  1118 + <field>
  1119 + <field_name>all_content</field_name>
  1120 + <key_value>27</key_value>
  1121 + <target_name>fcno27</target_name>
  1122 + <target_type>String</target_type>
  1123 + <target_format/>
  1124 + <target_length>-1</target_length>
  1125 + <target_precision>-1</target_precision>
  1126 + <target_decimal_symbol/>
  1127 + <target_grouping_symbol/>
  1128 + <target_currency_symbol/>
  1129 + <target_null_string/>
  1130 + <target_aggregation_type>-</target_aggregation_type>
  1131 + </field>
  1132 + <field>
  1133 + <field_name>all_content</field_name>
  1134 + <key_value>28</key_value>
  1135 + <target_name>fcno28</target_name>
  1136 + <target_type>String</target_type>
  1137 + <target_format/>
  1138 + <target_length>-1</target_length>
  1139 + <target_precision>-1</target_precision>
  1140 + <target_decimal_symbol/>
  1141 + <target_grouping_symbol/>
  1142 + <target_currency_symbol/>
  1143 + <target_null_string/>
  1144 + <target_aggregation_type>-</target_aggregation_type>
  1145 + </field>
  1146 + <field>
  1147 + <field_name>all_content</field_name>
  1148 + <key_value>29</key_value>
  1149 + <target_name>fcno29</target_name>
  1150 + <target_type>String</target_type>
  1151 + <target_format/>
  1152 + <target_length>-1</target_length>
  1153 + <target_precision>-1</target_precision>
  1154 + <target_decimal_symbol/>
  1155 + <target_grouping_symbol/>
  1156 + <target_currency_symbol/>
  1157 + <target_null_string/>
  1158 + <target_aggregation_type>-</target_aggregation_type>
  1159 + </field>
  1160 + <field>
  1161 + <field_name>all_content</field_name>
  1162 + <key_value>30</key_value>
  1163 + <target_name>fcno30</target_name>
  1164 + <target_type>String</target_type>
  1165 + <target_format/>
  1166 + <target_length>-1</target_length>
  1167 + <target_precision>-1</target_precision>
  1168 + <target_decimal_symbol/>
  1169 + <target_grouping_symbol/>
  1170 + <target_currency_symbol/>
  1171 + <target_null_string/>
  1172 + <target_aggregation_type>-</target_aggregation_type>
  1173 + </field>
  1174 + <field>
  1175 + <field_name>all_content</field_name>
  1176 + <key_value>31</key_value>
  1177 + <target_name>fcno31</target_name>
  1178 + <target_type>String</target_type>
  1179 + <target_format/>
  1180 + <target_length>-1</target_length>
  1181 + <target_precision>-1</target_precision>
  1182 + <target_decimal_symbol/>
  1183 + <target_grouping_symbol/>
  1184 + <target_currency_symbol/>
  1185 + <target_null_string/>
  1186 + <target_aggregation_type>-</target_aggregation_type>
  1187 + </field>
  1188 + <field>
  1189 + <field_name>all_content</field_name>
  1190 + <key_value>32</key_value>
  1191 + <target_name>fcno32</target_name>
  1192 + <target_type>String</target_type>
  1193 + <target_format/>
  1194 + <target_length>-1</target_length>
  1195 + <target_precision>-1</target_precision>
  1196 + <target_decimal_symbol/>
  1197 + <target_grouping_symbol/>
  1198 + <target_currency_symbol/>
  1199 + <target_null_string/>
  1200 + <target_aggregation_type>-</target_aggregation_type>
  1201 + </field>
  1202 + <field>
  1203 + <field_name>all_content</field_name>
  1204 + <key_value>33</key_value>
  1205 + <target_name>fcno33</target_name>
  1206 + <target_type>String</target_type>
  1207 + <target_format/>
  1208 + <target_length>-1</target_length>
  1209 + <target_precision>-1</target_precision>
  1210 + <target_decimal_symbol/>
  1211 + <target_grouping_symbol/>
  1212 + <target_currency_symbol/>
  1213 + <target_null_string/>
  1214 + <target_aggregation_type>-</target_aggregation_type>
  1215 + </field>
  1216 + <field>
  1217 + <field_name>all_content</field_name>
  1218 + <key_value>34</key_value>
  1219 + <target_name>fcno34</target_name>
  1220 + <target_type>String</target_type>
  1221 + <target_format/>
  1222 + <target_length>-1</target_length>
  1223 + <target_precision>-1</target_precision>
  1224 + <target_decimal_symbol/>
  1225 + <target_grouping_symbol/>
  1226 + <target_currency_symbol/>
  1227 + <target_null_string/>
  1228 + <target_aggregation_type>-</target_aggregation_type>
  1229 + </field>
  1230 + <field>
  1231 + <field_name>all_content</field_name>
  1232 + <key_value>35</key_value>
  1233 + <target_name>fcno35</target_name>
  1234 + <target_type>String</target_type>
  1235 + <target_format/>
  1236 + <target_length>-1</target_length>
  1237 + <target_precision>-1</target_precision>
  1238 + <target_decimal_symbol/>
  1239 + <target_grouping_symbol/>
  1240 + <target_currency_symbol/>
  1241 + <target_null_string/>
  1242 + <target_aggregation_type>-</target_aggregation_type>
  1243 + </field>
  1244 + <field>
  1245 + <field_name>all_content</field_name>
  1246 + <key_value>36</key_value>
  1247 + <target_name>fcno36</target_name>
  1248 + <target_type>String</target_type>
  1249 + <target_format/>
  1250 + <target_length>-1</target_length>
  1251 + <target_precision>-1</target_precision>
  1252 + <target_decimal_symbol/>
  1253 + <target_grouping_symbol/>
  1254 + <target_currency_symbol/>
  1255 + <target_null_string/>
  1256 + <target_aggregation_type>-</target_aggregation_type>
  1257 + </field>
  1258 + <field>
  1259 + <field_name>all_content</field_name>
  1260 + <key_value>37</key_value>
  1261 + <target_name>fcno37</target_name>
  1262 + <target_type>String</target_type>
  1263 + <target_format/>
  1264 + <target_length>-1</target_length>
  1265 + <target_precision>-1</target_precision>
  1266 + <target_decimal_symbol/>
  1267 + <target_grouping_symbol/>
  1268 + <target_currency_symbol/>
  1269 + <target_null_string/>
  1270 + <target_aggregation_type>-</target_aggregation_type>
  1271 + </field>
  1272 + <field>
  1273 + <field_name>all_content</field_name>
  1274 + <key_value>38</key_value>
  1275 + <target_name>fcno38</target_name>
  1276 + <target_type>String</target_type>
  1277 + <target_format/>
  1278 + <target_length>-1</target_length>
  1279 + <target_precision>-1</target_precision>
  1280 + <target_decimal_symbol/>
  1281 + <target_grouping_symbol/>
  1282 + <target_currency_symbol/>
  1283 + <target_null_string/>
  1284 + <target_aggregation_type>-</target_aggregation_type>
  1285 + </field>
  1286 + <field>
  1287 + <field_name>all_content</field_name>
  1288 + <key_value>39</key_value>
  1289 + <target_name>fcno39</target_name>
  1290 + <target_type>String</target_type>
  1291 + <target_format/>
  1292 + <target_length>-1</target_length>
  1293 + <target_precision>-1</target_precision>
  1294 + <target_decimal_symbol/>
  1295 + <target_grouping_symbol/>
  1296 + <target_currency_symbol/>
  1297 + <target_null_string/>
  1298 + <target_aggregation_type>-</target_aggregation_type>
  1299 + </field>
  1300 + <field>
  1301 + <field_name>all_content</field_name>
  1302 + <key_value>40</key_value>
  1303 + <target_name>fcno40</target_name>
  1304 + <target_type>String</target_type>
  1305 + <target_format/>
  1306 + <target_length>-1</target_length>
  1307 + <target_precision>-1</target_precision>
  1308 + <target_decimal_symbol/>
  1309 + <target_grouping_symbol/>
  1310 + <target_currency_symbol/>
  1311 + <target_null_string/>
  1312 + <target_aggregation_type>-</target_aggregation_type>
  1313 + </field>
  1314 + <field>
  1315 + <field_name>all_content</field_name>
  1316 + <key_value>41</key_value>
  1317 + <target_name>fcno41</target_name>
  1318 + <target_type>String</target_type>
  1319 + <target_format/>
  1320 + <target_length>-1</target_length>
  1321 + <target_precision>-1</target_precision>
  1322 + <target_decimal_symbol/>
  1323 + <target_grouping_symbol/>
  1324 + <target_currency_symbol/>
  1325 + <target_null_string/>
  1326 + <target_aggregation_type>-</target_aggregation_type>
  1327 + </field>
  1328 + <field>
  1329 + <field_name>all_content</field_name>
  1330 + <key_value>42</key_value>
  1331 + <target_name>fcno42</target_name>
  1332 + <target_type>String</target_type>
  1333 + <target_format/>
  1334 + <target_length>-1</target_length>
  1335 + <target_precision>-1</target_precision>
  1336 + <target_decimal_symbol/>
  1337 + <target_grouping_symbol/>
  1338 + <target_currency_symbol/>
  1339 + <target_null_string/>
  1340 + <target_aggregation_type>-</target_aggregation_type>
  1341 + </field>
  1342 + <field>
  1343 + <field_name>all_content</field_name>
  1344 + <key_value>43</key_value>
  1345 + <target_name>fcno43</target_name>
  1346 + <target_type>String</target_type>
  1347 + <target_format/>
  1348 + <target_length>-1</target_length>
  1349 + <target_precision>-1</target_precision>
  1350 + <target_decimal_symbol/>
  1351 + <target_grouping_symbol/>
  1352 + <target_currency_symbol/>
  1353 + <target_null_string/>
  1354 + <target_aggregation_type>-</target_aggregation_type>
  1355 + </field>
  1356 + <field>
  1357 + <field_name>all_content</field_name>
  1358 + <key_value>44</key_value>
  1359 + <target_name>fcno44</target_name>
  1360 + <target_type>String</target_type>
  1361 + <target_format/>
  1362 + <target_length>-1</target_length>
  1363 + <target_precision>-1</target_precision>
  1364 + <target_decimal_symbol/>
  1365 + <target_grouping_symbol/>
  1366 + <target_currency_symbol/>
  1367 + <target_null_string/>
  1368 + <target_aggregation_type>-</target_aggregation_type>
  1369 + </field>
  1370 + <field>
  1371 + <field_name>all_content</field_name>
  1372 + <key_value>45</key_value>
  1373 + <target_name>fcno45</target_name>
  1374 + <target_type>String</target_type>
  1375 + <target_format/>
  1376 + <target_length>-1</target_length>
  1377 + <target_precision>-1</target_precision>
  1378 + <target_decimal_symbol/>
  1379 + <target_grouping_symbol/>
  1380 + <target_currency_symbol/>
  1381 + <target_null_string/>
  1382 + <target_aggregation_type>-</target_aggregation_type>
  1383 + </field>
  1384 + <field>
  1385 + <field_name>all_content</field_name>
  1386 + <key_value>46</key_value>
  1387 + <target_name>fcno46</target_name>
  1388 + <target_type>String</target_type>
  1389 + <target_format/>
  1390 + <target_length>-1</target_length>
  1391 + <target_precision>-1</target_precision>
  1392 + <target_decimal_symbol/>
  1393 + <target_grouping_symbol/>
  1394 + <target_currency_symbol/>
  1395 + <target_null_string/>
  1396 + <target_aggregation_type>-</target_aggregation_type>
  1397 + </field>
  1398 + <field>
  1399 + <field_name>all_content</field_name>
  1400 + <key_value>47</key_value>
  1401 + <target_name>fcno47</target_name>
  1402 + <target_type>String</target_type>
  1403 + <target_format/>
  1404 + <target_length>-1</target_length>
  1405 + <target_precision>-1</target_precision>
  1406 + <target_decimal_symbol/>
  1407 + <target_grouping_symbol/>
  1408 + <target_currency_symbol/>
  1409 + <target_null_string/>
  1410 + <target_aggregation_type>-</target_aggregation_type>
  1411 + </field>
  1412 + <field>
  1413 + <field_name>all_content</field_name>
  1414 + <key_value>48</key_value>
  1415 + <target_name>fcno48</target_name>
  1416 + <target_type>String</target_type>
  1417 + <target_format/>
  1418 + <target_length>-1</target_length>
  1419 + <target_precision>-1</target_precision>
  1420 + <target_decimal_symbol/>
  1421 + <target_grouping_symbol/>
  1422 + <target_currency_symbol/>
  1423 + <target_null_string/>
  1424 + <target_aggregation_type>-</target_aggregation_type>
  1425 + </field>
  1426 + <field>
  1427 + <field_name>all_content</field_name>
  1428 + <key_value>49</key_value>
  1429 + <target_name>fcno49</target_name>
  1430 + <target_type>String</target_type>
  1431 + <target_format/>
  1432 + <target_length>-1</target_length>
  1433 + <target_precision>-1</target_precision>
  1434 + <target_decimal_symbol/>
  1435 + <target_grouping_symbol/>
  1436 + <target_currency_symbol/>
  1437 + <target_null_string/>
  1438 + <target_aggregation_type>-</target_aggregation_type>
  1439 + </field>
  1440 + <field>
  1441 + <field_name>all_content</field_name>
  1442 + <key_value>50</key_value>
  1443 + <target_name>fcno50</target_name>
  1444 + <target_type>String</target_type>
  1445 + <target_format/>
  1446 + <target_length>-1</target_length>
  1447 + <target_precision>-1</target_precision>
  1448 + <target_decimal_symbol/>
  1449 + <target_grouping_symbol/>
  1450 + <target_currency_symbol/>
  1451 + <target_null_string/>
  1452 + <target_aggregation_type>-</target_aggregation_type>
  1453 + </field>
  1454 + <field>
  1455 + <field_name>all_content</field_name>
  1456 + <key_value>51</key_value>
  1457 + <target_name>fcno51</target_name>
  1458 + <target_type>String</target_type>
  1459 + <target_format/>
  1460 + <target_length>-1</target_length>
  1461 + <target_precision>-1</target_precision>
  1462 + <target_decimal_symbol/>
  1463 + <target_grouping_symbol/>
  1464 + <target_currency_symbol/>
  1465 + <target_null_string/>
  1466 + <target_aggregation_type>-</target_aggregation_type>
  1467 + </field>
  1468 + <field>
  1469 + <field_name>all_content</field_name>
  1470 + <key_value>52</key_value>
  1471 + <target_name>fcno52</target_name>
  1472 + <target_type>String</target_type>
  1473 + <target_format/>
  1474 + <target_length>-1</target_length>
  1475 + <target_precision>-1</target_precision>
  1476 + <target_decimal_symbol/>
  1477 + <target_grouping_symbol/>
  1478 + <target_currency_symbol/>
  1479 + <target_null_string/>
  1480 + <target_aggregation_type>-</target_aggregation_type>
  1481 + </field>
  1482 + <field>
  1483 + <field_name>all_content</field_name>
  1484 + <key_value>53</key_value>
  1485 + <target_name>fcno53</target_name>
  1486 + <target_type>String</target_type>
  1487 + <target_format/>
  1488 + <target_length>-1</target_length>
  1489 + <target_precision>-1</target_precision>
  1490 + <target_decimal_symbol/>
  1491 + <target_grouping_symbol/>
  1492 + <target_currency_symbol/>
  1493 + <target_null_string/>
  1494 + <target_aggregation_type>-</target_aggregation_type>
  1495 + </field>
  1496 + <field>
  1497 + <field_name>all_content</field_name>
  1498 + <key_value>54</key_value>
  1499 + <target_name>fcno54</target_name>
  1500 + <target_type>String</target_type>
  1501 + <target_format/>
  1502 + <target_length>-1</target_length>
  1503 + <target_precision>-1</target_precision>
  1504 + <target_decimal_symbol/>
  1505 + <target_grouping_symbol/>
  1506 + <target_currency_symbol/>
  1507 + <target_null_string/>
  1508 + <target_aggregation_type>-</target_aggregation_type>
  1509 + </field>
  1510 + <field>
  1511 + <field_name>all_content</field_name>
  1512 + <key_value>55</key_value>
  1513 + <target_name>fcno55</target_name>
  1514 + <target_type>String</target_type>
  1515 + <target_format/>
  1516 + <target_length>-1</target_length>
  1517 + <target_precision>-1</target_precision>
  1518 + <target_decimal_symbol/>
  1519 + <target_grouping_symbol/>
  1520 + <target_currency_symbol/>
  1521 + <target_null_string/>
  1522 + <target_aggregation_type>-</target_aggregation_type>
  1523 + </field>
  1524 + <field>
  1525 + <field_name>all_content</field_name>
  1526 + <key_value>56</key_value>
  1527 + <target_name>fcno56</target_name>
  1528 + <target_type>String</target_type>
  1529 + <target_format/>
  1530 + <target_length>-1</target_length>
  1531 + <target_precision>-1</target_precision>
  1532 + <target_decimal_symbol/>
  1533 + <target_grouping_symbol/>
  1534 + <target_currency_symbol/>
  1535 + <target_null_string/>
  1536 + <target_aggregation_type>-</target_aggregation_type>
  1537 + </field>
  1538 + <field>
  1539 + <field_name>all_content</field_name>
  1540 + <key_value>57</key_value>
  1541 + <target_name>fcno57</target_name>
  1542 + <target_type>String</target_type>
  1543 + <target_format/>
  1544 + <target_length>-1</target_length>
  1545 + <target_precision>-1</target_precision>
  1546 + <target_decimal_symbol/>
  1547 + <target_grouping_symbol/>
  1548 + <target_currency_symbol/>
  1549 + <target_null_string/>
  1550 + <target_aggregation_type>-</target_aggregation_type>
  1551 + </field>
  1552 + <field>
  1553 + <field_name>all_content</field_name>
  1554 + <key_value>58</key_value>
  1555 + <target_name>fcno58</target_name>
  1556 + <target_type>String</target_type>
  1557 + <target_format/>
  1558 + <target_length>-1</target_length>
  1559 + <target_precision>-1</target_precision>
  1560 + <target_decimal_symbol/>
  1561 + <target_grouping_symbol/>
  1562 + <target_currency_symbol/>
  1563 + <target_null_string/>
  1564 + <target_aggregation_type>-</target_aggregation_type>
  1565 + </field>
  1566 + <field>
  1567 + <field_name>all_content</field_name>
  1568 + <key_value>59</key_value>
  1569 + <target_name>fcno59</target_name>
  1570 + <target_type>String</target_type>
  1571 + <target_format/>
  1572 + <target_length>-1</target_length>
  1573 + <target_precision>-1</target_precision>
  1574 + <target_decimal_symbol/>
  1575 + <target_grouping_symbol/>
  1576 + <target_currency_symbol/>
  1577 + <target_null_string/>
  1578 + <target_aggregation_type>-</target_aggregation_type>
  1579 + </field>
  1580 + <field>
  1581 + <field_name>all_content</field_name>
  1582 + <key_value>60</key_value>
  1583 + <target_name>fcno60</target_name>
  1584 + <target_type>String</target_type>
  1585 + <target_format/>
  1586 + <target_length>-1</target_length>
  1587 + <target_precision>-1</target_precision>
  1588 + <target_decimal_symbol/>
  1589 + <target_grouping_symbol/>
  1590 + <target_currency_symbol/>
  1591 + <target_null_string/>
  1592 + <target_aggregation_type>-</target_aggregation_type>
  1593 + </field>
  1594 + <field>
  1595 + <field_name>all_content</field_name>
  1596 + <key_value>61</key_value>
  1597 + <target_name>fcno61</target_name>
  1598 + <target_type>String</target_type>
  1599 + <target_format/>
  1600 + <target_length>-1</target_length>
  1601 + <target_precision>-1</target_precision>
  1602 + <target_decimal_symbol/>
  1603 + <target_grouping_symbol/>
  1604 + <target_currency_symbol/>
  1605 + <target_null_string/>
  1606 + <target_aggregation_type>-</target_aggregation_type>
  1607 + </field>
  1608 + <field>
  1609 + <field_name>all_content</field_name>
  1610 + <key_value>62</key_value>
  1611 + <target_name>fcno62</target_name>
  1612 + <target_type>String</target_type>
  1613 + <target_format/>
  1614 + <target_length>-1</target_length>
  1615 + <target_precision>-1</target_precision>
  1616 + <target_decimal_symbol/>
  1617 + <target_grouping_symbol/>
  1618 + <target_currency_symbol/>
  1619 + <target_null_string/>
  1620 + <target_aggregation_type>-</target_aggregation_type>
  1621 + </field>
  1622 + <field>
  1623 + <field_name>all_content</field_name>
  1624 + <key_value>63</key_value>
  1625 + <target_name>fcno63</target_name>
  1626 + <target_type>String</target_type>
  1627 + <target_format/>
  1628 + <target_length>-1</target_length>
  1629 + <target_precision>-1</target_precision>
  1630 + <target_decimal_symbol/>
  1631 + <target_grouping_symbol/>
  1632 + <target_currency_symbol/>
  1633 + <target_null_string/>
  1634 + <target_aggregation_type>-</target_aggregation_type>
  1635 + </field>
  1636 + <field>
  1637 + <field_name>all_content</field_name>
  1638 + <key_value>64</key_value>
  1639 + <target_name>fcno64</target_name>
  1640 + <target_type>String</target_type>
  1641 + <target_format/>
  1642 + <target_length>-1</target_length>
  1643 + <target_precision>-1</target_precision>
  1644 + <target_decimal_symbol/>
  1645 + <target_grouping_symbol/>
  1646 + <target_currency_symbol/>
  1647 + <target_null_string/>
  1648 + <target_aggregation_type>-</target_aggregation_type>
  1649 + </field>
  1650 + <field>
  1651 + <field_name>all_content</field_name>
  1652 + <key_value>65</key_value>
  1653 + <target_name>fcno65</target_name>
  1654 + <target_type>String</target_type>
  1655 + <target_format/>
  1656 + <target_length>-1</target_length>
  1657 + <target_precision>-1</target_precision>
  1658 + <target_decimal_symbol/>
  1659 + <target_grouping_symbol/>
  1660 + <target_currency_symbol/>
  1661 + <target_null_string/>
  1662 + <target_aggregation_type>-</target_aggregation_type>
  1663 + </field>
  1664 + <field>
  1665 + <field_name>all_content</field_name>
  1666 + <key_value>66</key_value>
  1667 + <target_name>fcno66</target_name>
  1668 + <target_type>String</target_type>
  1669 + <target_format/>
  1670 + <target_length>-1</target_length>
  1671 + <target_precision>-1</target_precision>
  1672 + <target_decimal_symbol/>
  1673 + <target_grouping_symbol/>
  1674 + <target_currency_symbol/>
  1675 + <target_null_string/>
  1676 + <target_aggregation_type>-</target_aggregation_type>
  1677 + </field>
  1678 + <field>
  1679 + <field_name>all_content</field_name>
  1680 + <key_value>67</key_value>
  1681 + <target_name>fcno67</target_name>
  1682 + <target_type>String</target_type>
  1683 + <target_format/>
  1684 + <target_length>-1</target_length>
  1685 + <target_precision>-1</target_precision>
  1686 + <target_decimal_symbol/>
  1687 + <target_grouping_symbol/>
  1688 + <target_currency_symbol/>
  1689 + <target_null_string/>
  1690 + <target_aggregation_type>-</target_aggregation_type>
  1691 + </field>
  1692 + <field>
  1693 + <field_name>all_content</field_name>
  1694 + <key_value>68</key_value>
  1695 + <target_name>fcno68</target_name>
  1696 + <target_type>String</target_type>
  1697 + <target_format/>
  1698 + <target_length>-1</target_length>
  1699 + <target_precision>-1</target_precision>
  1700 + <target_decimal_symbol/>
  1701 + <target_grouping_symbol/>
  1702 + <target_currency_symbol/>
  1703 + <target_null_string/>
  1704 + <target_aggregation_type>-</target_aggregation_type>
  1705 + </field>
  1706 + <field>
  1707 + <field_name>all_content</field_name>
  1708 + <key_value>69</key_value>
  1709 + <target_name>fcno69</target_name>
  1710 + <target_type>String</target_type>
  1711 + <target_format/>
  1712 + <target_length>-1</target_length>
  1713 + <target_precision>-1</target_precision>
  1714 + <target_decimal_symbol/>
  1715 + <target_grouping_symbol/>
  1716 + <target_currency_symbol/>
  1717 + <target_null_string/>
  1718 + <target_aggregation_type>-</target_aggregation_type>
  1719 + </field>
  1720 + <field>
  1721 + <field_name>all_content</field_name>
  1722 + <key_value>70</key_value>
  1723 + <target_name>fcno70</target_name>
  1724 + <target_type>String</target_type>
  1725 + <target_format/>
  1726 + <target_length>-1</target_length>
  1727 + <target_precision>-1</target_precision>
  1728 + <target_decimal_symbol/>
  1729 + <target_grouping_symbol/>
  1730 + <target_currency_symbol/>
  1731 + <target_null_string/>
  1732 + <target_aggregation_type>-</target_aggregation_type>
  1733 + </field>
  1734 + </fields>
  1735 + <cluster_schema/>
  1736 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1737 + <xloc>690</xloc>
  1738 + <yloc>272</yloc>
  1739 + <draw>Y</draw>
  1740 + </GUI>
  1741 + </step>
  1742 +
  1743 + <step>
  1744 + <name>&#x53bb;&#x9664;&#x5b57;&#x6bb5;</name>
  1745 + <type>SelectValues</type>
  1746 + <description/>
  1747 + <distribute>N</distribute>
  1748 + <custom_distribution/>
  1749 + <copies>1</copies>
  1750 + <partitioning>
  1751 + <method>none</method>
  1752 + <schema_name/>
  1753 + </partitioning>
  1754 + <fields> <field> <name>lp</name>
  1755 + <rename/>
  1756 + <length>-2</length>
  1757 + <precision>-2</precision>
  1758 + </field> <field> <name>fcno1</name>
  1759 + <rename/>
  1760 + <length>-2</length>
  1761 + <precision>-2</precision>
  1762 + </field> <field> <name>fcno2</name>
  1763 + <rename/>
  1764 + <length>-2</length>
  1765 + <precision>-2</precision>
  1766 + </field> <field> <name>fcno3</name>
  1767 + <rename/>
  1768 + <length>-2</length>
  1769 + <precision>-2</precision>
  1770 + </field> <field> <name>fcno4</name>
  1771 + <rename/>
  1772 + <length>-2</length>
  1773 + <precision>-2</precision>
  1774 + </field> <field> <name>fcno5</name>
  1775 + <rename/>
  1776 + <length>-2</length>
  1777 + <precision>-2</precision>
  1778 + </field> <field> <name>fcno6</name>
  1779 + <rename/>
  1780 + <length>-2</length>
  1781 + <precision>-2</precision>
  1782 + </field> <field> <name>fcno7</name>
  1783 + <rename/>
  1784 + <length>-2</length>
  1785 + <precision>-2</precision>
  1786 + </field> <field> <name>fcno8</name>
  1787 + <rename/>
  1788 + <length>-2</length>
  1789 + <precision>-2</precision>
  1790 + </field> <field> <name>fcno9</name>
  1791 + <rename/>
  1792 + <length>-2</length>
  1793 + <precision>-2</precision>
  1794 + </field> <field> <name>fcno10</name>
  1795 + <rename/>
  1796 + <length>-2</length>
  1797 + <precision>-2</precision>
  1798 + </field> <field> <name>fcno11</name>
  1799 + <rename/>
  1800 + <length>-2</length>
  1801 + <precision>-2</precision>
  1802 + </field> <field> <name>fcno12</name>
  1803 + <rename/>
  1804 + <length>-2</length>
  1805 + <precision>-2</precision>
  1806 + </field> <field> <name>fcno13</name>
  1807 + <rename/>
  1808 + <length>-2</length>
  1809 + <precision>-2</precision>
  1810 + </field> <field> <name>fcno14</name>
  1811 + <rename/>
  1812 + <length>-2</length>
  1813 + <precision>-2</precision>
  1814 + </field> <field> <name>fcno15</name>
  1815 + <rename/>
  1816 + <length>-2</length>
  1817 + <precision>-2</precision>
  1818 + </field> <field> <name>fcno16</name>
  1819 + <rename/>
  1820 + <length>-2</length>
  1821 + <precision>-2</precision>
  1822 + </field> <field> <name>fcno17</name>
  1823 + <rename/>
  1824 + <length>-2</length>
  1825 + <precision>-2</precision>
  1826 + </field> <field> <name>fcno18</name>
  1827 + <rename/>
  1828 + <length>-2</length>
  1829 + <precision>-2</precision>
  1830 + </field> <field> <name>fcno19</name>
  1831 + <rename/>
  1832 + <length>-2</length>
  1833 + <precision>-2</precision>
  1834 + </field> <field> <name>fcno20</name>
  1835 + <rename/>
  1836 + <length>-2</length>
  1837 + <precision>-2</precision>
  1838 + </field> <field> <name>fcno21</name>
  1839 + <rename/>
  1840 + <length>-2</length>
  1841 + <precision>-2</precision>
  1842 + </field> <field> <name>fcno22</name>
  1843 + <rename/>
  1844 + <length>-2</length>
  1845 + <precision>-2</precision>
  1846 + </field> <field> <name>fcno23</name>
  1847 + <rename/>
  1848 + <length>-2</length>
  1849 + <precision>-2</precision>
  1850 + </field> <field> <name>fcno24</name>
  1851 + <rename/>
  1852 + <length>-2</length>
  1853 + <precision>-2</precision>
  1854 + </field> <field> <name>fcno25</name>
  1855 + <rename/>
  1856 + <length>-2</length>
  1857 + <precision>-2</precision>
  1858 + </field> <field> <name>fcno26</name>
  1859 + <rename/>
  1860 + <length>-2</length>
  1861 + <precision>-2</precision>
  1862 + </field> <field> <name>fcno27</name>
  1863 + <rename/>
  1864 + <length>-2</length>
  1865 + <precision>-2</precision>
  1866 + </field> <field> <name>fcno28</name>
  1867 + <rename/>
  1868 + <length>-2</length>
  1869 + <precision>-2</precision>
  1870 + </field> <field> <name>fcno29</name>
  1871 + <rename/>
  1872 + <length>-2</length>
  1873 + <precision>-2</precision>
  1874 + </field> <field> <name>fcno30</name>
  1875 + <rename/>
  1876 + <length>-2</length>
  1877 + <precision>-2</precision>
  1878 + </field> <field> <name>fcno31</name>
  1879 + <rename/>
  1880 + <length>-2</length>
  1881 + <precision>-2</precision>
  1882 + </field> <field> <name>fcno32</name>
  1883 + <rename/>
  1884 + <length>-2</length>
  1885 + <precision>-2</precision>
  1886 + </field> <field> <name>fcno33</name>
  1887 + <rename/>
  1888 + <length>-2</length>
  1889 + <precision>-2</precision>
  1890 + </field> <field> <name>fcno34</name>
  1891 + <rename/>
  1892 + <length>-2</length>
  1893 + <precision>-2</precision>
  1894 + </field> <field> <name>fcno35</name>
  1895 + <rename/>
  1896 + <length>-2</length>
  1897 + <precision>-2</precision>
  1898 + </field> <field> <name>fcno36</name>
  1899 + <rename/>
  1900 + <length>-2</length>
  1901 + <precision>-2</precision>
  1902 + </field> <field> <name>fcno37</name>
  1903 + <rename/>
  1904 + <length>-2</length>
  1905 + <precision>-2</precision>
  1906 + </field> <field> <name>fcno38</name>
  1907 + <rename/>
  1908 + <length>-2</length>
  1909 + <precision>-2</precision>
  1910 + </field> <field> <name>fcno39</name>
  1911 + <rename/>
  1912 + <length>-2</length>
  1913 + <precision>-2</precision>
  1914 + </field> <field> <name>fcno40</name>
  1915 + <rename/>
  1916 + <length>-2</length>
  1917 + <precision>-2</precision>
  1918 + </field> <field> <name>fcno41</name>
  1919 + <rename/>
  1920 + <length>-2</length>
  1921 + <precision>-2</precision>
  1922 + </field> <field> <name>fcno42</name>
  1923 + <rename/>
  1924 + <length>-2</length>
  1925 + <precision>-2</precision>
  1926 + </field> <field> <name>fcno43</name>
  1927 + <rename/>
  1928 + <length>-2</length>
  1929 + <precision>-2</precision>
  1930 + </field> <field> <name>fcno44</name>
  1931 + <rename/>
  1932 + <length>-2</length>
  1933 + <precision>-2</precision>
  1934 + </field> <field> <name>fcno45</name>
  1935 + <rename/>
  1936 + <length>-2</length>
  1937 + <precision>-2</precision>
  1938 + </field> <field> <name>fcno46</name>
  1939 + <rename/>
  1940 + <length>-2</length>
  1941 + <precision>-2</precision>
  1942 + </field> <field> <name>fcno47</name>
  1943 + <rename/>
  1944 + <length>-2</length>
  1945 + <precision>-2</precision>
  1946 + </field> <field> <name>fcno48</name>
  1947 + <rename/>
  1948 + <length>-2</length>
  1949 + <precision>-2</precision>
  1950 + </field> <field> <name>fcno49</name>
  1951 + <rename/>
  1952 + <length>-2</length>
  1953 + <precision>-2</precision>
  1954 + </field> <field> <name>fcno50</name>
  1955 + <rename/>
  1956 + <length>-2</length>
  1957 + <precision>-2</precision>
  1958 + </field> <field> <name>fcno51</name>
  1959 + <rename/>
  1960 + <length>-2</length>
  1961 + <precision>-2</precision>
  1962 + </field> <field> <name>fcno52</name>
  1963 + <rename/>
  1964 + <length>-2</length>
  1965 + <precision>-2</precision>
  1966 + </field> <field> <name>fcno53</name>
  1967 + <rename/>
  1968 + <length>-2</length>
  1969 + <precision>-2</precision>
  1970 + </field> <field> <name>fcno54</name>
  1971 + <rename/>
  1972 + <length>-2</length>
  1973 + <precision>-2</precision>
  1974 + </field> <field> <name>fcno55</name>
  1975 + <rename/>
  1976 + <length>-2</length>
  1977 + <precision>-2</precision>
  1978 + </field> <field> <name>fcno56</name>
  1979 + <rename/>
  1980 + <length>-2</length>
  1981 + <precision>-2</precision>
  1982 + </field> <field> <name>fcno57</name>
  1983 + <rename/>
  1984 + <length>-2</length>
  1985 + <precision>-2</precision>
  1986 + </field> <field> <name>fcno58</name>
  1987 + <rename/>
  1988 + <length>-2</length>
  1989 + <precision>-2</precision>
  1990 + </field> <field> <name>fcno59</name>
  1991 + <rename/>
  1992 + <length>-2</length>
  1993 + <precision>-2</precision>
  1994 + </field> <field> <name>fcno60</name>
  1995 + <rename/>
  1996 + <length>-2</length>
  1997 + <precision>-2</precision>
  1998 + </field> <field> <name>fcno61</name>
  1999 + <rename/>
  2000 + <length>-2</length>
  2001 + <precision>-2</precision>
  2002 + </field> <field> <name>fcno62</name>
  2003 + <rename/>
  2004 + <length>-2</length>
  2005 + <precision>-2</precision>
  2006 + </field> <field> <name>fcno63</name>
  2007 + <rename/>
  2008 + <length>-2</length>
  2009 + <precision>-2</precision>
  2010 + </field> <field> <name>fcno64</name>
  2011 + <rename/>
  2012 + <length>-2</length>
  2013 + <precision>-2</precision>
  2014 + </field> <field> <name>fcno65</name>
  2015 + <rename/>
  2016 + <length>-2</length>
  2017 + <precision>-2</precision>
  2018 + </field> <field> <name>fcno66</name>
  2019 + <rename/>
  2020 + <length>-2</length>
  2021 + <precision>-2</precision>
  2022 + </field> <field> <name>fcno67</name>
  2023 + <rename/>
  2024 + <length>-2</length>
  2025 + <precision>-2</precision>
  2026 + </field> <field> <name>fcno68</name>
  2027 + <rename/>
  2028 + <length>-2</length>
  2029 + <precision>-2</precision>
  2030 + </field> <field> <name>fcno69</name>
  2031 + <rename/>
  2032 + <length>-2</length>
  2033 + <precision>-2</precision>
  2034 + </field> <field> <name>fcno70</name>
  2035 + <rename/>
  2036 + <length>-2</length>
  2037 + <precision>-2</precision>
  2038 + </field> <select_unspecified>N</select_unspecified>
  2039 + </fields> <cluster_schema/>
  2040 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2041 + <xloc>691</xloc>
  2042 + <yloc>361</yloc>
  2043 + <draw>Y</draw>
  2044 + </GUI>
  2045 + </step>
  2046 +
  2047 + <step>
  2048 + <name>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</name>
  2049 + <type>SelectValues</type>
  2050 + <description/>
  2051 + <distribute>Y</distribute>
  2052 + <custom_distribution/>
  2053 + <copies>1</copies>
  2054 + <partitioning>
  2055 + <method>none</method>
  2056 + <schema_name/>
  2057 + </partitioning>
  2058 + <fields> <field> <name>id</name>
  2059 + <rename/>
  2060 + <length>-2</length>
  2061 + <precision>-2</precision>
  2062 + </field> <field> <name>lp</name>
  2063 + <rename/>
  2064 + <length>-2</length>
  2065 + <precision>-2</precision>
  2066 + </field> <field> <name>fcsj</name>
  2067 + <rename/>
  2068 + <length>-2</length>
  2069 + <precision>-2</precision>
  2070 + </field> <field> <name>fcno</name>
  2071 + <rename/>
  2072 + <length>-2</length>
  2073 + <precision>-2</precision>
  2074 + </field> <field> <name>bcs</name>
  2075 + <rename/>
  2076 + <length>-2</length>
  2077 + <precision>-2</precision>
  2078 + </field> <field> <name>bc_type</name>
  2079 + <rename/>
  2080 + <length>-2</length>
  2081 + <precision>-2</precision>
  2082 + </field> <field> <name>qdzName</name>
  2083 + <rename/>
  2084 + <length>-2</length>
  2085 + <precision>-2</precision>
  2086 + </field> <field> <name>zdzName</name>
  2087 + <rename/>
  2088 + <length>-2</length>
  2089 + <precision>-2</precision>
  2090 + </field> <field> <name>xl_dir</name>
  2091 + <rename/>
  2092 + <length>-2</length>
  2093 + <precision>-2</precision>
  2094 + </field> <field> <name>isfb</name>
  2095 + <rename/>
  2096 + <length>-2</length>
  2097 + <precision>-2</precision>
  2098 + </field> <field> <name>jhlc</name>
  2099 + <rename/>
  2100 + <length>-2</length>
  2101 + <precision>-2</precision>
  2102 + </field> <select_unspecified>N</select_unspecified>
  2103 + </fields> <cluster_schema/>
  2104 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2105 + <xloc>690</xloc>
  2106 + <yloc>188</yloc>
  2107 + <draw>Y</draw>
  2108 + </GUI>
  2109 + </step>
  2110 +
  2111 + <step>
  2112 + <name>&#x5b57;&#x6bb5;&#x9009;&#x62e9; 2</name>
  2113 + <type>SelectValues</type>
  2114 + <description/>
  2115 + <distribute>Y</distribute>
  2116 + <custom_distribution/>
  2117 + <copies>1</copies>
  2118 + <partitioning>
  2119 + <method>none</method>
  2120 + <schema_name/>
  2121 + </partitioning>
  2122 + <fields> <field> <name>id</name>
  2123 + <rename/>
  2124 + <length>-2</length>
  2125 + <precision>-2</precision>
  2126 + </field> <field> <name>lp</name>
  2127 + <rename/>
  2128 + <length>-2</length>
  2129 + <precision>-2</precision>
  2130 + </field> <field> <name>fcsj</name>
  2131 + <rename/>
  2132 + <length>-2</length>
  2133 + <precision>-2</precision>
  2134 + </field> <field> <name>fcno</name>
  2135 + <rename/>
  2136 + <length>-2</length>
  2137 + <precision>-2</precision>
  2138 + </field> <field> <name>bcs</name>
  2139 + <rename/>
  2140 + <length>-2</length>
  2141 + <precision>-2</precision>
  2142 + </field> <field> <name>bc_type</name>
  2143 + <rename/>
  2144 + <length>-2</length>
  2145 + <precision>-2</precision>
  2146 + </field> <field> <name>qdzName</name>
  2147 + <rename/>
  2148 + <length>-2</length>
  2149 + <precision>-2</precision>
  2150 + </field> <field> <name>zdzName</name>
  2151 + <rename/>
  2152 + <length>-2</length>
  2153 + <precision>-2</precision>
  2154 + </field> <field> <name>xl_dir</name>
  2155 + <rename/>
  2156 + <length>-2</length>
  2157 + <precision>-2</precision>
  2158 + </field> <field> <name>isfb</name>
  2159 + <rename/>
  2160 + <length>-2</length>
  2161 + <precision>-2</precision>
  2162 + </field> <field> <name>jhlc</name>
  2163 + <rename/>
  2164 + <length>-2</length>
  2165 + <precision>-2</precision>
  2166 + </field> <select_unspecified>N</select_unspecified>
  2167 + </fields> <cluster_schema/>
  2168 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2169 + <xloc>402</xloc>
  2170 + <yloc>189</yloc>
  2171 + <draw>Y</draw>
  2172 + </GUI>
  2173 + </step>
  2174 +
  2175 + <step>
  2176 + <name>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</name>
  2177 + <type>SortRows</type>
  2178 + <description/>
  2179 + <distribute>Y</distribute>
  2180 + <custom_distribution/>
  2181 + <copies>1</copies>
  2182 + <partitioning>
  2183 + <method>none</method>
  2184 + <schema_name/>
  2185 + </partitioning>
  2186 + <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>
  2187 + <prefix>out</prefix>
  2188 + <sort_size>1000000</sort_size>
  2189 + <free_memory/>
  2190 + <compress>N</compress>
  2191 + <compress_variable/>
  2192 + <unique_rows>N</unique_rows>
  2193 + <fields>
  2194 + <field>
  2195 + <name>bcs</name>
  2196 + <ascending>Y</ascending>
  2197 + <case_sensitive>N</case_sensitive>
  2198 + <presorted>N</presorted>
  2199 + </field>
  2200 + </fields>
  2201 + <cluster_schema/>
  2202 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2203 + <xloc>549</xloc>
  2204 + <yloc>191</yloc>
  2205 + <draw>Y</draw>
  2206 + </GUI>
  2207 + </step>
  2208 +
  2209 + <step>
  2210 + <name>&#x67e5;&#x627e;&#x7ec8;&#x70b9;&#x7ad9;&#x540d;&#x79f0;</name>
  2211 + <type>DBLookup</type>
  2212 + <description/>
  2213 + <distribute>Y</distribute>
  2214 + <custom_distribution/>
  2215 + <copies>1</copies>
  2216 + <partitioning>
  2217 + <method>none</method>
  2218 + <schema_name/>
  2219 + </partitioning>
  2220 + <connection>bus_control_variable</connection>
  2221 + <cache>Y</cache>
  2222 + <cache_load_all>Y</cache_load_all>
  2223 + <cache_size>0</cache_size>
  2224 + <lookup>
  2225 + <schema/>
  2226 + <table>bsth_c_stationroute</table>
  2227 + <orderby/>
  2228 + <fail_on_multiple>N</fail_on_multiple>
  2229 + <eat_row_on_failure>N</eat_row_on_failure>
  2230 + <key>
  2231 + <name>xl</name>
  2232 + <field>line</field>
  2233 + <condition>&#x3d;</condition>
  2234 + <name2/>
  2235 + </key>
  2236 + <key>
  2237 + <name>xl_dir</name>
  2238 + <field>directions</field>
  2239 + <condition>&#x3d;</condition>
  2240 + <name2/>
  2241 + </key>
  2242 + <key>
  2243 + <name>endZdType</name>
  2244 + <field>station_mark</field>
  2245 + <condition>&#x3d;</condition>
  2246 + <name2/>
  2247 + </key>
  2248 + <value>
  2249 + <name>station_name</name>
  2250 + <rename>zdzName</rename>
  2251 + <default/>
  2252 + <type>String</type>
  2253 + </value>
  2254 + </lookup>
  2255 + <cluster_schema/>
  2256 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2257 + <xloc>688</xloc>
  2258 + <yloc>86</yloc>
  2259 + <draw>Y</draw>
  2260 + </GUI>
  2261 + </step>
  2262 +
  2263 + <step>
  2264 + <name>&#x67e5;&#x627e;&#x8d77;&#x70b9;&#x7ad9;&#x540d;&#x79f0;</name>
  2265 + <type>DBLookup</type>
  2266 + <description/>
  2267 + <distribute>Y</distribute>
  2268 + <custom_distribution/>
  2269 + <copies>1</copies>
  2270 + <partitioning>
  2271 + <method>none</method>
  2272 + <schema_name/>
  2273 + </partitioning>
  2274 + <connection>bus_control_variable</connection>
  2275 + <cache>Y</cache>
  2276 + <cache_load_all>Y</cache_load_all>
  2277 + <cache_size>0</cache_size>
  2278 + <lookup>
  2279 + <schema/>
  2280 + <table>bsth_c_stationroute</table>
  2281 + <orderby/>
  2282 + <fail_on_multiple>N</fail_on_multiple>
  2283 + <eat_row_on_failure>N</eat_row_on_failure>
  2284 + <key>
  2285 + <name>xl</name>
  2286 + <field>line</field>
  2287 + <condition>&#x3d;</condition>
  2288 + <name2/>
  2289 + </key>
  2290 + <key>
  2291 + <name>xl_dir</name>
  2292 + <field>directions</field>
  2293 + <condition>&#x3d;</condition>
  2294 + <name2/>
  2295 + </key>
  2296 + <key>
  2297 + <name>startZdType</name>
  2298 + <field>station_mark</field>
  2299 + <condition>&#x3d;</condition>
  2300 + <name2/>
  2301 + </key>
  2302 + <value>
  2303 + <name>station_name</name>
  2304 + <rename>qdzName</rename>
  2305 + <default/>
  2306 + <type>String</type>
  2307 + </value>
  2308 + </lookup>
  2309 + <cluster_schema/>
  2310 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2311 + <xloc>553</xloc>
  2312 + <yloc>86</yloc>
  2313 + <draw>Y</draw>
  2314 + </GUI>
  2315 + </step>
  2316 +
  2317 + <step>
  2318 + <name>&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x7ad9;&#x70b9;&#x67e5;&#x8be2;&#x7528;&#x6570;&#x636e;</name>
  2319 + <type>ScriptValueMod</type>
  2320 + <description/>
  2321 + <distribute>Y</distribute>
  2322 + <custom_distribution/>
  2323 + <copies>1</copies>
  2324 + <partitioning>
  2325 + <method>none</method>
  2326 + <schema_name/>
  2327 + </partitioning>
  2328 + <compatible>N</compatible>
  2329 + <optimizationLevel>9</optimizationLevel>
  2330 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  2331 + <jsScript_name>Script 1</jsScript_name>
  2332 + <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;var startZdType &#x3d; &#x27;B&#x27;&#x3b; &#x2f;&#x2f; &#x8d77;&#x70b9;&#x7ad9;&#x7ad9;&#x70b9;&#x7c7b;&#x578b;&#x6807;&#x8bc6;&#x522b;&#xa;var endZdType &#x3d; &#x27;E&#x27;&#x3b; &#x2f;&#x2f; &#x7ec8;&#x70b9;&#x7ad9;&#x7ad9;&#x70b9;&#x7c7b;&#x578b;&#x6807;&#x8bc6;</jsScript_script>
  2333 + </jsScript> </jsScripts> <fields> <field> <name>startZdType</name>
  2334 + <rename>startZdType</rename>
  2335 + <type>String</type>
  2336 + <length>-1</length>
  2337 + <precision>-1</precision>
  2338 + <replace>N</replace>
  2339 + </field> <field> <name>endZdType</name>
  2340 + <rename>endZdType</rename>
  2341 + <type>String</type>
  2342 + <length>-1</length>
  2343 + <precision>-1</precision>
  2344 + <replace>N</replace>
  2345 + </field> </fields> <cluster_schema/>
  2346 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2347 + <xloc>391</xloc>
  2348 + <yloc>87</yloc>
  2349 + <draw>Y</draw>
  2350 + </GUI>
  2351 + </step>
  2352 +
  2353 + <step>
  2354 + <name>&#x83b7;&#x53d6;&#x53d8;&#x91cf;</name>
  2355 + <type>GetVariable</type>
  2356 + <description/>
  2357 + <distribute>Y</distribute>
  2358 + <custom_distribution/>
  2359 + <copies>1</copies>
  2360 + <partitioning>
  2361 + <method>none</method>
  2362 + <schema_name/>
  2363 + </partitioning>
  2364 + <fields>
  2365 + <field>
  2366 + <name>xlid_</name>
  2367 + <variable>&#x24;&#x7b;xlid&#x7d;</variable>
  2368 + <type>Integer</type>
  2369 + <format/>
  2370 + <currency/>
  2371 + <decimal/>
  2372 + <group/>
  2373 + <length>-1</length>
  2374 + <precision>-1</precision>
  2375 + <trim_type>none</trim_type>
  2376 + </field>
  2377 + <field>
  2378 + <name>ttid_</name>
  2379 + <variable>&#x24;&#x7b;ttid&#x7d;</variable>
  2380 + <type>Number</type>
  2381 + <format/>
  2382 + <currency/>
  2383 + <decimal/>
  2384 + <group/>
  2385 + <length>-1</length>
  2386 + <precision>-1</precision>
  2387 + <trim_type>none</trim_type>
  2388 + </field>
  2389 + </fields>
  2390 + <cluster_schema/>
  2391 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2392 + <xloc>45</xloc>
  2393 + <yloc>189</yloc>
  2394 + <draw>Y</draw>
  2395 + </GUI>
  2396 + </step>
  2397 +
  2398 + <step>
  2399 + <name>&#x8868;&#x8f93;&#x5165;</name>
  2400 + <type>TableInput</type>
  2401 + <description/>
  2402 + <distribute>Y</distribute>
  2403 + <custom_distribution/>
  2404 + <copies>1</copies>
  2405 + <partitioning>
  2406 + <method>none</method>
  2407 + <schema_name/>
  2408 + </partitioning>
  2409 + <connection>bus_control_variable</connection>
  2410 + <sql>select &#xa;t.id as id&#xa;, g.lp_name as lp&#xa;, g.xl as xl&#xa;, qdz&#xa;, zdz&#xa;, tcc&#xa;, fcsj&#xa;, jhlc&#xa;, bc_type &#xa;, bcs&#xa;, fcno&#xa;, xl_dir&#xa;, isfb&#xa;from bsth_c_s_ttinfo_detail t left join &#xa;bsth_c_s_gbi g on t.lp &#x3d; g.id &#xa;where &#xa;g.xl &#x3d; &#x3f; and&#xa;t.ttinfo &#x3d; &#x3f; &#xa;order by t.bcs asc</sql>
  2411 + <limit>0</limit>
  2412 + <lookup>&#x83b7;&#x53d6;&#x53d8;&#x91cf;</lookup>
  2413 + <execute_each_row>N</execute_each_row>
  2414 + <variables_active>Y</variables_active>
  2415 + <lazy_conversion_active>N</lazy_conversion_active>
  2416 + <cluster_schema/>
  2417 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2418 + <xloc>130</xloc>
  2419 + <yloc>85</yloc>
  2420 + <draw>Y</draw>
  2421 + </GUI>
  2422 + </step>
  2423 +
  2424 + <step>
  2425 + <name>&#x8ba1;&#x7b97;&#x53d1;&#x8f66;&#x7ad9;&#x540d;</name>
  2426 + <type>ScriptValueMod</type>
  2427 + <description/>
  2428 + <distribute>Y</distribute>
  2429 + <custom_distribution/>
  2430 + <copies>1</copies>
  2431 + <partitioning>
  2432 + <method>none</method>
  2433 + <schema_name/>
  2434 + </partitioning>
  2435 + <compatible>N</compatible>
  2436 + <optimizationLevel>9</optimizationLevel>
  2437 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  2438 + <jsScript_name>Script 1</jsScript_name>
  2439 + <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;var fczdName &#x3d; null&#x3b; &#x2f;&#x2f; &#x53d1;&#x8f66;&#x7ad9;&#x70b9;&#x540d;&#x5b57;&#xa;if &#x28;bc_type &#x3d;&#x3d; &#x22;in&#x22;&#x29; &#x7b;&#xa; fczdName &#x3d; &#x22;&#x8fdb;&#x573a;&#x22;&#x3b;&#xa;&#x7d; else if &#x28;bc_type &#x3d;&#x3d; &#x22;out&#x22;&#x29; &#x7b;&#xa; fczdName &#x3d; &#x22;&#x51fa;&#x573a;&#x22;&#x3b;&#xa;&#x7d; else &#x7b;&#xa; fczdName &#x3d; qdzName&#x3b;&#xa;&#x7d;</jsScript_script>
  2440 + </jsScript> </jsScripts> <fields> <field> <name>fczdName</name>
  2441 + <rename>fczdName</rename>
  2442 + <type>String</type>
  2443 + <length>-1</length>
  2444 + <precision>-1</precision>
  2445 + <replace>N</replace>
  2446 + </field> </fields> <cluster_schema/>
  2447 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2448 + <xloc>550</xloc>
  2449 + <yloc>276</yloc>
  2450 + <draw>Y</draw>
  2451 + </GUI>
  2452 + </step>
  2453 +
  2454 + <step>
  2455 + <name>&#x8fc7;&#x6ee4;&#x8bb0;&#x5f55;</name>
  2456 + <type>FilterRows</type>
  2457 + <description/>
  2458 + <distribute>Y</distribute>
  2459 + <custom_distribution/>
  2460 + <copies>1</copies>
  2461 + <partitioning>
  2462 + <method>none</method>
  2463 + <schema_name/>
  2464 + </partitioning>
  2465 +<send_true_to>&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x7ad9;&#x70b9;&#x67e5;&#x8be2;&#x7528;&#x6570;&#x636e;</send_true_to>
  2466 +<send_false_to>&#x8fdb;&#x573a;&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x67e5;&#x8be2;&#x7528;&#x7684;&#x6570;&#x636e;</send_false_to>
  2467 + <compare>
  2468 +<condition>
  2469 + <negated>N</negated>
  2470 + <leftvalue>bc_type</leftvalue>
  2471 + <function>&#x3d;</function>
  2472 + <rightvalue/>
  2473 + <value><name>constant</name><type>String</type><text>normal</text><length>-1</length><precision>-1</precision><isnull>N</isnull><mask/></value> </condition>
  2474 + </compare>
  2475 + <cluster_schema/>
  2476 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2477 + <xloc>248</xloc>
  2478 + <yloc>87</yloc>
  2479 + <draw>Y</draw>
  2480 + </GUI>
  2481 + </step>
  2482 +
  2483 + <step>
  2484 + <name>&#x8fdb;&#x573a;&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x67e5;&#x8be2;&#x7528;&#x7684;&#x6570;&#x636e;</name>
  2485 + <type>ScriptValueMod</type>
  2486 + <description/>
  2487 + <distribute>Y</distribute>
  2488 + <custom_distribution/>
  2489 + <copies>1</copies>
  2490 + <partitioning>
  2491 + <method>none</method>
  2492 + <schema_name/>
  2493 + </partitioning>
  2494 + <compatible>N</compatible>
  2495 + <optimizationLevel>9</optimizationLevel>
  2496 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  2497 + <jsScript_name>Script 1</jsScript_name>
  2498 + <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;var qdzName &#x3d; null&#x3b; &#x2f;&#x2f; &#x8d77;&#x70b9;&#x7ad9;&#x540d;&#x5b57;&#xa;var zdzName &#x3d; null&#x3b; &#x2f;&#x2f; &#x7ec8;&#x70b9;&#x7ad9;&#x540d;&#x5b57;</jsScript_script>
  2499 + </jsScript> </jsScripts> <fields> <field> <name>qdzName</name>
  2500 + <rename>qdzName</rename>
  2501 + <type>String</type>
  2502 + <length>-1</length>
  2503 + <precision>-1</precision>
  2504 + <replace>N</replace>
  2505 + </field> <field> <name>zdzName</name>
  2506 + <rename>zdzName</rename>
  2507 + <type>String</type>
  2508 + <length>-1</length>
  2509 + <precision>-1</precision>
  2510 + <replace>N</replace>
  2511 + </field> </fields> <cluster_schema/>
  2512 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2513 + <xloc>250</xloc>
  2514 + <yloc>188</yloc>
  2515 + <draw>Y</draw>
  2516 + </GUI>
  2517 + </step>
  2518 +
  2519 + <step>
  2520 + <name>&#x6587;&#x672c;&#x6587;&#x4ef6;&#x8f93;&#x51fa;</name>
  2521 + <type>TextFileOutput</type>
  2522 + <description/>
  2523 + <distribute>Y</distribute>
  2524 + <custom_distribution/>
  2525 + <copies>1</copies>
  2526 + <partitioning>
  2527 + <method>none</method>
  2528 + <schema_name/>
  2529 + </partitioning>
  2530 + <separator>&#x3b;</separator>
  2531 + <enclosure>&#x22;</enclosure>
  2532 + <enclosure_forced>N</enclosure_forced>
  2533 + <enclosure_fix_disabled>N</enclosure_fix_disabled>
  2534 + <header>Y</header>
  2535 + <footer>N</footer>
  2536 + <format>DOS</format>
  2537 + <compression>None</compression>
  2538 + <encoding/>
  2539 + <endedLine/>
  2540 + <fileNameInField>N</fileNameInField>
  2541 + <fileNameField/>
  2542 + <create_parent_folder>Y</create_parent_folder>
  2543 + <file>
  2544 + <name>&#x24;&#x7b;tempfilepath&#x7d;</name>
  2545 + <is_command>N</is_command>
  2546 + <servlet_output>N</servlet_output>
  2547 + <do_not_open_new_file_init>N</do_not_open_new_file_init>
  2548 + <extention>txt</extention>
  2549 + <append>N</append>
  2550 + <split>N</split>
  2551 + <haspartno>N</haspartno>
  2552 + <add_date>N</add_date>
  2553 + <add_time>N</add_time>
  2554 + <SpecifyFormat>N</SpecifyFormat>
  2555 + <date_time_format/>
  2556 + <add_to_result_filenames>Y</add_to_result_filenames>
  2557 + <pad>N</pad>
  2558 + <fast_dump>N</fast_dump>
  2559 + <splitevery>0</splitevery>
  2560 + </file>
  2561 + <fields>
  2562 + <field>
  2563 + <name>lp</name>
  2564 + <type>String</type>
  2565 + <format/>
  2566 + <currency/>
  2567 + <decimal/>
  2568 + <group/>
  2569 + <nullif/>
  2570 + <trim_type>none</trim_type>
  2571 + <length>255</length>
  2572 + <precision>-1</precision>
  2573 + </field>
  2574 + <field>
  2575 + <name>fcno1</name>
  2576 + <type>String</type>
  2577 + <format/>
  2578 + <currency/>
  2579 + <decimal/>
  2580 + <group/>
  2581 + <nullif/>
  2582 + <trim_type>none</trim_type>
  2583 + <length>-1</length>
  2584 + <precision>-1</precision>
  2585 + </field>
  2586 + <field>
  2587 + <name>fcno2</name>
  2588 + <type>String</type>
  2589 + <format/>
  2590 + <currency/>
  2591 + <decimal/>
  2592 + <group/>
  2593 + <nullif/>
  2594 + <trim_type>none</trim_type>
  2595 + <length>-1</length>
  2596 + <precision>-1</precision>
  2597 + </field>
  2598 + <field>
  2599 + <name>fcno3</name>
  2600 + <type>String</type>
  2601 + <format/>
  2602 + <currency/>
  2603 + <decimal/>
  2604 + <group/>
  2605 + <nullif/>
  2606 + <trim_type>none</trim_type>
  2607 + <length>-1</length>
  2608 + <precision>-1</precision>
  2609 + </field>
  2610 + <field>
  2611 + <name>fcno4</name>
  2612 + <type>String</type>
  2613 + <format/>
  2614 + <currency/>
  2615 + <decimal/>
  2616 + <group/>
  2617 + <nullif/>
  2618 + <trim_type>none</trim_type>
  2619 + <length>-1</length>
  2620 + <precision>-1</precision>
  2621 + </field>
  2622 + <field>
  2623 + <name>fcno5</name>
  2624 + <type>String</type>
  2625 + <format/>
  2626 + <currency/>
  2627 + <decimal/>
  2628 + <group/>
  2629 + <nullif/>
  2630 + <trim_type>none</trim_type>
  2631 + <length>-1</length>
  2632 + <precision>-1</precision>
  2633 + </field>
  2634 + <field>
  2635 + <name>fcno6</name>
  2636 + <type>String</type>
  2637 + <format/>
  2638 + <currency/>
  2639 + <decimal/>
  2640 + <group/>
  2641 + <nullif/>
  2642 + <trim_type>none</trim_type>
  2643 + <length>-1</length>
  2644 + <precision>-1</precision>
  2645 + </field>
  2646 + <field>
  2647 + <name>fcno7</name>
  2648 + <type>String</type>
  2649 + <format/>
  2650 + <currency/>
  2651 + <decimal/>
  2652 + <group/>
  2653 + <nullif/>
  2654 + <trim_type>none</trim_type>
  2655 + <length>-1</length>
  2656 + <precision>-1</precision>
  2657 + </field>
  2658 + <field>
  2659 + <name>fcno8</name>
  2660 + <type>String</type>
  2661 + <format/>
  2662 + <currency/>
  2663 + <decimal/>
  2664 + <group/>
  2665 + <nullif/>
  2666 + <trim_type>none</trim_type>
  2667 + <length>-1</length>
  2668 + <precision>-1</precision>
  2669 + </field>
  2670 + <field>
  2671 + <name>fcno9</name>
  2672 + <type>String</type>
  2673 + <format/>
  2674 + <currency/>
  2675 + <decimal/>
  2676 + <group/>
  2677 + <nullif/>
  2678 + <trim_type>none</trim_type>
  2679 + <length>-1</length>
  2680 + <precision>-1</precision>
  2681 + </field>
  2682 + <field>
  2683 + <name>fcno10</name>
  2684 + <type>String</type>
  2685 + <format/>
  2686 + <currency/>
  2687 + <decimal/>
  2688 + <group/>
  2689 + <nullif/>
  2690 + <trim_type>none</trim_type>
  2691 + <length>-1</length>
  2692 + <precision>-1</precision>
  2693 + </field>
  2694 + <field>
  2695 + <name>fcno11</name>
  2696 + <type>String</type>
  2697 + <format/>
  2698 + <currency/>
  2699 + <decimal/>
  2700 + <group/>
  2701 + <nullif/>
  2702 + <trim_type>none</trim_type>
  2703 + <length>-1</length>
  2704 + <precision>-1</precision>
  2705 + </field>
  2706 + <field>
  2707 + <name>fcno12</name>
  2708 + <type>String</type>
  2709 + <format/>
  2710 + <currency/>
  2711 + <decimal/>
  2712 + <group/>
  2713 + <nullif/>
  2714 + <trim_type>none</trim_type>
  2715 + <length>-1</length>
  2716 + <precision>-1</precision>
  2717 + </field>
  2718 + <field>
  2719 + <name>fcno13</name>
  2720 + <type>String</type>
  2721 + <format/>
  2722 + <currency/>
  2723 + <decimal/>
  2724 + <group/>
  2725 + <nullif/>
  2726 + <trim_type>none</trim_type>
  2727 + <length>-1</length>
  2728 + <precision>-1</precision>
  2729 + </field>
  2730 + <field>
  2731 + <name>fcno14</name>
  2732 + <type>String</type>
  2733 + <format/>
  2734 + <currency/>
  2735 + <decimal/>
  2736 + <group/>
  2737 + <nullif/>
  2738 + <trim_type>none</trim_type>
  2739 + <length>-1</length>
  2740 + <precision>-1</precision>
  2741 + </field>
  2742 + <field>
  2743 + <name>fcno15</name>
  2744 + <type>String</type>
  2745 + <format/>
  2746 + <currency/>
  2747 + <decimal/>
  2748 + <group/>
  2749 + <nullif/>
  2750 + <trim_type>none</trim_type>
  2751 + <length>-1</length>
  2752 + <precision>-1</precision>
  2753 + </field>
  2754 + <field>
  2755 + <name>fcno16</name>
  2756 + <type>String</type>
  2757 + <format/>
  2758 + <currency/>
  2759 + <decimal/>
  2760 + <group/>
  2761 + <nullif/>
  2762 + <trim_type>none</trim_type>
  2763 + <length>-1</length>
  2764 + <precision>-1</precision>
  2765 + </field>
  2766 + <field>
  2767 + <name>fcno17</name>
  2768 + <type>String</type>
  2769 + <format/>
  2770 + <currency/>
  2771 + <decimal/>
  2772 + <group/>
  2773 + <nullif/>
  2774 + <trim_type>none</trim_type>
  2775 + <length>-1</length>
  2776 + <precision>-1</precision>
  2777 + </field>
  2778 + <field>
  2779 + <name>fcno18</name>
  2780 + <type>String</type>
  2781 + <format/>
  2782 + <currency/>
  2783 + <decimal/>
  2784 + <group/>
  2785 + <nullif/>
  2786 + <trim_type>none</trim_type>
  2787 + <length>-1</length>
  2788 + <precision>-1</precision>
  2789 + </field>
  2790 + <field>
  2791 + <name>fcno19</name>
  2792 + <type>String</type>
  2793 + <format/>
  2794 + <currency/>
  2795 + <decimal/>
  2796 + <group/>
  2797 + <nullif/>
  2798 + <trim_type>none</trim_type>
  2799 + <length>-1</length>
  2800 + <precision>-1</precision>
  2801 + </field>
  2802 + <field>
  2803 + <name>fcno20</name>
  2804 + <type>String</type>
  2805 + <format/>
  2806 + <currency/>
  2807 + <decimal/>
  2808 + <group/>
  2809 + <nullif/>
  2810 + <trim_type>none</trim_type>
  2811 + <length>-1</length>
  2812 + <precision>-1</precision>
  2813 + </field>
  2814 + <field>
  2815 + <name>fcno21</name>
  2816 + <type>String</type>
  2817 + <format/>
  2818 + <currency/>
  2819 + <decimal/>
  2820 + <group/>
  2821 + <nullif/>
  2822 + <trim_type>none</trim_type>
  2823 + <length>-1</length>
  2824 + <precision>-1</precision>
  2825 + </field>
  2826 + <field>
  2827 + <name>fcno22</name>
  2828 + <type>String</type>
  2829 + <format/>
  2830 + <currency/>
  2831 + <decimal/>
  2832 + <group/>
  2833 + <nullif/>
  2834 + <trim_type>none</trim_type>
  2835 + <length>-1</length>
  2836 + <precision>-1</precision>
  2837 + </field>
  2838 + <field>
  2839 + <name>fcno23</name>
  2840 + <type>String</type>
  2841 + <format/>
  2842 + <currency/>
  2843 + <decimal/>
  2844 + <group/>
  2845 + <nullif/>
  2846 + <trim_type>none</trim_type>
  2847 + <length>-1</length>
  2848 + <precision>-1</precision>
  2849 + </field>
  2850 + <field>
  2851 + <name>fcno24</name>
  2852 + <type>String</type>
  2853 + <format/>
  2854 + <currency/>
  2855 + <decimal/>
  2856 + <group/>
  2857 + <nullif/>
  2858 + <trim_type>none</trim_type>
  2859 + <length>-1</length>
  2860 + <precision>-1</precision>
  2861 + </field>
  2862 + <field>
  2863 + <name>fcno25</name>
  2864 + <type>String</type>
  2865 + <format/>
  2866 + <currency/>
  2867 + <decimal/>
  2868 + <group/>
  2869 + <nullif/>
  2870 + <trim_type>none</trim_type>
  2871 + <length>-1</length>
  2872 + <precision>-1</precision>
  2873 + </field>
  2874 + <field>
  2875 + <name>fcno26</name>
  2876 + <type>String</type>
  2877 + <format/>
  2878 + <currency/>
  2879 + <decimal/>
  2880 + <group/>
  2881 + <nullif/>
  2882 + <trim_type>none</trim_type>
  2883 + <length>-1</length>
  2884 + <precision>-1</precision>
  2885 + </field>
  2886 + <field>
  2887 + <name>fcno27</name>
  2888 + <type>String</type>
  2889 + <format/>
  2890 + <currency/>
  2891 + <decimal/>
  2892 + <group/>
  2893 + <nullif/>
  2894 + <trim_type>none</trim_type>
  2895 + <length>-1</length>
  2896 + <precision>-1</precision>
  2897 + </field>
  2898 + <field>
  2899 + <name>fcno28</name>
  2900 + <type>String</type>
  2901 + <format/>
  2902 + <currency/>
  2903 + <decimal/>
  2904 + <group/>
  2905 + <nullif/>
  2906 + <trim_type>none</trim_type>
  2907 + <length>-1</length>
  2908 + <precision>-1</precision>
  2909 + </field>
  2910 + <field>
  2911 + <name>fcno29</name>
  2912 + <type>String</type>
  2913 + <format/>
  2914 + <currency/>
  2915 + <decimal/>
  2916 + <group/>
  2917 + <nullif/>
  2918 + <trim_type>none</trim_type>
  2919 + <length>-1</length>
  2920 + <precision>-1</precision>
  2921 + </field>
  2922 + <field>
  2923 + <name>fcno30</name>
  2924 + <type>String</type>
  2925 + <format/>
  2926 + <currency/>
  2927 + <decimal/>
  2928 + <group/>
  2929 + <nullif/>
  2930 + <trim_type>none</trim_type>
  2931 + <length>-1</length>
  2932 + <precision>-1</precision>
  2933 + </field>
  2934 + <field>
  2935 + <name>fcno31</name>
  2936 + <type>String</type>
  2937 + <format/>
  2938 + <currency/>
  2939 + <decimal/>
  2940 + <group/>
  2941 + <nullif/>
  2942 + <trim_type>none</trim_type>
  2943 + <length>-1</length>
  2944 + <precision>-1</precision>
  2945 + </field>
  2946 + <field>
  2947 + <name>fcno32</name>
  2948 + <type>String</type>
  2949 + <format/>
  2950 + <currency/>
  2951 + <decimal/>
  2952 + <group/>
  2953 + <nullif/>
  2954 + <trim_type>none</trim_type>
  2955 + <length>-1</length>
  2956 + <precision>-1</precision>
  2957 + </field>
  2958 + <field>
  2959 + <name>fcno33</name>
  2960 + <type>String</type>
  2961 + <format/>
  2962 + <currency/>
  2963 + <decimal/>
  2964 + <group/>
  2965 + <nullif/>
  2966 + <trim_type>none</trim_type>
  2967 + <length>-1</length>
  2968 + <precision>-1</precision>
  2969 + </field>
  2970 + <field>
  2971 + <name>fcno34</name>
  2972 + <type>String</type>
  2973 + <format/>
  2974 + <currency/>
  2975 + <decimal/>
  2976 + <group/>
  2977 + <nullif/>
  2978 + <trim_type>none</trim_type>
  2979 + <length>-1</length>
  2980 + <precision>-1</precision>
  2981 + </field>
  2982 + <field>
  2983 + <name>fcno35</name>
  2984 + <type>String</type>
  2985 + <format/>
  2986 + <currency/>
  2987 + <decimal/>
  2988 + <group/>
  2989 + <nullif/>
  2990 + <trim_type>none</trim_type>
  2991 + <length>-1</length>
  2992 + <precision>-1</precision>
  2993 + </field>
  2994 + <field>
  2995 + <name>fcno36</name>
  2996 + <type>String</type>
  2997 + <format/>
  2998 + <currency/>
  2999 + <decimal/>
  3000 + <group/>
  3001 + <nullif/>
  3002 + <trim_type>none</trim_type>
  3003 + <length>-1</length>
  3004 + <precision>-1</precision>
  3005 + </field>
  3006 + <field>
  3007 + <name>fcno37</name>
  3008 + <type>String</type>
  3009 + <format/>
  3010 + <currency/>
  3011 + <decimal/>
  3012 + <group/>
  3013 + <nullif/>
  3014 + <trim_type>none</trim_type>
  3015 + <length>-1</length>
  3016 + <precision>-1</precision>
  3017 + </field>
  3018 + <field>
  3019 + <name>fcno38</name>
  3020 + <type>String</type>
  3021 + <format/>
  3022 + <currency/>
  3023 + <decimal/>
  3024 + <group/>
  3025 + <nullif/>
  3026 + <trim_type>none</trim_type>
  3027 + <length>-1</length>
  3028 + <precision>-1</precision>
  3029 + </field>
  3030 + <field>
  3031 + <name>fcno39</name>
  3032 + <type>String</type>
  3033 + <format/>
  3034 + <currency/>
  3035 + <decimal/>
  3036 + <group/>
  3037 + <nullif/>
  3038 + <trim_type>none</trim_type>
  3039 + <length>-1</length>
  3040 + <precision>-1</precision>
  3041 + </field>
  3042 + <field>
  3043 + <name>fcno40</name>
  3044 + <type>String</type>
  3045 + <format/>
  3046 + <currency/>
  3047 + <decimal/>
  3048 + <group/>
  3049 + <nullif/>
  3050 + <trim_type>none</trim_type>
  3051 + <length>-1</length>
  3052 + <precision>-1</precision>
  3053 + </field>
  3054 + <field>
  3055 + <name>fcno41</name>
  3056 + <type>String</type>
  3057 + <format/>
  3058 + <currency/>
  3059 + <decimal/>
  3060 + <group/>
  3061 + <nullif/>
  3062 + <trim_type>none</trim_type>
  3063 + <length>-1</length>
  3064 + <precision>-1</precision>
  3065 + </field>
  3066 + <field>
  3067 + <name>fcno42</name>
  3068 + <type>String</type>
  3069 + <format/>
  3070 + <currency/>
  3071 + <decimal/>
  3072 + <group/>
  3073 + <nullif/>
  3074 + <trim_type>none</trim_type>
  3075 + <length>-1</length>
  3076 + <precision>-1</precision>
  3077 + </field>
  3078 + <field>
  3079 + <name>fcno43</name>
  3080 + <type>String</type>
  3081 + <format/>
  3082 + <currency/>
  3083 + <decimal/>
  3084 + <group/>
  3085 + <nullif/>
  3086 + <trim_type>none</trim_type>
  3087 + <length>-1</length>
  3088 + <precision>-1</precision>
  3089 + </field>
  3090 + <field>
  3091 + <name>fcno44</name>
  3092 + <type>String</type>
  3093 + <format/>
  3094 + <currency/>
  3095 + <decimal/>
  3096 + <group/>
  3097 + <nullif/>
  3098 + <trim_type>none</trim_type>
  3099 + <length>-1</length>
  3100 + <precision>-1</precision>
  3101 + </field>
  3102 + <field>
  3103 + <name>fcno45</name>
  3104 + <type>String</type>
  3105 + <format/>
  3106 + <currency/>
  3107 + <decimal/>
  3108 + <group/>
  3109 + <nullif/>
  3110 + <trim_type>none</trim_type>
  3111 + <length>-1</length>
  3112 + <precision>-1</precision>
  3113 + </field>
  3114 + <field>
  3115 + <name>fcno46</name>
  3116 + <type>String</type>
  3117 + <format/>
  3118 + <currency/>
  3119 + <decimal/>
  3120 + <group/>
  3121 + <nullif/>
  3122 + <trim_type>none</trim_type>
  3123 + <length>-1</length>
  3124 + <precision>-1</precision>
  3125 + </field>
  3126 + <field>
  3127 + <name>fcno47</name>
  3128 + <type>String</type>
  3129 + <format/>
  3130 + <currency/>
  3131 + <decimal/>
  3132 + <group/>
  3133 + <nullif/>
  3134 + <trim_type>none</trim_type>
  3135 + <length>-1</length>
  3136 + <precision>-1</precision>
  3137 + </field>
  3138 + <field>
  3139 + <name>fcno48</name>
  3140 + <type>String</type>
  3141 + <format/>
  3142 + <currency/>
  3143 + <decimal/>
  3144 + <group/>
  3145 + <nullif/>
  3146 + <trim_type>none</trim_type>
  3147 + <length>-1</length>
  3148 + <precision>-1</precision>
  3149 + </field>
  3150 + <field>
  3151 + <name>fcno49</name>
  3152 + <type>String</type>
  3153 + <format/>
  3154 + <currency/>
  3155 + <decimal/>
  3156 + <group/>
  3157 + <nullif/>
  3158 + <trim_type>none</trim_type>
  3159 + <length>-1</length>
  3160 + <precision>-1</precision>
  3161 + </field>
  3162 + <field>
  3163 + <name>fcno50</name>
  3164 + <type>String</type>
  3165 + <format/>
  3166 + <currency/>
  3167 + <decimal/>
  3168 + <group/>
  3169 + <nullif/>
  3170 + <trim_type>none</trim_type>
  3171 + <length>-1</length>
  3172 + <precision>-1</precision>
  3173 + </field>
  3174 + <field>
  3175 + <name>fcno51</name>
  3176 + <type>String</type>
  3177 + <format/>
  3178 + <currency/>
  3179 + <decimal/>
  3180 + <group/>
  3181 + <nullif/>
  3182 + <trim_type>none</trim_type>
  3183 + <length>-1</length>
  3184 + <precision>-1</precision>
  3185 + </field>
  3186 + <field>
  3187 + <name>fcno52</name>
  3188 + <type>String</type>
  3189 + <format/>
  3190 + <currency/>
  3191 + <decimal/>
  3192 + <group/>
  3193 + <nullif/>
  3194 + <trim_type>none</trim_type>
  3195 + <length>-1</length>
  3196 + <precision>-1</precision>
  3197 + </field>
  3198 + <field>
  3199 + <name>fcno53</name>
  3200 + <type>String</type>
  3201 + <format/>
  3202 + <currency/>
  3203 + <decimal/>
  3204 + <group/>
  3205 + <nullif/>
  3206 + <trim_type>none</trim_type>
  3207 + <length>-1</length>
  3208 + <precision>-1</precision>
  3209 + </field>
  3210 + <field>
  3211 + <name>fcno54</name>
  3212 + <type>String</type>
  3213 + <format/>
  3214 + <currency/>
  3215 + <decimal/>
  3216 + <group/>
  3217 + <nullif/>
  3218 + <trim_type>none</trim_type>
  3219 + <length>-1</length>
  3220 + <precision>-1</precision>
  3221 + </field>
  3222 + <field>
  3223 + <name>fcno55</name>
  3224 + <type>String</type>
  3225 + <format/>
  3226 + <currency/>
  3227 + <decimal/>
  3228 + <group/>
  3229 + <nullif/>
  3230 + <trim_type>none</trim_type>
  3231 + <length>-1</length>
  3232 + <precision>-1</precision>
  3233 + </field>
  3234 + <field>
  3235 + <name>fcno56</name>
  3236 + <type>String</type>
  3237 + <format/>
  3238 + <currency/>
  3239 + <decimal/>
  3240 + <group/>
  3241 + <nullif/>
  3242 + <trim_type>none</trim_type>
  3243 + <length>-1</length>
  3244 + <precision>-1</precision>
  3245 + </field>
  3246 + <field>
  3247 + <name>fcno57</name>
  3248 + <type>String</type>
  3249 + <format/>
  3250 + <currency/>
  3251 + <decimal/>
  3252 + <group/>
  3253 + <nullif/>
  3254 + <trim_type>none</trim_type>
  3255 + <length>-1</length>
  3256 + <precision>-1</precision>
  3257 + </field>
  3258 + <field>
  3259 + <name>fcno58</name>
  3260 + <type>String</type>
  3261 + <format/>
  3262 + <currency/>
  3263 + <decimal/>
  3264 + <group/>
  3265 + <nullif/>
  3266 + <trim_type>none</trim_type>
  3267 + <length>-1</length>
  3268 + <precision>-1</precision>
  3269 + </field>
  3270 + <field>
  3271 + <name>fcno59</name>
  3272 + <type>String</type>
  3273 + <format/>
  3274 + <currency/>
  3275 + <decimal/>
  3276 + <group/>
  3277 + <nullif/>
  3278 + <trim_type>none</trim_type>
  3279 + <length>-1</length>
  3280 + <precision>-1</precision>
  3281 + </field>
  3282 + <field>
  3283 + <name>fcno60</name>
  3284 + <type>String</type>
  3285 + <format/>
  3286 + <currency/>
  3287 + <decimal/>
  3288 + <group/>
  3289 + <nullif/>
  3290 + <trim_type>none</trim_type>
  3291 + <length>-1</length>
  3292 + <precision>-1</precision>
  3293 + </field>
  3294 + <field>
  3295 + <name>fcno61</name>
  3296 + <type>String</type>
  3297 + <format/>
  3298 + <currency/>
  3299 + <decimal/>
  3300 + <group/>
  3301 + <nullif/>
  3302 + <trim_type>none</trim_type>
  3303 + <length>-1</length>
  3304 + <precision>-1</precision>
  3305 + </field>
  3306 + <field>
  3307 + <name>fcno62</name>
  3308 + <type>String</type>
  3309 + <format/>
  3310 + <currency/>
  3311 + <decimal/>
  3312 + <group/>
  3313 + <nullif/>
  3314 + <trim_type>none</trim_type>
  3315 + <length>-1</length>
  3316 + <precision>-1</precision>
  3317 + </field>
  3318 + <field>
  3319 + <name>fcno63</name>
  3320 + <type>String</type>
  3321 + <format/>
  3322 + <currency/>
  3323 + <decimal/>
  3324 + <group/>
  3325 + <nullif/>
  3326 + <trim_type>none</trim_type>
  3327 + <length>-1</length>
  3328 + <precision>-1</precision>
  3329 + </field>
  3330 + <field>
  3331 + <name>fcno64</name>
  3332 + <type>String</type>
  3333 + <format/>
  3334 + <currency/>
  3335 + <decimal/>
  3336 + <group/>
  3337 + <nullif/>
  3338 + <trim_type>none</trim_type>
  3339 + <length>-1</length>
  3340 + <precision>-1</precision>
  3341 + </field>
  3342 + <field>
  3343 + <name>fcno65</name>
  3344 + <type>String</type>
  3345 + <format/>
  3346 + <currency/>
  3347 + <decimal/>
  3348 + <group/>
  3349 + <nullif/>
  3350 + <trim_type>none</trim_type>
  3351 + <length>-1</length>
  3352 + <precision>-1</precision>
  3353 + </field>
  3354 + <field>
  3355 + <name>fcno66</name>
  3356 + <type>String</type>
  3357 + <format/>
  3358 + <currency/>
  3359 + <decimal/>
  3360 + <group/>
  3361 + <nullif/>
  3362 + <trim_type>none</trim_type>
  3363 + <length>-1</length>
  3364 + <precision>-1</precision>
  3365 + </field>
  3366 + <field>
  3367 + <name>fcno67</name>
  3368 + <type>String</type>
  3369 + <format/>
  3370 + <currency/>
  3371 + <decimal/>
  3372 + <group/>
  3373 + <nullif/>
  3374 + <trim_type>none</trim_type>
  3375 + <length>-1</length>
  3376 + <precision>-1</precision>
  3377 + </field>
  3378 + <field>
  3379 + <name>fcno68</name>
  3380 + <type>String</type>
  3381 + <format/>
  3382 + <currency/>
  3383 + <decimal/>
  3384 + <group/>
  3385 + <nullif/>
  3386 + <trim_type>none</trim_type>
  3387 + <length>-1</length>
  3388 + <precision>-1</precision>
  3389 + </field>
  3390 + <field>
  3391 + <name>fcno69</name>
  3392 + <type>String</type>
  3393 + <format/>
  3394 + <currency/>
  3395 + <decimal/>
  3396 + <group/>
  3397 + <nullif/>
  3398 + <trim_type>none</trim_type>
  3399 + <length>-1</length>
  3400 + <precision>-1</precision>
  3401 + </field>
  3402 + <field>
  3403 + <name>fcno70</name>
  3404 + <type>String</type>
  3405 + <format/>
  3406 + <currency/>
  3407 + <decimal/>
  3408 + <group/>
  3409 + <nullif/>
  3410 + <trim_type>none</trim_type>
  3411 + <length>-1</length>
  3412 + <precision>-1</precision>
  3413 + </field>
  3414 + </fields>
  3415 + <cluster_schema/>
  3416 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  3417 + <xloc>880</xloc>
  3418 + <yloc>365</yloc>
  3419 + <draw>Y</draw>
  3420 + </GUI>
  3421 + </step>
  3422 +
  3423 + <step>
  3424 + <name>&#x5408;&#x5e76;&#x5185;&#x5bb9;</name>
  3425 + <type>ScriptValueMod</type>
  3426 + <description/>
  3427 + <distribute>Y</distribute>
  3428 + <custom_distribution/>
  3429 + <copies>1</copies>
  3430 + <partitioning>
  3431 + <method>none</method>
  3432 + <schema_name/>
  3433 + </partitioning>
  3434 + <compatible>N</compatible>
  3435 + <optimizationLevel>9</optimizationLevel>
  3436 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  3437 + <jsScript_name>Script 1</jsScript_name>
  3438 + <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;&#xa;all_content &#x3d; all_content_array.join&#x28;&#x22;,&#x22;&#x29;&#x3b; &#x2f;&#x2f; &#x9017;&#x53f7;&#x5206;&#x9694;</jsScript_script>
  3439 + </jsScript> </jsScripts> <fields> <field> <name>all_content</name>
  3440 + <rename>all_content</rename>
  3441 + <type>String</type>
  3442 + <length>-1</length>
  3443 + <precision>-1</precision>
  3444 + <replace>N</replace>
  3445 + </field> </fields> <cluster_schema/>
  3446 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  3447 + <xloc>551</xloc>
  3448 + <yloc>366</yloc>
  3449 + <draw>Y</draw>
  3450 + </GUI>
  3451 + </step>
  3452 +
  3453 + <step_error_handling>
  3454 + </step_error_handling>
  3455 + <slave-step-copy-partition-distribution>
  3456 +</slave-step-copy-partition-distribution>
  3457 + <slave_transformation>N</slave_transformation>
  3458 +
  3459 +</transformation>
... ...