Commit c41398eb4e153550386b045f27a756313805ce7b
1 parent
635e35c0
1、修改调度值勤日报,添加预览视图可烂班班次功能,路牌烂班功能,图例更新,预览视图指令界面修正,具体查看相关代码
Showing
12 changed files
with
3510 additions
and
3128 deletions
src/main/java/com/bsth/entity/schedule/SchedulePlanInfo.java
| ... | ... | @@ -144,6 +144,12 @@ public class SchedulePlanInfo extends BEntity { |
| 144 | 144 | /** 调整的次数(在调度执勤日报页面,排班计划明细里,改的话都会增加) */ |
| 145 | 145 | private Integer modifyCount; |
| 146 | 146 | |
| 147 | + /* | |
| 148 | + 状态字段 | |
| 149 | + -1:表示烂班 | |
| 150 | + */ | |
| 151 | + private Integer status; | |
| 152 | + | |
| 147 | 153 | |
| 148 | 154 | // @ManyToOne(cascade = CascadeType.PERSIST, fetch = FetchType.LAZY) |
| 149 | 155 | // @JoinTable( |
| ... | ... | @@ -793,4 +799,12 @@ public class SchedulePlanInfo extends BEntity { |
| 793 | 799 | public void setModifyCount(Integer modifyCount) { |
| 794 | 800 | this.modifyCount = modifyCount; |
| 795 | 801 | } |
| 802 | + | |
| 803 | + public Integer getStatus() { | |
| 804 | + return status; | |
| 805 | + } | |
| 806 | + | |
| 807 | + public void setStatus(Integer status) { | |
| 808 | + this.status = status; | |
| 809 | + } | |
| 796 | 810 | } | ... | ... |
src/main/java/com/bsth/service/schedule/timetable/strategy/impl/TimetableExcelWithPlanInfoViewStrategyImpl.java
| ... | ... | @@ -129,6 +129,9 @@ public class TimetableExcelWithPlanInfoViewStrategyImpl implements TimetableExce |
| 129 | 129 | headarrays[c] = content[8]; // 计算的发车站名 |
| 130 | 130 | } |
| 131 | 131 | |
| 132 | + schedulePlanInfo.setModifyCount(Integer.valueOf(content[9])); // 修改次数 | |
| 133 | + schedulePlanInfo.setStatus(Integer.valueOf(content[10])); // status(-1 为烂班) | |
| 134 | + | |
| 132 | 135 | schedulePlanInfoList.add(schedulePlanInfo); |
| 133 | 136 | } |
| 134 | 137 | ... | ... |
src/main/resources/datatools/ktrs/planWithScheduleTypeOutputForEdit.ktr
| ... | ... | @@ -267,6 +267,30 @@ |
| 267 | 267 | </attributes> |
| 268 | 268 | </connection> |
| 269 | 269 | <connection> |
| 270 | + <name>lgjw_oracle_jndi</name> | |
| 271 | + <server/> | |
| 272 | + <type>ORACLE</type> | |
| 273 | + <access>JNDI</access> | |
| 274 | + <database>lgjw_oracle</database> | |
| 275 | + <port>1521</port> | |
| 276 | + <username/> | |
| 277 | + <password>Encrypted </password> | |
| 278 | + <servername/> | |
| 279 | + <data_tablespace>LGJW</data_tablespace> | |
| 280 | + <index_tablespace/> | |
| 281 | + <attributes> | |
| 282 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 283 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 284 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 285 | + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute> | |
| 286 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 287 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 288 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 289 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 290 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 291 | + </attributes> | |
| 292 | + </connection> | |
| 293 | + <connection> | |
| 270 | 294 | <name>NHJW_VM</name> |
| 271 | 295 | <server>192.168.198.240</server> |
| 272 | 296 | <type>ORACLE</type> |
| ... | ... | @@ -831,34 +855,8 @@ |
| 831 | 855 | <hop> <from>字段选择</from><to>Excel输出</to><enabled>Y</enabled> </hop> |
| 832 | 856 | </order> |
| 833 | 857 | <step> |
| 834 | - <name>排班明细输入</name> | |
| 835 | - <type>TableInput</type> | |
| 836 | - <description/> | |
| 837 | - <distribute>Y</distribute> | |
| 838 | - <custom_distribution/> | |
| 839 | - <copies>1</copies> | |
| 840 | - <partitioning> | |
| 841 | - <method>none</method> | |
| 842 | - <schema_name/> | |
| 843 | - </partitioning> | |
| 844 | - <connection>control_jndi</connection> | |
| 845 | - <sql>select *
from bsth_c_s_sp_info
where xl = ${xlid}
and date_format(schedule_date, '%Y-%m-%d') = '${sdate}'</sql> | |
| 846 | - <limit>0</limit> | |
| 847 | - <lookup/> | |
| 848 | - <execute_each_row>N</execute_each_row> | |
| 849 | - <variables_active>Y</variables_active> | |
| 850 | - <lazy_conversion_active>N</lazy_conversion_active> | |
| 851 | - <cluster_schema/> | |
| 852 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 853 | - <xloc>97</xloc> | |
| 854 | - <yloc>63</yloc> | |
| 855 | - <draw>Y</draw> | |
| 856 | - </GUI> | |
| 857 | - </step> | |
| 858 | - | |
| 859 | - <step> | |
| 860 | - <name>计算发车站名</name> | |
| 861 | - <type>ScriptValueMod</type> | |
| 858 | + <name>Excel输出</name> | |
| 859 | + <type>ExcelOutput</type> | |
| 862 | 860 | <description/> |
| 863 | 861 | <distribute>Y</distribute> |
| 864 | 862 | <custom_distribution/> |
| ... | ... | @@ -867,3033 +865,83 @@ |
| 867 | 865 | <method>none</method> |
| 868 | 866 | <schema_name/> |
| 869 | 867 | </partitioning> |
| 870 | - <compatible>N</compatible> | |
| 871 | - <optimizationLevel>9</optimizationLevel> | |
| 872 | - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type> | |
| 873 | - <jsScript_name>Script 1</jsScript_name> | |
| 874 | - <jsScript_script>//Script here

var fczdName = null; // 发车站点名字
if (bc_type == "in") {
 fczdName = "进场";
} else if (bc_type == "out") {
 fczdName = "出场";
} else {
 fczdName = qdz_name;
}</jsScript_script> | |
| 875 | - </jsScript> </jsScripts> <fields> <field> <name>fczdName</name> | |
| 876 | - <rename>fczdName</rename> | |
| 868 | + <header>Y</header> | |
| 869 | + <footer>N</footer> | |
| 870 | + <encoding/> | |
| 871 | + <append>N</append> | |
| 872 | + <add_to_result_filenames>Y</add_to_result_filenames> | |
| 873 | + <file> | |
| 874 | + <name>${filepath}</name> | |
| 875 | + <extention>xls</extention> | |
| 876 | + <do_not_open_newfile_init>N</do_not_open_newfile_init> | |
| 877 | + <create_parent_folder>N</create_parent_folder> | |
| 878 | + <split>N</split> | |
| 879 | + <add_date>N</add_date> | |
| 880 | + <add_time>N</add_time> | |
| 881 | + <SpecifyFormat>N</SpecifyFormat> | |
| 882 | + <date_time_format/> | |
| 883 | + <sheetname>Sheet1</sheetname> | |
| 884 | + <autosizecolums>N</autosizecolums> | |
| 885 | + <nullisblank>N</nullisblank> | |
| 886 | + <protect_sheet>N</protect_sheet> | |
| 887 | + <password>Encrypted </password> | |
| 888 | + <splitevery>0</splitevery> | |
| 889 | + <usetempfiles>N</usetempfiles> | |
| 890 | + <tempdirectory/> | |
| 891 | + </file> | |
| 892 | + <template> | |
| 893 | + <enabled>N</enabled> | |
| 894 | + <append>N</append> | |
| 895 | + <filename>template.xls</filename> | |
| 896 | + </template> | |
| 897 | + <fields> | |
| 898 | + <field> | |
| 899 | + <name>路牌</name> | |
| 877 | 900 | <type>String</type> |
| 878 | - <length>-1</length> | |
| 879 | - <precision>-1</precision> | |
| 880 | - <replace>N</replace> | |
| 881 | - </field> </fields> <cluster_schema/> | |
| 882 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 883 | - <xloc>219</xloc> | |
| 884 | - <yloc>62</yloc> | |
| 885 | - <draw>Y</draw> | |
| 886 | - </GUI> | |
| 887 | - </step> | |
| 888 | - | |
| 889 | - <step> | |
| 890 | - <name>车牌号查询</name> | |
| 891 | - <type>DBLookup</type> | |
| 892 | - <description/> | |
| 893 | - <distribute>Y</distribute> | |
| 894 | - <custom_distribution/> | |
| 895 | - <copies>1</copies> | |
| 896 | - <partitioning> | |
| 897 | - <method>none</method> | |
| 898 | - <schema_name/> | |
| 899 | - </partitioning> | |
| 900 | - <connection>control_jndi</connection> | |
| 901 | - <cache>Y</cache> | |
| 902 | - <cache_load_all>Y</cache_load_all> | |
| 903 | - <cache_size>0</cache_size> | |
| 904 | - <lookup> | |
| 905 | - <schema/> | |
| 906 | - <table>bsth_c_cars</table> | |
| 907 | - <orderby/> | |
| 908 | - <fail_on_multiple>N</fail_on_multiple> | |
| 909 | - <eat_row_on_failure>N</eat_row_on_failure> | |
| 910 | - <key> | |
| 911 | - <name>cl</name> | |
| 912 | - <field>id</field> | |
| 913 | - <condition>=</condition> | |
| 914 | - <name2/> | |
| 915 | - </key> | |
| 916 | - <value> | |
| 917 | - <name>car_plate</name> | |
| 918 | - <rename>car_plate</rename> | |
| 919 | - <default>无</default> | |
| 901 | + <format/> | |
| 902 | + </field> | |
| 903 | + <field> | |
| 904 | + <name>驾驶员</name> | |
| 920 | 905 | <type>String</type> |
| 921 | - </value> | |
| 922 | - </lookup> | |
| 923 | - <cluster_schema/> | |
| 924 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 925 | - <xloc>327</xloc> | |
| 926 | - <yloc>63</yloc> | |
| 927 | - <draw>Y</draw> | |
| 928 | - </GUI> | |
| 929 | - </step> | |
| 930 | - | |
| 931 | - <step> | |
| 932 | - <name>排序记录</name> | |
| 933 | - <type>SortRows</type> | |
| 934 | - <description/> | |
| 935 | - <distribute>Y</distribute> | |
| 936 | - <custom_distribution/> | |
| 937 | - <copies>1</copies> | |
| 938 | - <partitioning> | |
| 939 | - <method>none</method> | |
| 940 | - <schema_name/> | |
| 941 | - </partitioning> | |
| 942 | - <directory>%%java.io.tmpdir%%</directory> | |
| 943 | - <prefix>out</prefix> | |
| 944 | - <sort_size>1000000</sort_size> | |
| 945 | - <free_memory/> | |
| 946 | - <compress>N</compress> | |
| 947 | - <compress_variable/> | |
| 948 | - <unique_rows>N</unique_rows> | |
| 949 | - <fields> | |
| 906 | + <format/> | |
| 907 | + </field> | |
| 950 | 908 | <field> |
| 951 | - <name>lp</name> | |
| 952 | - <ascending>Y</ascending> | |
| 953 | - <case_sensitive>N</case_sensitive> | |
| 954 | - <presorted>N</presorted> | |
| 909 | + <name>自编号</name> | |
| 910 | + <type>String</type> | |
| 911 | + <format/> | |
| 955 | 912 | </field> |
| 956 | 913 | <field> |
| 957 | - <name>lp_name</name> | |
| 958 | - <ascending>Y</ascending> | |
| 959 | - <case_sensitive>N</case_sensitive> | |
| 960 | - <presorted>N</presorted> | |
| 914 | + <name>车牌号</name> | |
| 915 | + <type>String</type> | |
| 916 | + <format/> | |
| 961 | 917 | </field> |
| 962 | 918 | <field> |
| 963 | - <name>j</name> | |
| 964 | - <ascending>Y</ascending> | |
| 965 | - <case_sensitive>N</case_sensitive> | |
| 966 | - <presorted>N</presorted> | |
| 919 | + <name>fcno1</name> | |
| 920 | + <type>String</type> | |
| 921 | + <format/> | |
| 967 | 922 | </field> |
| 968 | 923 | <field> |
| 969 | - <name>j_name</name> | |
| 970 | - <ascending>Y</ascending> | |
| 971 | - <case_sensitive>N</case_sensitive> | |
| 972 | - <presorted>N</presorted> | |
| 924 | + <name>fcno2</name> | |
| 925 | + <type>String</type> | |
| 926 | + <format/> | |
| 973 | 927 | </field> |
| 974 | 928 | <field> |
| 975 | - <name>cl_zbh</name> | |
| 976 | - <ascending>Y</ascending> | |
| 977 | - <case_sensitive>N</case_sensitive> | |
| 978 | - <presorted>N</presorted> | |
| 929 | + <name>fcno3</name> | |
| 930 | + <type>String</type> | |
| 931 | + <format/> | |
| 979 | 932 | </field> |
| 980 | 933 | <field> |
| 981 | - <name>car_plate</name> | |
| 982 | - <ascending>Y</ascending> | |
| 983 | - <case_sensitive>N</case_sensitive> | |
| 984 | - <presorted>N</presorted> | |
| 934 | + <name>fcno4</name> | |
| 935 | + <type>String</type> | |
| 936 | + <format/> | |
| 985 | 937 | </field> |
| 986 | 938 | <field> |
| 987 | - <name>fcno</name> | |
| 988 | - <ascending>Y</ascending> | |
| 989 | - <case_sensitive>N</case_sensitive> | |
| 990 | - <presorted>N</presorted> | |
| 939 | + <name>fcno5</name> | |
| 940 | + <type>String</type> | |
| 941 | + <format/> | |
| 991 | 942 | </field> |
| 992 | - </fields> | |
| 993 | - <cluster_schema/> | |
| 994 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 995 | - <xloc>558</xloc> | |
| 996 | - <yloc>64</yloc> | |
| 997 | - <draw>Y</draw> | |
| 998 | - </GUI> | |
| 999 | - </step> | |
| 1000 | - | |
| 1001 | - <step> | |
| 1002 | - <name>重新计算数据</name> | |
| 1003 | - <type>ScriptValueMod</type> | |
| 1004 | - <description/> | |
| 1005 | - <distribute>Y</distribute> | |
| 1006 | - <custom_distribution/> | |
| 1007 | - <copies>1</copies> | |
| 1008 | - <partitioning> | |
| 1009 | - <method>none</method> | |
| 1010 | - <schema_name/> | |
| 1011 | - </partitioning> | |
| 1012 | - <compatible>N</compatible> | |
| 1013 | - <optimizationLevel>9</optimizationLevel> | |
| 1014 | - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type> | |
| 1015 | - <jsScript_name>Script 1</jsScript_name> | |
| 1016 | - <jsScript_script>//Script here

// 1、列传行后,需要把班次的相关信息合并到一个字段中
var all_content_array = [];
var all_content = ""; 
all_content_array.push(id); // 排班明细id
all_content_array.push(xl_dir); // 上下行
all_content_array.push(qdz_name); // 起点站名字
all_content_array.push(zdz_name); // 终点站名字
all_content_array.push(fcsj); // 发车时间
all_content_array.push(jhlc); // 计划里程
all_content_array.push(bcsj); // 班次时间
all_content_array.push(bc_type); // 班次类型
 
all_content_array.push(fczdName); // 计算的发车站名

all_content = all_content_array.join(","); // 逗号分隔</jsScript_script> | |
| 1017 | - </jsScript> </jsScripts> <fields> <field> <name>all_content</name> | |
| 1018 | - <rename>all_content</rename> | |
| 1019 | - <type>String</type> | |
| 1020 | - <length>-1</length> | |
| 1021 | - <precision>-1</precision> | |
| 1022 | - <replace>N</replace> | |
| 1023 | - </field> </fields> <cluster_schema/> | |
| 1024 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1025 | - <xloc>450</xloc> | |
| 1026 | - <yloc>63</yloc> | |
| 1027 | - <draw>Y</draw> | |
| 1028 | - </GUI> | |
| 1029 | - </step> | |
| 1030 | - | |
| 1031 | - <step> | |
| 1032 | - <name>列转行</name> | |
| 1033 | - <type>Denormaliser</type> | |
| 1034 | - <description/> | |
| 1035 | - <distribute>Y</distribute> | |
| 1036 | - <custom_distribution/> | |
| 1037 | - <copies>1</copies> | |
| 1038 | - <partitioning> | |
| 1039 | - <method>none</method> | |
| 1040 | - <schema_name/> | |
| 1041 | - </partitioning> | |
| 1042 | - <key_field>fcno</key_field> | |
| 1043 | - <group> | |
| 1044 | - <field> | |
| 1045 | - <name>lp</name> | |
| 1046 | - </field> | |
| 1047 | - <field> | |
| 1048 | - <name>lp_name</name> | |
| 1049 | - </field> | |
| 1050 | - <field> | |
| 1051 | - <name>j</name> | |
| 1052 | - </field> | |
| 1053 | - <field> | |
| 1054 | - <name>j_name</name> | |
| 1055 | - </field> | |
| 1056 | - <field> | |
| 1057 | - <name>cl_zbh</name> | |
| 1058 | - </field> | |
| 1059 | - <field> | |
| 1060 | - <name>car_plate</name> | |
| 1061 | - </field> | |
| 1062 | - </group> | |
| 1063 | - <fields> | |
| 1064 | - <field> | |
| 1065 | - <field_name>all_content</field_name> | |
| 1066 | - <key_value>1</key_value> | |
| 1067 | - <target_name>fcno1</target_name> | |
| 1068 | - <target_type>String</target_type> | |
| 1069 | - <target_format/> | |
| 1070 | - <target_length>-1</target_length> | |
| 1071 | - <target_precision>-1</target_precision> | |
| 1072 | - <target_decimal_symbol/> | |
| 1073 | - <target_grouping_symbol/> | |
| 1074 | - <target_currency_symbol/> | |
| 1075 | - <target_null_string/> | |
| 1076 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1077 | - </field> | |
| 1078 | - <field> | |
| 1079 | - <field_name>all_content</field_name> | |
| 1080 | - <key_value>2</key_value> | |
| 1081 | - <target_name>fcno2</target_name> | |
| 1082 | - <target_type>String</target_type> | |
| 1083 | - <target_format/> | |
| 1084 | - <target_length>-1</target_length> | |
| 1085 | - <target_precision>-1</target_precision> | |
| 1086 | - <target_decimal_symbol/> | |
| 1087 | - <target_grouping_symbol/> | |
| 1088 | - <target_currency_symbol/> | |
| 1089 | - <target_null_string/> | |
| 1090 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1091 | - </field> | |
| 1092 | - <field> | |
| 1093 | - <field_name>all_content</field_name> | |
| 1094 | - <key_value>3</key_value> | |
| 1095 | - <target_name>fcno3</target_name> | |
| 1096 | - <target_type>String</target_type> | |
| 1097 | - <target_format/> | |
| 1098 | - <target_length>-1</target_length> | |
| 1099 | - <target_precision>-1</target_precision> | |
| 1100 | - <target_decimal_symbol/> | |
| 1101 | - <target_grouping_symbol/> | |
| 1102 | - <target_currency_symbol/> | |
| 1103 | - <target_null_string/> | |
| 1104 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1105 | - </field> | |
| 1106 | - <field> | |
| 1107 | - <field_name>all_content</field_name> | |
| 1108 | - <key_value>4</key_value> | |
| 1109 | - <target_name>fcno4</target_name> | |
| 1110 | - <target_type>String</target_type> | |
| 1111 | - <target_format/> | |
| 1112 | - <target_length>-1</target_length> | |
| 1113 | - <target_precision>-1</target_precision> | |
| 1114 | - <target_decimal_symbol/> | |
| 1115 | - <target_grouping_symbol/> | |
| 1116 | - <target_currency_symbol/> | |
| 1117 | - <target_null_string/> | |
| 1118 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1119 | - </field> | |
| 1120 | - <field> | |
| 1121 | - <field_name>all_content</field_name> | |
| 1122 | - <key_value>5</key_value> | |
| 1123 | - <target_name>fcno5</target_name> | |
| 1124 | - <target_type>String</target_type> | |
| 1125 | - <target_format/> | |
| 1126 | - <target_length>-1</target_length> | |
| 1127 | - <target_precision>-1</target_precision> | |
| 1128 | - <target_decimal_symbol/> | |
| 1129 | - <target_grouping_symbol/> | |
| 1130 | - <target_currency_symbol/> | |
| 1131 | - <target_null_string/> | |
| 1132 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1133 | - </field> | |
| 1134 | - <field> | |
| 1135 | - <field_name>all_content</field_name> | |
| 1136 | - <key_value>6</key_value> | |
| 1137 | - <target_name>fcno6</target_name> | |
| 1138 | - <target_type>String</target_type> | |
| 1139 | - <target_format/> | |
| 1140 | - <target_length>-1</target_length> | |
| 1141 | - <target_precision>-1</target_precision> | |
| 1142 | - <target_decimal_symbol/> | |
| 1143 | - <target_grouping_symbol/> | |
| 1144 | - <target_currency_symbol/> | |
| 1145 | - <target_null_string/> | |
| 1146 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1147 | - </field> | |
| 1148 | - <field> | |
| 1149 | - <field_name>all_content</field_name> | |
| 1150 | - <key_value>7</key_value> | |
| 1151 | - <target_name>fcno7</target_name> | |
| 1152 | - <target_type>String</target_type> | |
| 1153 | - <target_format/> | |
| 1154 | - <target_length>-1</target_length> | |
| 1155 | - <target_precision>-1</target_precision> | |
| 1156 | - <target_decimal_symbol/> | |
| 1157 | - <target_grouping_symbol/> | |
| 1158 | - <target_currency_symbol/> | |
| 1159 | - <target_null_string/> | |
| 1160 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1161 | - </field> | |
| 1162 | - <field> | |
| 1163 | - <field_name>all_content</field_name> | |
| 1164 | - <key_value>8</key_value> | |
| 1165 | - <target_name>fcno8</target_name> | |
| 1166 | - <target_type>String</target_type> | |
| 1167 | - <target_format/> | |
| 1168 | - <target_length>-1</target_length> | |
| 1169 | - <target_precision>-1</target_precision> | |
| 1170 | - <target_decimal_symbol/> | |
| 1171 | - <target_grouping_symbol/> | |
| 1172 | - <target_currency_symbol/> | |
| 1173 | - <target_null_string/> | |
| 1174 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1175 | - </field> | |
| 1176 | - <field> | |
| 1177 | - <field_name>all_content</field_name> | |
| 1178 | - <key_value>9</key_value> | |
| 1179 | - <target_name>fcno9</target_name> | |
| 1180 | - <target_type>String</target_type> | |
| 1181 | - <target_format/> | |
| 1182 | - <target_length>-1</target_length> | |
| 1183 | - <target_precision>-1</target_precision> | |
| 1184 | - <target_decimal_symbol/> | |
| 1185 | - <target_grouping_symbol/> | |
| 1186 | - <target_currency_symbol/> | |
| 1187 | - <target_null_string/> | |
| 1188 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1189 | - </field> | |
| 1190 | - <field> | |
| 1191 | - <field_name>all_content</field_name> | |
| 1192 | - <key_value>10</key_value> | |
| 1193 | - <target_name>fcno10</target_name> | |
| 1194 | - <target_type>String</target_type> | |
| 1195 | - <target_format/> | |
| 1196 | - <target_length>-1</target_length> | |
| 1197 | - <target_precision>-1</target_precision> | |
| 1198 | - <target_decimal_symbol/> | |
| 1199 | - <target_grouping_symbol/> | |
| 1200 | - <target_currency_symbol/> | |
| 1201 | - <target_null_string/> | |
| 1202 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1203 | - </field> | |
| 1204 | - <field> | |
| 1205 | - <field_name>all_content</field_name> | |
| 1206 | - <key_value>11</key_value> | |
| 1207 | - <target_name>fcno11</target_name> | |
| 1208 | - <target_type>String</target_type> | |
| 1209 | - <target_format/> | |
| 1210 | - <target_length>-1</target_length> | |
| 1211 | - <target_precision>-1</target_precision> | |
| 1212 | - <target_decimal_symbol/> | |
| 1213 | - <target_grouping_symbol/> | |
| 1214 | - <target_currency_symbol/> | |
| 1215 | - <target_null_string/> | |
| 1216 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1217 | - </field> | |
| 1218 | - <field> | |
| 1219 | - <field_name>all_content</field_name> | |
| 1220 | - <key_value>12</key_value> | |
| 1221 | - <target_name>fcno12</target_name> | |
| 1222 | - <target_type>String</target_type> | |
| 1223 | - <target_format/> | |
| 1224 | - <target_length>-1</target_length> | |
| 1225 | - <target_precision>-1</target_precision> | |
| 1226 | - <target_decimal_symbol/> | |
| 1227 | - <target_grouping_symbol/> | |
| 1228 | - <target_currency_symbol/> | |
| 1229 | - <target_null_string/> | |
| 1230 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1231 | - </field> | |
| 1232 | - <field> | |
| 1233 | - <field_name>all_content</field_name> | |
| 1234 | - <key_value>13</key_value> | |
| 1235 | - <target_name>fcno13</target_name> | |
| 1236 | - <target_type>String</target_type> | |
| 1237 | - <target_format/> | |
| 1238 | - <target_length>-1</target_length> | |
| 1239 | - <target_precision>-1</target_precision> | |
| 1240 | - <target_decimal_symbol/> | |
| 1241 | - <target_grouping_symbol/> | |
| 1242 | - <target_currency_symbol/> | |
| 1243 | - <target_null_string/> | |
| 1244 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1245 | - </field> | |
| 1246 | - <field> | |
| 1247 | - <field_name>all_content</field_name> | |
| 1248 | - <key_value>14</key_value> | |
| 1249 | - <target_name>fcno14</target_name> | |
| 1250 | - <target_type>String</target_type> | |
| 1251 | - <target_format/> | |
| 1252 | - <target_length>-1</target_length> | |
| 1253 | - <target_precision>-1</target_precision> | |
| 1254 | - <target_decimal_symbol/> | |
| 1255 | - <target_grouping_symbol/> | |
| 1256 | - <target_currency_symbol/> | |
| 1257 | - <target_null_string/> | |
| 1258 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1259 | - </field> | |
| 1260 | - <field> | |
| 1261 | - <field_name>all_content</field_name> | |
| 1262 | - <key_value>15</key_value> | |
| 1263 | - <target_name>fcno15</target_name> | |
| 1264 | - <target_type>String</target_type> | |
| 1265 | - <target_format/> | |
| 1266 | - <target_length>-1</target_length> | |
| 1267 | - <target_precision>-1</target_precision> | |
| 1268 | - <target_decimal_symbol/> | |
| 1269 | - <target_grouping_symbol/> | |
| 1270 | - <target_currency_symbol/> | |
| 1271 | - <target_null_string/> | |
| 1272 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1273 | - </field> | |
| 1274 | - <field> | |
| 1275 | - <field_name>all_content</field_name> | |
| 1276 | - <key_value>16</key_value> | |
| 1277 | - <target_name>fcno16</target_name> | |
| 1278 | - <target_type>String</target_type> | |
| 1279 | - <target_format/> | |
| 1280 | - <target_length>-1</target_length> | |
| 1281 | - <target_precision>-1</target_precision> | |
| 1282 | - <target_decimal_symbol/> | |
| 1283 | - <target_grouping_symbol/> | |
| 1284 | - <target_currency_symbol/> | |
| 1285 | - <target_null_string/> | |
| 1286 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1287 | - </field> | |
| 1288 | - <field> | |
| 1289 | - <field_name>all_content</field_name> | |
| 1290 | - <key_value>17</key_value> | |
| 1291 | - <target_name>fcno17</target_name> | |
| 1292 | - <target_type>String</target_type> | |
| 1293 | - <target_format/> | |
| 1294 | - <target_length>-1</target_length> | |
| 1295 | - <target_precision>-1</target_precision> | |
| 1296 | - <target_decimal_symbol/> | |
| 1297 | - <target_grouping_symbol/> | |
| 1298 | - <target_currency_symbol/> | |
| 1299 | - <target_null_string/> | |
| 1300 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1301 | - </field> | |
| 1302 | - <field> | |
| 1303 | - <field_name>all_content</field_name> | |
| 1304 | - <key_value>18</key_value> | |
| 1305 | - <target_name>fcno18</target_name> | |
| 1306 | - <target_type>String</target_type> | |
| 1307 | - <target_format/> | |
| 1308 | - <target_length>-1</target_length> | |
| 1309 | - <target_precision>-1</target_precision> | |
| 1310 | - <target_decimal_symbol/> | |
| 1311 | - <target_grouping_symbol/> | |
| 1312 | - <target_currency_symbol/> | |
| 1313 | - <target_null_string/> | |
| 1314 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1315 | - </field> | |
| 1316 | - <field> | |
| 1317 | - <field_name>all_content</field_name> | |
| 1318 | - <key_value>19</key_value> | |
| 1319 | - <target_name>fcno19</target_name> | |
| 1320 | - <target_type>String</target_type> | |
| 1321 | - <target_format/> | |
| 1322 | - <target_length>-1</target_length> | |
| 1323 | - <target_precision>-1</target_precision> | |
| 1324 | - <target_decimal_symbol/> | |
| 1325 | - <target_grouping_symbol/> | |
| 1326 | - <target_currency_symbol/> | |
| 1327 | - <target_null_string/> | |
| 1328 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1329 | - </field> | |
| 1330 | - <field> | |
| 1331 | - <field_name>all_content</field_name> | |
| 1332 | - <key_value>20</key_value> | |
| 1333 | - <target_name>fcno20</target_name> | |
| 1334 | - <target_type>String</target_type> | |
| 1335 | - <target_format/> | |
| 1336 | - <target_length>-1</target_length> | |
| 1337 | - <target_precision>-1</target_precision> | |
| 1338 | - <target_decimal_symbol/> | |
| 1339 | - <target_grouping_symbol/> | |
| 1340 | - <target_currency_symbol/> | |
| 1341 | - <target_null_string/> | |
| 1342 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1343 | - </field> | |
| 1344 | - <field> | |
| 1345 | - <field_name>all_content</field_name> | |
| 1346 | - <key_value>21</key_value> | |
| 1347 | - <target_name>fcno21</target_name> | |
| 1348 | - <target_type>String</target_type> | |
| 1349 | - <target_format/> | |
| 1350 | - <target_length>-1</target_length> | |
| 1351 | - <target_precision>-1</target_precision> | |
| 1352 | - <target_decimal_symbol/> | |
| 1353 | - <target_grouping_symbol/> | |
| 1354 | - <target_currency_symbol/> | |
| 1355 | - <target_null_string/> | |
| 1356 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1357 | - </field> | |
| 1358 | - <field> | |
| 1359 | - <field_name>all_content</field_name> | |
| 1360 | - <key_value>22</key_value> | |
| 1361 | - <target_name>fcno22</target_name> | |
| 1362 | - <target_type>String</target_type> | |
| 1363 | - <target_format/> | |
| 1364 | - <target_length>-1</target_length> | |
| 1365 | - <target_precision>-1</target_precision> | |
| 1366 | - <target_decimal_symbol/> | |
| 1367 | - <target_grouping_symbol/> | |
| 1368 | - <target_currency_symbol/> | |
| 1369 | - <target_null_string/> | |
| 1370 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1371 | - </field> | |
| 1372 | - <field> | |
| 1373 | - <field_name>all_content</field_name> | |
| 1374 | - <key_value>23</key_value> | |
| 1375 | - <target_name>fcno23</target_name> | |
| 1376 | - <target_type>String</target_type> | |
| 1377 | - <target_format/> | |
| 1378 | - <target_length>-1</target_length> | |
| 1379 | - <target_precision>-1</target_precision> | |
| 1380 | - <target_decimal_symbol/> | |
| 1381 | - <target_grouping_symbol/> | |
| 1382 | - <target_currency_symbol/> | |
| 1383 | - <target_null_string/> | |
| 1384 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1385 | - </field> | |
| 1386 | - <field> | |
| 1387 | - <field_name>all_content</field_name> | |
| 1388 | - <key_value>24</key_value> | |
| 1389 | - <target_name>fcno24</target_name> | |
| 1390 | - <target_type>String</target_type> | |
| 1391 | - <target_format/> | |
| 1392 | - <target_length>-1</target_length> | |
| 1393 | - <target_precision>-1</target_precision> | |
| 1394 | - <target_decimal_symbol/> | |
| 1395 | - <target_grouping_symbol/> | |
| 1396 | - <target_currency_symbol/> | |
| 1397 | - <target_null_string/> | |
| 1398 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1399 | - </field> | |
| 1400 | - <field> | |
| 1401 | - <field_name>all_content</field_name> | |
| 1402 | - <key_value>25</key_value> | |
| 1403 | - <target_name>fcno25</target_name> | |
| 1404 | - <target_type>String</target_type> | |
| 1405 | - <target_format/> | |
| 1406 | - <target_length>-1</target_length> | |
| 1407 | - <target_precision>-1</target_precision> | |
| 1408 | - <target_decimal_symbol/> | |
| 1409 | - <target_grouping_symbol/> | |
| 1410 | - <target_currency_symbol/> | |
| 1411 | - <target_null_string/> | |
| 1412 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1413 | - </field> | |
| 1414 | - <field> | |
| 1415 | - <field_name>all_content</field_name> | |
| 1416 | - <key_value>26</key_value> | |
| 1417 | - <target_name>fcno26</target_name> | |
| 1418 | - <target_type>String</target_type> | |
| 1419 | - <target_format/> | |
| 1420 | - <target_length>-1</target_length> | |
| 1421 | - <target_precision>-1</target_precision> | |
| 1422 | - <target_decimal_symbol/> | |
| 1423 | - <target_grouping_symbol/> | |
| 1424 | - <target_currency_symbol/> | |
| 1425 | - <target_null_string/> | |
| 1426 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1427 | - </field> | |
| 1428 | - <field> | |
| 1429 | - <field_name>all_content</field_name> | |
| 1430 | - <key_value>27</key_value> | |
| 1431 | - <target_name>fcno27</target_name> | |
| 1432 | - <target_type>String</target_type> | |
| 1433 | - <target_format/> | |
| 1434 | - <target_length>-1</target_length> | |
| 1435 | - <target_precision>-1</target_precision> | |
| 1436 | - <target_decimal_symbol/> | |
| 1437 | - <target_grouping_symbol/> | |
| 1438 | - <target_currency_symbol/> | |
| 1439 | - <target_null_string/> | |
| 1440 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1441 | - </field> | |
| 1442 | - <field> | |
| 1443 | - <field_name>all_content</field_name> | |
| 1444 | - <key_value>28</key_value> | |
| 1445 | - <target_name>fcno28</target_name> | |
| 1446 | - <target_type>String</target_type> | |
| 1447 | - <target_format/> | |
| 1448 | - <target_length>-1</target_length> | |
| 1449 | - <target_precision>-1</target_precision> | |
| 1450 | - <target_decimal_symbol/> | |
| 1451 | - <target_grouping_symbol/> | |
| 1452 | - <target_currency_symbol/> | |
| 1453 | - <target_null_string/> | |
| 1454 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1455 | - </field> | |
| 1456 | - <field> | |
| 1457 | - <field_name>all_content</field_name> | |
| 1458 | - <key_value>29</key_value> | |
| 1459 | - <target_name>fcno29</target_name> | |
| 1460 | - <target_type>String</target_type> | |
| 1461 | - <target_format/> | |
| 1462 | - <target_length>-1</target_length> | |
| 1463 | - <target_precision>-1</target_precision> | |
| 1464 | - <target_decimal_symbol/> | |
| 1465 | - <target_grouping_symbol/> | |
| 1466 | - <target_currency_symbol/> | |
| 1467 | - <target_null_string/> | |
| 1468 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1469 | - </field> | |
| 1470 | - <field> | |
| 1471 | - <field_name>all_content</field_name> | |
| 1472 | - <key_value>30</key_value> | |
| 1473 | - <target_name>fcno30</target_name> | |
| 1474 | - <target_type>String</target_type> | |
| 1475 | - <target_format/> | |
| 1476 | - <target_length>-1</target_length> | |
| 1477 | - <target_precision>-1</target_precision> | |
| 1478 | - <target_decimal_symbol/> | |
| 1479 | - <target_grouping_symbol/> | |
| 1480 | - <target_currency_symbol/> | |
| 1481 | - <target_null_string/> | |
| 1482 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1483 | - </field> | |
| 1484 | - <field> | |
| 1485 | - <field_name>all_content</field_name> | |
| 1486 | - <key_value>31</key_value> | |
| 1487 | - <target_name>fcno31</target_name> | |
| 1488 | - <target_type>String</target_type> | |
| 1489 | - <target_format/> | |
| 1490 | - <target_length>-1</target_length> | |
| 1491 | - <target_precision>-1</target_precision> | |
| 1492 | - <target_decimal_symbol/> | |
| 1493 | - <target_grouping_symbol/> | |
| 1494 | - <target_currency_symbol/> | |
| 1495 | - <target_null_string/> | |
| 1496 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1497 | - </field> | |
| 1498 | - <field> | |
| 1499 | - <field_name>all_content</field_name> | |
| 1500 | - <key_value>32</key_value> | |
| 1501 | - <target_name>fcno32</target_name> | |
| 1502 | - <target_type>String</target_type> | |
| 1503 | - <target_format/> | |
| 1504 | - <target_length>-1</target_length> | |
| 1505 | - <target_precision>-1</target_precision> | |
| 1506 | - <target_decimal_symbol/> | |
| 1507 | - <target_grouping_symbol/> | |
| 1508 | - <target_currency_symbol/> | |
| 1509 | - <target_null_string/> | |
| 1510 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1511 | - </field> | |
| 1512 | - <field> | |
| 1513 | - <field_name>all_content</field_name> | |
| 1514 | - <key_value>33</key_value> | |
| 1515 | - <target_name>fcno33</target_name> | |
| 1516 | - <target_type>String</target_type> | |
| 1517 | - <target_format/> | |
| 1518 | - <target_length>-1</target_length> | |
| 1519 | - <target_precision>-1</target_precision> | |
| 1520 | - <target_decimal_symbol/> | |
| 1521 | - <target_grouping_symbol/> | |
| 1522 | - <target_currency_symbol/> | |
| 1523 | - <target_null_string/> | |
| 1524 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1525 | - </field> | |
| 1526 | - <field> | |
| 1527 | - <field_name>all_content</field_name> | |
| 1528 | - <key_value>34</key_value> | |
| 1529 | - <target_name>fcno34</target_name> | |
| 1530 | - <target_type>String</target_type> | |
| 1531 | - <target_format/> | |
| 1532 | - <target_length>-1</target_length> | |
| 1533 | - <target_precision>-1</target_precision> | |
| 1534 | - <target_decimal_symbol/> | |
| 1535 | - <target_grouping_symbol/> | |
| 1536 | - <target_currency_symbol/> | |
| 1537 | - <target_null_string/> | |
| 1538 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1539 | - </field> | |
| 1540 | - <field> | |
| 1541 | - <field_name>all_content</field_name> | |
| 1542 | - <key_value>35</key_value> | |
| 1543 | - <target_name>fcno35</target_name> | |
| 1544 | - <target_type>String</target_type> | |
| 1545 | - <target_format/> | |
| 1546 | - <target_length>-1</target_length> | |
| 1547 | - <target_precision>-1</target_precision> | |
| 1548 | - <target_decimal_symbol/> | |
| 1549 | - <target_grouping_symbol/> | |
| 1550 | - <target_currency_symbol/> | |
| 1551 | - <target_null_string/> | |
| 1552 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1553 | - </field> | |
| 1554 | - <field> | |
| 1555 | - <field_name>all_content</field_name> | |
| 1556 | - <key_value>36</key_value> | |
| 1557 | - <target_name>fcno36</target_name> | |
| 1558 | - <target_type>String</target_type> | |
| 1559 | - <target_format/> | |
| 1560 | - <target_length>-1</target_length> | |
| 1561 | - <target_precision>-1</target_precision> | |
| 1562 | - <target_decimal_symbol/> | |
| 1563 | - <target_grouping_symbol/> | |
| 1564 | - <target_currency_symbol/> | |
| 1565 | - <target_null_string/> | |
| 1566 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1567 | - </field> | |
| 1568 | - <field> | |
| 1569 | - <field_name>all_content</field_name> | |
| 1570 | - <key_value>37</key_value> | |
| 1571 | - <target_name>fcno37</target_name> | |
| 1572 | - <target_type>String</target_type> | |
| 1573 | - <target_format/> | |
| 1574 | - <target_length>-1</target_length> | |
| 1575 | - <target_precision>-1</target_precision> | |
| 1576 | - <target_decimal_symbol/> | |
| 1577 | - <target_grouping_symbol/> | |
| 1578 | - <target_currency_symbol/> | |
| 1579 | - <target_null_string/> | |
| 1580 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1581 | - </field> | |
| 1582 | - <field> | |
| 1583 | - <field_name>all_content</field_name> | |
| 1584 | - <key_value>38</key_value> | |
| 1585 | - <target_name>fcno38</target_name> | |
| 1586 | - <target_type>String</target_type> | |
| 1587 | - <target_format/> | |
| 1588 | - <target_length>-1</target_length> | |
| 1589 | - <target_precision>-1</target_precision> | |
| 1590 | - <target_decimal_symbol/> | |
| 1591 | - <target_grouping_symbol/> | |
| 1592 | - <target_currency_symbol/> | |
| 1593 | - <target_null_string/> | |
| 1594 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1595 | - </field> | |
| 1596 | - <field> | |
| 1597 | - <field_name>all_content</field_name> | |
| 1598 | - <key_value>39</key_value> | |
| 1599 | - <target_name>fcno39</target_name> | |
| 1600 | - <target_type>String</target_type> | |
| 1601 | - <target_format/> | |
| 1602 | - <target_length>-1</target_length> | |
| 1603 | - <target_precision>-1</target_precision> | |
| 1604 | - <target_decimal_symbol/> | |
| 1605 | - <target_grouping_symbol/> | |
| 1606 | - <target_currency_symbol/> | |
| 1607 | - <target_null_string/> | |
| 1608 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1609 | - </field> | |
| 1610 | - <field> | |
| 1611 | - <field_name>all_content</field_name> | |
| 1612 | - <key_value>40</key_value> | |
| 1613 | - <target_name>fcno40</target_name> | |
| 1614 | - <target_type>String</target_type> | |
| 1615 | - <target_format/> | |
| 1616 | - <target_length>-1</target_length> | |
| 1617 | - <target_precision>-1</target_precision> | |
| 1618 | - <target_decimal_symbol/> | |
| 1619 | - <target_grouping_symbol/> | |
| 1620 | - <target_currency_symbol/> | |
| 1621 | - <target_null_string/> | |
| 1622 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1623 | - </field> | |
| 1624 | - <field> | |
| 1625 | - <field_name>all_content</field_name> | |
| 1626 | - <key_value>41</key_value> | |
| 1627 | - <target_name>fcno41</target_name> | |
| 1628 | - <target_type>String</target_type> | |
| 1629 | - <target_format/> | |
| 1630 | - <target_length>-1</target_length> | |
| 1631 | - <target_precision>-1</target_precision> | |
| 1632 | - <target_decimal_symbol/> | |
| 1633 | - <target_grouping_symbol/> | |
| 1634 | - <target_currency_symbol/> | |
| 1635 | - <target_null_string/> | |
| 1636 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1637 | - </field> | |
| 1638 | - <field> | |
| 1639 | - <field_name>all_content</field_name> | |
| 1640 | - <key_value>42</key_value> | |
| 1641 | - <target_name>fcno42</target_name> | |
| 1642 | - <target_type>String</target_type> | |
| 1643 | - <target_format/> | |
| 1644 | - <target_length>-1</target_length> | |
| 1645 | - <target_precision>-1</target_precision> | |
| 1646 | - <target_decimal_symbol/> | |
| 1647 | - <target_grouping_symbol/> | |
| 1648 | - <target_currency_symbol/> | |
| 1649 | - <target_null_string/> | |
| 1650 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1651 | - </field> | |
| 1652 | - <field> | |
| 1653 | - <field_name>all_content</field_name> | |
| 1654 | - <key_value>43</key_value> | |
| 1655 | - <target_name>fcno43</target_name> | |
| 1656 | - <target_type>String</target_type> | |
| 1657 | - <target_format/> | |
| 1658 | - <target_length>-1</target_length> | |
| 1659 | - <target_precision>-1</target_precision> | |
| 1660 | - <target_decimal_symbol/> | |
| 1661 | - <target_grouping_symbol/> | |
| 1662 | - <target_currency_symbol/> | |
| 1663 | - <target_null_string/> | |
| 1664 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1665 | - </field> | |
| 1666 | - <field> | |
| 1667 | - <field_name>all_content</field_name> | |
| 1668 | - <key_value>44</key_value> | |
| 1669 | - <target_name>fcno44</target_name> | |
| 1670 | - <target_type>String</target_type> | |
| 1671 | - <target_format/> | |
| 1672 | - <target_length>-1</target_length> | |
| 1673 | - <target_precision>-1</target_precision> | |
| 1674 | - <target_decimal_symbol/> | |
| 1675 | - <target_grouping_symbol/> | |
| 1676 | - <target_currency_symbol/> | |
| 1677 | - <target_null_string/> | |
| 1678 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1679 | - </field> | |
| 1680 | - <field> | |
| 1681 | - <field_name>all_content</field_name> | |
| 1682 | - <key_value>45</key_value> | |
| 1683 | - <target_name>fcno45</target_name> | |
| 1684 | - <target_type>String</target_type> | |
| 1685 | - <target_format/> | |
| 1686 | - <target_length>-1</target_length> | |
| 1687 | - <target_precision>-1</target_precision> | |
| 1688 | - <target_decimal_symbol/> | |
| 1689 | - <target_grouping_symbol/> | |
| 1690 | - <target_currency_symbol/> | |
| 1691 | - <target_null_string/> | |
| 1692 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1693 | - </field> | |
| 1694 | - <field> | |
| 1695 | - <field_name>all_content</field_name> | |
| 1696 | - <key_value>46</key_value> | |
| 1697 | - <target_name>fcno46</target_name> | |
| 1698 | - <target_type>String</target_type> | |
| 1699 | - <target_format/> | |
| 1700 | - <target_length>-1</target_length> | |
| 1701 | - <target_precision>-1</target_precision> | |
| 1702 | - <target_decimal_symbol/> | |
| 1703 | - <target_grouping_symbol/> | |
| 1704 | - <target_currency_symbol/> | |
| 1705 | - <target_null_string/> | |
| 1706 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1707 | - </field> | |
| 1708 | - <field> | |
| 1709 | - <field_name>all_content</field_name> | |
| 1710 | - <key_value>47</key_value> | |
| 1711 | - <target_name>fcno47</target_name> | |
| 1712 | - <target_type>String</target_type> | |
| 1713 | - <target_format/> | |
| 1714 | - <target_length>-1</target_length> | |
| 1715 | - <target_precision>-1</target_precision> | |
| 1716 | - <target_decimal_symbol/> | |
| 1717 | - <target_grouping_symbol/> | |
| 1718 | - <target_currency_symbol/> | |
| 1719 | - <target_null_string/> | |
| 1720 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1721 | - </field> | |
| 1722 | - <field> | |
| 1723 | - <field_name>all_content</field_name> | |
| 1724 | - <key_value>48</key_value> | |
| 1725 | - <target_name>fcno48</target_name> | |
| 1726 | - <target_type>String</target_type> | |
| 1727 | - <target_format/> | |
| 1728 | - <target_length>-1</target_length> | |
| 1729 | - <target_precision>-1</target_precision> | |
| 1730 | - <target_decimal_symbol/> | |
| 1731 | - <target_grouping_symbol/> | |
| 1732 | - <target_currency_symbol/> | |
| 1733 | - <target_null_string/> | |
| 1734 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1735 | - </field> | |
| 1736 | - <field> | |
| 1737 | - <field_name>all_content</field_name> | |
| 1738 | - <key_value>49</key_value> | |
| 1739 | - <target_name>fcno49</target_name> | |
| 1740 | - <target_type>String</target_type> | |
| 1741 | - <target_format/> | |
| 1742 | - <target_length>-1</target_length> | |
| 1743 | - <target_precision>-1</target_precision> | |
| 1744 | - <target_decimal_symbol/> | |
| 1745 | - <target_grouping_symbol/> | |
| 1746 | - <target_currency_symbol/> | |
| 1747 | - <target_null_string/> | |
| 1748 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1749 | - </field> | |
| 1750 | - <field> | |
| 1751 | - <field_name>all_content</field_name> | |
| 1752 | - <key_value>50</key_value> | |
| 1753 | - <target_name>fcno50</target_name> | |
| 1754 | - <target_type>String</target_type> | |
| 1755 | - <target_format/> | |
| 1756 | - <target_length>-1</target_length> | |
| 1757 | - <target_precision>-1</target_precision> | |
| 1758 | - <target_decimal_symbol/> | |
| 1759 | - <target_grouping_symbol/> | |
| 1760 | - <target_currency_symbol/> | |
| 1761 | - <target_null_string/> | |
| 1762 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1763 | - </field> | |
| 1764 | - <field> | |
| 1765 | - <field_name>all_content</field_name> | |
| 1766 | - <key_value>51</key_value> | |
| 1767 | - <target_name>fcno51</target_name> | |
| 1768 | - <target_type>String</target_type> | |
| 1769 | - <target_format/> | |
| 1770 | - <target_length>-1</target_length> | |
| 1771 | - <target_precision>-1</target_precision> | |
| 1772 | - <target_decimal_symbol/> | |
| 1773 | - <target_grouping_symbol/> | |
| 1774 | - <target_currency_symbol/> | |
| 1775 | - <target_null_string/> | |
| 1776 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1777 | - </field> | |
| 1778 | - <field> | |
| 1779 | - <field_name>all_content</field_name> | |
| 1780 | - <key_value>52</key_value> | |
| 1781 | - <target_name>fcno52</target_name> | |
| 1782 | - <target_type>String</target_type> | |
| 1783 | - <target_format/> | |
| 1784 | - <target_length>-1</target_length> | |
| 1785 | - <target_precision>-1</target_precision> | |
| 1786 | - <target_decimal_symbol/> | |
| 1787 | - <target_grouping_symbol/> | |
| 1788 | - <target_currency_symbol/> | |
| 1789 | - <target_null_string/> | |
| 1790 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1791 | - </field> | |
| 1792 | - <field> | |
| 1793 | - <field_name>all_content</field_name> | |
| 1794 | - <key_value>53</key_value> | |
| 1795 | - <target_name>fcno53</target_name> | |
| 1796 | - <target_type>String</target_type> | |
| 1797 | - <target_format/> | |
| 1798 | - <target_length>-1</target_length> | |
| 1799 | - <target_precision>-1</target_precision> | |
| 1800 | - <target_decimal_symbol/> | |
| 1801 | - <target_grouping_symbol/> | |
| 1802 | - <target_currency_symbol/> | |
| 1803 | - <target_null_string/> | |
| 1804 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1805 | - </field> | |
| 1806 | - <field> | |
| 1807 | - <field_name>all_content</field_name> | |
| 1808 | - <key_value>54</key_value> | |
| 1809 | - <target_name>fcno54</target_name> | |
| 1810 | - <target_type>String</target_type> | |
| 1811 | - <target_format/> | |
| 1812 | - <target_length>-1</target_length> | |
| 1813 | - <target_precision>-1</target_precision> | |
| 1814 | - <target_decimal_symbol/> | |
| 1815 | - <target_grouping_symbol/> | |
| 1816 | - <target_currency_symbol/> | |
| 1817 | - <target_null_string/> | |
| 1818 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1819 | - </field> | |
| 1820 | - <field> | |
| 1821 | - <field_name>all_content</field_name> | |
| 1822 | - <key_value>55</key_value> | |
| 1823 | - <target_name>fcno55</target_name> | |
| 1824 | - <target_type>String</target_type> | |
| 1825 | - <target_format/> | |
| 1826 | - <target_length>-1</target_length> | |
| 1827 | - <target_precision>-1</target_precision> | |
| 1828 | - <target_decimal_symbol/> | |
| 1829 | - <target_grouping_symbol/> | |
| 1830 | - <target_currency_symbol/> | |
| 1831 | - <target_null_string/> | |
| 1832 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1833 | - </field> | |
| 1834 | - <field> | |
| 1835 | - <field_name>all_content</field_name> | |
| 1836 | - <key_value>56</key_value> | |
| 1837 | - <target_name>fcno56</target_name> | |
| 1838 | - <target_type>String</target_type> | |
| 1839 | - <target_format/> | |
| 1840 | - <target_length>-1</target_length> | |
| 1841 | - <target_precision>-1</target_precision> | |
| 1842 | - <target_decimal_symbol/> | |
| 1843 | - <target_grouping_symbol/> | |
| 1844 | - <target_currency_symbol/> | |
| 1845 | - <target_null_string/> | |
| 1846 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1847 | - </field> | |
| 1848 | - <field> | |
| 1849 | - <field_name>all_content</field_name> | |
| 1850 | - <key_value>57</key_value> | |
| 1851 | - <target_name>fcno57</target_name> | |
| 1852 | - <target_type>String</target_type> | |
| 1853 | - <target_format/> | |
| 1854 | - <target_length>-1</target_length> | |
| 1855 | - <target_precision>-1</target_precision> | |
| 1856 | - <target_decimal_symbol/> | |
| 1857 | - <target_grouping_symbol/> | |
| 1858 | - <target_currency_symbol/> | |
| 1859 | - <target_null_string/> | |
| 1860 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1861 | - </field> | |
| 1862 | - <field> | |
| 1863 | - <field_name>all_content</field_name> | |
| 1864 | - <key_value>58</key_value> | |
| 1865 | - <target_name>fcno58</target_name> | |
| 1866 | - <target_type>String</target_type> | |
| 1867 | - <target_format/> | |
| 1868 | - <target_length>-1</target_length> | |
| 1869 | - <target_precision>-1</target_precision> | |
| 1870 | - <target_decimal_symbol/> | |
| 1871 | - <target_grouping_symbol/> | |
| 1872 | - <target_currency_symbol/> | |
| 1873 | - <target_null_string/> | |
| 1874 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1875 | - </field> | |
| 1876 | - <field> | |
| 1877 | - <field_name>all_content</field_name> | |
| 1878 | - <key_value>59</key_value> | |
| 1879 | - <target_name>fcno59</target_name> | |
| 1880 | - <target_type>String</target_type> | |
| 1881 | - <target_format/> | |
| 1882 | - <target_length>-1</target_length> | |
| 1883 | - <target_precision>-1</target_precision> | |
| 1884 | - <target_decimal_symbol/> | |
| 1885 | - <target_grouping_symbol/> | |
| 1886 | - <target_currency_symbol/> | |
| 1887 | - <target_null_string/> | |
| 1888 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1889 | - </field> | |
| 1890 | - <field> | |
| 1891 | - <field_name>all_content</field_name> | |
| 1892 | - <key_value>60</key_value> | |
| 1893 | - <target_name>fcno60</target_name> | |
| 1894 | - <target_type>String</target_type> | |
| 1895 | - <target_format/> | |
| 1896 | - <target_length>-1</target_length> | |
| 1897 | - <target_precision>-1</target_precision> | |
| 1898 | - <target_decimal_symbol/> | |
| 1899 | - <target_grouping_symbol/> | |
| 1900 | - <target_currency_symbol/> | |
| 1901 | - <target_null_string/> | |
| 1902 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1903 | - </field> | |
| 1904 | - <field> | |
| 1905 | - <field_name>all_content</field_name> | |
| 1906 | - <key_value>61</key_value> | |
| 1907 | - <target_name>fcno61</target_name> | |
| 1908 | - <target_type>String</target_type> | |
| 1909 | - <target_format/> | |
| 1910 | - <target_length>-1</target_length> | |
| 1911 | - <target_precision>-1</target_precision> | |
| 1912 | - <target_decimal_symbol/> | |
| 1913 | - <target_grouping_symbol/> | |
| 1914 | - <target_currency_symbol/> | |
| 1915 | - <target_null_string/> | |
| 1916 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1917 | - </field> | |
| 1918 | - <field> | |
| 1919 | - <field_name>all_content</field_name> | |
| 1920 | - <key_value>62</key_value> | |
| 1921 | - <target_name>fcno62</target_name> | |
| 1922 | - <target_type>String</target_type> | |
| 1923 | - <target_format/> | |
| 1924 | - <target_length>-1</target_length> | |
| 1925 | - <target_precision>-1</target_precision> | |
| 1926 | - <target_decimal_symbol/> | |
| 1927 | - <target_grouping_symbol/> | |
| 1928 | - <target_currency_symbol/> | |
| 1929 | - <target_null_string/> | |
| 1930 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1931 | - </field> | |
| 1932 | - <field> | |
| 1933 | - <field_name>all_content</field_name> | |
| 1934 | - <key_value>63</key_value> | |
| 1935 | - <target_name>fcno63</target_name> | |
| 1936 | - <target_type>String</target_type> | |
| 1937 | - <target_format/> | |
| 1938 | - <target_length>-1</target_length> | |
| 1939 | - <target_precision>-1</target_precision> | |
| 1940 | - <target_decimal_symbol/> | |
| 1941 | - <target_grouping_symbol/> | |
| 1942 | - <target_currency_symbol/> | |
| 1943 | - <target_null_string/> | |
| 1944 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1945 | - </field> | |
| 1946 | - <field> | |
| 1947 | - <field_name>all_content</field_name> | |
| 1948 | - <key_value>64</key_value> | |
| 1949 | - <target_name>fcno64</target_name> | |
| 1950 | - <target_type>String</target_type> | |
| 1951 | - <target_format/> | |
| 1952 | - <target_length>-1</target_length> | |
| 1953 | - <target_precision>-1</target_precision> | |
| 1954 | - <target_decimal_symbol/> | |
| 1955 | - <target_grouping_symbol/> | |
| 1956 | - <target_currency_symbol/> | |
| 1957 | - <target_null_string/> | |
| 1958 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1959 | - </field> | |
| 1960 | - <field> | |
| 1961 | - <field_name>all_content</field_name> | |
| 1962 | - <key_value>65</key_value> | |
| 1963 | - <target_name>fcno65</target_name> | |
| 1964 | - <target_type>String</target_type> | |
| 1965 | - <target_format/> | |
| 1966 | - <target_length>-1</target_length> | |
| 1967 | - <target_precision>-1</target_precision> | |
| 1968 | - <target_decimal_symbol/> | |
| 1969 | - <target_grouping_symbol/> | |
| 1970 | - <target_currency_symbol/> | |
| 1971 | - <target_null_string/> | |
| 1972 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1973 | - </field> | |
| 1974 | - <field> | |
| 1975 | - <field_name>all_content</field_name> | |
| 1976 | - <key_value>66</key_value> | |
| 1977 | - <target_name>fcno66</target_name> | |
| 1978 | - <target_type>String</target_type> | |
| 1979 | - <target_format/> | |
| 1980 | - <target_length>-1</target_length> | |
| 1981 | - <target_precision>-1</target_precision> | |
| 1982 | - <target_decimal_symbol/> | |
| 1983 | - <target_grouping_symbol/> | |
| 1984 | - <target_currency_symbol/> | |
| 1985 | - <target_null_string/> | |
| 1986 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1987 | - </field> | |
| 1988 | - <field> | |
| 1989 | - <field_name>all_content</field_name> | |
| 1990 | - <key_value>67</key_value> | |
| 1991 | - <target_name>fcno67</target_name> | |
| 1992 | - <target_type>String</target_type> | |
| 1993 | - <target_format/> | |
| 1994 | - <target_length>-1</target_length> | |
| 1995 | - <target_precision>-1</target_precision> | |
| 1996 | - <target_decimal_symbol/> | |
| 1997 | - <target_grouping_symbol/> | |
| 1998 | - <target_currency_symbol/> | |
| 1999 | - <target_null_string/> | |
| 2000 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2001 | - </field> | |
| 2002 | - <field> | |
| 2003 | - <field_name>all_content</field_name> | |
| 2004 | - <key_value>68</key_value> | |
| 2005 | - <target_name>fcno68</target_name> | |
| 2006 | - <target_type>String</target_type> | |
| 2007 | - <target_format/> | |
| 2008 | - <target_length>-1</target_length> | |
| 2009 | - <target_precision>-1</target_precision> | |
| 2010 | - <target_decimal_symbol/> | |
| 2011 | - <target_grouping_symbol/> | |
| 2012 | - <target_currency_symbol/> | |
| 2013 | - <target_null_string/> | |
| 2014 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2015 | - </field> | |
| 2016 | - <field> | |
| 2017 | - <field_name>all_content</field_name> | |
| 2018 | - <key_value>69</key_value> | |
| 2019 | - <target_name>fcno69</target_name> | |
| 2020 | - <target_type>String</target_type> | |
| 2021 | - <target_format/> | |
| 2022 | - <target_length>-1</target_length> | |
| 2023 | - <target_precision>-1</target_precision> | |
| 2024 | - <target_decimal_symbol/> | |
| 2025 | - <target_grouping_symbol/> | |
| 2026 | - <target_currency_symbol/> | |
| 2027 | - <target_null_string/> | |
| 2028 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2029 | - </field> | |
| 2030 | - <field> | |
| 2031 | - <field_name>all_content</field_name> | |
| 2032 | - <key_value>70</key_value> | |
| 2033 | - <target_name>fcno70</target_name> | |
| 2034 | - <target_type>String</target_type> | |
| 2035 | - <target_format/> | |
| 2036 | - <target_length>-1</target_length> | |
| 2037 | - <target_precision>-1</target_precision> | |
| 2038 | - <target_decimal_symbol/> | |
| 2039 | - <target_grouping_symbol/> | |
| 2040 | - <target_currency_symbol/> | |
| 2041 | - <target_null_string/> | |
| 2042 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2043 | - </field> | |
| 2044 | - <field> | |
| 2045 | - <field_name>all_content</field_name> | |
| 2046 | - <key_value>71</key_value> | |
| 2047 | - <target_name>fcno71</target_name> | |
| 2048 | - <target_type>String</target_type> | |
| 2049 | - <target_format/> | |
| 2050 | - <target_length>-1</target_length> | |
| 2051 | - <target_precision>-1</target_precision> | |
| 2052 | - <target_decimal_symbol/> | |
| 2053 | - <target_grouping_symbol/> | |
| 2054 | - <target_currency_symbol/> | |
| 2055 | - <target_null_string/> | |
| 2056 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2057 | - </field> | |
| 2058 | - <field> | |
| 2059 | - <field_name>all_content</field_name> | |
| 2060 | - <key_value>72</key_value> | |
| 2061 | - <target_name>fcno72</target_name> | |
| 2062 | - <target_type>String</target_type> | |
| 2063 | - <target_format/> | |
| 2064 | - <target_length>-1</target_length> | |
| 2065 | - <target_precision>-1</target_precision> | |
| 2066 | - <target_decimal_symbol/> | |
| 2067 | - <target_grouping_symbol/> | |
| 2068 | - <target_currency_symbol/> | |
| 2069 | - <target_null_string/> | |
| 2070 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2071 | - </field> | |
| 2072 | - <field> | |
| 2073 | - <field_name>all_content</field_name> | |
| 2074 | - <key_value>73</key_value> | |
| 2075 | - <target_name>fcno73</target_name> | |
| 2076 | - <target_type>String</target_type> | |
| 2077 | - <target_format/> | |
| 2078 | - <target_length>-1</target_length> | |
| 2079 | - <target_precision>-1</target_precision> | |
| 2080 | - <target_decimal_symbol/> | |
| 2081 | - <target_grouping_symbol/> | |
| 2082 | - <target_currency_symbol/> | |
| 2083 | - <target_null_string/> | |
| 2084 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2085 | - </field> | |
| 2086 | - <field> | |
| 2087 | - <field_name>all_content</field_name> | |
| 2088 | - <key_value>74</key_value> | |
| 2089 | - <target_name>fcno74</target_name> | |
| 2090 | - <target_type>String</target_type> | |
| 2091 | - <target_format/> | |
| 2092 | - <target_length>-1</target_length> | |
| 2093 | - <target_precision>-1</target_precision> | |
| 2094 | - <target_decimal_symbol/> | |
| 2095 | - <target_grouping_symbol/> | |
| 2096 | - <target_currency_symbol/> | |
| 2097 | - <target_null_string/> | |
| 2098 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2099 | - </field> | |
| 2100 | - <field> | |
| 2101 | - <field_name>all_content</field_name> | |
| 2102 | - <key_value>75</key_value> | |
| 2103 | - <target_name>fcno75</target_name> | |
| 2104 | - <target_type>String</target_type> | |
| 2105 | - <target_format/> | |
| 2106 | - <target_length>-1</target_length> | |
| 2107 | - <target_precision>-1</target_precision> | |
| 2108 | - <target_decimal_symbol/> | |
| 2109 | - <target_grouping_symbol/> | |
| 2110 | - <target_currency_symbol/> | |
| 2111 | - <target_null_string/> | |
| 2112 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2113 | - </field> | |
| 2114 | - <field> | |
| 2115 | - <field_name>all_content</field_name> | |
| 2116 | - <key_value>76</key_value> | |
| 2117 | - <target_name>fcno76</target_name> | |
| 2118 | - <target_type>String</target_type> | |
| 2119 | - <target_format/> | |
| 2120 | - <target_length>-1</target_length> | |
| 2121 | - <target_precision>-1</target_precision> | |
| 2122 | - <target_decimal_symbol/> | |
| 2123 | - <target_grouping_symbol/> | |
| 2124 | - <target_currency_symbol/> | |
| 2125 | - <target_null_string/> | |
| 2126 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2127 | - </field> | |
| 2128 | - <field> | |
| 2129 | - <field_name>all_content</field_name> | |
| 2130 | - <key_value>77</key_value> | |
| 2131 | - <target_name>fcno77</target_name> | |
| 2132 | - <target_type>String</target_type> | |
| 2133 | - <target_format/> | |
| 2134 | - <target_length>-1</target_length> | |
| 2135 | - <target_precision>-1</target_precision> | |
| 2136 | - <target_decimal_symbol/> | |
| 2137 | - <target_grouping_symbol/> | |
| 2138 | - <target_currency_symbol/> | |
| 2139 | - <target_null_string/> | |
| 2140 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2141 | - </field> | |
| 2142 | - <field> | |
| 2143 | - <field_name>all_content</field_name> | |
| 2144 | - <key_value>78</key_value> | |
| 2145 | - <target_name>fcno78</target_name> | |
| 2146 | - <target_type>String</target_type> | |
| 2147 | - <target_format/> | |
| 2148 | - <target_length>-1</target_length> | |
| 2149 | - <target_precision>-1</target_precision> | |
| 2150 | - <target_decimal_symbol/> | |
| 2151 | - <target_grouping_symbol/> | |
| 2152 | - <target_currency_symbol/> | |
| 2153 | - <target_null_string/> | |
| 2154 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2155 | - </field> | |
| 2156 | - <field> | |
| 2157 | - <field_name>all_content</field_name> | |
| 2158 | - <key_value>79</key_value> | |
| 2159 | - <target_name>fcno79</target_name> | |
| 2160 | - <target_type>String</target_type> | |
| 2161 | - <target_format/> | |
| 2162 | - <target_length>-1</target_length> | |
| 2163 | - <target_precision>-1</target_precision> | |
| 2164 | - <target_decimal_symbol/> | |
| 2165 | - <target_grouping_symbol/> | |
| 2166 | - <target_currency_symbol/> | |
| 2167 | - <target_null_string/> | |
| 2168 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2169 | - </field> | |
| 2170 | - <field> | |
| 2171 | - <field_name>all_content</field_name> | |
| 2172 | - <key_value>80</key_value> | |
| 2173 | - <target_name>fcno80</target_name> | |
| 2174 | - <target_type>String</target_type> | |
| 2175 | - <target_format/> | |
| 2176 | - <target_length>-1</target_length> | |
| 2177 | - <target_precision>-1</target_precision> | |
| 2178 | - <target_decimal_symbol/> | |
| 2179 | - <target_grouping_symbol/> | |
| 2180 | - <target_currency_symbol/> | |
| 2181 | - <target_null_string/> | |
| 2182 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2183 | - </field> | |
| 2184 | - <field> | |
| 2185 | - <field_name>all_content</field_name> | |
| 2186 | - <key_value>81</key_value> | |
| 2187 | - <target_name>fcno81</target_name> | |
| 2188 | - <target_type>String</target_type> | |
| 2189 | - <target_format/> | |
| 2190 | - <target_length>-1</target_length> | |
| 2191 | - <target_precision>-1</target_precision> | |
| 2192 | - <target_decimal_symbol/> | |
| 2193 | - <target_grouping_symbol/> | |
| 2194 | - <target_currency_symbol/> | |
| 2195 | - <target_null_string/> | |
| 2196 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2197 | - </field> | |
| 2198 | - <field> | |
| 2199 | - <field_name>all_content</field_name> | |
| 2200 | - <key_value>82</key_value> | |
| 2201 | - <target_name>fcno82</target_name> | |
| 2202 | - <target_type>String</target_type> | |
| 2203 | - <target_format/> | |
| 2204 | - <target_length>-1</target_length> | |
| 2205 | - <target_precision>-1</target_precision> | |
| 2206 | - <target_decimal_symbol/> | |
| 2207 | - <target_grouping_symbol/> | |
| 2208 | - <target_currency_symbol/> | |
| 2209 | - <target_null_string/> | |
| 2210 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2211 | - </field> | |
| 2212 | - <field> | |
| 2213 | - <field_name>all_content</field_name> | |
| 2214 | - <key_value>83</key_value> | |
| 2215 | - <target_name>fcno83</target_name> | |
| 2216 | - <target_type>String</target_type> | |
| 2217 | - <target_format/> | |
| 2218 | - <target_length>-1</target_length> | |
| 2219 | - <target_precision>-1</target_precision> | |
| 2220 | - <target_decimal_symbol/> | |
| 2221 | - <target_grouping_symbol/> | |
| 2222 | - <target_currency_symbol/> | |
| 2223 | - <target_null_string/> | |
| 2224 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2225 | - </field> | |
| 2226 | - <field> | |
| 2227 | - <field_name>all_content</field_name> | |
| 2228 | - <key_value>84</key_value> | |
| 2229 | - <target_name>fcno84</target_name> | |
| 2230 | - <target_type>String</target_type> | |
| 2231 | - <target_format/> | |
| 2232 | - <target_length>-1</target_length> | |
| 2233 | - <target_precision>-1</target_precision> | |
| 2234 | - <target_decimal_symbol/> | |
| 2235 | - <target_grouping_symbol/> | |
| 2236 | - <target_currency_symbol/> | |
| 2237 | - <target_null_string/> | |
| 2238 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2239 | - </field> | |
| 2240 | - <field> | |
| 2241 | - <field_name>all_content</field_name> | |
| 2242 | - <key_value>85</key_value> | |
| 2243 | - <target_name>fcno85</target_name> | |
| 2244 | - <target_type>String</target_type> | |
| 2245 | - <target_format/> | |
| 2246 | - <target_length>-1</target_length> | |
| 2247 | - <target_precision>-1</target_precision> | |
| 2248 | - <target_decimal_symbol/> | |
| 2249 | - <target_grouping_symbol/> | |
| 2250 | - <target_currency_symbol/> | |
| 2251 | - <target_null_string/> | |
| 2252 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2253 | - </field> | |
| 2254 | - <field> | |
| 2255 | - <field_name>all_content</field_name> | |
| 2256 | - <key_value>86</key_value> | |
| 2257 | - <target_name>fcno86</target_name> | |
| 2258 | - <target_type>String</target_type> | |
| 2259 | - <target_format/> | |
| 2260 | - <target_length>-1</target_length> | |
| 2261 | - <target_precision>-1</target_precision> | |
| 2262 | - <target_decimal_symbol/> | |
| 2263 | - <target_grouping_symbol/> | |
| 2264 | - <target_currency_symbol/> | |
| 2265 | - <target_null_string/> | |
| 2266 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2267 | - </field> | |
| 2268 | - <field> | |
| 2269 | - <field_name>all_content</field_name> | |
| 2270 | - <key_value>87</key_value> | |
| 2271 | - <target_name>fcno87</target_name> | |
| 2272 | - <target_type>String</target_type> | |
| 2273 | - <target_format/> | |
| 2274 | - <target_length>-1</target_length> | |
| 2275 | - <target_precision>-1</target_precision> | |
| 2276 | - <target_decimal_symbol/> | |
| 2277 | - <target_grouping_symbol/> | |
| 2278 | - <target_currency_symbol/> | |
| 2279 | - <target_null_string/> | |
| 2280 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2281 | - </field> | |
| 2282 | - <field> | |
| 2283 | - <field_name>all_content</field_name> | |
| 2284 | - <key_value>88</key_value> | |
| 2285 | - <target_name>fcno88</target_name> | |
| 2286 | - <target_type>String</target_type> | |
| 2287 | - <target_format/> | |
| 2288 | - <target_length>-1</target_length> | |
| 2289 | - <target_precision>-1</target_precision> | |
| 2290 | - <target_decimal_symbol/> | |
| 2291 | - <target_grouping_symbol/> | |
| 2292 | - <target_currency_symbol/> | |
| 2293 | - <target_null_string/> | |
| 2294 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2295 | - </field> | |
| 2296 | - <field> | |
| 2297 | - <field_name>all_content</field_name> | |
| 2298 | - <key_value>89</key_value> | |
| 2299 | - <target_name>fcno89</target_name> | |
| 2300 | - <target_type>String</target_type> | |
| 2301 | - <target_format/> | |
| 2302 | - <target_length>-1</target_length> | |
| 2303 | - <target_precision>-1</target_precision> | |
| 2304 | - <target_decimal_symbol/> | |
| 2305 | - <target_grouping_symbol/> | |
| 2306 | - <target_currency_symbol/> | |
| 2307 | - <target_null_string/> | |
| 2308 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2309 | - </field> | |
| 2310 | - <field> | |
| 2311 | - <field_name>all_content</field_name> | |
| 2312 | - <key_value>90</key_value> | |
| 2313 | - <target_name>fcno90</target_name> | |
| 2314 | - <target_type>String</target_type> | |
| 2315 | - <target_format/> | |
| 2316 | - <target_length>-1</target_length> | |
| 2317 | - <target_precision>-1</target_precision> | |
| 2318 | - <target_decimal_symbol/> | |
| 2319 | - <target_grouping_symbol/> | |
| 2320 | - <target_currency_symbol/> | |
| 2321 | - <target_null_string/> | |
| 2322 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2323 | - </field> | |
| 2324 | - <field> | |
| 2325 | - <field_name>all_content</field_name> | |
| 2326 | - <key_value>91</key_value> | |
| 2327 | - <target_name>fcno91</target_name> | |
| 2328 | - <target_type>String</target_type> | |
| 2329 | - <target_format/> | |
| 2330 | - <target_length>-1</target_length> | |
| 2331 | - <target_precision>-1</target_precision> | |
| 2332 | - <target_decimal_symbol/> | |
| 2333 | - <target_grouping_symbol/> | |
| 2334 | - <target_currency_symbol/> | |
| 2335 | - <target_null_string/> | |
| 2336 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2337 | - </field> | |
| 2338 | - <field> | |
| 2339 | - <field_name>all_content</field_name> | |
| 2340 | - <key_value>92</key_value> | |
| 2341 | - <target_name>fcno92</target_name> | |
| 2342 | - <target_type>String</target_type> | |
| 2343 | - <target_format/> | |
| 2344 | - <target_length>-1</target_length> | |
| 2345 | - <target_precision>-1</target_precision> | |
| 2346 | - <target_decimal_symbol/> | |
| 2347 | - <target_grouping_symbol/> | |
| 2348 | - <target_currency_symbol/> | |
| 2349 | - <target_null_string/> | |
| 2350 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2351 | - </field> | |
| 2352 | - <field> | |
| 2353 | - <field_name>all_content</field_name> | |
| 2354 | - <key_value>93</key_value> | |
| 2355 | - <target_name>fcno93</target_name> | |
| 2356 | - <target_type>String</target_type> | |
| 2357 | - <target_format/> | |
| 2358 | - <target_length>-1</target_length> | |
| 2359 | - <target_precision>-1</target_precision> | |
| 2360 | - <target_decimal_symbol/> | |
| 2361 | - <target_grouping_symbol/> | |
| 2362 | - <target_currency_symbol/> | |
| 2363 | - <target_null_string/> | |
| 2364 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2365 | - </field> | |
| 2366 | - <field> | |
| 2367 | - <field_name>all_content</field_name> | |
| 2368 | - <key_value>94</key_value> | |
| 2369 | - <target_name>fcno94</target_name> | |
| 2370 | - <target_type>String</target_type> | |
| 2371 | - <target_format/> | |
| 2372 | - <target_length>-1</target_length> | |
| 2373 | - <target_precision>-1</target_precision> | |
| 2374 | - <target_decimal_symbol/> | |
| 2375 | - <target_grouping_symbol/> | |
| 2376 | - <target_currency_symbol/> | |
| 2377 | - <target_null_string/> | |
| 2378 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2379 | - </field> | |
| 2380 | - <field> | |
| 2381 | - <field_name>all_content</field_name> | |
| 2382 | - <key_value>95</key_value> | |
| 2383 | - <target_name>fcno95</target_name> | |
| 2384 | - <target_type>String</target_type> | |
| 2385 | - <target_format/> | |
| 2386 | - <target_length>-1</target_length> | |
| 2387 | - <target_precision>-1</target_precision> | |
| 2388 | - <target_decimal_symbol/> | |
| 2389 | - <target_grouping_symbol/> | |
| 2390 | - <target_currency_symbol/> | |
| 2391 | - <target_null_string/> | |
| 2392 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2393 | - </field> | |
| 2394 | - <field> | |
| 2395 | - <field_name>all_content</field_name> | |
| 2396 | - <key_value>96</key_value> | |
| 2397 | - <target_name>fcno96</target_name> | |
| 2398 | - <target_type>String</target_type> | |
| 2399 | - <target_format/> | |
| 2400 | - <target_length>-1</target_length> | |
| 2401 | - <target_precision>-1</target_precision> | |
| 2402 | - <target_decimal_symbol/> | |
| 2403 | - <target_grouping_symbol/> | |
| 2404 | - <target_currency_symbol/> | |
| 2405 | - <target_null_string/> | |
| 2406 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2407 | - </field> | |
| 2408 | - <field> | |
| 2409 | - <field_name>all_content</field_name> | |
| 2410 | - <key_value>97</key_value> | |
| 2411 | - <target_name>fcno97</target_name> | |
| 2412 | - <target_type>String</target_type> | |
| 2413 | - <target_format/> | |
| 2414 | - <target_length>-1</target_length> | |
| 2415 | - <target_precision>-1</target_precision> | |
| 2416 | - <target_decimal_symbol/> | |
| 2417 | - <target_grouping_symbol/> | |
| 2418 | - <target_currency_symbol/> | |
| 2419 | - <target_null_string/> | |
| 2420 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2421 | - </field> | |
| 2422 | - <field> | |
| 2423 | - <field_name>all_content</field_name> | |
| 2424 | - <key_value>98</key_value> | |
| 2425 | - <target_name>fcno98</target_name> | |
| 2426 | - <target_type>String</target_type> | |
| 2427 | - <target_format/> | |
| 2428 | - <target_length>-1</target_length> | |
| 2429 | - <target_precision>-1</target_precision> | |
| 2430 | - <target_decimal_symbol/> | |
| 2431 | - <target_grouping_symbol/> | |
| 2432 | - <target_currency_symbol/> | |
| 2433 | - <target_null_string/> | |
| 2434 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2435 | - </field> | |
| 2436 | - <field> | |
| 2437 | - <field_name>all_content</field_name> | |
| 2438 | - <key_value>99</key_value> | |
| 2439 | - <target_name>fcno99</target_name> | |
| 2440 | - <target_type>String</target_type> | |
| 2441 | - <target_format/> | |
| 2442 | - <target_length>-1</target_length> | |
| 2443 | - <target_precision>-1</target_precision> | |
| 2444 | - <target_decimal_symbol/> | |
| 2445 | - <target_grouping_symbol/> | |
| 2446 | - <target_currency_symbol/> | |
| 2447 | - <target_null_string/> | |
| 2448 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2449 | - </field> | |
| 2450 | - <field> | |
| 2451 | - <field_name>all_content</field_name> | |
| 2452 | - <key_value>100</key_value> | |
| 2453 | - <target_name>fcno100</target_name> | |
| 2454 | - <target_type>String</target_type> | |
| 2455 | - <target_format/> | |
| 2456 | - <target_length>-1</target_length> | |
| 2457 | - <target_precision>-1</target_precision> | |
| 2458 | - <target_decimal_symbol/> | |
| 2459 | - <target_grouping_symbol/> | |
| 2460 | - <target_currency_symbol/> | |
| 2461 | - <target_null_string/> | |
| 2462 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2463 | - </field> | |
| 2464 | - <field> | |
| 2465 | - <field_name>all_content</field_name> | |
| 2466 | - <key_value>101</key_value> | |
| 2467 | - <target_name>fcno101</target_name> | |
| 2468 | - <target_type>String</target_type> | |
| 2469 | - <target_format/> | |
| 2470 | - <target_length>-1</target_length> | |
| 2471 | - <target_precision>-1</target_precision> | |
| 2472 | - <target_decimal_symbol/> | |
| 2473 | - <target_grouping_symbol/> | |
| 2474 | - <target_currency_symbol/> | |
| 2475 | - <target_null_string/> | |
| 2476 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2477 | - </field> | |
| 2478 | - <field> | |
| 2479 | - <field_name>all_content</field_name> | |
| 2480 | - <key_value>102</key_value> | |
| 2481 | - <target_name>fcno102</target_name> | |
| 2482 | - <target_type>String</target_type> | |
| 2483 | - <target_format/> | |
| 2484 | - <target_length>-1</target_length> | |
| 2485 | - <target_precision>-1</target_precision> | |
| 2486 | - <target_decimal_symbol/> | |
| 2487 | - <target_grouping_symbol/> | |
| 2488 | - <target_currency_symbol/> | |
| 2489 | - <target_null_string/> | |
| 2490 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2491 | - </field> | |
| 2492 | - <field> | |
| 2493 | - <field_name>all_content</field_name> | |
| 2494 | - <key_value>103</key_value> | |
| 2495 | - <target_name>fcno103</target_name> | |
| 2496 | - <target_type>String</target_type> | |
| 2497 | - <target_format/> | |
| 2498 | - <target_length>-1</target_length> | |
| 2499 | - <target_precision>-1</target_precision> | |
| 2500 | - <target_decimal_symbol/> | |
| 2501 | - <target_grouping_symbol/> | |
| 2502 | - <target_currency_symbol/> | |
| 2503 | - <target_null_string/> | |
| 2504 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2505 | - </field> | |
| 2506 | - <field> | |
| 2507 | - <field_name>all_content</field_name> | |
| 2508 | - <key_value>104</key_value> | |
| 2509 | - <target_name>fcno104</target_name> | |
| 2510 | - <target_type>String</target_type> | |
| 2511 | - <target_format/> | |
| 2512 | - <target_length>-1</target_length> | |
| 2513 | - <target_precision>-1</target_precision> | |
| 2514 | - <target_decimal_symbol/> | |
| 2515 | - <target_grouping_symbol/> | |
| 2516 | - <target_currency_symbol/> | |
| 2517 | - <target_null_string/> | |
| 2518 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2519 | - </field> | |
| 2520 | - <field> | |
| 2521 | - <field_name>all_content</field_name> | |
| 2522 | - <key_value>105</key_value> | |
| 2523 | - <target_name>fcno105</target_name> | |
| 2524 | - <target_type>String</target_type> | |
| 2525 | - <target_format/> | |
| 2526 | - <target_length>-1</target_length> | |
| 2527 | - <target_precision>-1</target_precision> | |
| 2528 | - <target_decimal_symbol/> | |
| 2529 | - <target_grouping_symbol/> | |
| 2530 | - <target_currency_symbol/> | |
| 2531 | - <target_null_string/> | |
| 2532 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2533 | - </field> | |
| 2534 | - <field> | |
| 2535 | - <field_name>all_content</field_name> | |
| 2536 | - <key_value>106</key_value> | |
| 2537 | - <target_name>fcno106</target_name> | |
| 2538 | - <target_type>String</target_type> | |
| 2539 | - <target_format/> | |
| 2540 | - <target_length>-1</target_length> | |
| 2541 | - <target_precision>-1</target_precision> | |
| 2542 | - <target_decimal_symbol/> | |
| 2543 | - <target_grouping_symbol/> | |
| 2544 | - <target_currency_symbol/> | |
| 2545 | - <target_null_string/> | |
| 2546 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2547 | - </field> | |
| 2548 | - <field> | |
| 2549 | - <field_name>all_content</field_name> | |
| 2550 | - <key_value>107</key_value> | |
| 2551 | - <target_name>fcno107</target_name> | |
| 2552 | - <target_type>String</target_type> | |
| 2553 | - <target_format/> | |
| 2554 | - <target_length>-1</target_length> | |
| 2555 | - <target_precision>-1</target_precision> | |
| 2556 | - <target_decimal_symbol/> | |
| 2557 | - <target_grouping_symbol/> | |
| 2558 | - <target_currency_symbol/> | |
| 2559 | - <target_null_string/> | |
| 2560 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2561 | - </field> | |
| 2562 | - <field> | |
| 2563 | - <field_name>all_content</field_name> | |
| 2564 | - <key_value>108</key_value> | |
| 2565 | - <target_name>fcno108</target_name> | |
| 2566 | - <target_type>String</target_type> | |
| 2567 | - <target_format/> | |
| 2568 | - <target_length>-1</target_length> | |
| 2569 | - <target_precision>-1</target_precision> | |
| 2570 | - <target_decimal_symbol/> | |
| 2571 | - <target_grouping_symbol/> | |
| 2572 | - <target_currency_symbol/> | |
| 2573 | - <target_null_string/> | |
| 2574 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2575 | - </field> | |
| 2576 | - <field> | |
| 2577 | - <field_name>all_content</field_name> | |
| 2578 | - <key_value>109</key_value> | |
| 2579 | - <target_name>fcno109</target_name> | |
| 2580 | - <target_type>String</target_type> | |
| 2581 | - <target_format/> | |
| 2582 | - <target_length>-1</target_length> | |
| 2583 | - <target_precision>-1</target_precision> | |
| 2584 | - <target_decimal_symbol/> | |
| 2585 | - <target_grouping_symbol/> | |
| 2586 | - <target_currency_symbol/> | |
| 2587 | - <target_null_string/> | |
| 2588 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2589 | - </field> | |
| 2590 | - <field> | |
| 2591 | - <field_name>all_content</field_name> | |
| 2592 | - <key_value>110</key_value> | |
| 2593 | - <target_name>fcno110</target_name> | |
| 2594 | - <target_type>String</target_type> | |
| 2595 | - <target_format/> | |
| 2596 | - <target_length>-1</target_length> | |
| 2597 | - <target_precision>-1</target_precision> | |
| 2598 | - <target_decimal_symbol/> | |
| 2599 | - <target_grouping_symbol/> | |
| 2600 | - <target_currency_symbol/> | |
| 2601 | - <target_null_string/> | |
| 2602 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2603 | - </field> | |
| 2604 | - <field> | |
| 2605 | - <field_name>all_content</field_name> | |
| 2606 | - <key_value>111</key_value> | |
| 2607 | - <target_name>fcno111</target_name> | |
| 2608 | - <target_type>String</target_type> | |
| 2609 | - <target_format/> | |
| 2610 | - <target_length>-1</target_length> | |
| 2611 | - <target_precision>-1</target_precision> | |
| 2612 | - <target_decimal_symbol/> | |
| 2613 | - <target_grouping_symbol/> | |
| 2614 | - <target_currency_symbol/> | |
| 2615 | - <target_null_string/> | |
| 2616 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2617 | - </field> | |
| 2618 | - <field> | |
| 2619 | - <field_name>all_content</field_name> | |
| 2620 | - <key_value>112</key_value> | |
| 2621 | - <target_name>fcno112</target_name> | |
| 2622 | - <target_type>String</target_type> | |
| 2623 | - <target_format/> | |
| 2624 | - <target_length>-1</target_length> | |
| 2625 | - <target_precision>-1</target_precision> | |
| 2626 | - <target_decimal_symbol/> | |
| 2627 | - <target_grouping_symbol/> | |
| 2628 | - <target_currency_symbol/> | |
| 2629 | - <target_null_string/> | |
| 2630 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2631 | - </field> | |
| 2632 | - <field> | |
| 2633 | - <field_name>all_content</field_name> | |
| 2634 | - <key_value>113</key_value> | |
| 2635 | - <target_name>fcno113</target_name> | |
| 2636 | - <target_type>String</target_type> | |
| 2637 | - <target_format/> | |
| 2638 | - <target_length>-1</target_length> | |
| 2639 | - <target_precision>-1</target_precision> | |
| 2640 | - <target_decimal_symbol/> | |
| 2641 | - <target_grouping_symbol/> | |
| 2642 | - <target_currency_symbol/> | |
| 2643 | - <target_null_string/> | |
| 2644 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2645 | - </field> | |
| 2646 | - <field> | |
| 2647 | - <field_name>all_content</field_name> | |
| 2648 | - <key_value>114</key_value> | |
| 2649 | - <target_name>fcno114</target_name> | |
| 2650 | - <target_type>String</target_type> | |
| 2651 | - <target_format/> | |
| 2652 | - <target_length>-1</target_length> | |
| 2653 | - <target_precision>-1</target_precision> | |
| 2654 | - <target_decimal_symbol/> | |
| 2655 | - <target_grouping_symbol/> | |
| 2656 | - <target_currency_symbol/> | |
| 2657 | - <target_null_string/> | |
| 2658 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2659 | - </field> | |
| 2660 | - <field> | |
| 2661 | - <field_name>all_content</field_name> | |
| 2662 | - <key_value>115</key_value> | |
| 2663 | - <target_name>fcno115</target_name> | |
| 2664 | - <target_type>String</target_type> | |
| 2665 | - <target_format/> | |
| 2666 | - <target_length>-1</target_length> | |
| 2667 | - <target_precision>-1</target_precision> | |
| 2668 | - <target_decimal_symbol/> | |
| 2669 | - <target_grouping_symbol/> | |
| 2670 | - <target_currency_symbol/> | |
| 2671 | - <target_null_string/> | |
| 2672 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2673 | - </field> | |
| 2674 | - <field> | |
| 2675 | - <field_name>all_content</field_name> | |
| 2676 | - <key_value>116</key_value> | |
| 2677 | - <target_name>fcno116</target_name> | |
| 2678 | - <target_type>String</target_type> | |
| 2679 | - <target_format/> | |
| 2680 | - <target_length>-1</target_length> | |
| 2681 | - <target_precision>-1</target_precision> | |
| 2682 | - <target_decimal_symbol/> | |
| 2683 | - <target_grouping_symbol/> | |
| 2684 | - <target_currency_symbol/> | |
| 2685 | - <target_null_string/> | |
| 2686 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2687 | - </field> | |
| 2688 | - <field> | |
| 2689 | - <field_name>all_content</field_name> | |
| 2690 | - <key_value>117</key_value> | |
| 2691 | - <target_name>fcno117</target_name> | |
| 2692 | - <target_type>String</target_type> | |
| 2693 | - <target_format/> | |
| 2694 | - <target_length>-1</target_length> | |
| 2695 | - <target_precision>-1</target_precision> | |
| 2696 | - <target_decimal_symbol/> | |
| 2697 | - <target_grouping_symbol/> | |
| 2698 | - <target_currency_symbol/> | |
| 2699 | - <target_null_string/> | |
| 2700 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2701 | - </field> | |
| 2702 | - <field> | |
| 2703 | - <field_name>all_content</field_name> | |
| 2704 | - <key_value>118</key_value> | |
| 2705 | - <target_name>fcno118</target_name> | |
| 2706 | - <target_type>String</target_type> | |
| 2707 | - <target_format/> | |
| 2708 | - <target_length>-1</target_length> | |
| 2709 | - <target_precision>-1</target_precision> | |
| 2710 | - <target_decimal_symbol/> | |
| 2711 | - <target_grouping_symbol/> | |
| 2712 | - <target_currency_symbol/> | |
| 2713 | - <target_null_string/> | |
| 2714 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2715 | - </field> | |
| 2716 | - <field> | |
| 2717 | - <field_name>all_content</field_name> | |
| 2718 | - <key_value>119</key_value> | |
| 2719 | - <target_name>fcno119</target_name> | |
| 2720 | - <target_type>String</target_type> | |
| 2721 | - <target_format/> | |
| 2722 | - <target_length>-1</target_length> | |
| 2723 | - <target_precision>-1</target_precision> | |
| 2724 | - <target_decimal_symbol/> | |
| 2725 | - <target_grouping_symbol/> | |
| 2726 | - <target_currency_symbol/> | |
| 2727 | - <target_null_string/> | |
| 2728 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2729 | - </field> | |
| 2730 | - <field> | |
| 2731 | - <field_name>all_content</field_name> | |
| 2732 | - <key_value>120</key_value> | |
| 2733 | - <target_name>fcno120</target_name> | |
| 2734 | - <target_type>String</target_type> | |
| 2735 | - <target_format/> | |
| 2736 | - <target_length>-1</target_length> | |
| 2737 | - <target_precision>-1</target_precision> | |
| 2738 | - <target_decimal_symbol/> | |
| 2739 | - <target_grouping_symbol/> | |
| 2740 | - <target_currency_symbol/> | |
| 2741 | - <target_null_string/> | |
| 2742 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2743 | - </field> | |
| 2744 | - <field> | |
| 2745 | - <field_name>all_content</field_name> | |
| 2746 | - <key_value>121</key_value> | |
| 2747 | - <target_name>fcno121</target_name> | |
| 2748 | - <target_type>String</target_type> | |
| 2749 | - <target_format/> | |
| 2750 | - <target_length>-1</target_length> | |
| 2751 | - <target_precision>-1</target_precision> | |
| 2752 | - <target_decimal_symbol/> | |
| 2753 | - <target_grouping_symbol/> | |
| 2754 | - <target_currency_symbol/> | |
| 2755 | - <target_null_string/> | |
| 2756 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2757 | - </field> | |
| 2758 | - <field> | |
| 2759 | - <field_name>all_content</field_name> | |
| 2760 | - <key_value>122</key_value> | |
| 2761 | - <target_name>fcno122</target_name> | |
| 2762 | - <target_type>String</target_type> | |
| 2763 | - <target_format/> | |
| 2764 | - <target_length>-1</target_length> | |
| 2765 | - <target_precision>-1</target_precision> | |
| 2766 | - <target_decimal_symbol/> | |
| 2767 | - <target_grouping_symbol/> | |
| 2768 | - <target_currency_symbol/> | |
| 2769 | - <target_null_string/> | |
| 2770 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2771 | - </field> | |
| 2772 | - <field> | |
| 2773 | - <field_name>all_content</field_name> | |
| 2774 | - <key_value>123</key_value> | |
| 2775 | - <target_name>fcno123</target_name> | |
| 2776 | - <target_type>String</target_type> | |
| 2777 | - <target_format/> | |
| 2778 | - <target_length>-1</target_length> | |
| 2779 | - <target_precision>-1</target_precision> | |
| 2780 | - <target_decimal_symbol/> | |
| 2781 | - <target_grouping_symbol/> | |
| 2782 | - <target_currency_symbol/> | |
| 2783 | - <target_null_string/> | |
| 2784 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2785 | - </field> | |
| 2786 | - <field> | |
| 2787 | - <field_name>all_content</field_name> | |
| 2788 | - <key_value>124</key_value> | |
| 2789 | - <target_name>fcno124</target_name> | |
| 2790 | - <target_type>String</target_type> | |
| 2791 | - <target_format/> | |
| 2792 | - <target_length>-1</target_length> | |
| 2793 | - <target_precision>-1</target_precision> | |
| 2794 | - <target_decimal_symbol/> | |
| 2795 | - <target_grouping_symbol/> | |
| 2796 | - <target_currency_symbol/> | |
| 2797 | - <target_null_string/> | |
| 2798 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2799 | - </field> | |
| 2800 | - <field> | |
| 2801 | - <field_name>all_content</field_name> | |
| 2802 | - <key_value>125</key_value> | |
| 2803 | - <target_name>fcno125</target_name> | |
| 2804 | - <target_type>String</target_type> | |
| 2805 | - <target_format/> | |
| 2806 | - <target_length>-1</target_length> | |
| 2807 | - <target_precision>-1</target_precision> | |
| 2808 | - <target_decimal_symbol/> | |
| 2809 | - <target_grouping_symbol/> | |
| 2810 | - <target_currency_symbol/> | |
| 2811 | - <target_null_string/> | |
| 2812 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2813 | - </field> | |
| 2814 | - <field> | |
| 2815 | - <field_name>all_content</field_name> | |
| 2816 | - <key_value>126</key_value> | |
| 2817 | - <target_name>fcno126</target_name> | |
| 2818 | - <target_type>String</target_type> | |
| 2819 | - <target_format/> | |
| 2820 | - <target_length>-1</target_length> | |
| 2821 | - <target_precision>-1</target_precision> | |
| 2822 | - <target_decimal_symbol/> | |
| 2823 | - <target_grouping_symbol/> | |
| 2824 | - <target_currency_symbol/> | |
| 2825 | - <target_null_string/> | |
| 2826 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2827 | - </field> | |
| 2828 | - <field> | |
| 2829 | - <field_name>all_content</field_name> | |
| 2830 | - <key_value>127</key_value> | |
| 2831 | - <target_name>fcno127</target_name> | |
| 2832 | - <target_type>String</target_type> | |
| 2833 | - <target_format/> | |
| 2834 | - <target_length>-1</target_length> | |
| 2835 | - <target_precision>-1</target_precision> | |
| 2836 | - <target_decimal_symbol/> | |
| 2837 | - <target_grouping_symbol/> | |
| 2838 | - <target_currency_symbol/> | |
| 2839 | - <target_null_string/> | |
| 2840 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2841 | - </field> | |
| 2842 | - <field> | |
| 2843 | - <field_name>all_content</field_name> | |
| 2844 | - <key_value>128</key_value> | |
| 2845 | - <target_name>fcno128</target_name> | |
| 2846 | - <target_type>String</target_type> | |
| 2847 | - <target_format/> | |
| 2848 | - <target_length>-1</target_length> | |
| 2849 | - <target_precision>-1</target_precision> | |
| 2850 | - <target_decimal_symbol/> | |
| 2851 | - <target_grouping_symbol/> | |
| 2852 | - <target_currency_symbol/> | |
| 2853 | - <target_null_string/> | |
| 2854 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2855 | - </field> | |
| 2856 | - <field> | |
| 2857 | - <field_name>all_content</field_name> | |
| 2858 | - <key_value>129</key_value> | |
| 2859 | - <target_name>fcno129</target_name> | |
| 2860 | - <target_type>String</target_type> | |
| 2861 | - <target_format/> | |
| 2862 | - <target_length>-1</target_length> | |
| 2863 | - <target_precision>-1</target_precision> | |
| 2864 | - <target_decimal_symbol/> | |
| 2865 | - <target_grouping_symbol/> | |
| 2866 | - <target_currency_symbol/> | |
| 2867 | - <target_null_string/> | |
| 2868 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2869 | - </field> | |
| 2870 | - <field> | |
| 2871 | - <field_name>all_content</field_name> | |
| 2872 | - <key_value>130</key_value> | |
| 2873 | - <target_name>fcno130</target_name> | |
| 2874 | - <target_type>String</target_type> | |
| 2875 | - <target_format/> | |
| 2876 | - <target_length>-1</target_length> | |
| 2877 | - <target_precision>-1</target_precision> | |
| 2878 | - <target_decimal_symbol/> | |
| 2879 | - <target_grouping_symbol/> | |
| 2880 | - <target_currency_symbol/> | |
| 2881 | - <target_null_string/> | |
| 2882 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2883 | - </field> | |
| 2884 | - <field> | |
| 2885 | - <field_name>all_content</field_name> | |
| 2886 | - <key_value>131</key_value> | |
| 2887 | - <target_name>fcno131</target_name> | |
| 2888 | - <target_type>String</target_type> | |
| 2889 | - <target_format/> | |
| 2890 | - <target_length>-1</target_length> | |
| 2891 | - <target_precision>-1</target_precision> | |
| 2892 | - <target_decimal_symbol/> | |
| 2893 | - <target_grouping_symbol/> | |
| 2894 | - <target_currency_symbol/> | |
| 2895 | - <target_null_string/> | |
| 2896 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2897 | - </field> | |
| 2898 | - <field> | |
| 2899 | - <field_name>all_content</field_name> | |
| 2900 | - <key_value>132</key_value> | |
| 2901 | - <target_name>fcno132</target_name> | |
| 2902 | - <target_type>String</target_type> | |
| 2903 | - <target_format/> | |
| 2904 | - <target_length>-1</target_length> | |
| 2905 | - <target_precision>-1</target_precision> | |
| 2906 | - <target_decimal_symbol/> | |
| 2907 | - <target_grouping_symbol/> | |
| 2908 | - <target_currency_symbol/> | |
| 2909 | - <target_null_string/> | |
| 2910 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2911 | - </field> | |
| 2912 | - <field> | |
| 2913 | - <field_name>all_content</field_name> | |
| 2914 | - <key_value>133</key_value> | |
| 2915 | - <target_name>fcno133</target_name> | |
| 2916 | - <target_type>String</target_type> | |
| 2917 | - <target_format/> | |
| 2918 | - <target_length>-1</target_length> | |
| 2919 | - <target_precision>-1</target_precision> | |
| 2920 | - <target_decimal_symbol/> | |
| 2921 | - <target_grouping_symbol/> | |
| 2922 | - <target_currency_symbol/> | |
| 2923 | - <target_null_string/> | |
| 2924 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2925 | - </field> | |
| 2926 | - <field> | |
| 2927 | - <field_name>all_content</field_name> | |
| 2928 | - <key_value>134</key_value> | |
| 2929 | - <target_name>fcno134</target_name> | |
| 2930 | - <target_type>String</target_type> | |
| 2931 | - <target_format/> | |
| 2932 | - <target_length>-1</target_length> | |
| 2933 | - <target_precision>-1</target_precision> | |
| 2934 | - <target_decimal_symbol/> | |
| 2935 | - <target_grouping_symbol/> | |
| 2936 | - <target_currency_symbol/> | |
| 2937 | - <target_null_string/> | |
| 2938 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2939 | - </field> | |
| 2940 | - <field> | |
| 2941 | - <field_name>all_content</field_name> | |
| 2942 | - <key_value>135</key_value> | |
| 2943 | - <target_name>fcno135</target_name> | |
| 2944 | - <target_type>String</target_type> | |
| 2945 | - <target_format/> | |
| 2946 | - <target_length>-1</target_length> | |
| 2947 | - <target_precision>-1</target_precision> | |
| 2948 | - <target_decimal_symbol/> | |
| 2949 | - <target_grouping_symbol/> | |
| 2950 | - <target_currency_symbol/> | |
| 2951 | - <target_null_string/> | |
| 2952 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2953 | - </field> | |
| 2954 | - <field> | |
| 2955 | - <field_name>all_content</field_name> | |
| 2956 | - <key_value>136</key_value> | |
| 2957 | - <target_name>fcno136</target_name> | |
| 2958 | - <target_type>String</target_type> | |
| 2959 | - <target_format/> | |
| 2960 | - <target_length>-1</target_length> | |
| 2961 | - <target_precision>-1</target_precision> | |
| 2962 | - <target_decimal_symbol/> | |
| 2963 | - <target_grouping_symbol/> | |
| 2964 | - <target_currency_symbol/> | |
| 2965 | - <target_null_string/> | |
| 2966 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2967 | - </field> | |
| 2968 | - <field> | |
| 2969 | - <field_name>all_content</field_name> | |
| 2970 | - <key_value>137</key_value> | |
| 2971 | - <target_name>fcno137</target_name> | |
| 2972 | - <target_type>String</target_type> | |
| 2973 | - <target_format/> | |
| 2974 | - <target_length>-1</target_length> | |
| 2975 | - <target_precision>-1</target_precision> | |
| 2976 | - <target_decimal_symbol/> | |
| 2977 | - <target_grouping_symbol/> | |
| 2978 | - <target_currency_symbol/> | |
| 2979 | - <target_null_string/> | |
| 2980 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2981 | - </field> | |
| 2982 | - <field> | |
| 2983 | - <field_name>all_content</field_name> | |
| 2984 | - <key_value>138</key_value> | |
| 2985 | - <target_name>fcno138</target_name> | |
| 2986 | - <target_type>String</target_type> | |
| 2987 | - <target_format/> | |
| 2988 | - <target_length>-1</target_length> | |
| 2989 | - <target_precision>-1</target_precision> | |
| 2990 | - <target_decimal_symbol/> | |
| 2991 | - <target_grouping_symbol/> | |
| 2992 | - <target_currency_symbol/> | |
| 2993 | - <target_null_string/> | |
| 2994 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2995 | - </field> | |
| 2996 | - <field> | |
| 2997 | - <field_name>all_content</field_name> | |
| 2998 | - <key_value>139</key_value> | |
| 2999 | - <target_name>fcno139</target_name> | |
| 3000 | - <target_type>String</target_type> | |
| 3001 | - <target_format/> | |
| 3002 | - <target_length>-1</target_length> | |
| 3003 | - <target_precision>-1</target_precision> | |
| 3004 | - <target_decimal_symbol/> | |
| 3005 | - <target_grouping_symbol/> | |
| 3006 | - <target_currency_symbol/> | |
| 3007 | - <target_null_string/> | |
| 3008 | - <target_aggregation_type>-</target_aggregation_type> | |
| 3009 | - </field> | |
| 3010 | - <field> | |
| 3011 | - <field_name>all_content</field_name> | |
| 3012 | - <key_value>140</key_value> | |
| 3013 | - <target_name>fcno140</target_name> | |
| 3014 | - <target_type>String</target_type> | |
| 3015 | - <target_format/> | |
| 3016 | - <target_length>-1</target_length> | |
| 3017 | - <target_precision>-1</target_precision> | |
| 3018 | - <target_decimal_symbol/> | |
| 3019 | - <target_grouping_symbol/> | |
| 3020 | - <target_currency_symbol/> | |
| 3021 | - <target_null_string/> | |
| 3022 | - <target_aggregation_type>-</target_aggregation_type> | |
| 3023 | - </field> | |
| 3024 | - <field> | |
| 3025 | - <field_name>all_content</field_name> | |
| 3026 | - <key_value>141</key_value> | |
| 3027 | - <target_name>fcno141</target_name> | |
| 3028 | - <target_type>String</target_type> | |
| 3029 | - <target_format/> | |
| 3030 | - <target_length>-1</target_length> | |
| 3031 | - <target_precision>-1</target_precision> | |
| 3032 | - <target_decimal_symbol/> | |
| 3033 | - <target_grouping_symbol/> | |
| 3034 | - <target_currency_symbol/> | |
| 3035 | - <target_null_string/> | |
| 3036 | - <target_aggregation_type>-</target_aggregation_type> | |
| 3037 | - </field> | |
| 3038 | - <field> | |
| 3039 | - <field_name>all_content</field_name> | |
| 3040 | - <key_value>142</key_value> | |
| 3041 | - <target_name>fcno142</target_name> | |
| 3042 | - <target_type>String</target_type> | |
| 3043 | - <target_format/> | |
| 3044 | - <target_length>-1</target_length> | |
| 3045 | - <target_precision>-1</target_precision> | |
| 3046 | - <target_decimal_symbol/> | |
| 3047 | - <target_grouping_symbol/> | |
| 3048 | - <target_currency_symbol/> | |
| 3049 | - <target_null_string/> | |
| 3050 | - <target_aggregation_type>-</target_aggregation_type> | |
| 3051 | - </field> | |
| 3052 | - <field> | |
| 3053 | - <field_name>all_content</field_name> | |
| 3054 | - <key_value>143</key_value> | |
| 3055 | - <target_name>fcno143</target_name> | |
| 3056 | - <target_type>String</target_type> | |
| 3057 | - <target_format/> | |
| 3058 | - <target_length>-1</target_length> | |
| 3059 | - <target_precision>-1</target_precision> | |
| 3060 | - <target_decimal_symbol/> | |
| 3061 | - <target_grouping_symbol/> | |
| 3062 | - <target_currency_symbol/> | |
| 3063 | - <target_null_string/> | |
| 3064 | - <target_aggregation_type>-</target_aggregation_type> | |
| 3065 | - </field> | |
| 3066 | - <field> | |
| 3067 | - <field_name>all_content</field_name> | |
| 3068 | - <key_value>144</key_value> | |
| 3069 | - <target_name>fcno144</target_name> | |
| 3070 | - <target_type>String</target_type> | |
| 3071 | - <target_format/> | |
| 3072 | - <target_length>-1</target_length> | |
| 3073 | - <target_precision>-1</target_precision> | |
| 3074 | - <target_decimal_symbol/> | |
| 3075 | - <target_grouping_symbol/> | |
| 3076 | - <target_currency_symbol/> | |
| 3077 | - <target_null_string/> | |
| 3078 | - <target_aggregation_type>-</target_aggregation_type> | |
| 3079 | - </field> | |
| 3080 | - <field> | |
| 3081 | - <field_name>all_content</field_name> | |
| 3082 | - <key_value>145</key_value> | |
| 3083 | - <target_name>fcno145</target_name> | |
| 3084 | - <target_type>String</target_type> | |
| 3085 | - <target_format/> | |
| 3086 | - <target_length>-1</target_length> | |
| 3087 | - <target_precision>-1</target_precision> | |
| 3088 | - <target_decimal_symbol/> | |
| 3089 | - <target_grouping_symbol/> | |
| 3090 | - <target_currency_symbol/> | |
| 3091 | - <target_null_string/> | |
| 3092 | - <target_aggregation_type>-</target_aggregation_type> | |
| 3093 | - </field> | |
| 3094 | - <field> | |
| 3095 | - <field_name>all_content</field_name> | |
| 3096 | - <key_value>146</key_value> | |
| 3097 | - <target_name>fcno146</target_name> | |
| 3098 | - <target_type>String</target_type> | |
| 3099 | - <target_format/> | |
| 3100 | - <target_length>-1</target_length> | |
| 3101 | - <target_precision>-1</target_precision> | |
| 3102 | - <target_decimal_symbol/> | |
| 3103 | - <target_grouping_symbol/> | |
| 3104 | - <target_currency_symbol/> | |
| 3105 | - <target_null_string/> | |
| 3106 | - <target_aggregation_type>-</target_aggregation_type> | |
| 3107 | - </field> | |
| 3108 | - <field> | |
| 3109 | - <field_name>all_content</field_name> | |
| 3110 | - <key_value>147</key_value> | |
| 3111 | - <target_name>fcno147</target_name> | |
| 3112 | - <target_type>String</target_type> | |
| 3113 | - <target_format/> | |
| 3114 | - <target_length>-1</target_length> | |
| 3115 | - <target_precision>-1</target_precision> | |
| 3116 | - <target_decimal_symbol/> | |
| 3117 | - <target_grouping_symbol/> | |
| 3118 | - <target_currency_symbol/> | |
| 3119 | - <target_null_string/> | |
| 3120 | - <target_aggregation_type>-</target_aggregation_type> | |
| 3121 | - </field> | |
| 3122 | - <field> | |
| 3123 | - <field_name>all_content</field_name> | |
| 3124 | - <key_value>148</key_value> | |
| 3125 | - <target_name>fcno148</target_name> | |
| 3126 | - <target_type>String</target_type> | |
| 3127 | - <target_format/> | |
| 3128 | - <target_length>-1</target_length> | |
| 3129 | - <target_precision>-1</target_precision> | |
| 3130 | - <target_decimal_symbol/> | |
| 3131 | - <target_grouping_symbol/> | |
| 3132 | - <target_currency_symbol/> | |
| 3133 | - <target_null_string/> | |
| 3134 | - <target_aggregation_type>-</target_aggregation_type> | |
| 3135 | - </field> | |
| 3136 | - <field> | |
| 3137 | - <field_name>all_content</field_name> | |
| 3138 | - <key_value>149</key_value> | |
| 3139 | - <target_name>fcno149</target_name> | |
| 3140 | - <target_type>String</target_type> | |
| 3141 | - <target_format/> | |
| 3142 | - <target_length>-1</target_length> | |
| 3143 | - <target_precision>-1</target_precision> | |
| 3144 | - <target_decimal_symbol/> | |
| 3145 | - <target_grouping_symbol/> | |
| 3146 | - <target_currency_symbol/> | |
| 3147 | - <target_null_string/> | |
| 3148 | - <target_aggregation_type>-</target_aggregation_type> | |
| 3149 | - </field> | |
| 3150 | - <field> | |
| 3151 | - <field_name>all_content</field_name> | |
| 3152 | - <key_value>150</key_value> | |
| 3153 | - <target_name>fcno150</target_name> | |
| 3154 | - <target_type>String</target_type> | |
| 3155 | - <target_format/> | |
| 3156 | - <target_length>-1</target_length> | |
| 3157 | - <target_precision>-1</target_precision> | |
| 3158 | - <target_decimal_symbol/> | |
| 3159 | - <target_grouping_symbol/> | |
| 3160 | - <target_currency_symbol/> | |
| 3161 | - <target_null_string/> | |
| 3162 | - <target_aggregation_type>-</target_aggregation_type> | |
| 3163 | - </field> | |
| 3164 | - </fields> | |
| 3165 | - <cluster_schema/> | |
| 3166 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 3167 | - <xloc>559</xloc> | |
| 3168 | - <yloc>182</yloc> | |
| 3169 | - <draw>Y</draw> | |
| 3170 | - </GUI> | |
| 3171 | - </step> | |
| 3172 | - | |
| 3173 | - <step> | |
| 3174 | - <name>字段选择</name> | |
| 3175 | - <type>SelectValues</type> | |
| 3176 | - <description/> | |
| 3177 | - <distribute>Y</distribute> | |
| 3178 | - <custom_distribution/> | |
| 3179 | - <copies>1</copies> | |
| 3180 | - <partitioning> | |
| 3181 | - <method>none</method> | |
| 3182 | - <schema_name/> | |
| 3183 | - </partitioning> | |
| 3184 | - <fields> <field> <name>lp_name</name> | |
| 3185 | - <rename>路牌</rename> | |
| 3186 | - <length>-2</length> | |
| 3187 | - <precision>-2</precision> | |
| 3188 | - </field> <field> <name>j_name</name> | |
| 3189 | - <rename>驾驶员</rename> | |
| 3190 | - <length>-2</length> | |
| 3191 | - <precision>-2</precision> | |
| 3192 | - </field> <field> <name>cl_zbh</name> | |
| 3193 | - <rename>自编号</rename> | |
| 3194 | - <length>-2</length> | |
| 3195 | - <precision>-2</precision> | |
| 3196 | - </field> <field> <name>car_plate</name> | |
| 3197 | - <rename>车牌号</rename> | |
| 3198 | - <length>-2</length> | |
| 3199 | - <precision>-2</precision> | |
| 3200 | - </field> <field> <name>fcno1</name> | |
| 3201 | - <rename/> | |
| 3202 | - <length>-2</length> | |
| 3203 | - <precision>-2</precision> | |
| 3204 | - </field> <field> <name>fcno2</name> | |
| 3205 | - <rename/> | |
| 3206 | - <length>-2</length> | |
| 3207 | - <precision>-2</precision> | |
| 3208 | - </field> <field> <name>fcno3</name> | |
| 3209 | - <rename/> | |
| 3210 | - <length>-2</length> | |
| 3211 | - <precision>-2</precision> | |
| 3212 | - </field> <field> <name>fcno4</name> | |
| 3213 | - <rename/> | |
| 3214 | - <length>-2</length> | |
| 3215 | - <precision>-2</precision> | |
| 3216 | - </field> <field> <name>fcno5</name> | |
| 3217 | - <rename/> | |
| 3218 | - <length>-2</length> | |
| 3219 | - <precision>-2</precision> | |
| 3220 | - </field> <field> <name>fcno6</name> | |
| 3221 | - <rename/> | |
| 3222 | - <length>-2</length> | |
| 3223 | - <precision>-2</precision> | |
| 3224 | - </field> <field> <name>fcno7</name> | |
| 3225 | - <rename/> | |
| 3226 | - <length>-2</length> | |
| 3227 | - <precision>-2</precision> | |
| 3228 | - </field> <field> <name>fcno8</name> | |
| 3229 | - <rename/> | |
| 3230 | - <length>-2</length> | |
| 3231 | - <precision>-2</precision> | |
| 3232 | - </field> <field> <name>fcno9</name> | |
| 3233 | - <rename/> | |
| 3234 | - <length>-2</length> | |
| 3235 | - <precision>-2</precision> | |
| 3236 | - </field> <field> <name>fcno10</name> | |
| 3237 | - <rename/> | |
| 3238 | - <length>-2</length> | |
| 3239 | - <precision>-2</precision> | |
| 3240 | - </field> <field> <name>fcno11</name> | |
| 3241 | - <rename/> | |
| 3242 | - <length>-2</length> | |
| 3243 | - <precision>-2</precision> | |
| 3244 | - </field> <field> <name>fcno12</name> | |
| 3245 | - <rename/> | |
| 3246 | - <length>-2</length> | |
| 3247 | - <precision>-2</precision> | |
| 3248 | - </field> <field> <name>fcno13</name> | |
| 3249 | - <rename/> | |
| 3250 | - <length>-2</length> | |
| 3251 | - <precision>-2</precision> | |
| 3252 | - </field> <field> <name>fcno14</name> | |
| 3253 | - <rename/> | |
| 3254 | - <length>-2</length> | |
| 3255 | - <precision>-2</precision> | |
| 3256 | - </field> <field> <name>fcno15</name> | |
| 3257 | - <rename/> | |
| 3258 | - <length>-2</length> | |
| 3259 | - <precision>-2</precision> | |
| 3260 | - </field> <field> <name>fcno16</name> | |
| 3261 | - <rename/> | |
| 3262 | - <length>-2</length> | |
| 3263 | - <precision>-2</precision> | |
| 3264 | - </field> <field> <name>fcno17</name> | |
| 3265 | - <rename/> | |
| 3266 | - <length>-2</length> | |
| 3267 | - <precision>-2</precision> | |
| 3268 | - </field> <field> <name>fcno18</name> | |
| 3269 | - <rename/> | |
| 3270 | - <length>-2</length> | |
| 3271 | - <precision>-2</precision> | |
| 3272 | - </field> <field> <name>fcno19</name> | |
| 3273 | - <rename/> | |
| 3274 | - <length>-2</length> | |
| 3275 | - <precision>-2</precision> | |
| 3276 | - </field> <field> <name>fcno20</name> | |
| 3277 | - <rename/> | |
| 3278 | - <length>-2</length> | |
| 3279 | - <precision>-2</precision> | |
| 3280 | - </field> <field> <name>fcno21</name> | |
| 3281 | - <rename/> | |
| 3282 | - <length>-2</length> | |
| 3283 | - <precision>-2</precision> | |
| 3284 | - </field> <field> <name>fcno22</name> | |
| 3285 | - <rename/> | |
| 3286 | - <length>-2</length> | |
| 3287 | - <precision>-2</precision> | |
| 3288 | - </field> <field> <name>fcno23</name> | |
| 3289 | - <rename/> | |
| 3290 | - <length>-2</length> | |
| 3291 | - <precision>-2</precision> | |
| 3292 | - </field> <field> <name>fcno24</name> | |
| 3293 | - <rename/> | |
| 3294 | - <length>-2</length> | |
| 3295 | - <precision>-2</precision> | |
| 3296 | - </field> <field> <name>fcno25</name> | |
| 3297 | - <rename/> | |
| 3298 | - <length>-2</length> | |
| 3299 | - <precision>-2</precision> | |
| 3300 | - </field> <field> <name>fcno26</name> | |
| 3301 | - <rename/> | |
| 3302 | - <length>-2</length> | |
| 3303 | - <precision>-2</precision> | |
| 3304 | - </field> <field> <name>fcno27</name> | |
| 3305 | - <rename/> | |
| 3306 | - <length>-2</length> | |
| 3307 | - <precision>-2</precision> | |
| 3308 | - </field> <field> <name>fcno28</name> | |
| 3309 | - <rename/> | |
| 3310 | - <length>-2</length> | |
| 3311 | - <precision>-2</precision> | |
| 3312 | - </field> <field> <name>fcno29</name> | |
| 3313 | - <rename/> | |
| 3314 | - <length>-2</length> | |
| 3315 | - <precision>-2</precision> | |
| 3316 | - </field> <field> <name>fcno30</name> | |
| 3317 | - <rename/> | |
| 3318 | - <length>-2</length> | |
| 3319 | - <precision>-2</precision> | |
| 3320 | - </field> <field> <name>fcno31</name> | |
| 3321 | - <rename/> | |
| 3322 | - <length>-2</length> | |
| 3323 | - <precision>-2</precision> | |
| 3324 | - </field> <field> <name>fcno32</name> | |
| 3325 | - <rename/> | |
| 3326 | - <length>-2</length> | |
| 3327 | - <precision>-2</precision> | |
| 3328 | - </field> <field> <name>fcno33</name> | |
| 3329 | - <rename/> | |
| 3330 | - <length>-2</length> | |
| 3331 | - <precision>-2</precision> | |
| 3332 | - </field> <field> <name>fcno34</name> | |
| 3333 | - <rename/> | |
| 3334 | - <length>-2</length> | |
| 3335 | - <precision>-2</precision> | |
| 3336 | - </field> <field> <name>fcno35</name> | |
| 3337 | - <rename/> | |
| 3338 | - <length>-2</length> | |
| 3339 | - <precision>-2</precision> | |
| 3340 | - </field> <field> <name>fcno36</name> | |
| 3341 | - <rename/> | |
| 3342 | - <length>-2</length> | |
| 3343 | - <precision>-2</precision> | |
| 3344 | - </field> <field> <name>fcno37</name> | |
| 3345 | - <rename/> | |
| 3346 | - <length>-2</length> | |
| 3347 | - <precision>-2</precision> | |
| 3348 | - </field> <field> <name>fcno38</name> | |
| 3349 | - <rename/> | |
| 3350 | - <length>-2</length> | |
| 3351 | - <precision>-2</precision> | |
| 3352 | - </field> <field> <name>fcno39</name> | |
| 3353 | - <rename/> | |
| 3354 | - <length>-2</length> | |
| 3355 | - <precision>-2</precision> | |
| 3356 | - </field> <field> <name>fcno40</name> | |
| 3357 | - <rename/> | |
| 3358 | - <length>-2</length> | |
| 3359 | - <precision>-2</precision> | |
| 3360 | - </field> <field> <name>fcno41</name> | |
| 3361 | - <rename/> | |
| 3362 | - <length>-2</length> | |
| 3363 | - <precision>-2</precision> | |
| 3364 | - </field> <field> <name>fcno42</name> | |
| 3365 | - <rename/> | |
| 3366 | - <length>-2</length> | |
| 3367 | - <precision>-2</precision> | |
| 3368 | - </field> <field> <name>fcno43</name> | |
| 3369 | - <rename/> | |
| 3370 | - <length>-2</length> | |
| 3371 | - <precision>-2</precision> | |
| 3372 | - </field> <field> <name>fcno44</name> | |
| 3373 | - <rename/> | |
| 3374 | - <length>-2</length> | |
| 3375 | - <precision>-2</precision> | |
| 3376 | - </field> <field> <name>fcno45</name> | |
| 3377 | - <rename/> | |
| 3378 | - <length>-2</length> | |
| 3379 | - <precision>-2</precision> | |
| 3380 | - </field> <field> <name>fcno46</name> | |
| 3381 | - <rename/> | |
| 3382 | - <length>-2</length> | |
| 3383 | - <precision>-2</precision> | |
| 3384 | - </field> <field> <name>fcno47</name> | |
| 3385 | - <rename/> | |
| 3386 | - <length>-2</length> | |
| 3387 | - <precision>-2</precision> | |
| 3388 | - </field> <field> <name>fcno48</name> | |
| 3389 | - <rename/> | |
| 3390 | - <length>-2</length> | |
| 3391 | - <precision>-2</precision> | |
| 3392 | - </field> <field> <name>fcno49</name> | |
| 3393 | - <rename/> | |
| 3394 | - <length>-2</length> | |
| 3395 | - <precision>-2</precision> | |
| 3396 | - </field> <field> <name>fcno50</name> | |
| 3397 | - <rename/> | |
| 3398 | - <length>-2</length> | |
| 3399 | - <precision>-2</precision> | |
| 3400 | - </field> <field> <name>fcno51</name> | |
| 3401 | - <rename/> | |
| 3402 | - <length>-2</length> | |
| 3403 | - <precision>-2</precision> | |
| 3404 | - </field> <field> <name>fcno52</name> | |
| 3405 | - <rename/> | |
| 3406 | - <length>-2</length> | |
| 3407 | - <precision>-2</precision> | |
| 3408 | - </field> <field> <name>fcno53</name> | |
| 3409 | - <rename/> | |
| 3410 | - <length>-2</length> | |
| 3411 | - <precision>-2</precision> | |
| 3412 | - </field> <field> <name>fcno54</name> | |
| 3413 | - <rename/> | |
| 3414 | - <length>-2</length> | |
| 3415 | - <precision>-2</precision> | |
| 3416 | - </field> <field> <name>fcno55</name> | |
| 3417 | - <rename/> | |
| 3418 | - <length>-2</length> | |
| 3419 | - <precision>-2</precision> | |
| 3420 | - </field> <field> <name>fcno56</name> | |
| 3421 | - <rename/> | |
| 3422 | - <length>-2</length> | |
| 3423 | - <precision>-2</precision> | |
| 3424 | - </field> <field> <name>fcno57</name> | |
| 3425 | - <rename/> | |
| 3426 | - <length>-2</length> | |
| 3427 | - <precision>-2</precision> | |
| 3428 | - </field> <field> <name>fcno58</name> | |
| 3429 | - <rename/> | |
| 3430 | - <length>-2</length> | |
| 3431 | - <precision>-2</precision> | |
| 3432 | - </field> <field> <name>fcno59</name> | |
| 3433 | - <rename/> | |
| 3434 | - <length>-2</length> | |
| 3435 | - <precision>-2</precision> | |
| 3436 | - </field> <field> <name>fcno60</name> | |
| 3437 | - <rename/> | |
| 3438 | - <length>-2</length> | |
| 3439 | - <precision>-2</precision> | |
| 3440 | - </field> <field> <name>fcno61</name> | |
| 3441 | - <rename/> | |
| 3442 | - <length>-2</length> | |
| 3443 | - <precision>-2</precision> | |
| 3444 | - </field> <field> <name>fcno62</name> | |
| 3445 | - <rename/> | |
| 3446 | - <length>-2</length> | |
| 3447 | - <precision>-2</precision> | |
| 3448 | - </field> <field> <name>fcno63</name> | |
| 3449 | - <rename/> | |
| 3450 | - <length>-2</length> | |
| 3451 | - <precision>-2</precision> | |
| 3452 | - </field> <field> <name>fcno64</name> | |
| 3453 | - <rename/> | |
| 3454 | - <length>-2</length> | |
| 3455 | - <precision>-2</precision> | |
| 3456 | - </field> <field> <name>fcno65</name> | |
| 3457 | - <rename/> | |
| 3458 | - <length>-2</length> | |
| 3459 | - <precision>-2</precision> | |
| 3460 | - </field> <field> <name>fcno66</name> | |
| 3461 | - <rename/> | |
| 3462 | - <length>-2</length> | |
| 3463 | - <precision>-2</precision> | |
| 3464 | - </field> <field> <name>fcno67</name> | |
| 3465 | - <rename/> | |
| 3466 | - <length>-2</length> | |
| 3467 | - <precision>-2</precision> | |
| 3468 | - </field> <field> <name>fcno68</name> | |
| 3469 | - <rename/> | |
| 3470 | - <length>-2</length> | |
| 3471 | - <precision>-2</precision> | |
| 3472 | - </field> <field> <name>fcno69</name> | |
| 3473 | - <rename/> | |
| 3474 | - <length>-2</length> | |
| 3475 | - <precision>-2</precision> | |
| 3476 | - </field> <field> <name>fcno70</name> | |
| 3477 | - <rename/> | |
| 3478 | - <length>-2</length> | |
| 3479 | - <precision>-2</precision> | |
| 3480 | - </field> <field> <name>fcno71</name> | |
| 3481 | - <rename/> | |
| 3482 | - <length>-2</length> | |
| 3483 | - <precision>-2</precision> | |
| 3484 | - </field> <field> <name>fcno72</name> | |
| 3485 | - <rename/> | |
| 3486 | - <length>-2</length> | |
| 3487 | - <precision>-2</precision> | |
| 3488 | - </field> <field> <name>fcno73</name> | |
| 3489 | - <rename/> | |
| 3490 | - <length>-2</length> | |
| 3491 | - <precision>-2</precision> | |
| 3492 | - </field> <field> <name>fcno74</name> | |
| 3493 | - <rename/> | |
| 3494 | - <length>-2</length> | |
| 3495 | - <precision>-2</precision> | |
| 3496 | - </field> <field> <name>fcno75</name> | |
| 3497 | - <rename/> | |
| 3498 | - <length>-2</length> | |
| 3499 | - <precision>-2</precision> | |
| 3500 | - </field> <field> <name>fcno76</name> | |
| 3501 | - <rename/> | |
| 3502 | - <length>-2</length> | |
| 3503 | - <precision>-2</precision> | |
| 3504 | - </field> <field> <name>fcno77</name> | |
| 3505 | - <rename/> | |
| 3506 | - <length>-2</length> | |
| 3507 | - <precision>-2</precision> | |
| 3508 | - </field> <field> <name>fcno78</name> | |
| 3509 | - <rename/> | |
| 3510 | - <length>-2</length> | |
| 3511 | - <precision>-2</precision> | |
| 3512 | - </field> <field> <name>fcno79</name> | |
| 3513 | - <rename/> | |
| 3514 | - <length>-2</length> | |
| 3515 | - <precision>-2</precision> | |
| 3516 | - </field> <field> <name>fcno80</name> | |
| 3517 | - <rename/> | |
| 3518 | - <length>-2</length> | |
| 3519 | - <precision>-2</precision> | |
| 3520 | - </field> <field> <name>fcno81</name> | |
| 3521 | - <rename/> | |
| 3522 | - <length>-2</length> | |
| 3523 | - <precision>-2</precision> | |
| 3524 | - </field> <field> <name>fcno82</name> | |
| 3525 | - <rename/> | |
| 3526 | - <length>-2</length> | |
| 3527 | - <precision>-2</precision> | |
| 3528 | - </field> <field> <name>fcno83</name> | |
| 3529 | - <rename/> | |
| 3530 | - <length>-2</length> | |
| 3531 | - <precision>-2</precision> | |
| 3532 | - </field> <field> <name>fcno84</name> | |
| 3533 | - <rename/> | |
| 3534 | - <length>-2</length> | |
| 3535 | - <precision>-2</precision> | |
| 3536 | - </field> <field> <name>fcno85</name> | |
| 3537 | - <rename/> | |
| 3538 | - <length>-2</length> | |
| 3539 | - <precision>-2</precision> | |
| 3540 | - </field> <field> <name>fcno86</name> | |
| 3541 | - <rename/> | |
| 3542 | - <length>-2</length> | |
| 3543 | - <precision>-2</precision> | |
| 3544 | - </field> <field> <name>fcno87</name> | |
| 3545 | - <rename/> | |
| 3546 | - <length>-2</length> | |
| 3547 | - <precision>-2</precision> | |
| 3548 | - </field> <field> <name>fcno88</name> | |
| 3549 | - <rename/> | |
| 3550 | - <length>-2</length> | |
| 3551 | - <precision>-2</precision> | |
| 3552 | - </field> <field> <name>fcno89</name> | |
| 3553 | - <rename/> | |
| 3554 | - <length>-2</length> | |
| 3555 | - <precision>-2</precision> | |
| 3556 | - </field> <field> <name>fcno90</name> | |
| 3557 | - <rename/> | |
| 3558 | - <length>-2</length> | |
| 3559 | - <precision>-2</precision> | |
| 3560 | - </field> <field> <name>fcno91</name> | |
| 3561 | - <rename/> | |
| 3562 | - <length>-2</length> | |
| 3563 | - <precision>-2</precision> | |
| 3564 | - </field> <field> <name>fcno92</name> | |
| 3565 | - <rename/> | |
| 3566 | - <length>-2</length> | |
| 3567 | - <precision>-2</precision> | |
| 3568 | - </field> <field> <name>fcno93</name> | |
| 3569 | - <rename/> | |
| 3570 | - <length>-2</length> | |
| 3571 | - <precision>-2</precision> | |
| 3572 | - </field> <field> <name>fcno94</name> | |
| 3573 | - <rename/> | |
| 3574 | - <length>-2</length> | |
| 3575 | - <precision>-2</precision> | |
| 3576 | - </field> <field> <name>fcno95</name> | |
| 3577 | - <rename/> | |
| 3578 | - <length>-2</length> | |
| 3579 | - <precision>-2</precision> | |
| 3580 | - </field> <field> <name>fcno96</name> | |
| 3581 | - <rename/> | |
| 3582 | - <length>-2</length> | |
| 3583 | - <precision>-2</precision> | |
| 3584 | - </field> <field> <name>fcno97</name> | |
| 3585 | - <rename/> | |
| 3586 | - <length>-2</length> | |
| 3587 | - <precision>-2</precision> | |
| 3588 | - </field> <field> <name>fcno98</name> | |
| 3589 | - <rename/> | |
| 3590 | - <length>-2</length> | |
| 3591 | - <precision>-2</precision> | |
| 3592 | - </field> <field> <name>fcno99</name> | |
| 3593 | - <rename/> | |
| 3594 | - <length>-2</length> | |
| 3595 | - <precision>-2</precision> | |
| 3596 | - </field> <field> <name>fcno100</name> | |
| 3597 | - <rename/> | |
| 3598 | - <length>-2</length> | |
| 3599 | - <precision>-2</precision> | |
| 3600 | - </field> <field> <name>fcno101</name> | |
| 3601 | - <rename/> | |
| 3602 | - <length>-2</length> | |
| 3603 | - <precision>-2</precision> | |
| 3604 | - </field> <field> <name>fcno102</name> | |
| 3605 | - <rename/> | |
| 3606 | - <length>-2</length> | |
| 3607 | - <precision>-2</precision> | |
| 3608 | - </field> <field> <name>fcno103</name> | |
| 3609 | - <rename/> | |
| 3610 | - <length>-2</length> | |
| 3611 | - <precision>-2</precision> | |
| 3612 | - </field> <field> <name>fcno104</name> | |
| 3613 | - <rename/> | |
| 3614 | - <length>-2</length> | |
| 3615 | - <precision>-2</precision> | |
| 3616 | - </field> <field> <name>fcno105</name> | |
| 3617 | - <rename/> | |
| 3618 | - <length>-2</length> | |
| 3619 | - <precision>-2</precision> | |
| 3620 | - </field> <field> <name>fcno106</name> | |
| 3621 | - <rename/> | |
| 3622 | - <length>-2</length> | |
| 3623 | - <precision>-2</precision> | |
| 3624 | - </field> <field> <name>fcno107</name> | |
| 3625 | - <rename/> | |
| 3626 | - <length>-2</length> | |
| 3627 | - <precision>-2</precision> | |
| 3628 | - </field> <field> <name>fcno108</name> | |
| 3629 | - <rename/> | |
| 3630 | - <length>-2</length> | |
| 3631 | - <precision>-2</precision> | |
| 3632 | - </field> <field> <name>fcno109</name> | |
| 3633 | - <rename/> | |
| 3634 | - <length>-2</length> | |
| 3635 | - <precision>-2</precision> | |
| 3636 | - </field> <field> <name>fcno110</name> | |
| 3637 | - <rename/> | |
| 3638 | - <length>-2</length> | |
| 3639 | - <precision>-2</precision> | |
| 3640 | - </field> <field> <name>fcno111</name> | |
| 3641 | - <rename/> | |
| 3642 | - <length>-2</length> | |
| 3643 | - <precision>-2</precision> | |
| 3644 | - </field> <field> <name>fcno112</name> | |
| 3645 | - <rename/> | |
| 3646 | - <length>-2</length> | |
| 3647 | - <precision>-2</precision> | |
| 3648 | - </field> <field> <name>fcno113</name> | |
| 3649 | - <rename/> | |
| 3650 | - <length>-2</length> | |
| 3651 | - <precision>-2</precision> | |
| 3652 | - </field> <field> <name>fcno114</name> | |
| 3653 | - <rename/> | |
| 3654 | - <length>-2</length> | |
| 3655 | - <precision>-2</precision> | |
| 3656 | - </field> <field> <name>fcno115</name> | |
| 3657 | - <rename/> | |
| 3658 | - <length>-2</length> | |
| 3659 | - <precision>-2</precision> | |
| 3660 | - </field> <field> <name>fcno116</name> | |
| 3661 | - <rename/> | |
| 3662 | - <length>-2</length> | |
| 3663 | - <precision>-2</precision> | |
| 3664 | - </field> <field> <name>fcno117</name> | |
| 3665 | - <rename/> | |
| 3666 | - <length>-2</length> | |
| 3667 | - <precision>-2</precision> | |
| 3668 | - </field> <field> <name>fcno118</name> | |
| 3669 | - <rename/> | |
| 3670 | - <length>-2</length> | |
| 3671 | - <precision>-2</precision> | |
| 3672 | - </field> <field> <name>fcno119</name> | |
| 3673 | - <rename/> | |
| 3674 | - <length>-2</length> | |
| 3675 | - <precision>-2</precision> | |
| 3676 | - </field> <field> <name>fcno120</name> | |
| 3677 | - <rename/> | |
| 3678 | - <length>-2</length> | |
| 3679 | - <precision>-2</precision> | |
| 3680 | - </field> <field> <name>fcno121</name> | |
| 3681 | - <rename/> | |
| 3682 | - <length>-2</length> | |
| 3683 | - <precision>-2</precision> | |
| 3684 | - </field> <field> <name>fcno122</name> | |
| 3685 | - <rename/> | |
| 3686 | - <length>-2</length> | |
| 3687 | - <precision>-2</precision> | |
| 3688 | - </field> <field> <name>fcno123</name> | |
| 3689 | - <rename/> | |
| 3690 | - <length>-2</length> | |
| 3691 | - <precision>-2</precision> | |
| 3692 | - </field> <field> <name>fcno124</name> | |
| 3693 | - <rename/> | |
| 3694 | - <length>-2</length> | |
| 3695 | - <precision>-2</precision> | |
| 3696 | - </field> <field> <name>fcno125</name> | |
| 3697 | - <rename/> | |
| 3698 | - <length>-2</length> | |
| 3699 | - <precision>-2</precision> | |
| 3700 | - </field> <field> <name>fcno126</name> | |
| 3701 | - <rename/> | |
| 3702 | - <length>-2</length> | |
| 3703 | - <precision>-2</precision> | |
| 3704 | - </field> <field> <name>fcno127</name> | |
| 3705 | - <rename/> | |
| 3706 | - <length>-2</length> | |
| 3707 | - <precision>-2</precision> | |
| 3708 | - </field> <field> <name>fcno128</name> | |
| 3709 | - <rename/> | |
| 3710 | - <length>-2</length> | |
| 3711 | - <precision>-2</precision> | |
| 3712 | - </field> <field> <name>fcno129</name> | |
| 3713 | - <rename/> | |
| 3714 | - <length>-2</length> | |
| 3715 | - <precision>-2</precision> | |
| 3716 | - </field> <field> <name>fcno130</name> | |
| 3717 | - <rename/> | |
| 3718 | - <length>-2</length> | |
| 3719 | - <precision>-2</precision> | |
| 3720 | - </field> <field> <name>fcno131</name> | |
| 3721 | - <rename/> | |
| 3722 | - <length>-2</length> | |
| 3723 | - <precision>-2</precision> | |
| 3724 | - </field> <field> <name>fcno132</name> | |
| 3725 | - <rename/> | |
| 3726 | - <length>-2</length> | |
| 3727 | - <precision>-2</precision> | |
| 3728 | - </field> <field> <name>fcno133</name> | |
| 3729 | - <rename/> | |
| 3730 | - <length>-2</length> | |
| 3731 | - <precision>-2</precision> | |
| 3732 | - </field> <field> <name>fcno134</name> | |
| 3733 | - <rename/> | |
| 3734 | - <length>-2</length> | |
| 3735 | - <precision>-2</precision> | |
| 3736 | - </field> <field> <name>fcno135</name> | |
| 3737 | - <rename/> | |
| 3738 | - <length>-2</length> | |
| 3739 | - <precision>-2</precision> | |
| 3740 | - </field> <field> <name>fcno136</name> | |
| 3741 | - <rename/> | |
| 3742 | - <length>-2</length> | |
| 3743 | - <precision>-2</precision> | |
| 3744 | - </field> <field> <name>fcno137</name> | |
| 3745 | - <rename/> | |
| 3746 | - <length>-2</length> | |
| 3747 | - <precision>-2</precision> | |
| 3748 | - </field> <field> <name>fcno138</name> | |
| 3749 | - <rename/> | |
| 3750 | - <length>-2</length> | |
| 3751 | - <precision>-2</precision> | |
| 3752 | - </field> <field> <name>fcno139</name> | |
| 3753 | - <rename/> | |
| 3754 | - <length>-2</length> | |
| 3755 | - <precision>-2</precision> | |
| 3756 | - </field> <field> <name>fcno140</name> | |
| 3757 | - <rename/> | |
| 3758 | - <length>-2</length> | |
| 3759 | - <precision>-2</precision> | |
| 3760 | - </field> <field> <name>fcno141</name> | |
| 3761 | - <rename/> | |
| 3762 | - <length>-2</length> | |
| 3763 | - <precision>-2</precision> | |
| 3764 | - </field> <field> <name>fcno142</name> | |
| 3765 | - <rename/> | |
| 3766 | - <length>-2</length> | |
| 3767 | - <precision>-2</precision> | |
| 3768 | - </field> <field> <name>fcno143</name> | |
| 3769 | - <rename/> | |
| 3770 | - <length>-2</length> | |
| 3771 | - <precision>-2</precision> | |
| 3772 | - </field> <field> <name>fcno144</name> | |
| 3773 | - <rename/> | |
| 3774 | - <length>-2</length> | |
| 3775 | - <precision>-2</precision> | |
| 3776 | - </field> <field> <name>fcno145</name> | |
| 3777 | - <rename/> | |
| 3778 | - <length>-2</length> | |
| 3779 | - <precision>-2</precision> | |
| 3780 | - </field> <field> <name>fcno146</name> | |
| 3781 | - <rename/> | |
| 3782 | - <length>-2</length> | |
| 3783 | - <precision>-2</precision> | |
| 3784 | - </field> <field> <name>fcno147</name> | |
| 3785 | - <rename/> | |
| 3786 | - <length>-2</length> | |
| 3787 | - <precision>-2</precision> | |
| 3788 | - </field> <field> <name>fcno148</name> | |
| 3789 | - <rename/> | |
| 3790 | - <length>-2</length> | |
| 3791 | - <precision>-2</precision> | |
| 3792 | - </field> <field> <name>fcno149</name> | |
| 3793 | - <rename/> | |
| 3794 | - <length>-2</length> | |
| 3795 | - <precision>-2</precision> | |
| 3796 | - </field> <field> <name>fcno150</name> | |
| 3797 | - <rename/> | |
| 3798 | - <length>-2</length> | |
| 3799 | - <precision>-2</precision> | |
| 3800 | - </field> <select_unspecified>N</select_unspecified> | |
| 3801 | - </fields> <cluster_schema/> | |
| 3802 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 3803 | - <xloc>560</xloc> | |
| 3804 | - <yloc>289</yloc> | |
| 3805 | - <draw>Y</draw> | |
| 3806 | - </GUI> | |
| 3807 | - </step> | |
| 3808 | - | |
| 3809 | - <step> | |
| 3810 | - <name>Excel输出</name> | |
| 3811 | - <type>ExcelOutput</type> | |
| 3812 | - <description/> | |
| 3813 | - <distribute>Y</distribute> | |
| 3814 | - <custom_distribution/> | |
| 3815 | - <copies>1</copies> | |
| 3816 | - <partitioning> | |
| 3817 | - <method>none</method> | |
| 3818 | - <schema_name/> | |
| 3819 | - </partitioning> | |
| 3820 | - <header>Y</header> | |
| 3821 | - <footer>N</footer> | |
| 3822 | - <encoding/> | |
| 3823 | - <append>N</append> | |
| 3824 | - <add_to_result_filenames>Y</add_to_result_filenames> | |
| 3825 | - <file> | |
| 3826 | - <name>${filepath}</name> | |
| 3827 | - <extention>xls</extention> | |
| 3828 | - <do_not_open_newfile_init>N</do_not_open_newfile_init> | |
| 3829 | - <create_parent_folder>N</create_parent_folder> | |
| 3830 | - <split>N</split> | |
| 3831 | - <add_date>N</add_date> | |
| 3832 | - <add_time>N</add_time> | |
| 3833 | - <SpecifyFormat>N</SpecifyFormat> | |
| 3834 | - <date_time_format/> | |
| 3835 | - <sheetname>Sheet1</sheetname> | |
| 3836 | - <autosizecolums>N</autosizecolums> | |
| 3837 | - <nullisblank>N</nullisblank> | |
| 3838 | - <protect_sheet>N</protect_sheet> | |
| 3839 | - <password>Encrypted </password> | |
| 3840 | - <splitevery>0</splitevery> | |
| 3841 | - <usetempfiles>N</usetempfiles> | |
| 3842 | - <tempdirectory/> | |
| 3843 | - </file> | |
| 3844 | - <template> | |
| 3845 | - <enabled>N</enabled> | |
| 3846 | - <append>N</append> | |
| 3847 | - <filename>template.xls</filename> | |
| 3848 | - </template> | |
| 3849 | - <fields> | |
| 3850 | - <field> | |
| 3851 | - <name>路牌</name> | |
| 3852 | - <type>String</type> | |
| 3853 | - <format/> | |
| 3854 | - </field> | |
| 3855 | - <field> | |
| 3856 | - <name>驾驶员</name> | |
| 3857 | - <type>String</type> | |
| 3858 | - <format/> | |
| 3859 | - </field> | |
| 3860 | - <field> | |
| 3861 | - <name>自编号</name> | |
| 3862 | - <type>String</type> | |
| 3863 | - <format/> | |
| 3864 | - </field> | |
| 3865 | - <field> | |
| 3866 | - <name>车牌号</name> | |
| 3867 | - <type>String</type> | |
| 3868 | - <format/> | |
| 3869 | - </field> | |
| 3870 | - <field> | |
| 3871 | - <name>fcno1</name> | |
| 3872 | - <type>String</type> | |
| 3873 | - <format/> | |
| 3874 | - </field> | |
| 3875 | - <field> | |
| 3876 | - <name>fcno2</name> | |
| 3877 | - <type>String</type> | |
| 3878 | - <format/> | |
| 3879 | - </field> | |
| 3880 | - <field> | |
| 3881 | - <name>fcno3</name> | |
| 3882 | - <type>String</type> | |
| 3883 | - <format/> | |
| 3884 | - </field> | |
| 3885 | - <field> | |
| 3886 | - <name>fcno4</name> | |
| 3887 | - <type>String</type> | |
| 3888 | - <format/> | |
| 3889 | - </field> | |
| 3890 | - <field> | |
| 3891 | - <name>fcno5</name> | |
| 3892 | - <type>String</type> | |
| 3893 | - <format/> | |
| 3894 | - </field> | |
| 3895 | - <field> | |
| 3896 | - <name>fcno6</name> | |
| 943 | + <field> | |
| 944 | + <name>fcno6</name> | |
| 3897 | 945 | <type>String</type> |
| 3898 | 946 | <format/> |
| 3899 | 947 | </field> |
| ... | ... | @@ -4463,182 +1511,3158 @@ |
| 4463 | 1511 | <format/> |
| 4464 | 1512 | </field> |
| 4465 | 1513 | <field> |
| 4466 | - <name>fcno120</name> | |
| 1514 | + <name>fcno120</name> | |
| 1515 | + <type>String</type> | |
| 1516 | + <format/> | |
| 1517 | + </field> | |
| 1518 | + <field> | |
| 1519 | + <name>fcno121</name> | |
| 1520 | + <type>String</type> | |
| 1521 | + <format/> | |
| 1522 | + </field> | |
| 1523 | + <field> | |
| 1524 | + <name>fcno122</name> | |
| 1525 | + <type>String</type> | |
| 1526 | + <format/> | |
| 1527 | + </field> | |
| 1528 | + <field> | |
| 1529 | + <name>fcno123</name> | |
| 1530 | + <type>String</type> | |
| 1531 | + <format/> | |
| 1532 | + </field> | |
| 1533 | + <field> | |
| 1534 | + <name>fcno124</name> | |
| 1535 | + <type>String</type> | |
| 1536 | + <format/> | |
| 1537 | + </field> | |
| 1538 | + <field> | |
| 1539 | + <name>fcno125</name> | |
| 1540 | + <type>String</type> | |
| 1541 | + <format/> | |
| 1542 | + </field> | |
| 1543 | + <field> | |
| 1544 | + <name>fcno126</name> | |
| 1545 | + <type>String</type> | |
| 1546 | + <format/> | |
| 1547 | + </field> | |
| 1548 | + <field> | |
| 1549 | + <name>fcno127</name> | |
| 1550 | + <type>String</type> | |
| 1551 | + <format/> | |
| 1552 | + </field> | |
| 1553 | + <field> | |
| 1554 | + <name>fcno128</name> | |
| 1555 | + <type>String</type> | |
| 1556 | + <format/> | |
| 1557 | + </field> | |
| 1558 | + <field> | |
| 1559 | + <name>fcno129</name> | |
| 4467 | 1560 | <type>String</type> |
| 4468 | 1561 | <format/> |
| 4469 | 1562 | </field> |
| 4470 | 1563 | <field> |
| 4471 | - <name>fcno121</name> | |
| 1564 | + <name>fcno130</name> | |
| 4472 | 1565 | <type>String</type> |
| 4473 | 1566 | <format/> |
| 4474 | 1567 | </field> |
| 4475 | 1568 | <field> |
| 4476 | - <name>fcno122</name> | |
| 1569 | + <name>fcno131</name> | |
| 4477 | 1570 | <type>String</type> |
| 4478 | 1571 | <format/> |
| 4479 | 1572 | </field> |
| 4480 | 1573 | <field> |
| 4481 | - <name>fcno123</name> | |
| 1574 | + <name>fcno132</name> | |
| 4482 | 1575 | <type>String</type> |
| 4483 | 1576 | <format/> |
| 4484 | 1577 | </field> |
| 4485 | 1578 | <field> |
| 4486 | - <name>fcno124</name> | |
| 1579 | + <name>fcno133</name> | |
| 4487 | 1580 | <type>String</type> |
| 4488 | 1581 | <format/> |
| 4489 | 1582 | </field> |
| 4490 | 1583 | <field> |
| 4491 | - <name>fcno125</name> | |
| 1584 | + <name>fcno134</name> | |
| 4492 | 1585 | <type>String</type> |
| 4493 | 1586 | <format/> |
| 4494 | 1587 | </field> |
| 4495 | 1588 | <field> |
| 4496 | - <name>fcno126</name> | |
| 1589 | + <name>fcno135</name> | |
| 4497 | 1590 | <type>String</type> |
| 4498 | 1591 | <format/> |
| 4499 | 1592 | </field> |
| 4500 | 1593 | <field> |
| 4501 | - <name>fcno127</name> | |
| 1594 | + <name>fcno136</name> | |
| 4502 | 1595 | <type>String</type> |
| 4503 | 1596 | <format/> |
| 4504 | 1597 | </field> |
| 4505 | 1598 | <field> |
| 4506 | - <name>fcno128</name> | |
| 1599 | + <name>fcno137</name> | |
| 4507 | 1600 | <type>String</type> |
| 4508 | 1601 | <format/> |
| 4509 | 1602 | </field> |
| 4510 | 1603 | <field> |
| 4511 | - <name>fcno129</name> | |
| 1604 | + <name>fcno138</name> | |
| 4512 | 1605 | <type>String</type> |
| 4513 | 1606 | <format/> |
| 4514 | 1607 | </field> |
| 4515 | 1608 | <field> |
| 4516 | - <name>fcno130</name> | |
| 1609 | + <name>fcno139</name> | |
| 4517 | 1610 | <type>String</type> |
| 4518 | 1611 | <format/> |
| 4519 | 1612 | </field> |
| 4520 | 1613 | <field> |
| 4521 | - <name>fcno131</name> | |
| 1614 | + <name>fcno140</name> | |
| 4522 | 1615 | <type>String</type> |
| 4523 | 1616 | <format/> |
| 4524 | 1617 | </field> |
| 4525 | 1618 | <field> |
| 4526 | - <name>fcno132</name> | |
| 1619 | + <name>fcno141</name> | |
| 4527 | 1620 | <type>String</type> |
| 4528 | 1621 | <format/> |
| 4529 | 1622 | </field> |
| 4530 | 1623 | <field> |
| 4531 | - <name>fcno133</name> | |
| 1624 | + <name>fcno142</name> | |
| 4532 | 1625 | <type>String</type> |
| 4533 | 1626 | <format/> |
| 4534 | 1627 | </field> |
| 4535 | 1628 | <field> |
| 4536 | - <name>fcno134</name> | |
| 1629 | + <name>fcno143</name> | |
| 4537 | 1630 | <type>String</type> |
| 4538 | 1631 | <format/> |
| 4539 | 1632 | </field> |
| 4540 | 1633 | <field> |
| 4541 | - <name>fcno135</name> | |
| 1634 | + <name>fcno144</name> | |
| 4542 | 1635 | <type>String</type> |
| 4543 | 1636 | <format/> |
| 4544 | 1637 | </field> |
| 4545 | 1638 | <field> |
| 4546 | - <name>fcno136</name> | |
| 1639 | + <name>fcno145</name> | |
| 4547 | 1640 | <type>String</type> |
| 4548 | 1641 | <format/> |
| 4549 | 1642 | </field> |
| 4550 | 1643 | <field> |
| 4551 | - <name>fcno137</name> | |
| 1644 | + <name>fcno146</name> | |
| 4552 | 1645 | <type>String</type> |
| 4553 | 1646 | <format/> |
| 4554 | 1647 | </field> |
| 4555 | 1648 | <field> |
| 4556 | - <name>fcno138</name> | |
| 1649 | + <name>fcno147</name> | |
| 4557 | 1650 | <type>String</type> |
| 4558 | 1651 | <format/> |
| 4559 | 1652 | </field> |
| 4560 | 1653 | <field> |
| 4561 | - <name>fcno139</name> | |
| 1654 | + <name>fcno148</name> | |
| 4562 | 1655 | <type>String</type> |
| 4563 | 1656 | <format/> |
| 4564 | 1657 | </field> |
| 4565 | 1658 | <field> |
| 4566 | - <name>fcno140</name> | |
| 1659 | + <name>fcno149</name> | |
| 4567 | 1660 | <type>String</type> |
| 4568 | 1661 | <format/> |
| 4569 | 1662 | </field> |
| 4570 | 1663 | <field> |
| 4571 | - <name>fcno141</name> | |
| 1664 | + <name>fcno150</name> | |
| 4572 | 1665 | <type>String</type> |
| 4573 | 1666 | <format/> |
| 4574 | 1667 | </field> |
| 1668 | + </fields> | |
| 1669 | + <custom> | |
| 1670 | + <header_font_name>arial</header_font_name> | |
| 1671 | + <header_font_size>10</header_font_size> | |
| 1672 | + <header_font_bold>N</header_font_bold> | |
| 1673 | + <header_font_italic>N</header_font_italic> | |
| 1674 | + <header_font_underline>no</header_font_underline> | |
| 1675 | + <header_font_orientation>horizontal</header_font_orientation> | |
| 1676 | + <header_font_color>black</header_font_color> | |
| 1677 | + <header_background_color>none</header_background_color> | |
| 1678 | + <header_row_height>255</header_row_height> | |
| 1679 | + <header_alignment>left</header_alignment> | |
| 1680 | + <header_image/> | |
| 1681 | + <row_font_name>arial</row_font_name> | |
| 1682 | + <row_font_size>10</row_font_size> | |
| 1683 | + <row_font_color>black</row_font_color> | |
| 1684 | + <row_background_color>none</row_background_color> | |
| 1685 | + </custom> | |
| 1686 | + <cluster_schema/> | |
| 1687 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1688 | + <xloc>561</xloc> | |
| 1689 | + <yloc>398</yloc> | |
| 1690 | + <draw>Y</draw> | |
| 1691 | + </GUI> | |
| 1692 | + </step> | |
| 1693 | + | |
| 1694 | + <step> | |
| 1695 | + <name>列转行</name> | |
| 1696 | + <type>Denormaliser</type> | |
| 1697 | + <description/> | |
| 1698 | + <distribute>Y</distribute> | |
| 1699 | + <custom_distribution/> | |
| 1700 | + <copies>1</copies> | |
| 1701 | + <partitioning> | |
| 1702 | + <method>none</method> | |
| 1703 | + <schema_name/> | |
| 1704 | + </partitioning> | |
| 1705 | + <key_field>fcno</key_field> | |
| 1706 | + <group> | |
| 1707 | + <field> | |
| 1708 | + <name>lp</name> | |
| 1709 | + </field> | |
| 1710 | + <field> | |
| 1711 | + <name>lp_name</name> | |
| 1712 | + </field> | |
| 1713 | + <field> | |
| 1714 | + <name>j</name> | |
| 1715 | + </field> | |
| 1716 | + <field> | |
| 1717 | + <name>j_name</name> | |
| 1718 | + </field> | |
| 1719 | + <field> | |
| 1720 | + <name>cl_zbh</name> | |
| 1721 | + </field> | |
| 1722 | + <field> | |
| 1723 | + <name>car_plate</name> | |
| 1724 | + </field> | |
| 1725 | + </group> | |
| 1726 | + <fields> | |
| 1727 | + <field> | |
| 1728 | + <field_name>all_content</field_name> | |
| 1729 | + <key_value>1</key_value> | |
| 1730 | + <target_name>fcno1</target_name> | |
| 1731 | + <target_type>String</target_type> | |
| 1732 | + <target_format/> | |
| 1733 | + <target_length>-1</target_length> | |
| 1734 | + <target_precision>-1</target_precision> | |
| 1735 | + <target_decimal_symbol/> | |
| 1736 | + <target_grouping_symbol/> | |
| 1737 | + <target_currency_symbol/> | |
| 1738 | + <target_null_string/> | |
| 1739 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1740 | + </field> | |
| 1741 | + <field> | |
| 1742 | + <field_name>all_content</field_name> | |
| 1743 | + <key_value>2</key_value> | |
| 1744 | + <target_name>fcno2</target_name> | |
| 1745 | + <target_type>String</target_type> | |
| 1746 | + <target_format/> | |
| 1747 | + <target_length>-1</target_length> | |
| 1748 | + <target_precision>-1</target_precision> | |
| 1749 | + <target_decimal_symbol/> | |
| 1750 | + <target_grouping_symbol/> | |
| 1751 | + <target_currency_symbol/> | |
| 1752 | + <target_null_string/> | |
| 1753 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1754 | + </field> | |
| 1755 | + <field> | |
| 1756 | + <field_name>all_content</field_name> | |
| 1757 | + <key_value>3</key_value> | |
| 1758 | + <target_name>fcno3</target_name> | |
| 1759 | + <target_type>String</target_type> | |
| 1760 | + <target_format/> | |
| 1761 | + <target_length>-1</target_length> | |
| 1762 | + <target_precision>-1</target_precision> | |
| 1763 | + <target_decimal_symbol/> | |
| 1764 | + <target_grouping_symbol/> | |
| 1765 | + <target_currency_symbol/> | |
| 1766 | + <target_null_string/> | |
| 1767 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1768 | + </field> | |
| 1769 | + <field> | |
| 1770 | + <field_name>all_content</field_name> | |
| 1771 | + <key_value>4</key_value> | |
| 1772 | + <target_name>fcno4</target_name> | |
| 1773 | + <target_type>String</target_type> | |
| 1774 | + <target_format/> | |
| 1775 | + <target_length>-1</target_length> | |
| 1776 | + <target_precision>-1</target_precision> | |
| 1777 | + <target_decimal_symbol/> | |
| 1778 | + <target_grouping_symbol/> | |
| 1779 | + <target_currency_symbol/> | |
| 1780 | + <target_null_string/> | |
| 1781 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1782 | + </field> | |
| 1783 | + <field> | |
| 1784 | + <field_name>all_content</field_name> | |
| 1785 | + <key_value>5</key_value> | |
| 1786 | + <target_name>fcno5</target_name> | |
| 1787 | + <target_type>String</target_type> | |
| 1788 | + <target_format/> | |
| 1789 | + <target_length>-1</target_length> | |
| 1790 | + <target_precision>-1</target_precision> | |
| 1791 | + <target_decimal_symbol/> | |
| 1792 | + <target_grouping_symbol/> | |
| 1793 | + <target_currency_symbol/> | |
| 1794 | + <target_null_string/> | |
| 1795 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1796 | + </field> | |
| 1797 | + <field> | |
| 1798 | + <field_name>all_content</field_name> | |
| 1799 | + <key_value>6</key_value> | |
| 1800 | + <target_name>fcno6</target_name> | |
| 1801 | + <target_type>String</target_type> | |
| 1802 | + <target_format/> | |
| 1803 | + <target_length>-1</target_length> | |
| 1804 | + <target_precision>-1</target_precision> | |
| 1805 | + <target_decimal_symbol/> | |
| 1806 | + <target_grouping_symbol/> | |
| 1807 | + <target_currency_symbol/> | |
| 1808 | + <target_null_string/> | |
| 1809 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1810 | + </field> | |
| 1811 | + <field> | |
| 1812 | + <field_name>all_content</field_name> | |
| 1813 | + <key_value>7</key_value> | |
| 1814 | + <target_name>fcno7</target_name> | |
| 1815 | + <target_type>String</target_type> | |
| 1816 | + <target_format/> | |
| 1817 | + <target_length>-1</target_length> | |
| 1818 | + <target_precision>-1</target_precision> | |
| 1819 | + <target_decimal_symbol/> | |
| 1820 | + <target_grouping_symbol/> | |
| 1821 | + <target_currency_symbol/> | |
| 1822 | + <target_null_string/> | |
| 1823 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1824 | + </field> | |
| 1825 | + <field> | |
| 1826 | + <field_name>all_content</field_name> | |
| 1827 | + <key_value>8</key_value> | |
| 1828 | + <target_name>fcno8</target_name> | |
| 1829 | + <target_type>String</target_type> | |
| 1830 | + <target_format/> | |
| 1831 | + <target_length>-1</target_length> | |
| 1832 | + <target_precision>-1</target_precision> | |
| 1833 | + <target_decimal_symbol/> | |
| 1834 | + <target_grouping_symbol/> | |
| 1835 | + <target_currency_symbol/> | |
| 1836 | + <target_null_string/> | |
| 1837 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1838 | + </field> | |
| 1839 | + <field> | |
| 1840 | + <field_name>all_content</field_name> | |
| 1841 | + <key_value>9</key_value> | |
| 1842 | + <target_name>fcno9</target_name> | |
| 1843 | + <target_type>String</target_type> | |
| 1844 | + <target_format/> | |
| 1845 | + <target_length>-1</target_length> | |
| 1846 | + <target_precision>-1</target_precision> | |
| 1847 | + <target_decimal_symbol/> | |
| 1848 | + <target_grouping_symbol/> | |
| 1849 | + <target_currency_symbol/> | |
| 1850 | + <target_null_string/> | |
| 1851 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1852 | + </field> | |
| 1853 | + <field> | |
| 1854 | + <field_name>all_content</field_name> | |
| 1855 | + <key_value>10</key_value> | |
| 1856 | + <target_name>fcno10</target_name> | |
| 1857 | + <target_type>String</target_type> | |
| 1858 | + <target_format/> | |
| 1859 | + <target_length>-1</target_length> | |
| 1860 | + <target_precision>-1</target_precision> | |
| 1861 | + <target_decimal_symbol/> | |
| 1862 | + <target_grouping_symbol/> | |
| 1863 | + <target_currency_symbol/> | |
| 1864 | + <target_null_string/> | |
| 1865 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1866 | + </field> | |
| 1867 | + <field> | |
| 1868 | + <field_name>all_content</field_name> | |
| 1869 | + <key_value>11</key_value> | |
| 1870 | + <target_name>fcno11</target_name> | |
| 1871 | + <target_type>String</target_type> | |
| 1872 | + <target_format/> | |
| 1873 | + <target_length>-1</target_length> | |
| 1874 | + <target_precision>-1</target_precision> | |
| 1875 | + <target_decimal_symbol/> | |
| 1876 | + <target_grouping_symbol/> | |
| 1877 | + <target_currency_symbol/> | |
| 1878 | + <target_null_string/> | |
| 1879 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1880 | + </field> | |
| 1881 | + <field> | |
| 1882 | + <field_name>all_content</field_name> | |
| 1883 | + <key_value>12</key_value> | |
| 1884 | + <target_name>fcno12</target_name> | |
| 1885 | + <target_type>String</target_type> | |
| 1886 | + <target_format/> | |
| 1887 | + <target_length>-1</target_length> | |
| 1888 | + <target_precision>-1</target_precision> | |
| 1889 | + <target_decimal_symbol/> | |
| 1890 | + <target_grouping_symbol/> | |
| 1891 | + <target_currency_symbol/> | |
| 1892 | + <target_null_string/> | |
| 1893 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1894 | + </field> | |
| 1895 | + <field> | |
| 1896 | + <field_name>all_content</field_name> | |
| 1897 | + <key_value>13</key_value> | |
| 1898 | + <target_name>fcno13</target_name> | |
| 1899 | + <target_type>String</target_type> | |
| 1900 | + <target_format/> | |
| 1901 | + <target_length>-1</target_length> | |
| 1902 | + <target_precision>-1</target_precision> | |
| 1903 | + <target_decimal_symbol/> | |
| 1904 | + <target_grouping_symbol/> | |
| 1905 | + <target_currency_symbol/> | |
| 1906 | + <target_null_string/> | |
| 1907 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1908 | + </field> | |
| 1909 | + <field> | |
| 1910 | + <field_name>all_content</field_name> | |
| 1911 | + <key_value>14</key_value> | |
| 1912 | + <target_name>fcno14</target_name> | |
| 1913 | + <target_type>String</target_type> | |
| 1914 | + <target_format/> | |
| 1915 | + <target_length>-1</target_length> | |
| 1916 | + <target_precision>-1</target_precision> | |
| 1917 | + <target_decimal_symbol/> | |
| 1918 | + <target_grouping_symbol/> | |
| 1919 | + <target_currency_symbol/> | |
| 1920 | + <target_null_string/> | |
| 1921 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1922 | + </field> | |
| 1923 | + <field> | |
| 1924 | + <field_name>all_content</field_name> | |
| 1925 | + <key_value>15</key_value> | |
| 1926 | + <target_name>fcno15</target_name> | |
| 1927 | + <target_type>String</target_type> | |
| 1928 | + <target_format/> | |
| 1929 | + <target_length>-1</target_length> | |
| 1930 | + <target_precision>-1</target_precision> | |
| 1931 | + <target_decimal_symbol/> | |
| 1932 | + <target_grouping_symbol/> | |
| 1933 | + <target_currency_symbol/> | |
| 1934 | + <target_null_string/> | |
| 1935 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1936 | + </field> | |
| 1937 | + <field> | |
| 1938 | + <field_name>all_content</field_name> | |
| 1939 | + <key_value>16</key_value> | |
| 1940 | + <target_name>fcno16</target_name> | |
| 1941 | + <target_type>String</target_type> | |
| 1942 | + <target_format/> | |
| 1943 | + <target_length>-1</target_length> | |
| 1944 | + <target_precision>-1</target_precision> | |
| 1945 | + <target_decimal_symbol/> | |
| 1946 | + <target_grouping_symbol/> | |
| 1947 | + <target_currency_symbol/> | |
| 1948 | + <target_null_string/> | |
| 1949 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1950 | + </field> | |
| 1951 | + <field> | |
| 1952 | + <field_name>all_content</field_name> | |
| 1953 | + <key_value>17</key_value> | |
| 1954 | + <target_name>fcno17</target_name> | |
| 1955 | + <target_type>String</target_type> | |
| 1956 | + <target_format/> | |
| 1957 | + <target_length>-1</target_length> | |
| 1958 | + <target_precision>-1</target_precision> | |
| 1959 | + <target_decimal_symbol/> | |
| 1960 | + <target_grouping_symbol/> | |
| 1961 | + <target_currency_symbol/> | |
| 1962 | + <target_null_string/> | |
| 1963 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1964 | + </field> | |
| 1965 | + <field> | |
| 1966 | + <field_name>all_content</field_name> | |
| 1967 | + <key_value>18</key_value> | |
| 1968 | + <target_name>fcno18</target_name> | |
| 1969 | + <target_type>String</target_type> | |
| 1970 | + <target_format/> | |
| 1971 | + <target_length>-1</target_length> | |
| 1972 | + <target_precision>-1</target_precision> | |
| 1973 | + <target_decimal_symbol/> | |
| 1974 | + <target_grouping_symbol/> | |
| 1975 | + <target_currency_symbol/> | |
| 1976 | + <target_null_string/> | |
| 1977 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1978 | + </field> | |
| 1979 | + <field> | |
| 1980 | + <field_name>all_content</field_name> | |
| 1981 | + <key_value>19</key_value> | |
| 1982 | + <target_name>fcno19</target_name> | |
| 1983 | + <target_type>String</target_type> | |
| 1984 | + <target_format/> | |
| 1985 | + <target_length>-1</target_length> | |
| 1986 | + <target_precision>-1</target_precision> | |
| 1987 | + <target_decimal_symbol/> | |
| 1988 | + <target_grouping_symbol/> | |
| 1989 | + <target_currency_symbol/> | |
| 1990 | + <target_null_string/> | |
| 1991 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1992 | + </field> | |
| 1993 | + <field> | |
| 1994 | + <field_name>all_content</field_name> | |
| 1995 | + <key_value>20</key_value> | |
| 1996 | + <target_name>fcno20</target_name> | |
| 1997 | + <target_type>String</target_type> | |
| 1998 | + <target_format/> | |
| 1999 | + <target_length>-1</target_length> | |
| 2000 | + <target_precision>-1</target_precision> | |
| 2001 | + <target_decimal_symbol/> | |
| 2002 | + <target_grouping_symbol/> | |
| 2003 | + <target_currency_symbol/> | |
| 2004 | + <target_null_string/> | |
| 2005 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2006 | + </field> | |
| 2007 | + <field> | |
| 2008 | + <field_name>all_content</field_name> | |
| 2009 | + <key_value>21</key_value> | |
| 2010 | + <target_name>fcno21</target_name> | |
| 2011 | + <target_type>String</target_type> | |
| 2012 | + <target_format/> | |
| 2013 | + <target_length>-1</target_length> | |
| 2014 | + <target_precision>-1</target_precision> | |
| 2015 | + <target_decimal_symbol/> | |
| 2016 | + <target_grouping_symbol/> | |
| 2017 | + <target_currency_symbol/> | |
| 2018 | + <target_null_string/> | |
| 2019 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2020 | + </field> | |
| 2021 | + <field> | |
| 2022 | + <field_name>all_content</field_name> | |
| 2023 | + <key_value>22</key_value> | |
| 2024 | + <target_name>fcno22</target_name> | |
| 2025 | + <target_type>String</target_type> | |
| 2026 | + <target_format/> | |
| 2027 | + <target_length>-1</target_length> | |
| 2028 | + <target_precision>-1</target_precision> | |
| 2029 | + <target_decimal_symbol/> | |
| 2030 | + <target_grouping_symbol/> | |
| 2031 | + <target_currency_symbol/> | |
| 2032 | + <target_null_string/> | |
| 2033 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2034 | + </field> | |
| 2035 | + <field> | |
| 2036 | + <field_name>all_content</field_name> | |
| 2037 | + <key_value>23</key_value> | |
| 2038 | + <target_name>fcno23</target_name> | |
| 2039 | + <target_type>String</target_type> | |
| 2040 | + <target_format/> | |
| 2041 | + <target_length>-1</target_length> | |
| 2042 | + <target_precision>-1</target_precision> | |
| 2043 | + <target_decimal_symbol/> | |
| 2044 | + <target_grouping_symbol/> | |
| 2045 | + <target_currency_symbol/> | |
| 2046 | + <target_null_string/> | |
| 2047 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2048 | + </field> | |
| 2049 | + <field> | |
| 2050 | + <field_name>all_content</field_name> | |
| 2051 | + <key_value>24</key_value> | |
| 2052 | + <target_name>fcno24</target_name> | |
| 2053 | + <target_type>String</target_type> | |
| 2054 | + <target_format/> | |
| 2055 | + <target_length>-1</target_length> | |
| 2056 | + <target_precision>-1</target_precision> | |
| 2057 | + <target_decimal_symbol/> | |
| 2058 | + <target_grouping_symbol/> | |
| 2059 | + <target_currency_symbol/> | |
| 2060 | + <target_null_string/> | |
| 2061 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2062 | + </field> | |
| 2063 | + <field> | |
| 2064 | + <field_name>all_content</field_name> | |
| 2065 | + <key_value>25</key_value> | |
| 2066 | + <target_name>fcno25</target_name> | |
| 2067 | + <target_type>String</target_type> | |
| 2068 | + <target_format/> | |
| 2069 | + <target_length>-1</target_length> | |
| 2070 | + <target_precision>-1</target_precision> | |
| 2071 | + <target_decimal_symbol/> | |
| 2072 | + <target_grouping_symbol/> | |
| 2073 | + <target_currency_symbol/> | |
| 2074 | + <target_null_string/> | |
| 2075 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2076 | + </field> | |
| 2077 | + <field> | |
| 2078 | + <field_name>all_content</field_name> | |
| 2079 | + <key_value>26</key_value> | |
| 2080 | + <target_name>fcno26</target_name> | |
| 2081 | + <target_type>String</target_type> | |
| 2082 | + <target_format/> | |
| 2083 | + <target_length>-1</target_length> | |
| 2084 | + <target_precision>-1</target_precision> | |
| 2085 | + <target_decimal_symbol/> | |
| 2086 | + <target_grouping_symbol/> | |
| 2087 | + <target_currency_symbol/> | |
| 2088 | + <target_null_string/> | |
| 2089 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2090 | + </field> | |
| 2091 | + <field> | |
| 2092 | + <field_name>all_content</field_name> | |
| 2093 | + <key_value>27</key_value> | |
| 2094 | + <target_name>fcno27</target_name> | |
| 2095 | + <target_type>String</target_type> | |
| 2096 | + <target_format/> | |
| 2097 | + <target_length>-1</target_length> | |
| 2098 | + <target_precision>-1</target_precision> | |
| 2099 | + <target_decimal_symbol/> | |
| 2100 | + <target_grouping_symbol/> | |
| 2101 | + <target_currency_symbol/> | |
| 2102 | + <target_null_string/> | |
| 2103 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2104 | + </field> | |
| 2105 | + <field> | |
| 2106 | + <field_name>all_content</field_name> | |
| 2107 | + <key_value>28</key_value> | |
| 2108 | + <target_name>fcno28</target_name> | |
| 2109 | + <target_type>String</target_type> | |
| 2110 | + <target_format/> | |
| 2111 | + <target_length>-1</target_length> | |
| 2112 | + <target_precision>-1</target_precision> | |
| 2113 | + <target_decimal_symbol/> | |
| 2114 | + <target_grouping_symbol/> | |
| 2115 | + <target_currency_symbol/> | |
| 2116 | + <target_null_string/> | |
| 2117 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2118 | + </field> | |
| 2119 | + <field> | |
| 2120 | + <field_name>all_content</field_name> | |
| 2121 | + <key_value>29</key_value> | |
| 2122 | + <target_name>fcno29</target_name> | |
| 2123 | + <target_type>String</target_type> | |
| 2124 | + <target_format/> | |
| 2125 | + <target_length>-1</target_length> | |
| 2126 | + <target_precision>-1</target_precision> | |
| 2127 | + <target_decimal_symbol/> | |
| 2128 | + <target_grouping_symbol/> | |
| 2129 | + <target_currency_symbol/> | |
| 2130 | + <target_null_string/> | |
| 2131 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2132 | + </field> | |
| 2133 | + <field> | |
| 2134 | + <field_name>all_content</field_name> | |
| 2135 | + <key_value>30</key_value> | |
| 2136 | + <target_name>fcno30</target_name> | |
| 2137 | + <target_type>String</target_type> | |
| 2138 | + <target_format/> | |
| 2139 | + <target_length>-1</target_length> | |
| 2140 | + <target_precision>-1</target_precision> | |
| 2141 | + <target_decimal_symbol/> | |
| 2142 | + <target_grouping_symbol/> | |
| 2143 | + <target_currency_symbol/> | |
| 2144 | + <target_null_string/> | |
| 2145 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2146 | + </field> | |
| 2147 | + <field> | |
| 2148 | + <field_name>all_content</field_name> | |
| 2149 | + <key_value>31</key_value> | |
| 2150 | + <target_name>fcno31</target_name> | |
| 2151 | + <target_type>String</target_type> | |
| 2152 | + <target_format/> | |
| 2153 | + <target_length>-1</target_length> | |
| 2154 | + <target_precision>-1</target_precision> | |
| 2155 | + <target_decimal_symbol/> | |
| 2156 | + <target_grouping_symbol/> | |
| 2157 | + <target_currency_symbol/> | |
| 2158 | + <target_null_string/> | |
| 2159 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2160 | + </field> | |
| 2161 | + <field> | |
| 2162 | + <field_name>all_content</field_name> | |
| 2163 | + <key_value>32</key_value> | |
| 2164 | + <target_name>fcno32</target_name> | |
| 2165 | + <target_type>String</target_type> | |
| 2166 | + <target_format/> | |
| 2167 | + <target_length>-1</target_length> | |
| 2168 | + <target_precision>-1</target_precision> | |
| 2169 | + <target_decimal_symbol/> | |
| 2170 | + <target_grouping_symbol/> | |
| 2171 | + <target_currency_symbol/> | |
| 2172 | + <target_null_string/> | |
| 2173 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2174 | + </field> | |
| 2175 | + <field> | |
| 2176 | + <field_name>all_content</field_name> | |
| 2177 | + <key_value>33</key_value> | |
| 2178 | + <target_name>fcno33</target_name> | |
| 2179 | + <target_type>String</target_type> | |
| 2180 | + <target_format/> | |
| 2181 | + <target_length>-1</target_length> | |
| 2182 | + <target_precision>-1</target_precision> | |
| 2183 | + <target_decimal_symbol/> | |
| 2184 | + <target_grouping_symbol/> | |
| 2185 | + <target_currency_symbol/> | |
| 2186 | + <target_null_string/> | |
| 2187 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2188 | + </field> | |
| 2189 | + <field> | |
| 2190 | + <field_name>all_content</field_name> | |
| 2191 | + <key_value>34</key_value> | |
| 2192 | + <target_name>fcno34</target_name> | |
| 2193 | + <target_type>String</target_type> | |
| 2194 | + <target_format/> | |
| 2195 | + <target_length>-1</target_length> | |
| 2196 | + <target_precision>-1</target_precision> | |
| 2197 | + <target_decimal_symbol/> | |
| 2198 | + <target_grouping_symbol/> | |
| 2199 | + <target_currency_symbol/> | |
| 2200 | + <target_null_string/> | |
| 2201 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2202 | + </field> | |
| 2203 | + <field> | |
| 2204 | + <field_name>all_content</field_name> | |
| 2205 | + <key_value>35</key_value> | |
| 2206 | + <target_name>fcno35</target_name> | |
| 2207 | + <target_type>String</target_type> | |
| 2208 | + <target_format/> | |
| 2209 | + <target_length>-1</target_length> | |
| 2210 | + <target_precision>-1</target_precision> | |
| 2211 | + <target_decimal_symbol/> | |
| 2212 | + <target_grouping_symbol/> | |
| 2213 | + <target_currency_symbol/> | |
| 2214 | + <target_null_string/> | |
| 2215 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2216 | + </field> | |
| 2217 | + <field> | |
| 2218 | + <field_name>all_content</field_name> | |
| 2219 | + <key_value>36</key_value> | |
| 2220 | + <target_name>fcno36</target_name> | |
| 2221 | + <target_type>String</target_type> | |
| 2222 | + <target_format/> | |
| 2223 | + <target_length>-1</target_length> | |
| 2224 | + <target_precision>-1</target_precision> | |
| 2225 | + <target_decimal_symbol/> | |
| 2226 | + <target_grouping_symbol/> | |
| 2227 | + <target_currency_symbol/> | |
| 2228 | + <target_null_string/> | |
| 2229 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2230 | + </field> | |
| 2231 | + <field> | |
| 2232 | + <field_name>all_content</field_name> | |
| 2233 | + <key_value>37</key_value> | |
| 2234 | + <target_name>fcno37</target_name> | |
| 2235 | + <target_type>String</target_type> | |
| 2236 | + <target_format/> | |
| 2237 | + <target_length>-1</target_length> | |
| 2238 | + <target_precision>-1</target_precision> | |
| 2239 | + <target_decimal_symbol/> | |
| 2240 | + <target_grouping_symbol/> | |
| 2241 | + <target_currency_symbol/> | |
| 2242 | + <target_null_string/> | |
| 2243 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2244 | + </field> | |
| 2245 | + <field> | |
| 2246 | + <field_name>all_content</field_name> | |
| 2247 | + <key_value>38</key_value> | |
| 2248 | + <target_name>fcno38</target_name> | |
| 2249 | + <target_type>String</target_type> | |
| 2250 | + <target_format/> | |
| 2251 | + <target_length>-1</target_length> | |
| 2252 | + <target_precision>-1</target_precision> | |
| 2253 | + <target_decimal_symbol/> | |
| 2254 | + <target_grouping_symbol/> | |
| 2255 | + <target_currency_symbol/> | |
| 2256 | + <target_null_string/> | |
| 2257 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2258 | + </field> | |
| 2259 | + <field> | |
| 2260 | + <field_name>all_content</field_name> | |
| 2261 | + <key_value>39</key_value> | |
| 2262 | + <target_name>fcno39</target_name> | |
| 2263 | + <target_type>String</target_type> | |
| 2264 | + <target_format/> | |
| 2265 | + <target_length>-1</target_length> | |
| 2266 | + <target_precision>-1</target_precision> | |
| 2267 | + <target_decimal_symbol/> | |
| 2268 | + <target_grouping_symbol/> | |
| 2269 | + <target_currency_symbol/> | |
| 2270 | + <target_null_string/> | |
| 2271 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2272 | + </field> | |
| 2273 | + <field> | |
| 2274 | + <field_name>all_content</field_name> | |
| 2275 | + <key_value>40</key_value> | |
| 2276 | + <target_name>fcno40</target_name> | |
| 2277 | + <target_type>String</target_type> | |
| 2278 | + <target_format/> | |
| 2279 | + <target_length>-1</target_length> | |
| 2280 | + <target_precision>-1</target_precision> | |
| 2281 | + <target_decimal_symbol/> | |
| 2282 | + <target_grouping_symbol/> | |
| 2283 | + <target_currency_symbol/> | |
| 2284 | + <target_null_string/> | |
| 2285 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2286 | + </field> | |
| 2287 | + <field> | |
| 2288 | + <field_name>all_content</field_name> | |
| 2289 | + <key_value>41</key_value> | |
| 2290 | + <target_name>fcno41</target_name> | |
| 2291 | + <target_type>String</target_type> | |
| 2292 | + <target_format/> | |
| 2293 | + <target_length>-1</target_length> | |
| 2294 | + <target_precision>-1</target_precision> | |
| 2295 | + <target_decimal_symbol/> | |
| 2296 | + <target_grouping_symbol/> | |
| 2297 | + <target_currency_symbol/> | |
| 2298 | + <target_null_string/> | |
| 2299 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2300 | + </field> | |
| 2301 | + <field> | |
| 2302 | + <field_name>all_content</field_name> | |
| 2303 | + <key_value>42</key_value> | |
| 2304 | + <target_name>fcno42</target_name> | |
| 2305 | + <target_type>String</target_type> | |
| 2306 | + <target_format/> | |
| 2307 | + <target_length>-1</target_length> | |
| 2308 | + <target_precision>-1</target_precision> | |
| 2309 | + <target_decimal_symbol/> | |
| 2310 | + <target_grouping_symbol/> | |
| 2311 | + <target_currency_symbol/> | |
| 2312 | + <target_null_string/> | |
| 2313 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2314 | + </field> | |
| 2315 | + <field> | |
| 2316 | + <field_name>all_content</field_name> | |
| 2317 | + <key_value>43</key_value> | |
| 2318 | + <target_name>fcno43</target_name> | |
| 2319 | + <target_type>String</target_type> | |
| 2320 | + <target_format/> | |
| 2321 | + <target_length>-1</target_length> | |
| 2322 | + <target_precision>-1</target_precision> | |
| 2323 | + <target_decimal_symbol/> | |
| 2324 | + <target_grouping_symbol/> | |
| 2325 | + <target_currency_symbol/> | |
| 2326 | + <target_null_string/> | |
| 2327 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2328 | + </field> | |
| 2329 | + <field> | |
| 2330 | + <field_name>all_content</field_name> | |
| 2331 | + <key_value>44</key_value> | |
| 2332 | + <target_name>fcno44</target_name> | |
| 2333 | + <target_type>String</target_type> | |
| 2334 | + <target_format/> | |
| 2335 | + <target_length>-1</target_length> | |
| 2336 | + <target_precision>-1</target_precision> | |
| 2337 | + <target_decimal_symbol/> | |
| 2338 | + <target_grouping_symbol/> | |
| 2339 | + <target_currency_symbol/> | |
| 2340 | + <target_null_string/> | |
| 2341 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2342 | + </field> | |
| 2343 | + <field> | |
| 2344 | + <field_name>all_content</field_name> | |
| 2345 | + <key_value>45</key_value> | |
| 2346 | + <target_name>fcno45</target_name> | |
| 2347 | + <target_type>String</target_type> | |
| 2348 | + <target_format/> | |
| 2349 | + <target_length>-1</target_length> | |
| 2350 | + <target_precision>-1</target_precision> | |
| 2351 | + <target_decimal_symbol/> | |
| 2352 | + <target_grouping_symbol/> | |
| 2353 | + <target_currency_symbol/> | |
| 2354 | + <target_null_string/> | |
| 2355 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2356 | + </field> | |
| 2357 | + <field> | |
| 2358 | + <field_name>all_content</field_name> | |
| 2359 | + <key_value>46</key_value> | |
| 2360 | + <target_name>fcno46</target_name> | |
| 2361 | + <target_type>String</target_type> | |
| 2362 | + <target_format/> | |
| 2363 | + <target_length>-1</target_length> | |
| 2364 | + <target_precision>-1</target_precision> | |
| 2365 | + <target_decimal_symbol/> | |
| 2366 | + <target_grouping_symbol/> | |
| 2367 | + <target_currency_symbol/> | |
| 2368 | + <target_null_string/> | |
| 2369 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2370 | + </field> | |
| 2371 | + <field> | |
| 2372 | + <field_name>all_content</field_name> | |
| 2373 | + <key_value>47</key_value> | |
| 2374 | + <target_name>fcno47</target_name> | |
| 2375 | + <target_type>String</target_type> | |
| 2376 | + <target_format/> | |
| 2377 | + <target_length>-1</target_length> | |
| 2378 | + <target_precision>-1</target_precision> | |
| 2379 | + <target_decimal_symbol/> | |
| 2380 | + <target_grouping_symbol/> | |
| 2381 | + <target_currency_symbol/> | |
| 2382 | + <target_null_string/> | |
| 2383 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2384 | + </field> | |
| 2385 | + <field> | |
| 2386 | + <field_name>all_content</field_name> | |
| 2387 | + <key_value>48</key_value> | |
| 2388 | + <target_name>fcno48</target_name> | |
| 2389 | + <target_type>String</target_type> | |
| 2390 | + <target_format/> | |
| 2391 | + <target_length>-1</target_length> | |
| 2392 | + <target_precision>-1</target_precision> | |
| 2393 | + <target_decimal_symbol/> | |
| 2394 | + <target_grouping_symbol/> | |
| 2395 | + <target_currency_symbol/> | |
| 2396 | + <target_null_string/> | |
| 2397 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2398 | + </field> | |
| 2399 | + <field> | |
| 2400 | + <field_name>all_content</field_name> | |
| 2401 | + <key_value>49</key_value> | |
| 2402 | + <target_name>fcno49</target_name> | |
| 2403 | + <target_type>String</target_type> | |
| 2404 | + <target_format/> | |
| 2405 | + <target_length>-1</target_length> | |
| 2406 | + <target_precision>-1</target_precision> | |
| 2407 | + <target_decimal_symbol/> | |
| 2408 | + <target_grouping_symbol/> | |
| 2409 | + <target_currency_symbol/> | |
| 2410 | + <target_null_string/> | |
| 2411 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2412 | + </field> | |
| 2413 | + <field> | |
| 2414 | + <field_name>all_content</field_name> | |
| 2415 | + <key_value>50</key_value> | |
| 2416 | + <target_name>fcno50</target_name> | |
| 2417 | + <target_type>String</target_type> | |
| 2418 | + <target_format/> | |
| 2419 | + <target_length>-1</target_length> | |
| 2420 | + <target_precision>-1</target_precision> | |
| 2421 | + <target_decimal_symbol/> | |
| 2422 | + <target_grouping_symbol/> | |
| 2423 | + <target_currency_symbol/> | |
| 2424 | + <target_null_string/> | |
| 2425 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2426 | + </field> | |
| 2427 | + <field> | |
| 2428 | + <field_name>all_content</field_name> | |
| 2429 | + <key_value>51</key_value> | |
| 2430 | + <target_name>fcno51</target_name> | |
| 2431 | + <target_type>String</target_type> | |
| 2432 | + <target_format/> | |
| 2433 | + <target_length>-1</target_length> | |
| 2434 | + <target_precision>-1</target_precision> | |
| 2435 | + <target_decimal_symbol/> | |
| 2436 | + <target_grouping_symbol/> | |
| 2437 | + <target_currency_symbol/> | |
| 2438 | + <target_null_string/> | |
| 2439 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2440 | + </field> | |
| 2441 | + <field> | |
| 2442 | + <field_name>all_content</field_name> | |
| 2443 | + <key_value>52</key_value> | |
| 2444 | + <target_name>fcno52</target_name> | |
| 2445 | + <target_type>String</target_type> | |
| 2446 | + <target_format/> | |
| 2447 | + <target_length>-1</target_length> | |
| 2448 | + <target_precision>-1</target_precision> | |
| 2449 | + <target_decimal_symbol/> | |
| 2450 | + <target_grouping_symbol/> | |
| 2451 | + <target_currency_symbol/> | |
| 2452 | + <target_null_string/> | |
| 2453 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2454 | + </field> | |
| 2455 | + <field> | |
| 2456 | + <field_name>all_content</field_name> | |
| 2457 | + <key_value>53</key_value> | |
| 2458 | + <target_name>fcno53</target_name> | |
| 2459 | + <target_type>String</target_type> | |
| 2460 | + <target_format/> | |
| 2461 | + <target_length>-1</target_length> | |
| 2462 | + <target_precision>-1</target_precision> | |
| 2463 | + <target_decimal_symbol/> | |
| 2464 | + <target_grouping_symbol/> | |
| 2465 | + <target_currency_symbol/> | |
| 2466 | + <target_null_string/> | |
| 2467 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2468 | + </field> | |
| 2469 | + <field> | |
| 2470 | + <field_name>all_content</field_name> | |
| 2471 | + <key_value>54</key_value> | |
| 2472 | + <target_name>fcno54</target_name> | |
| 2473 | + <target_type>String</target_type> | |
| 2474 | + <target_format/> | |
| 2475 | + <target_length>-1</target_length> | |
| 2476 | + <target_precision>-1</target_precision> | |
| 2477 | + <target_decimal_symbol/> | |
| 2478 | + <target_grouping_symbol/> | |
| 2479 | + <target_currency_symbol/> | |
| 2480 | + <target_null_string/> | |
| 2481 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2482 | + </field> | |
| 2483 | + <field> | |
| 2484 | + <field_name>all_content</field_name> | |
| 2485 | + <key_value>55</key_value> | |
| 2486 | + <target_name>fcno55</target_name> | |
| 2487 | + <target_type>String</target_type> | |
| 2488 | + <target_format/> | |
| 2489 | + <target_length>-1</target_length> | |
| 2490 | + <target_precision>-1</target_precision> | |
| 2491 | + <target_decimal_symbol/> | |
| 2492 | + <target_grouping_symbol/> | |
| 2493 | + <target_currency_symbol/> | |
| 2494 | + <target_null_string/> | |
| 2495 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2496 | + </field> | |
| 2497 | + <field> | |
| 2498 | + <field_name>all_content</field_name> | |
| 2499 | + <key_value>56</key_value> | |
| 2500 | + <target_name>fcno56</target_name> | |
| 2501 | + <target_type>String</target_type> | |
| 2502 | + <target_format/> | |
| 2503 | + <target_length>-1</target_length> | |
| 2504 | + <target_precision>-1</target_precision> | |
| 2505 | + <target_decimal_symbol/> | |
| 2506 | + <target_grouping_symbol/> | |
| 2507 | + <target_currency_symbol/> | |
| 2508 | + <target_null_string/> | |
| 2509 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2510 | + </field> | |
| 2511 | + <field> | |
| 2512 | + <field_name>all_content</field_name> | |
| 2513 | + <key_value>57</key_value> | |
| 2514 | + <target_name>fcno57</target_name> | |
| 2515 | + <target_type>String</target_type> | |
| 2516 | + <target_format/> | |
| 2517 | + <target_length>-1</target_length> | |
| 2518 | + <target_precision>-1</target_precision> | |
| 2519 | + <target_decimal_symbol/> | |
| 2520 | + <target_grouping_symbol/> | |
| 2521 | + <target_currency_symbol/> | |
| 2522 | + <target_null_string/> | |
| 2523 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2524 | + </field> | |
| 2525 | + <field> | |
| 2526 | + <field_name>all_content</field_name> | |
| 2527 | + <key_value>58</key_value> | |
| 2528 | + <target_name>fcno58</target_name> | |
| 2529 | + <target_type>String</target_type> | |
| 2530 | + <target_format/> | |
| 2531 | + <target_length>-1</target_length> | |
| 2532 | + <target_precision>-1</target_precision> | |
| 2533 | + <target_decimal_symbol/> | |
| 2534 | + <target_grouping_symbol/> | |
| 2535 | + <target_currency_symbol/> | |
| 2536 | + <target_null_string/> | |
| 2537 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2538 | + </field> | |
| 2539 | + <field> | |
| 2540 | + <field_name>all_content</field_name> | |
| 2541 | + <key_value>59</key_value> | |
| 2542 | + <target_name>fcno59</target_name> | |
| 2543 | + <target_type>String</target_type> | |
| 2544 | + <target_format/> | |
| 2545 | + <target_length>-1</target_length> | |
| 2546 | + <target_precision>-1</target_precision> | |
| 2547 | + <target_decimal_symbol/> | |
| 2548 | + <target_grouping_symbol/> | |
| 2549 | + <target_currency_symbol/> | |
| 2550 | + <target_null_string/> | |
| 2551 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2552 | + </field> | |
| 2553 | + <field> | |
| 2554 | + <field_name>all_content</field_name> | |
| 2555 | + <key_value>60</key_value> | |
| 2556 | + <target_name>fcno60</target_name> | |
| 2557 | + <target_type>String</target_type> | |
| 2558 | + <target_format/> | |
| 2559 | + <target_length>-1</target_length> | |
| 2560 | + <target_precision>-1</target_precision> | |
| 2561 | + <target_decimal_symbol/> | |
| 2562 | + <target_grouping_symbol/> | |
| 2563 | + <target_currency_symbol/> | |
| 2564 | + <target_null_string/> | |
| 2565 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2566 | + </field> | |
| 2567 | + <field> | |
| 2568 | + <field_name>all_content</field_name> | |
| 2569 | + <key_value>61</key_value> | |
| 2570 | + <target_name>fcno61</target_name> | |
| 2571 | + <target_type>String</target_type> | |
| 2572 | + <target_format/> | |
| 2573 | + <target_length>-1</target_length> | |
| 2574 | + <target_precision>-1</target_precision> | |
| 2575 | + <target_decimal_symbol/> | |
| 2576 | + <target_grouping_symbol/> | |
| 2577 | + <target_currency_symbol/> | |
| 2578 | + <target_null_string/> | |
| 2579 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2580 | + </field> | |
| 2581 | + <field> | |
| 2582 | + <field_name>all_content</field_name> | |
| 2583 | + <key_value>62</key_value> | |
| 2584 | + <target_name>fcno62</target_name> | |
| 2585 | + <target_type>String</target_type> | |
| 2586 | + <target_format/> | |
| 2587 | + <target_length>-1</target_length> | |
| 2588 | + <target_precision>-1</target_precision> | |
| 2589 | + <target_decimal_symbol/> | |
| 2590 | + <target_grouping_symbol/> | |
| 2591 | + <target_currency_symbol/> | |
| 2592 | + <target_null_string/> | |
| 2593 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2594 | + </field> | |
| 2595 | + <field> | |
| 2596 | + <field_name>all_content</field_name> | |
| 2597 | + <key_value>63</key_value> | |
| 2598 | + <target_name>fcno63</target_name> | |
| 2599 | + <target_type>String</target_type> | |
| 2600 | + <target_format/> | |
| 2601 | + <target_length>-1</target_length> | |
| 2602 | + <target_precision>-1</target_precision> | |
| 2603 | + <target_decimal_symbol/> | |
| 2604 | + <target_grouping_symbol/> | |
| 2605 | + <target_currency_symbol/> | |
| 2606 | + <target_null_string/> | |
| 2607 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2608 | + </field> | |
| 2609 | + <field> | |
| 2610 | + <field_name>all_content</field_name> | |
| 2611 | + <key_value>64</key_value> | |
| 2612 | + <target_name>fcno64</target_name> | |
| 2613 | + <target_type>String</target_type> | |
| 2614 | + <target_format/> | |
| 2615 | + <target_length>-1</target_length> | |
| 2616 | + <target_precision>-1</target_precision> | |
| 2617 | + <target_decimal_symbol/> | |
| 2618 | + <target_grouping_symbol/> | |
| 2619 | + <target_currency_symbol/> | |
| 2620 | + <target_null_string/> | |
| 2621 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2622 | + </field> | |
| 2623 | + <field> | |
| 2624 | + <field_name>all_content</field_name> | |
| 2625 | + <key_value>65</key_value> | |
| 2626 | + <target_name>fcno65</target_name> | |
| 2627 | + <target_type>String</target_type> | |
| 2628 | + <target_format/> | |
| 2629 | + <target_length>-1</target_length> | |
| 2630 | + <target_precision>-1</target_precision> | |
| 2631 | + <target_decimal_symbol/> | |
| 2632 | + <target_grouping_symbol/> | |
| 2633 | + <target_currency_symbol/> | |
| 2634 | + <target_null_string/> | |
| 2635 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2636 | + </field> | |
| 2637 | + <field> | |
| 2638 | + <field_name>all_content</field_name> | |
| 2639 | + <key_value>66</key_value> | |
| 2640 | + <target_name>fcno66</target_name> | |
| 2641 | + <target_type>String</target_type> | |
| 2642 | + <target_format/> | |
| 2643 | + <target_length>-1</target_length> | |
| 2644 | + <target_precision>-1</target_precision> | |
| 2645 | + <target_decimal_symbol/> | |
| 2646 | + <target_grouping_symbol/> | |
| 2647 | + <target_currency_symbol/> | |
| 2648 | + <target_null_string/> | |
| 2649 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2650 | + </field> | |
| 2651 | + <field> | |
| 2652 | + <field_name>all_content</field_name> | |
| 2653 | + <key_value>67</key_value> | |
| 2654 | + <target_name>fcno67</target_name> | |
| 2655 | + <target_type>String</target_type> | |
| 2656 | + <target_format/> | |
| 2657 | + <target_length>-1</target_length> | |
| 2658 | + <target_precision>-1</target_precision> | |
| 2659 | + <target_decimal_symbol/> | |
| 2660 | + <target_grouping_symbol/> | |
| 2661 | + <target_currency_symbol/> | |
| 2662 | + <target_null_string/> | |
| 2663 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2664 | + </field> | |
| 2665 | + <field> | |
| 2666 | + <field_name>all_content</field_name> | |
| 2667 | + <key_value>68</key_value> | |
| 2668 | + <target_name>fcno68</target_name> | |
| 2669 | + <target_type>String</target_type> | |
| 2670 | + <target_format/> | |
| 2671 | + <target_length>-1</target_length> | |
| 2672 | + <target_precision>-1</target_precision> | |
| 2673 | + <target_decimal_symbol/> | |
| 2674 | + <target_grouping_symbol/> | |
| 2675 | + <target_currency_symbol/> | |
| 2676 | + <target_null_string/> | |
| 2677 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2678 | + </field> | |
| 2679 | + <field> | |
| 2680 | + <field_name>all_content</field_name> | |
| 2681 | + <key_value>69</key_value> | |
| 2682 | + <target_name>fcno69</target_name> | |
| 2683 | + <target_type>String</target_type> | |
| 2684 | + <target_format/> | |
| 2685 | + <target_length>-1</target_length> | |
| 2686 | + <target_precision>-1</target_precision> | |
| 2687 | + <target_decimal_symbol/> | |
| 2688 | + <target_grouping_symbol/> | |
| 2689 | + <target_currency_symbol/> | |
| 2690 | + <target_null_string/> | |
| 2691 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2692 | + </field> | |
| 2693 | + <field> | |
| 2694 | + <field_name>all_content</field_name> | |
| 2695 | + <key_value>70</key_value> | |
| 2696 | + <target_name>fcno70</target_name> | |
| 2697 | + <target_type>String</target_type> | |
| 2698 | + <target_format/> | |
| 2699 | + <target_length>-1</target_length> | |
| 2700 | + <target_precision>-1</target_precision> | |
| 2701 | + <target_decimal_symbol/> | |
| 2702 | + <target_grouping_symbol/> | |
| 2703 | + <target_currency_symbol/> | |
| 2704 | + <target_null_string/> | |
| 2705 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2706 | + </field> | |
| 2707 | + <field> | |
| 2708 | + <field_name>all_content</field_name> | |
| 2709 | + <key_value>71</key_value> | |
| 2710 | + <target_name>fcno71</target_name> | |
| 2711 | + <target_type>String</target_type> | |
| 2712 | + <target_format/> | |
| 2713 | + <target_length>-1</target_length> | |
| 2714 | + <target_precision>-1</target_precision> | |
| 2715 | + <target_decimal_symbol/> | |
| 2716 | + <target_grouping_symbol/> | |
| 2717 | + <target_currency_symbol/> | |
| 2718 | + <target_null_string/> | |
| 2719 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2720 | + </field> | |
| 2721 | + <field> | |
| 2722 | + <field_name>all_content</field_name> | |
| 2723 | + <key_value>72</key_value> | |
| 2724 | + <target_name>fcno72</target_name> | |
| 2725 | + <target_type>String</target_type> | |
| 2726 | + <target_format/> | |
| 2727 | + <target_length>-1</target_length> | |
| 2728 | + <target_precision>-1</target_precision> | |
| 2729 | + <target_decimal_symbol/> | |
| 2730 | + <target_grouping_symbol/> | |
| 2731 | + <target_currency_symbol/> | |
| 2732 | + <target_null_string/> | |
| 2733 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2734 | + </field> | |
| 2735 | + <field> | |
| 2736 | + <field_name>all_content</field_name> | |
| 2737 | + <key_value>73</key_value> | |
| 2738 | + <target_name>fcno73</target_name> | |
| 2739 | + <target_type>String</target_type> | |
| 2740 | + <target_format/> | |
| 2741 | + <target_length>-1</target_length> | |
| 2742 | + <target_precision>-1</target_precision> | |
| 2743 | + <target_decimal_symbol/> | |
| 2744 | + <target_grouping_symbol/> | |
| 2745 | + <target_currency_symbol/> | |
| 2746 | + <target_null_string/> | |
| 2747 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2748 | + </field> | |
| 2749 | + <field> | |
| 2750 | + <field_name>all_content</field_name> | |
| 2751 | + <key_value>74</key_value> | |
| 2752 | + <target_name>fcno74</target_name> | |
| 2753 | + <target_type>String</target_type> | |
| 2754 | + <target_format/> | |
| 2755 | + <target_length>-1</target_length> | |
| 2756 | + <target_precision>-1</target_precision> | |
| 2757 | + <target_decimal_symbol/> | |
| 2758 | + <target_grouping_symbol/> | |
| 2759 | + <target_currency_symbol/> | |
| 2760 | + <target_null_string/> | |
| 2761 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2762 | + </field> | |
| 2763 | + <field> | |
| 2764 | + <field_name>all_content</field_name> | |
| 2765 | + <key_value>75</key_value> | |
| 2766 | + <target_name>fcno75</target_name> | |
| 2767 | + <target_type>String</target_type> | |
| 2768 | + <target_format/> | |
| 2769 | + <target_length>-1</target_length> | |
| 2770 | + <target_precision>-1</target_precision> | |
| 2771 | + <target_decimal_symbol/> | |
| 2772 | + <target_grouping_symbol/> | |
| 2773 | + <target_currency_symbol/> | |
| 2774 | + <target_null_string/> | |
| 2775 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2776 | + </field> | |
| 2777 | + <field> | |
| 2778 | + <field_name>all_content</field_name> | |
| 2779 | + <key_value>76</key_value> | |
| 2780 | + <target_name>fcno76</target_name> | |
| 2781 | + <target_type>String</target_type> | |
| 2782 | + <target_format/> | |
| 2783 | + <target_length>-1</target_length> | |
| 2784 | + <target_precision>-1</target_precision> | |
| 2785 | + <target_decimal_symbol/> | |
| 2786 | + <target_grouping_symbol/> | |
| 2787 | + <target_currency_symbol/> | |
| 2788 | + <target_null_string/> | |
| 2789 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2790 | + </field> | |
| 2791 | + <field> | |
| 2792 | + <field_name>all_content</field_name> | |
| 2793 | + <key_value>77</key_value> | |
| 2794 | + <target_name>fcno77</target_name> | |
| 2795 | + <target_type>String</target_type> | |
| 2796 | + <target_format/> | |
| 2797 | + <target_length>-1</target_length> | |
| 2798 | + <target_precision>-1</target_precision> | |
| 2799 | + <target_decimal_symbol/> | |
| 2800 | + <target_grouping_symbol/> | |
| 2801 | + <target_currency_symbol/> | |
| 2802 | + <target_null_string/> | |
| 2803 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2804 | + </field> | |
| 2805 | + <field> | |
| 2806 | + <field_name>all_content</field_name> | |
| 2807 | + <key_value>78</key_value> | |
| 2808 | + <target_name>fcno78</target_name> | |
| 2809 | + <target_type>String</target_type> | |
| 2810 | + <target_format/> | |
| 2811 | + <target_length>-1</target_length> | |
| 2812 | + <target_precision>-1</target_precision> | |
| 2813 | + <target_decimal_symbol/> | |
| 2814 | + <target_grouping_symbol/> | |
| 2815 | + <target_currency_symbol/> | |
| 2816 | + <target_null_string/> | |
| 2817 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2818 | + </field> | |
| 2819 | + <field> | |
| 2820 | + <field_name>all_content</field_name> | |
| 2821 | + <key_value>79</key_value> | |
| 2822 | + <target_name>fcno79</target_name> | |
| 2823 | + <target_type>String</target_type> | |
| 2824 | + <target_format/> | |
| 2825 | + <target_length>-1</target_length> | |
| 2826 | + <target_precision>-1</target_precision> | |
| 2827 | + <target_decimal_symbol/> | |
| 2828 | + <target_grouping_symbol/> | |
| 2829 | + <target_currency_symbol/> | |
| 2830 | + <target_null_string/> | |
| 2831 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2832 | + </field> | |
| 2833 | + <field> | |
| 2834 | + <field_name>all_content</field_name> | |
| 2835 | + <key_value>80</key_value> | |
| 2836 | + <target_name>fcno80</target_name> | |
| 2837 | + <target_type>String</target_type> | |
| 2838 | + <target_format/> | |
| 2839 | + <target_length>-1</target_length> | |
| 2840 | + <target_precision>-1</target_precision> | |
| 2841 | + <target_decimal_symbol/> | |
| 2842 | + <target_grouping_symbol/> | |
| 2843 | + <target_currency_symbol/> | |
| 2844 | + <target_null_string/> | |
| 2845 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2846 | + </field> | |
| 2847 | + <field> | |
| 2848 | + <field_name>all_content</field_name> | |
| 2849 | + <key_value>81</key_value> | |
| 2850 | + <target_name>fcno81</target_name> | |
| 2851 | + <target_type>String</target_type> | |
| 2852 | + <target_format/> | |
| 2853 | + <target_length>-1</target_length> | |
| 2854 | + <target_precision>-1</target_precision> | |
| 2855 | + <target_decimal_symbol/> | |
| 2856 | + <target_grouping_symbol/> | |
| 2857 | + <target_currency_symbol/> | |
| 2858 | + <target_null_string/> | |
| 2859 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2860 | + </field> | |
| 2861 | + <field> | |
| 2862 | + <field_name>all_content</field_name> | |
| 2863 | + <key_value>82</key_value> | |
| 2864 | + <target_name>fcno82</target_name> | |
| 2865 | + <target_type>String</target_type> | |
| 2866 | + <target_format/> | |
| 2867 | + <target_length>-1</target_length> | |
| 2868 | + <target_precision>-1</target_precision> | |
| 2869 | + <target_decimal_symbol/> | |
| 2870 | + <target_grouping_symbol/> | |
| 2871 | + <target_currency_symbol/> | |
| 2872 | + <target_null_string/> | |
| 2873 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2874 | + </field> | |
| 2875 | + <field> | |
| 2876 | + <field_name>all_content</field_name> | |
| 2877 | + <key_value>83</key_value> | |
| 2878 | + <target_name>fcno83</target_name> | |
| 2879 | + <target_type>String</target_type> | |
| 2880 | + <target_format/> | |
| 2881 | + <target_length>-1</target_length> | |
| 2882 | + <target_precision>-1</target_precision> | |
| 2883 | + <target_decimal_symbol/> | |
| 2884 | + <target_grouping_symbol/> | |
| 2885 | + <target_currency_symbol/> | |
| 2886 | + <target_null_string/> | |
| 2887 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2888 | + </field> | |
| 2889 | + <field> | |
| 2890 | + <field_name>all_content</field_name> | |
| 2891 | + <key_value>84</key_value> | |
| 2892 | + <target_name>fcno84</target_name> | |
| 2893 | + <target_type>String</target_type> | |
| 2894 | + <target_format/> | |
| 2895 | + <target_length>-1</target_length> | |
| 2896 | + <target_precision>-1</target_precision> | |
| 2897 | + <target_decimal_symbol/> | |
| 2898 | + <target_grouping_symbol/> | |
| 2899 | + <target_currency_symbol/> | |
| 2900 | + <target_null_string/> | |
| 2901 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2902 | + </field> | |
| 2903 | + <field> | |
| 2904 | + <field_name>all_content</field_name> | |
| 2905 | + <key_value>85</key_value> | |
| 2906 | + <target_name>fcno85</target_name> | |
| 2907 | + <target_type>String</target_type> | |
| 2908 | + <target_format/> | |
| 2909 | + <target_length>-1</target_length> | |
| 2910 | + <target_precision>-1</target_precision> | |
| 2911 | + <target_decimal_symbol/> | |
| 2912 | + <target_grouping_symbol/> | |
| 2913 | + <target_currency_symbol/> | |
| 2914 | + <target_null_string/> | |
| 2915 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2916 | + </field> | |
| 2917 | + <field> | |
| 2918 | + <field_name>all_content</field_name> | |
| 2919 | + <key_value>86</key_value> | |
| 2920 | + <target_name>fcno86</target_name> | |
| 2921 | + <target_type>String</target_type> | |
| 2922 | + <target_format/> | |
| 2923 | + <target_length>-1</target_length> | |
| 2924 | + <target_precision>-1</target_precision> | |
| 2925 | + <target_decimal_symbol/> | |
| 2926 | + <target_grouping_symbol/> | |
| 2927 | + <target_currency_symbol/> | |
| 2928 | + <target_null_string/> | |
| 2929 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2930 | + </field> | |
| 2931 | + <field> | |
| 2932 | + <field_name>all_content</field_name> | |
| 2933 | + <key_value>87</key_value> | |
| 2934 | + <target_name>fcno87</target_name> | |
| 2935 | + <target_type>String</target_type> | |
| 2936 | + <target_format/> | |
| 2937 | + <target_length>-1</target_length> | |
| 2938 | + <target_precision>-1</target_precision> | |
| 2939 | + <target_decimal_symbol/> | |
| 2940 | + <target_grouping_symbol/> | |
| 2941 | + <target_currency_symbol/> | |
| 2942 | + <target_null_string/> | |
| 2943 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2944 | + </field> | |
| 2945 | + <field> | |
| 2946 | + <field_name>all_content</field_name> | |
| 2947 | + <key_value>88</key_value> | |
| 2948 | + <target_name>fcno88</target_name> | |
| 2949 | + <target_type>String</target_type> | |
| 2950 | + <target_format/> | |
| 2951 | + <target_length>-1</target_length> | |
| 2952 | + <target_precision>-1</target_precision> | |
| 2953 | + <target_decimal_symbol/> | |
| 2954 | + <target_grouping_symbol/> | |
| 2955 | + <target_currency_symbol/> | |
| 2956 | + <target_null_string/> | |
| 2957 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2958 | + </field> | |
| 2959 | + <field> | |
| 2960 | + <field_name>all_content</field_name> | |
| 2961 | + <key_value>89</key_value> | |
| 2962 | + <target_name>fcno89</target_name> | |
| 2963 | + <target_type>String</target_type> | |
| 2964 | + <target_format/> | |
| 2965 | + <target_length>-1</target_length> | |
| 2966 | + <target_precision>-1</target_precision> | |
| 2967 | + <target_decimal_symbol/> | |
| 2968 | + <target_grouping_symbol/> | |
| 2969 | + <target_currency_symbol/> | |
| 2970 | + <target_null_string/> | |
| 2971 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2972 | + </field> | |
| 2973 | + <field> | |
| 2974 | + <field_name>all_content</field_name> | |
| 2975 | + <key_value>90</key_value> | |
| 2976 | + <target_name>fcno90</target_name> | |
| 2977 | + <target_type>String</target_type> | |
| 2978 | + <target_format/> | |
| 2979 | + <target_length>-1</target_length> | |
| 2980 | + <target_precision>-1</target_precision> | |
| 2981 | + <target_decimal_symbol/> | |
| 2982 | + <target_grouping_symbol/> | |
| 2983 | + <target_currency_symbol/> | |
| 2984 | + <target_null_string/> | |
| 2985 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2986 | + </field> | |
| 2987 | + <field> | |
| 2988 | + <field_name>all_content</field_name> | |
| 2989 | + <key_value>91</key_value> | |
| 2990 | + <target_name>fcno91</target_name> | |
| 2991 | + <target_type>String</target_type> | |
| 2992 | + <target_format/> | |
| 2993 | + <target_length>-1</target_length> | |
| 2994 | + <target_precision>-1</target_precision> | |
| 2995 | + <target_decimal_symbol/> | |
| 2996 | + <target_grouping_symbol/> | |
| 2997 | + <target_currency_symbol/> | |
| 2998 | + <target_null_string/> | |
| 2999 | + <target_aggregation_type>-</target_aggregation_type> | |
| 3000 | + </field> | |
| 3001 | + <field> | |
| 3002 | + <field_name>all_content</field_name> | |
| 3003 | + <key_value>92</key_value> | |
| 3004 | + <target_name>fcno92</target_name> | |
| 3005 | + <target_type>String</target_type> | |
| 3006 | + <target_format/> | |
| 3007 | + <target_length>-1</target_length> | |
| 3008 | + <target_precision>-1</target_precision> | |
| 3009 | + <target_decimal_symbol/> | |
| 3010 | + <target_grouping_symbol/> | |
| 3011 | + <target_currency_symbol/> | |
| 3012 | + <target_null_string/> | |
| 3013 | + <target_aggregation_type>-</target_aggregation_type> | |
| 3014 | + </field> | |
| 3015 | + <field> | |
| 3016 | + <field_name>all_content</field_name> | |
| 3017 | + <key_value>93</key_value> | |
| 3018 | + <target_name>fcno93</target_name> | |
| 3019 | + <target_type>String</target_type> | |
| 3020 | + <target_format/> | |
| 3021 | + <target_length>-1</target_length> | |
| 3022 | + <target_precision>-1</target_precision> | |
| 3023 | + <target_decimal_symbol/> | |
| 3024 | + <target_grouping_symbol/> | |
| 3025 | + <target_currency_symbol/> | |
| 3026 | + <target_null_string/> | |
| 3027 | + <target_aggregation_type>-</target_aggregation_type> | |
| 3028 | + </field> | |
| 3029 | + <field> | |
| 3030 | + <field_name>all_content</field_name> | |
| 3031 | + <key_value>94</key_value> | |
| 3032 | + <target_name>fcno94</target_name> | |
| 3033 | + <target_type>String</target_type> | |
| 3034 | + <target_format/> | |
| 3035 | + <target_length>-1</target_length> | |
| 3036 | + <target_precision>-1</target_precision> | |
| 3037 | + <target_decimal_symbol/> | |
| 3038 | + <target_grouping_symbol/> | |
| 3039 | + <target_currency_symbol/> | |
| 3040 | + <target_null_string/> | |
| 3041 | + <target_aggregation_type>-</target_aggregation_type> | |
| 3042 | + </field> | |
| 3043 | + <field> | |
| 3044 | + <field_name>all_content</field_name> | |
| 3045 | + <key_value>95</key_value> | |
| 3046 | + <target_name>fcno95</target_name> | |
| 3047 | + <target_type>String</target_type> | |
| 3048 | + <target_format/> | |
| 3049 | + <target_length>-1</target_length> | |
| 3050 | + <target_precision>-1</target_precision> | |
| 3051 | + <target_decimal_symbol/> | |
| 3052 | + <target_grouping_symbol/> | |
| 3053 | + <target_currency_symbol/> | |
| 3054 | + <target_null_string/> | |
| 3055 | + <target_aggregation_type>-</target_aggregation_type> | |
| 3056 | + </field> | |
| 3057 | + <field> | |
| 3058 | + <field_name>all_content</field_name> | |
| 3059 | + <key_value>96</key_value> | |
| 3060 | + <target_name>fcno96</target_name> | |
| 3061 | + <target_type>String</target_type> | |
| 3062 | + <target_format/> | |
| 3063 | + <target_length>-1</target_length> | |
| 3064 | + <target_precision>-1</target_precision> | |
| 3065 | + <target_decimal_symbol/> | |
| 3066 | + <target_grouping_symbol/> | |
| 3067 | + <target_currency_symbol/> | |
| 3068 | + <target_null_string/> | |
| 3069 | + <target_aggregation_type>-</target_aggregation_type> | |
| 3070 | + </field> | |
| 3071 | + <field> | |
| 3072 | + <field_name>all_content</field_name> | |
| 3073 | + <key_value>97</key_value> | |
| 3074 | + <target_name>fcno97</target_name> | |
| 3075 | + <target_type>String</target_type> | |
| 3076 | + <target_format/> | |
| 3077 | + <target_length>-1</target_length> | |
| 3078 | + <target_precision>-1</target_precision> | |
| 3079 | + <target_decimal_symbol/> | |
| 3080 | + <target_grouping_symbol/> | |
| 3081 | + <target_currency_symbol/> | |
| 3082 | + <target_null_string/> | |
| 3083 | + <target_aggregation_type>-</target_aggregation_type> | |
| 3084 | + </field> | |
| 3085 | + <field> | |
| 3086 | + <field_name>all_content</field_name> | |
| 3087 | + <key_value>98</key_value> | |
| 3088 | + <target_name>fcno98</target_name> | |
| 3089 | + <target_type>String</target_type> | |
| 3090 | + <target_format/> | |
| 3091 | + <target_length>-1</target_length> | |
| 3092 | + <target_precision>-1</target_precision> | |
| 3093 | + <target_decimal_symbol/> | |
| 3094 | + <target_grouping_symbol/> | |
| 3095 | + <target_currency_symbol/> | |
| 3096 | + <target_null_string/> | |
| 3097 | + <target_aggregation_type>-</target_aggregation_type> | |
| 3098 | + </field> | |
| 3099 | + <field> | |
| 3100 | + <field_name>all_content</field_name> | |
| 3101 | + <key_value>99</key_value> | |
| 3102 | + <target_name>fcno99</target_name> | |
| 3103 | + <target_type>String</target_type> | |
| 3104 | + <target_format/> | |
| 3105 | + <target_length>-1</target_length> | |
| 3106 | + <target_precision>-1</target_precision> | |
| 3107 | + <target_decimal_symbol/> | |
| 3108 | + <target_grouping_symbol/> | |
| 3109 | + <target_currency_symbol/> | |
| 3110 | + <target_null_string/> | |
| 3111 | + <target_aggregation_type>-</target_aggregation_type> | |
| 3112 | + </field> | |
| 3113 | + <field> | |
| 3114 | + <field_name>all_content</field_name> | |
| 3115 | + <key_value>100</key_value> | |
| 3116 | + <target_name>fcno100</target_name> | |
| 3117 | + <target_type>String</target_type> | |
| 3118 | + <target_format/> | |
| 3119 | + <target_length>-1</target_length> | |
| 3120 | + <target_precision>-1</target_precision> | |
| 3121 | + <target_decimal_symbol/> | |
| 3122 | + <target_grouping_symbol/> | |
| 3123 | + <target_currency_symbol/> | |
| 3124 | + <target_null_string/> | |
| 3125 | + <target_aggregation_type>-</target_aggregation_type> | |
| 3126 | + </field> | |
| 3127 | + <field> | |
| 3128 | + <field_name>all_content</field_name> | |
| 3129 | + <key_value>101</key_value> | |
| 3130 | + <target_name>fcno101</target_name> | |
| 3131 | + <target_type>String</target_type> | |
| 3132 | + <target_format/> | |
| 3133 | + <target_length>-1</target_length> | |
| 3134 | + <target_precision>-1</target_precision> | |
| 3135 | + <target_decimal_symbol/> | |
| 3136 | + <target_grouping_symbol/> | |
| 3137 | + <target_currency_symbol/> | |
| 3138 | + <target_null_string/> | |
| 3139 | + <target_aggregation_type>-</target_aggregation_type> | |
| 3140 | + </field> | |
| 3141 | + <field> | |
| 3142 | + <field_name>all_content</field_name> | |
| 3143 | + <key_value>102</key_value> | |
| 3144 | + <target_name>fcno102</target_name> | |
| 3145 | + <target_type>String</target_type> | |
| 3146 | + <target_format/> | |
| 3147 | + <target_length>-1</target_length> | |
| 3148 | + <target_precision>-1</target_precision> | |
| 3149 | + <target_decimal_symbol/> | |
| 3150 | + <target_grouping_symbol/> | |
| 3151 | + <target_currency_symbol/> | |
| 3152 | + <target_null_string/> | |
| 3153 | + <target_aggregation_type>-</target_aggregation_type> | |
| 3154 | + </field> | |
| 3155 | + <field> | |
| 3156 | + <field_name>all_content</field_name> | |
| 3157 | + <key_value>103</key_value> | |
| 3158 | + <target_name>fcno103</target_name> | |
| 3159 | + <target_type>String</target_type> | |
| 3160 | + <target_format/> | |
| 3161 | + <target_length>-1</target_length> | |
| 3162 | + <target_precision>-1</target_precision> | |
| 3163 | + <target_decimal_symbol/> | |
| 3164 | + <target_grouping_symbol/> | |
| 3165 | + <target_currency_symbol/> | |
| 3166 | + <target_null_string/> | |
| 3167 | + <target_aggregation_type>-</target_aggregation_type> | |
| 3168 | + </field> | |
| 3169 | + <field> | |
| 3170 | + <field_name>all_content</field_name> | |
| 3171 | + <key_value>104</key_value> | |
| 3172 | + <target_name>fcno104</target_name> | |
| 3173 | + <target_type>String</target_type> | |
| 3174 | + <target_format/> | |
| 3175 | + <target_length>-1</target_length> | |
| 3176 | + <target_precision>-1</target_precision> | |
| 3177 | + <target_decimal_symbol/> | |
| 3178 | + <target_grouping_symbol/> | |
| 3179 | + <target_currency_symbol/> | |
| 3180 | + <target_null_string/> | |
| 3181 | + <target_aggregation_type>-</target_aggregation_type> | |
| 3182 | + </field> | |
| 3183 | + <field> | |
| 3184 | + <field_name>all_content</field_name> | |
| 3185 | + <key_value>105</key_value> | |
| 3186 | + <target_name>fcno105</target_name> | |
| 3187 | + <target_type>String</target_type> | |
| 3188 | + <target_format/> | |
| 3189 | + <target_length>-1</target_length> | |
| 3190 | + <target_precision>-1</target_precision> | |
| 3191 | + <target_decimal_symbol/> | |
| 3192 | + <target_grouping_symbol/> | |
| 3193 | + <target_currency_symbol/> | |
| 3194 | + <target_null_string/> | |
| 3195 | + <target_aggregation_type>-</target_aggregation_type> | |
| 3196 | + </field> | |
| 3197 | + <field> | |
| 3198 | + <field_name>all_content</field_name> | |
| 3199 | + <key_value>106</key_value> | |
| 3200 | + <target_name>fcno106</target_name> | |
| 3201 | + <target_type>String</target_type> | |
| 3202 | + <target_format/> | |
| 3203 | + <target_length>-1</target_length> | |
| 3204 | + <target_precision>-1</target_precision> | |
| 3205 | + <target_decimal_symbol/> | |
| 3206 | + <target_grouping_symbol/> | |
| 3207 | + <target_currency_symbol/> | |
| 3208 | + <target_null_string/> | |
| 3209 | + <target_aggregation_type>-</target_aggregation_type> | |
| 3210 | + </field> | |
| 3211 | + <field> | |
| 3212 | + <field_name>all_content</field_name> | |
| 3213 | + <key_value>107</key_value> | |
| 3214 | + <target_name>fcno107</target_name> | |
| 3215 | + <target_type>String</target_type> | |
| 3216 | + <target_format/> | |
| 3217 | + <target_length>-1</target_length> | |
| 3218 | + <target_precision>-1</target_precision> | |
| 3219 | + <target_decimal_symbol/> | |
| 3220 | + <target_grouping_symbol/> | |
| 3221 | + <target_currency_symbol/> | |
| 3222 | + <target_null_string/> | |
| 3223 | + <target_aggregation_type>-</target_aggregation_type> | |
| 3224 | + </field> | |
| 3225 | + <field> | |
| 3226 | + <field_name>all_content</field_name> | |
| 3227 | + <key_value>108</key_value> | |
| 3228 | + <target_name>fcno108</target_name> | |
| 3229 | + <target_type>String</target_type> | |
| 3230 | + <target_format/> | |
| 3231 | + <target_length>-1</target_length> | |
| 3232 | + <target_precision>-1</target_precision> | |
| 3233 | + <target_decimal_symbol/> | |
| 3234 | + <target_grouping_symbol/> | |
| 3235 | + <target_currency_symbol/> | |
| 3236 | + <target_null_string/> | |
| 3237 | + <target_aggregation_type>-</target_aggregation_type> | |
| 3238 | + </field> | |
| 3239 | + <field> | |
| 3240 | + <field_name>all_content</field_name> | |
| 3241 | + <key_value>109</key_value> | |
| 3242 | + <target_name>fcno109</target_name> | |
| 3243 | + <target_type>String</target_type> | |
| 3244 | + <target_format/> | |
| 3245 | + <target_length>-1</target_length> | |
| 3246 | + <target_precision>-1</target_precision> | |
| 3247 | + <target_decimal_symbol/> | |
| 3248 | + <target_grouping_symbol/> | |
| 3249 | + <target_currency_symbol/> | |
| 3250 | + <target_null_string/> | |
| 3251 | + <target_aggregation_type>-</target_aggregation_type> | |
| 3252 | + </field> | |
| 3253 | + <field> | |
| 3254 | + <field_name>all_content</field_name> | |
| 3255 | + <key_value>110</key_value> | |
| 3256 | + <target_name>fcno110</target_name> | |
| 3257 | + <target_type>String</target_type> | |
| 3258 | + <target_format/> | |
| 3259 | + <target_length>-1</target_length> | |
| 3260 | + <target_precision>-1</target_precision> | |
| 3261 | + <target_decimal_symbol/> | |
| 3262 | + <target_grouping_symbol/> | |
| 3263 | + <target_currency_symbol/> | |
| 3264 | + <target_null_string/> | |
| 3265 | + <target_aggregation_type>-</target_aggregation_type> | |
| 3266 | + </field> | |
| 3267 | + <field> | |
| 3268 | + <field_name>all_content</field_name> | |
| 3269 | + <key_value>111</key_value> | |
| 3270 | + <target_name>fcno111</target_name> | |
| 3271 | + <target_type>String</target_type> | |
| 3272 | + <target_format/> | |
| 3273 | + <target_length>-1</target_length> | |
| 3274 | + <target_precision>-1</target_precision> | |
| 3275 | + <target_decimal_symbol/> | |
| 3276 | + <target_grouping_symbol/> | |
| 3277 | + <target_currency_symbol/> | |
| 3278 | + <target_null_string/> | |
| 3279 | + <target_aggregation_type>-</target_aggregation_type> | |
| 3280 | + </field> | |
| 3281 | + <field> | |
| 3282 | + <field_name>all_content</field_name> | |
| 3283 | + <key_value>112</key_value> | |
| 3284 | + <target_name>fcno112</target_name> | |
| 3285 | + <target_type>String</target_type> | |
| 3286 | + <target_format/> | |
| 3287 | + <target_length>-1</target_length> | |
| 3288 | + <target_precision>-1</target_precision> | |
| 3289 | + <target_decimal_symbol/> | |
| 3290 | + <target_grouping_symbol/> | |
| 3291 | + <target_currency_symbol/> | |
| 3292 | + <target_null_string/> | |
| 3293 | + <target_aggregation_type>-</target_aggregation_type> | |
| 3294 | + </field> | |
| 3295 | + <field> | |
| 3296 | + <field_name>all_content</field_name> | |
| 3297 | + <key_value>113</key_value> | |
| 3298 | + <target_name>fcno113</target_name> | |
| 3299 | + <target_type>String</target_type> | |
| 3300 | + <target_format/> | |
| 3301 | + <target_length>-1</target_length> | |
| 3302 | + <target_precision>-1</target_precision> | |
| 3303 | + <target_decimal_symbol/> | |
| 3304 | + <target_grouping_symbol/> | |
| 3305 | + <target_currency_symbol/> | |
| 3306 | + <target_null_string/> | |
| 3307 | + <target_aggregation_type>-</target_aggregation_type> | |
| 3308 | + </field> | |
| 3309 | + <field> | |
| 3310 | + <field_name>all_content</field_name> | |
| 3311 | + <key_value>114</key_value> | |
| 3312 | + <target_name>fcno114</target_name> | |
| 3313 | + <target_type>String</target_type> | |
| 3314 | + <target_format/> | |
| 3315 | + <target_length>-1</target_length> | |
| 3316 | + <target_precision>-1</target_precision> | |
| 3317 | + <target_decimal_symbol/> | |
| 3318 | + <target_grouping_symbol/> | |
| 3319 | + <target_currency_symbol/> | |
| 3320 | + <target_null_string/> | |
| 3321 | + <target_aggregation_type>-</target_aggregation_type> | |
| 3322 | + </field> | |
| 3323 | + <field> | |
| 3324 | + <field_name>all_content</field_name> | |
| 3325 | + <key_value>115</key_value> | |
| 3326 | + <target_name>fcno115</target_name> | |
| 3327 | + <target_type>String</target_type> | |
| 3328 | + <target_format/> | |
| 3329 | + <target_length>-1</target_length> | |
| 3330 | + <target_precision>-1</target_precision> | |
| 3331 | + <target_decimal_symbol/> | |
| 3332 | + <target_grouping_symbol/> | |
| 3333 | + <target_currency_symbol/> | |
| 3334 | + <target_null_string/> | |
| 3335 | + <target_aggregation_type>-</target_aggregation_type> | |
| 3336 | + </field> | |
| 3337 | + <field> | |
| 3338 | + <field_name>all_content</field_name> | |
| 3339 | + <key_value>116</key_value> | |
| 3340 | + <target_name>fcno116</target_name> | |
| 3341 | + <target_type>String</target_type> | |
| 3342 | + <target_format/> | |
| 3343 | + <target_length>-1</target_length> | |
| 3344 | + <target_precision>-1</target_precision> | |
| 3345 | + <target_decimal_symbol/> | |
| 3346 | + <target_grouping_symbol/> | |
| 3347 | + <target_currency_symbol/> | |
| 3348 | + <target_null_string/> | |
| 3349 | + <target_aggregation_type>-</target_aggregation_type> | |
| 3350 | + </field> | |
| 3351 | + <field> | |
| 3352 | + <field_name>all_content</field_name> | |
| 3353 | + <key_value>117</key_value> | |
| 3354 | + <target_name>fcno117</target_name> | |
| 3355 | + <target_type>String</target_type> | |
| 3356 | + <target_format/> | |
| 3357 | + <target_length>-1</target_length> | |
| 3358 | + <target_precision>-1</target_precision> | |
| 3359 | + <target_decimal_symbol/> | |
| 3360 | + <target_grouping_symbol/> | |
| 3361 | + <target_currency_symbol/> | |
| 3362 | + <target_null_string/> | |
| 3363 | + <target_aggregation_type>-</target_aggregation_type> | |
| 3364 | + </field> | |
| 3365 | + <field> | |
| 3366 | + <field_name>all_content</field_name> | |
| 3367 | + <key_value>118</key_value> | |
| 3368 | + <target_name>fcno118</target_name> | |
| 3369 | + <target_type>String</target_type> | |
| 3370 | + <target_format/> | |
| 3371 | + <target_length>-1</target_length> | |
| 3372 | + <target_precision>-1</target_precision> | |
| 3373 | + <target_decimal_symbol/> | |
| 3374 | + <target_grouping_symbol/> | |
| 3375 | + <target_currency_symbol/> | |
| 3376 | + <target_null_string/> | |
| 3377 | + <target_aggregation_type>-</target_aggregation_type> | |
| 3378 | + </field> | |
| 3379 | + <field> | |
| 3380 | + <field_name>all_content</field_name> | |
| 3381 | + <key_value>119</key_value> | |
| 3382 | + <target_name>fcno119</target_name> | |
| 3383 | + <target_type>String</target_type> | |
| 3384 | + <target_format/> | |
| 3385 | + <target_length>-1</target_length> | |
| 3386 | + <target_precision>-1</target_precision> | |
| 3387 | + <target_decimal_symbol/> | |
| 3388 | + <target_grouping_symbol/> | |
| 3389 | + <target_currency_symbol/> | |
| 3390 | + <target_null_string/> | |
| 3391 | + <target_aggregation_type>-</target_aggregation_type> | |
| 3392 | + </field> | |
| 3393 | + <field> | |
| 3394 | + <field_name>all_content</field_name> | |
| 3395 | + <key_value>120</key_value> | |
| 3396 | + <target_name>fcno120</target_name> | |
| 3397 | + <target_type>String</target_type> | |
| 3398 | + <target_format/> | |
| 3399 | + <target_length>-1</target_length> | |
| 3400 | + <target_precision>-1</target_precision> | |
| 3401 | + <target_decimal_symbol/> | |
| 3402 | + <target_grouping_symbol/> | |
| 3403 | + <target_currency_symbol/> | |
| 3404 | + <target_null_string/> | |
| 3405 | + <target_aggregation_type>-</target_aggregation_type> | |
| 3406 | + </field> | |
| 3407 | + <field> | |
| 3408 | + <field_name>all_content</field_name> | |
| 3409 | + <key_value>121</key_value> | |
| 3410 | + <target_name>fcno121</target_name> | |
| 3411 | + <target_type>String</target_type> | |
| 3412 | + <target_format/> | |
| 3413 | + <target_length>-1</target_length> | |
| 3414 | + <target_precision>-1</target_precision> | |
| 3415 | + <target_decimal_symbol/> | |
| 3416 | + <target_grouping_symbol/> | |
| 3417 | + <target_currency_symbol/> | |
| 3418 | + <target_null_string/> | |
| 3419 | + <target_aggregation_type>-</target_aggregation_type> | |
| 3420 | + </field> | |
| 3421 | + <field> | |
| 3422 | + <field_name>all_content</field_name> | |
| 3423 | + <key_value>122</key_value> | |
| 3424 | + <target_name>fcno122</target_name> | |
| 3425 | + <target_type>String</target_type> | |
| 3426 | + <target_format/> | |
| 3427 | + <target_length>-1</target_length> | |
| 3428 | + <target_precision>-1</target_precision> | |
| 3429 | + <target_decimal_symbol/> | |
| 3430 | + <target_grouping_symbol/> | |
| 3431 | + <target_currency_symbol/> | |
| 3432 | + <target_null_string/> | |
| 3433 | + <target_aggregation_type>-</target_aggregation_type> | |
| 3434 | + </field> | |
| 3435 | + <field> | |
| 3436 | + <field_name>all_content</field_name> | |
| 3437 | + <key_value>123</key_value> | |
| 3438 | + <target_name>fcno123</target_name> | |
| 3439 | + <target_type>String</target_type> | |
| 3440 | + <target_format/> | |
| 3441 | + <target_length>-1</target_length> | |
| 3442 | + <target_precision>-1</target_precision> | |
| 3443 | + <target_decimal_symbol/> | |
| 3444 | + <target_grouping_symbol/> | |
| 3445 | + <target_currency_symbol/> | |
| 3446 | + <target_null_string/> | |
| 3447 | + <target_aggregation_type>-</target_aggregation_type> | |
| 3448 | + </field> | |
| 3449 | + <field> | |
| 3450 | + <field_name>all_content</field_name> | |
| 3451 | + <key_value>124</key_value> | |
| 3452 | + <target_name>fcno124</target_name> | |
| 3453 | + <target_type>String</target_type> | |
| 3454 | + <target_format/> | |
| 3455 | + <target_length>-1</target_length> | |
| 3456 | + <target_precision>-1</target_precision> | |
| 3457 | + <target_decimal_symbol/> | |
| 3458 | + <target_grouping_symbol/> | |
| 3459 | + <target_currency_symbol/> | |
| 3460 | + <target_null_string/> | |
| 3461 | + <target_aggregation_type>-</target_aggregation_type> | |
| 3462 | + </field> | |
| 3463 | + <field> | |
| 3464 | + <field_name>all_content</field_name> | |
| 3465 | + <key_value>125</key_value> | |
| 3466 | + <target_name>fcno125</target_name> | |
| 3467 | + <target_type>String</target_type> | |
| 3468 | + <target_format/> | |
| 3469 | + <target_length>-1</target_length> | |
| 3470 | + <target_precision>-1</target_precision> | |
| 3471 | + <target_decimal_symbol/> | |
| 3472 | + <target_grouping_symbol/> | |
| 3473 | + <target_currency_symbol/> | |
| 3474 | + <target_null_string/> | |
| 3475 | + <target_aggregation_type>-</target_aggregation_type> | |
| 3476 | + </field> | |
| 3477 | + <field> | |
| 3478 | + <field_name>all_content</field_name> | |
| 3479 | + <key_value>126</key_value> | |
| 3480 | + <target_name>fcno126</target_name> | |
| 3481 | + <target_type>String</target_type> | |
| 3482 | + <target_format/> | |
| 3483 | + <target_length>-1</target_length> | |
| 3484 | + <target_precision>-1</target_precision> | |
| 3485 | + <target_decimal_symbol/> | |
| 3486 | + <target_grouping_symbol/> | |
| 3487 | + <target_currency_symbol/> | |
| 3488 | + <target_null_string/> | |
| 3489 | + <target_aggregation_type>-</target_aggregation_type> | |
| 3490 | + </field> | |
| 3491 | + <field> | |
| 3492 | + <field_name>all_content</field_name> | |
| 3493 | + <key_value>127</key_value> | |
| 3494 | + <target_name>fcno127</target_name> | |
| 3495 | + <target_type>String</target_type> | |
| 3496 | + <target_format/> | |
| 3497 | + <target_length>-1</target_length> | |
| 3498 | + <target_precision>-1</target_precision> | |
| 3499 | + <target_decimal_symbol/> | |
| 3500 | + <target_grouping_symbol/> | |
| 3501 | + <target_currency_symbol/> | |
| 3502 | + <target_null_string/> | |
| 3503 | + <target_aggregation_type>-</target_aggregation_type> | |
| 3504 | + </field> | |
| 3505 | + <field> | |
| 3506 | + <field_name>all_content</field_name> | |
| 3507 | + <key_value>128</key_value> | |
| 3508 | + <target_name>fcno128</target_name> | |
| 3509 | + <target_type>String</target_type> | |
| 3510 | + <target_format/> | |
| 3511 | + <target_length>-1</target_length> | |
| 3512 | + <target_precision>-1</target_precision> | |
| 3513 | + <target_decimal_symbol/> | |
| 3514 | + <target_grouping_symbol/> | |
| 3515 | + <target_currency_symbol/> | |
| 3516 | + <target_null_string/> | |
| 3517 | + <target_aggregation_type>-</target_aggregation_type> | |
| 3518 | + </field> | |
| 3519 | + <field> | |
| 3520 | + <field_name>all_content</field_name> | |
| 3521 | + <key_value>129</key_value> | |
| 3522 | + <target_name>fcno129</target_name> | |
| 3523 | + <target_type>String</target_type> | |
| 3524 | + <target_format/> | |
| 3525 | + <target_length>-1</target_length> | |
| 3526 | + <target_precision>-1</target_precision> | |
| 3527 | + <target_decimal_symbol/> | |
| 3528 | + <target_grouping_symbol/> | |
| 3529 | + <target_currency_symbol/> | |
| 3530 | + <target_null_string/> | |
| 3531 | + <target_aggregation_type>-</target_aggregation_type> | |
| 3532 | + </field> | |
| 3533 | + <field> | |
| 3534 | + <field_name>all_content</field_name> | |
| 3535 | + <key_value>130</key_value> | |
| 3536 | + <target_name>fcno130</target_name> | |
| 3537 | + <target_type>String</target_type> | |
| 3538 | + <target_format/> | |
| 3539 | + <target_length>-1</target_length> | |
| 3540 | + <target_precision>-1</target_precision> | |
| 3541 | + <target_decimal_symbol/> | |
| 3542 | + <target_grouping_symbol/> | |
| 3543 | + <target_currency_symbol/> | |
| 3544 | + <target_null_string/> | |
| 3545 | + <target_aggregation_type>-</target_aggregation_type> | |
| 3546 | + </field> | |
| 3547 | + <field> | |
| 3548 | + <field_name>all_content</field_name> | |
| 3549 | + <key_value>131</key_value> | |
| 3550 | + <target_name>fcno131</target_name> | |
| 3551 | + <target_type>String</target_type> | |
| 3552 | + <target_format/> | |
| 3553 | + <target_length>-1</target_length> | |
| 3554 | + <target_precision>-1</target_precision> | |
| 3555 | + <target_decimal_symbol/> | |
| 3556 | + <target_grouping_symbol/> | |
| 3557 | + <target_currency_symbol/> | |
| 3558 | + <target_null_string/> | |
| 3559 | + <target_aggregation_type>-</target_aggregation_type> | |
| 3560 | + </field> | |
| 3561 | + <field> | |
| 3562 | + <field_name>all_content</field_name> | |
| 3563 | + <key_value>132</key_value> | |
| 3564 | + <target_name>fcno132</target_name> | |
| 3565 | + <target_type>String</target_type> | |
| 3566 | + <target_format/> | |
| 3567 | + <target_length>-1</target_length> | |
| 3568 | + <target_precision>-1</target_precision> | |
| 3569 | + <target_decimal_symbol/> | |
| 3570 | + <target_grouping_symbol/> | |
| 3571 | + <target_currency_symbol/> | |
| 3572 | + <target_null_string/> | |
| 3573 | + <target_aggregation_type>-</target_aggregation_type> | |
| 3574 | + </field> | |
| 3575 | + <field> | |
| 3576 | + <field_name>all_content</field_name> | |
| 3577 | + <key_value>133</key_value> | |
| 3578 | + <target_name>fcno133</target_name> | |
| 3579 | + <target_type>String</target_type> | |
| 3580 | + <target_format/> | |
| 3581 | + <target_length>-1</target_length> | |
| 3582 | + <target_precision>-1</target_precision> | |
| 3583 | + <target_decimal_symbol/> | |
| 3584 | + <target_grouping_symbol/> | |
| 3585 | + <target_currency_symbol/> | |
| 3586 | + <target_null_string/> | |
| 3587 | + <target_aggregation_type>-</target_aggregation_type> | |
| 3588 | + </field> | |
| 3589 | + <field> | |
| 3590 | + <field_name>all_content</field_name> | |
| 3591 | + <key_value>134</key_value> | |
| 3592 | + <target_name>fcno134</target_name> | |
| 3593 | + <target_type>String</target_type> | |
| 3594 | + <target_format/> | |
| 3595 | + <target_length>-1</target_length> | |
| 3596 | + <target_precision>-1</target_precision> | |
| 3597 | + <target_decimal_symbol/> | |
| 3598 | + <target_grouping_symbol/> | |
| 3599 | + <target_currency_symbol/> | |
| 3600 | + <target_null_string/> | |
| 3601 | + <target_aggregation_type>-</target_aggregation_type> | |
| 3602 | + </field> | |
| 3603 | + <field> | |
| 3604 | + <field_name>all_content</field_name> | |
| 3605 | + <key_value>135</key_value> | |
| 3606 | + <target_name>fcno135</target_name> | |
| 3607 | + <target_type>String</target_type> | |
| 3608 | + <target_format/> | |
| 3609 | + <target_length>-1</target_length> | |
| 3610 | + <target_precision>-1</target_precision> | |
| 3611 | + <target_decimal_symbol/> | |
| 3612 | + <target_grouping_symbol/> | |
| 3613 | + <target_currency_symbol/> | |
| 3614 | + <target_null_string/> | |
| 3615 | + <target_aggregation_type>-</target_aggregation_type> | |
| 3616 | + </field> | |
| 3617 | + <field> | |
| 3618 | + <field_name>all_content</field_name> | |
| 3619 | + <key_value>136</key_value> | |
| 3620 | + <target_name>fcno136</target_name> | |
| 3621 | + <target_type>String</target_type> | |
| 3622 | + <target_format/> | |
| 3623 | + <target_length>-1</target_length> | |
| 3624 | + <target_precision>-1</target_precision> | |
| 3625 | + <target_decimal_symbol/> | |
| 3626 | + <target_grouping_symbol/> | |
| 3627 | + <target_currency_symbol/> | |
| 3628 | + <target_null_string/> | |
| 3629 | + <target_aggregation_type>-</target_aggregation_type> | |
| 3630 | + </field> | |
| 3631 | + <field> | |
| 3632 | + <field_name>all_content</field_name> | |
| 3633 | + <key_value>137</key_value> | |
| 3634 | + <target_name>fcno137</target_name> | |
| 3635 | + <target_type>String</target_type> | |
| 3636 | + <target_format/> | |
| 3637 | + <target_length>-1</target_length> | |
| 3638 | + <target_precision>-1</target_precision> | |
| 3639 | + <target_decimal_symbol/> | |
| 3640 | + <target_grouping_symbol/> | |
| 3641 | + <target_currency_symbol/> | |
| 3642 | + <target_null_string/> | |
| 3643 | + <target_aggregation_type>-</target_aggregation_type> | |
| 3644 | + </field> | |
| 3645 | + <field> | |
| 3646 | + <field_name>all_content</field_name> | |
| 3647 | + <key_value>138</key_value> | |
| 3648 | + <target_name>fcno138</target_name> | |
| 3649 | + <target_type>String</target_type> | |
| 3650 | + <target_format/> | |
| 3651 | + <target_length>-1</target_length> | |
| 3652 | + <target_precision>-1</target_precision> | |
| 3653 | + <target_decimal_symbol/> | |
| 3654 | + <target_grouping_symbol/> | |
| 3655 | + <target_currency_symbol/> | |
| 3656 | + <target_null_string/> | |
| 3657 | + <target_aggregation_type>-</target_aggregation_type> | |
| 3658 | + </field> | |
| 3659 | + <field> | |
| 3660 | + <field_name>all_content</field_name> | |
| 3661 | + <key_value>139</key_value> | |
| 3662 | + <target_name>fcno139</target_name> | |
| 3663 | + <target_type>String</target_type> | |
| 3664 | + <target_format/> | |
| 3665 | + <target_length>-1</target_length> | |
| 3666 | + <target_precision>-1</target_precision> | |
| 3667 | + <target_decimal_symbol/> | |
| 3668 | + <target_grouping_symbol/> | |
| 3669 | + <target_currency_symbol/> | |
| 3670 | + <target_null_string/> | |
| 3671 | + <target_aggregation_type>-</target_aggregation_type> | |
| 3672 | + </field> | |
| 3673 | + <field> | |
| 3674 | + <field_name>all_content</field_name> | |
| 3675 | + <key_value>140</key_value> | |
| 3676 | + <target_name>fcno140</target_name> | |
| 3677 | + <target_type>String</target_type> | |
| 3678 | + <target_format/> | |
| 3679 | + <target_length>-1</target_length> | |
| 3680 | + <target_precision>-1</target_precision> | |
| 3681 | + <target_decimal_symbol/> | |
| 3682 | + <target_grouping_symbol/> | |
| 3683 | + <target_currency_symbol/> | |
| 3684 | + <target_null_string/> | |
| 3685 | + <target_aggregation_type>-</target_aggregation_type> | |
| 3686 | + </field> | |
| 3687 | + <field> | |
| 3688 | + <field_name>all_content</field_name> | |
| 3689 | + <key_value>141</key_value> | |
| 3690 | + <target_name>fcno141</target_name> | |
| 3691 | + <target_type>String</target_type> | |
| 3692 | + <target_format/> | |
| 3693 | + <target_length>-1</target_length> | |
| 3694 | + <target_precision>-1</target_precision> | |
| 3695 | + <target_decimal_symbol/> | |
| 3696 | + <target_grouping_symbol/> | |
| 3697 | + <target_currency_symbol/> | |
| 3698 | + <target_null_string/> | |
| 3699 | + <target_aggregation_type>-</target_aggregation_type> | |
| 3700 | + </field> | |
| 3701 | + <field> | |
| 3702 | + <field_name>all_content</field_name> | |
| 3703 | + <key_value>142</key_value> | |
| 3704 | + <target_name>fcno142</target_name> | |
| 3705 | + <target_type>String</target_type> | |
| 3706 | + <target_format/> | |
| 3707 | + <target_length>-1</target_length> | |
| 3708 | + <target_precision>-1</target_precision> | |
| 3709 | + <target_decimal_symbol/> | |
| 3710 | + <target_grouping_symbol/> | |
| 3711 | + <target_currency_symbol/> | |
| 3712 | + <target_null_string/> | |
| 3713 | + <target_aggregation_type>-</target_aggregation_type> | |
| 3714 | + </field> | |
| 3715 | + <field> | |
| 3716 | + <field_name>all_content</field_name> | |
| 3717 | + <key_value>143</key_value> | |
| 3718 | + <target_name>fcno143</target_name> | |
| 3719 | + <target_type>String</target_type> | |
| 3720 | + <target_format/> | |
| 3721 | + <target_length>-1</target_length> | |
| 3722 | + <target_precision>-1</target_precision> | |
| 3723 | + <target_decimal_symbol/> | |
| 3724 | + <target_grouping_symbol/> | |
| 3725 | + <target_currency_symbol/> | |
| 3726 | + <target_null_string/> | |
| 3727 | + <target_aggregation_type>-</target_aggregation_type> | |
| 3728 | + </field> | |
| 3729 | + <field> | |
| 3730 | + <field_name>all_content</field_name> | |
| 3731 | + <key_value>144</key_value> | |
| 3732 | + <target_name>fcno144</target_name> | |
| 3733 | + <target_type>String</target_type> | |
| 3734 | + <target_format/> | |
| 3735 | + <target_length>-1</target_length> | |
| 3736 | + <target_precision>-1</target_precision> | |
| 3737 | + <target_decimal_symbol/> | |
| 3738 | + <target_grouping_symbol/> | |
| 3739 | + <target_currency_symbol/> | |
| 3740 | + <target_null_string/> | |
| 3741 | + <target_aggregation_type>-</target_aggregation_type> | |
| 3742 | + </field> | |
| 3743 | + <field> | |
| 3744 | + <field_name>all_content</field_name> | |
| 3745 | + <key_value>145</key_value> | |
| 3746 | + <target_name>fcno145</target_name> | |
| 3747 | + <target_type>String</target_type> | |
| 3748 | + <target_format/> | |
| 3749 | + <target_length>-1</target_length> | |
| 3750 | + <target_precision>-1</target_precision> | |
| 3751 | + <target_decimal_symbol/> | |
| 3752 | + <target_grouping_symbol/> | |
| 3753 | + <target_currency_symbol/> | |
| 3754 | + <target_null_string/> | |
| 3755 | + <target_aggregation_type>-</target_aggregation_type> | |
| 3756 | + </field> | |
| 3757 | + <field> | |
| 3758 | + <field_name>all_content</field_name> | |
| 3759 | + <key_value>146</key_value> | |
| 3760 | + <target_name>fcno146</target_name> | |
| 3761 | + <target_type>String</target_type> | |
| 3762 | + <target_format/> | |
| 3763 | + <target_length>-1</target_length> | |
| 3764 | + <target_precision>-1</target_precision> | |
| 3765 | + <target_decimal_symbol/> | |
| 3766 | + <target_grouping_symbol/> | |
| 3767 | + <target_currency_symbol/> | |
| 3768 | + <target_null_string/> | |
| 3769 | + <target_aggregation_type>-</target_aggregation_type> | |
| 3770 | + </field> | |
| 3771 | + <field> | |
| 3772 | + <field_name>all_content</field_name> | |
| 3773 | + <key_value>147</key_value> | |
| 3774 | + <target_name>fcno147</target_name> | |
| 3775 | + <target_type>String</target_type> | |
| 3776 | + <target_format/> | |
| 3777 | + <target_length>-1</target_length> | |
| 3778 | + <target_precision>-1</target_precision> | |
| 3779 | + <target_decimal_symbol/> | |
| 3780 | + <target_grouping_symbol/> | |
| 3781 | + <target_currency_symbol/> | |
| 3782 | + <target_null_string/> | |
| 3783 | + <target_aggregation_type>-</target_aggregation_type> | |
| 3784 | + </field> | |
| 3785 | + <field> | |
| 3786 | + <field_name>all_content</field_name> | |
| 3787 | + <key_value>148</key_value> | |
| 3788 | + <target_name>fcno148</target_name> | |
| 3789 | + <target_type>String</target_type> | |
| 3790 | + <target_format/> | |
| 3791 | + <target_length>-1</target_length> | |
| 3792 | + <target_precision>-1</target_precision> | |
| 3793 | + <target_decimal_symbol/> | |
| 3794 | + <target_grouping_symbol/> | |
| 3795 | + <target_currency_symbol/> | |
| 3796 | + <target_null_string/> | |
| 3797 | + <target_aggregation_type>-</target_aggregation_type> | |
| 3798 | + </field> | |
| 3799 | + <field> | |
| 3800 | + <field_name>all_content</field_name> | |
| 3801 | + <key_value>149</key_value> | |
| 3802 | + <target_name>fcno149</target_name> | |
| 3803 | + <target_type>String</target_type> | |
| 3804 | + <target_format/> | |
| 3805 | + <target_length>-1</target_length> | |
| 3806 | + <target_precision>-1</target_precision> | |
| 3807 | + <target_decimal_symbol/> | |
| 3808 | + <target_grouping_symbol/> | |
| 3809 | + <target_currency_symbol/> | |
| 3810 | + <target_null_string/> | |
| 3811 | + <target_aggregation_type>-</target_aggregation_type> | |
| 3812 | + </field> | |
| 3813 | + <field> | |
| 3814 | + <field_name>all_content</field_name> | |
| 3815 | + <key_value>150</key_value> | |
| 3816 | + <target_name>fcno150</target_name> | |
| 3817 | + <target_type>String</target_type> | |
| 3818 | + <target_format/> | |
| 3819 | + <target_length>-1</target_length> | |
| 3820 | + <target_precision>-1</target_precision> | |
| 3821 | + <target_decimal_symbol/> | |
| 3822 | + <target_grouping_symbol/> | |
| 3823 | + <target_currency_symbol/> | |
| 3824 | + <target_null_string/> | |
| 3825 | + <target_aggregation_type>-</target_aggregation_type> | |
| 3826 | + </field> | |
| 3827 | + </fields> | |
| 3828 | + <cluster_schema/> | |
| 3829 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 3830 | + <xloc>559</xloc> | |
| 3831 | + <yloc>182</yloc> | |
| 3832 | + <draw>Y</draw> | |
| 3833 | + </GUI> | |
| 3834 | + </step> | |
| 3835 | + | |
| 3836 | + <step> | |
| 3837 | + <name>字段选择</name> | |
| 3838 | + <type>SelectValues</type> | |
| 3839 | + <description/> | |
| 3840 | + <distribute>Y</distribute> | |
| 3841 | + <custom_distribution/> | |
| 3842 | + <copies>1</copies> | |
| 3843 | + <partitioning> | |
| 3844 | + <method>none</method> | |
| 3845 | + <schema_name/> | |
| 3846 | + </partitioning> | |
| 3847 | + <fields> <field> <name>lp_name</name> | |
| 3848 | + <rename>路牌</rename> | |
| 3849 | + <length>-2</length> | |
| 3850 | + <precision>-2</precision> | |
| 3851 | + </field> <field> <name>j_name</name> | |
| 3852 | + <rename>驾驶员</rename> | |
| 3853 | + <length>-2</length> | |
| 3854 | + <precision>-2</precision> | |
| 3855 | + </field> <field> <name>cl_zbh</name> | |
| 3856 | + <rename>自编号</rename> | |
| 3857 | + <length>-2</length> | |
| 3858 | + <precision>-2</precision> | |
| 3859 | + </field> <field> <name>car_plate</name> | |
| 3860 | + <rename>车牌号</rename> | |
| 3861 | + <length>-2</length> | |
| 3862 | + <precision>-2</precision> | |
| 3863 | + </field> <field> <name>fcno1</name> | |
| 3864 | + <rename/> | |
| 3865 | + <length>-2</length> | |
| 3866 | + <precision>-2</precision> | |
| 3867 | + </field> <field> <name>fcno2</name> | |
| 3868 | + <rename/> | |
| 3869 | + <length>-2</length> | |
| 3870 | + <precision>-2</precision> | |
| 3871 | + </field> <field> <name>fcno3</name> | |
| 3872 | + <rename/> | |
| 3873 | + <length>-2</length> | |
| 3874 | + <precision>-2</precision> | |
| 3875 | + </field> <field> <name>fcno4</name> | |
| 3876 | + <rename/> | |
| 3877 | + <length>-2</length> | |
| 3878 | + <precision>-2</precision> | |
| 3879 | + </field> <field> <name>fcno5</name> | |
| 3880 | + <rename/> | |
| 3881 | + <length>-2</length> | |
| 3882 | + <precision>-2</precision> | |
| 3883 | + </field> <field> <name>fcno6</name> | |
| 3884 | + <rename/> | |
| 3885 | + <length>-2</length> | |
| 3886 | + <precision>-2</precision> | |
| 3887 | + </field> <field> <name>fcno7</name> | |
| 3888 | + <rename/> | |
| 3889 | + <length>-2</length> | |
| 3890 | + <precision>-2</precision> | |
| 3891 | + </field> <field> <name>fcno8</name> | |
| 3892 | + <rename/> | |
| 3893 | + <length>-2</length> | |
| 3894 | + <precision>-2</precision> | |
| 3895 | + </field> <field> <name>fcno9</name> | |
| 3896 | + <rename/> | |
| 3897 | + <length>-2</length> | |
| 3898 | + <precision>-2</precision> | |
| 3899 | + </field> <field> <name>fcno10</name> | |
| 3900 | + <rename/> | |
| 3901 | + <length>-2</length> | |
| 3902 | + <precision>-2</precision> | |
| 3903 | + </field> <field> <name>fcno11</name> | |
| 3904 | + <rename/> | |
| 3905 | + <length>-2</length> | |
| 3906 | + <precision>-2</precision> | |
| 3907 | + </field> <field> <name>fcno12</name> | |
| 3908 | + <rename/> | |
| 3909 | + <length>-2</length> | |
| 3910 | + <precision>-2</precision> | |
| 3911 | + </field> <field> <name>fcno13</name> | |
| 3912 | + <rename/> | |
| 3913 | + <length>-2</length> | |
| 3914 | + <precision>-2</precision> | |
| 3915 | + </field> <field> <name>fcno14</name> | |
| 3916 | + <rename/> | |
| 3917 | + <length>-2</length> | |
| 3918 | + <precision>-2</precision> | |
| 3919 | + </field> <field> <name>fcno15</name> | |
| 3920 | + <rename/> | |
| 3921 | + <length>-2</length> | |
| 3922 | + <precision>-2</precision> | |
| 3923 | + </field> <field> <name>fcno16</name> | |
| 3924 | + <rename/> | |
| 3925 | + <length>-2</length> | |
| 3926 | + <precision>-2</precision> | |
| 3927 | + </field> <field> <name>fcno17</name> | |
| 3928 | + <rename/> | |
| 3929 | + <length>-2</length> | |
| 3930 | + <precision>-2</precision> | |
| 3931 | + </field> <field> <name>fcno18</name> | |
| 3932 | + <rename/> | |
| 3933 | + <length>-2</length> | |
| 3934 | + <precision>-2</precision> | |
| 3935 | + </field> <field> <name>fcno19</name> | |
| 3936 | + <rename/> | |
| 3937 | + <length>-2</length> | |
| 3938 | + <precision>-2</precision> | |
| 3939 | + </field> <field> <name>fcno20</name> | |
| 3940 | + <rename/> | |
| 3941 | + <length>-2</length> | |
| 3942 | + <precision>-2</precision> | |
| 3943 | + </field> <field> <name>fcno21</name> | |
| 3944 | + <rename/> | |
| 3945 | + <length>-2</length> | |
| 3946 | + <precision>-2</precision> | |
| 3947 | + </field> <field> <name>fcno22</name> | |
| 3948 | + <rename/> | |
| 3949 | + <length>-2</length> | |
| 3950 | + <precision>-2</precision> | |
| 3951 | + </field> <field> <name>fcno23</name> | |
| 3952 | + <rename/> | |
| 3953 | + <length>-2</length> | |
| 3954 | + <precision>-2</precision> | |
| 3955 | + </field> <field> <name>fcno24</name> | |
| 3956 | + <rename/> | |
| 3957 | + <length>-2</length> | |
| 3958 | + <precision>-2</precision> | |
| 3959 | + </field> <field> <name>fcno25</name> | |
| 3960 | + <rename/> | |
| 3961 | + <length>-2</length> | |
| 3962 | + <precision>-2</precision> | |
| 3963 | + </field> <field> <name>fcno26</name> | |
| 3964 | + <rename/> | |
| 3965 | + <length>-2</length> | |
| 3966 | + <precision>-2</precision> | |
| 3967 | + </field> <field> <name>fcno27</name> | |
| 3968 | + <rename/> | |
| 3969 | + <length>-2</length> | |
| 3970 | + <precision>-2</precision> | |
| 3971 | + </field> <field> <name>fcno28</name> | |
| 3972 | + <rename/> | |
| 3973 | + <length>-2</length> | |
| 3974 | + <precision>-2</precision> | |
| 3975 | + </field> <field> <name>fcno29</name> | |
| 3976 | + <rename/> | |
| 3977 | + <length>-2</length> | |
| 3978 | + <precision>-2</precision> | |
| 3979 | + </field> <field> <name>fcno30</name> | |
| 3980 | + <rename/> | |
| 3981 | + <length>-2</length> | |
| 3982 | + <precision>-2</precision> | |
| 3983 | + </field> <field> <name>fcno31</name> | |
| 3984 | + <rename/> | |
| 3985 | + <length>-2</length> | |
| 3986 | + <precision>-2</precision> | |
| 3987 | + </field> <field> <name>fcno32</name> | |
| 3988 | + <rename/> | |
| 3989 | + <length>-2</length> | |
| 3990 | + <precision>-2</precision> | |
| 3991 | + </field> <field> <name>fcno33</name> | |
| 3992 | + <rename/> | |
| 3993 | + <length>-2</length> | |
| 3994 | + <precision>-2</precision> | |
| 3995 | + </field> <field> <name>fcno34</name> | |
| 3996 | + <rename/> | |
| 3997 | + <length>-2</length> | |
| 3998 | + <precision>-2</precision> | |
| 3999 | + </field> <field> <name>fcno35</name> | |
| 4000 | + <rename/> | |
| 4001 | + <length>-2</length> | |
| 4002 | + <precision>-2</precision> | |
| 4003 | + </field> <field> <name>fcno36</name> | |
| 4004 | + <rename/> | |
| 4005 | + <length>-2</length> | |
| 4006 | + <precision>-2</precision> | |
| 4007 | + </field> <field> <name>fcno37</name> | |
| 4008 | + <rename/> | |
| 4009 | + <length>-2</length> | |
| 4010 | + <precision>-2</precision> | |
| 4011 | + </field> <field> <name>fcno38</name> | |
| 4012 | + <rename/> | |
| 4013 | + <length>-2</length> | |
| 4014 | + <precision>-2</precision> | |
| 4015 | + </field> <field> <name>fcno39</name> | |
| 4016 | + <rename/> | |
| 4017 | + <length>-2</length> | |
| 4018 | + <precision>-2</precision> | |
| 4019 | + </field> <field> <name>fcno40</name> | |
| 4020 | + <rename/> | |
| 4021 | + <length>-2</length> | |
| 4022 | + <precision>-2</precision> | |
| 4023 | + </field> <field> <name>fcno41</name> | |
| 4024 | + <rename/> | |
| 4025 | + <length>-2</length> | |
| 4026 | + <precision>-2</precision> | |
| 4027 | + </field> <field> <name>fcno42</name> | |
| 4028 | + <rename/> | |
| 4029 | + <length>-2</length> | |
| 4030 | + <precision>-2</precision> | |
| 4031 | + </field> <field> <name>fcno43</name> | |
| 4032 | + <rename/> | |
| 4033 | + <length>-2</length> | |
| 4034 | + <precision>-2</precision> | |
| 4035 | + </field> <field> <name>fcno44</name> | |
| 4036 | + <rename/> | |
| 4037 | + <length>-2</length> | |
| 4038 | + <precision>-2</precision> | |
| 4039 | + </field> <field> <name>fcno45</name> | |
| 4040 | + <rename/> | |
| 4041 | + <length>-2</length> | |
| 4042 | + <precision>-2</precision> | |
| 4043 | + </field> <field> <name>fcno46</name> | |
| 4044 | + <rename/> | |
| 4045 | + <length>-2</length> | |
| 4046 | + <precision>-2</precision> | |
| 4047 | + </field> <field> <name>fcno47</name> | |
| 4048 | + <rename/> | |
| 4049 | + <length>-2</length> | |
| 4050 | + <precision>-2</precision> | |
| 4051 | + </field> <field> <name>fcno48</name> | |
| 4052 | + <rename/> | |
| 4053 | + <length>-2</length> | |
| 4054 | + <precision>-2</precision> | |
| 4055 | + </field> <field> <name>fcno49</name> | |
| 4056 | + <rename/> | |
| 4057 | + <length>-2</length> | |
| 4058 | + <precision>-2</precision> | |
| 4059 | + </field> <field> <name>fcno50</name> | |
| 4060 | + <rename/> | |
| 4061 | + <length>-2</length> | |
| 4062 | + <precision>-2</precision> | |
| 4063 | + </field> <field> <name>fcno51</name> | |
| 4064 | + <rename/> | |
| 4065 | + <length>-2</length> | |
| 4066 | + <precision>-2</precision> | |
| 4067 | + </field> <field> <name>fcno52</name> | |
| 4068 | + <rename/> | |
| 4069 | + <length>-2</length> | |
| 4070 | + <precision>-2</precision> | |
| 4071 | + </field> <field> <name>fcno53</name> | |
| 4072 | + <rename/> | |
| 4073 | + <length>-2</length> | |
| 4074 | + <precision>-2</precision> | |
| 4075 | + </field> <field> <name>fcno54</name> | |
| 4076 | + <rename/> | |
| 4077 | + <length>-2</length> | |
| 4078 | + <precision>-2</precision> | |
| 4079 | + </field> <field> <name>fcno55</name> | |
| 4080 | + <rename/> | |
| 4081 | + <length>-2</length> | |
| 4082 | + <precision>-2</precision> | |
| 4083 | + </field> <field> <name>fcno56</name> | |
| 4084 | + <rename/> | |
| 4085 | + <length>-2</length> | |
| 4086 | + <precision>-2</precision> | |
| 4087 | + </field> <field> <name>fcno57</name> | |
| 4088 | + <rename/> | |
| 4089 | + <length>-2</length> | |
| 4090 | + <precision>-2</precision> | |
| 4091 | + </field> <field> <name>fcno58</name> | |
| 4092 | + <rename/> | |
| 4093 | + <length>-2</length> | |
| 4094 | + <precision>-2</precision> | |
| 4095 | + </field> <field> <name>fcno59</name> | |
| 4096 | + <rename/> | |
| 4097 | + <length>-2</length> | |
| 4098 | + <precision>-2</precision> | |
| 4099 | + </field> <field> <name>fcno60</name> | |
| 4100 | + <rename/> | |
| 4101 | + <length>-2</length> | |
| 4102 | + <precision>-2</precision> | |
| 4103 | + </field> <field> <name>fcno61</name> | |
| 4104 | + <rename/> | |
| 4105 | + <length>-2</length> | |
| 4106 | + <precision>-2</precision> | |
| 4107 | + </field> <field> <name>fcno62</name> | |
| 4108 | + <rename/> | |
| 4109 | + <length>-2</length> | |
| 4110 | + <precision>-2</precision> | |
| 4111 | + </field> <field> <name>fcno63</name> | |
| 4112 | + <rename/> | |
| 4113 | + <length>-2</length> | |
| 4114 | + <precision>-2</precision> | |
| 4115 | + </field> <field> <name>fcno64</name> | |
| 4116 | + <rename/> | |
| 4117 | + <length>-2</length> | |
| 4118 | + <precision>-2</precision> | |
| 4119 | + </field> <field> <name>fcno65</name> | |
| 4120 | + <rename/> | |
| 4121 | + <length>-2</length> | |
| 4122 | + <precision>-2</precision> | |
| 4123 | + </field> <field> <name>fcno66</name> | |
| 4124 | + <rename/> | |
| 4125 | + <length>-2</length> | |
| 4126 | + <precision>-2</precision> | |
| 4127 | + </field> <field> <name>fcno67</name> | |
| 4128 | + <rename/> | |
| 4129 | + <length>-2</length> | |
| 4130 | + <precision>-2</precision> | |
| 4131 | + </field> <field> <name>fcno68</name> | |
| 4132 | + <rename/> | |
| 4133 | + <length>-2</length> | |
| 4134 | + <precision>-2</precision> | |
| 4135 | + </field> <field> <name>fcno69</name> | |
| 4136 | + <rename/> | |
| 4137 | + <length>-2</length> | |
| 4138 | + <precision>-2</precision> | |
| 4139 | + </field> <field> <name>fcno70</name> | |
| 4140 | + <rename/> | |
| 4141 | + <length>-2</length> | |
| 4142 | + <precision>-2</precision> | |
| 4143 | + </field> <field> <name>fcno71</name> | |
| 4144 | + <rename/> | |
| 4145 | + <length>-2</length> | |
| 4146 | + <precision>-2</precision> | |
| 4147 | + </field> <field> <name>fcno72</name> | |
| 4148 | + <rename/> | |
| 4149 | + <length>-2</length> | |
| 4150 | + <precision>-2</precision> | |
| 4151 | + </field> <field> <name>fcno73</name> | |
| 4152 | + <rename/> | |
| 4153 | + <length>-2</length> | |
| 4154 | + <precision>-2</precision> | |
| 4155 | + </field> <field> <name>fcno74</name> | |
| 4156 | + <rename/> | |
| 4157 | + <length>-2</length> | |
| 4158 | + <precision>-2</precision> | |
| 4159 | + </field> <field> <name>fcno75</name> | |
| 4160 | + <rename/> | |
| 4161 | + <length>-2</length> | |
| 4162 | + <precision>-2</precision> | |
| 4163 | + </field> <field> <name>fcno76</name> | |
| 4164 | + <rename/> | |
| 4165 | + <length>-2</length> | |
| 4166 | + <precision>-2</precision> | |
| 4167 | + </field> <field> <name>fcno77</name> | |
| 4168 | + <rename/> | |
| 4169 | + <length>-2</length> | |
| 4170 | + <precision>-2</precision> | |
| 4171 | + </field> <field> <name>fcno78</name> | |
| 4172 | + <rename/> | |
| 4173 | + <length>-2</length> | |
| 4174 | + <precision>-2</precision> | |
| 4175 | + </field> <field> <name>fcno79</name> | |
| 4176 | + <rename/> | |
| 4177 | + <length>-2</length> | |
| 4178 | + <precision>-2</precision> | |
| 4179 | + </field> <field> <name>fcno80</name> | |
| 4180 | + <rename/> | |
| 4181 | + <length>-2</length> | |
| 4182 | + <precision>-2</precision> | |
| 4183 | + </field> <field> <name>fcno81</name> | |
| 4184 | + <rename/> | |
| 4185 | + <length>-2</length> | |
| 4186 | + <precision>-2</precision> | |
| 4187 | + </field> <field> <name>fcno82</name> | |
| 4188 | + <rename/> | |
| 4189 | + <length>-2</length> | |
| 4190 | + <precision>-2</precision> | |
| 4191 | + </field> <field> <name>fcno83</name> | |
| 4192 | + <rename/> | |
| 4193 | + <length>-2</length> | |
| 4194 | + <precision>-2</precision> | |
| 4195 | + </field> <field> <name>fcno84</name> | |
| 4196 | + <rename/> | |
| 4197 | + <length>-2</length> | |
| 4198 | + <precision>-2</precision> | |
| 4199 | + </field> <field> <name>fcno85</name> | |
| 4200 | + <rename/> | |
| 4201 | + <length>-2</length> | |
| 4202 | + <precision>-2</precision> | |
| 4203 | + </field> <field> <name>fcno86</name> | |
| 4204 | + <rename/> | |
| 4205 | + <length>-2</length> | |
| 4206 | + <precision>-2</precision> | |
| 4207 | + </field> <field> <name>fcno87</name> | |
| 4208 | + <rename/> | |
| 4209 | + <length>-2</length> | |
| 4210 | + <precision>-2</precision> | |
| 4211 | + </field> <field> <name>fcno88</name> | |
| 4212 | + <rename/> | |
| 4213 | + <length>-2</length> | |
| 4214 | + <precision>-2</precision> | |
| 4215 | + </field> <field> <name>fcno89</name> | |
| 4216 | + <rename/> | |
| 4217 | + <length>-2</length> | |
| 4218 | + <precision>-2</precision> | |
| 4219 | + </field> <field> <name>fcno90</name> | |
| 4220 | + <rename/> | |
| 4221 | + <length>-2</length> | |
| 4222 | + <precision>-2</precision> | |
| 4223 | + </field> <field> <name>fcno91</name> | |
| 4224 | + <rename/> | |
| 4225 | + <length>-2</length> | |
| 4226 | + <precision>-2</precision> | |
| 4227 | + </field> <field> <name>fcno92</name> | |
| 4228 | + <rename/> | |
| 4229 | + <length>-2</length> | |
| 4230 | + <precision>-2</precision> | |
| 4231 | + </field> <field> <name>fcno93</name> | |
| 4232 | + <rename/> | |
| 4233 | + <length>-2</length> | |
| 4234 | + <precision>-2</precision> | |
| 4235 | + </field> <field> <name>fcno94</name> | |
| 4236 | + <rename/> | |
| 4237 | + <length>-2</length> | |
| 4238 | + <precision>-2</precision> | |
| 4239 | + </field> <field> <name>fcno95</name> | |
| 4240 | + <rename/> | |
| 4241 | + <length>-2</length> | |
| 4242 | + <precision>-2</precision> | |
| 4243 | + </field> <field> <name>fcno96</name> | |
| 4244 | + <rename/> | |
| 4245 | + <length>-2</length> | |
| 4246 | + <precision>-2</precision> | |
| 4247 | + </field> <field> <name>fcno97</name> | |
| 4248 | + <rename/> | |
| 4249 | + <length>-2</length> | |
| 4250 | + <precision>-2</precision> | |
| 4251 | + </field> <field> <name>fcno98</name> | |
| 4252 | + <rename/> | |
| 4253 | + <length>-2</length> | |
| 4254 | + <precision>-2</precision> | |
| 4255 | + </field> <field> <name>fcno99</name> | |
| 4256 | + <rename/> | |
| 4257 | + <length>-2</length> | |
| 4258 | + <precision>-2</precision> | |
| 4259 | + </field> <field> <name>fcno100</name> | |
| 4260 | + <rename/> | |
| 4261 | + <length>-2</length> | |
| 4262 | + <precision>-2</precision> | |
| 4263 | + </field> <field> <name>fcno101</name> | |
| 4264 | + <rename/> | |
| 4265 | + <length>-2</length> | |
| 4266 | + <precision>-2</precision> | |
| 4267 | + </field> <field> <name>fcno102</name> | |
| 4268 | + <rename/> | |
| 4269 | + <length>-2</length> | |
| 4270 | + <precision>-2</precision> | |
| 4271 | + </field> <field> <name>fcno103</name> | |
| 4272 | + <rename/> | |
| 4273 | + <length>-2</length> | |
| 4274 | + <precision>-2</precision> | |
| 4275 | + </field> <field> <name>fcno104</name> | |
| 4276 | + <rename/> | |
| 4277 | + <length>-2</length> | |
| 4278 | + <precision>-2</precision> | |
| 4279 | + </field> <field> <name>fcno105</name> | |
| 4280 | + <rename/> | |
| 4281 | + <length>-2</length> | |
| 4282 | + <precision>-2</precision> | |
| 4283 | + </field> <field> <name>fcno106</name> | |
| 4284 | + <rename/> | |
| 4285 | + <length>-2</length> | |
| 4286 | + <precision>-2</precision> | |
| 4287 | + </field> <field> <name>fcno107</name> | |
| 4288 | + <rename/> | |
| 4289 | + <length>-2</length> | |
| 4290 | + <precision>-2</precision> | |
| 4291 | + </field> <field> <name>fcno108</name> | |
| 4292 | + <rename/> | |
| 4293 | + <length>-2</length> | |
| 4294 | + <precision>-2</precision> | |
| 4295 | + </field> <field> <name>fcno109</name> | |
| 4296 | + <rename/> | |
| 4297 | + <length>-2</length> | |
| 4298 | + <precision>-2</precision> | |
| 4299 | + </field> <field> <name>fcno110</name> | |
| 4300 | + <rename/> | |
| 4301 | + <length>-2</length> | |
| 4302 | + <precision>-2</precision> | |
| 4303 | + </field> <field> <name>fcno111</name> | |
| 4304 | + <rename/> | |
| 4305 | + <length>-2</length> | |
| 4306 | + <precision>-2</precision> | |
| 4307 | + </field> <field> <name>fcno112</name> | |
| 4308 | + <rename/> | |
| 4309 | + <length>-2</length> | |
| 4310 | + <precision>-2</precision> | |
| 4311 | + </field> <field> <name>fcno113</name> | |
| 4312 | + <rename/> | |
| 4313 | + <length>-2</length> | |
| 4314 | + <precision>-2</precision> | |
| 4315 | + </field> <field> <name>fcno114</name> | |
| 4316 | + <rename/> | |
| 4317 | + <length>-2</length> | |
| 4318 | + <precision>-2</precision> | |
| 4319 | + </field> <field> <name>fcno115</name> | |
| 4320 | + <rename/> | |
| 4321 | + <length>-2</length> | |
| 4322 | + <precision>-2</precision> | |
| 4323 | + </field> <field> <name>fcno116</name> | |
| 4324 | + <rename/> | |
| 4325 | + <length>-2</length> | |
| 4326 | + <precision>-2</precision> | |
| 4327 | + </field> <field> <name>fcno117</name> | |
| 4328 | + <rename/> | |
| 4329 | + <length>-2</length> | |
| 4330 | + <precision>-2</precision> | |
| 4331 | + </field> <field> <name>fcno118</name> | |
| 4332 | + <rename/> | |
| 4333 | + <length>-2</length> | |
| 4334 | + <precision>-2</precision> | |
| 4335 | + </field> <field> <name>fcno119</name> | |
| 4336 | + <rename/> | |
| 4337 | + <length>-2</length> | |
| 4338 | + <precision>-2</precision> | |
| 4339 | + </field> <field> <name>fcno120</name> | |
| 4340 | + <rename/> | |
| 4341 | + <length>-2</length> | |
| 4342 | + <precision>-2</precision> | |
| 4343 | + </field> <field> <name>fcno121</name> | |
| 4344 | + <rename/> | |
| 4345 | + <length>-2</length> | |
| 4346 | + <precision>-2</precision> | |
| 4347 | + </field> <field> <name>fcno122</name> | |
| 4348 | + <rename/> | |
| 4349 | + <length>-2</length> | |
| 4350 | + <precision>-2</precision> | |
| 4351 | + </field> <field> <name>fcno123</name> | |
| 4352 | + <rename/> | |
| 4353 | + <length>-2</length> | |
| 4354 | + <precision>-2</precision> | |
| 4355 | + </field> <field> <name>fcno124</name> | |
| 4356 | + <rename/> | |
| 4357 | + <length>-2</length> | |
| 4358 | + <precision>-2</precision> | |
| 4359 | + </field> <field> <name>fcno125</name> | |
| 4360 | + <rename/> | |
| 4361 | + <length>-2</length> | |
| 4362 | + <precision>-2</precision> | |
| 4363 | + </field> <field> <name>fcno126</name> | |
| 4364 | + <rename/> | |
| 4365 | + <length>-2</length> | |
| 4366 | + <precision>-2</precision> | |
| 4367 | + </field> <field> <name>fcno127</name> | |
| 4368 | + <rename/> | |
| 4369 | + <length>-2</length> | |
| 4370 | + <precision>-2</precision> | |
| 4371 | + </field> <field> <name>fcno128</name> | |
| 4372 | + <rename/> | |
| 4373 | + <length>-2</length> | |
| 4374 | + <precision>-2</precision> | |
| 4375 | + </field> <field> <name>fcno129</name> | |
| 4376 | + <rename/> | |
| 4377 | + <length>-2</length> | |
| 4378 | + <precision>-2</precision> | |
| 4379 | + </field> <field> <name>fcno130</name> | |
| 4380 | + <rename/> | |
| 4381 | + <length>-2</length> | |
| 4382 | + <precision>-2</precision> | |
| 4383 | + </field> <field> <name>fcno131</name> | |
| 4384 | + <rename/> | |
| 4385 | + <length>-2</length> | |
| 4386 | + <precision>-2</precision> | |
| 4387 | + </field> <field> <name>fcno132</name> | |
| 4388 | + <rename/> | |
| 4389 | + <length>-2</length> | |
| 4390 | + <precision>-2</precision> | |
| 4391 | + </field> <field> <name>fcno133</name> | |
| 4392 | + <rename/> | |
| 4393 | + <length>-2</length> | |
| 4394 | + <precision>-2</precision> | |
| 4395 | + </field> <field> <name>fcno134</name> | |
| 4396 | + <rename/> | |
| 4397 | + <length>-2</length> | |
| 4398 | + <precision>-2</precision> | |
| 4399 | + </field> <field> <name>fcno135</name> | |
| 4400 | + <rename/> | |
| 4401 | + <length>-2</length> | |
| 4402 | + <precision>-2</precision> | |
| 4403 | + </field> <field> <name>fcno136</name> | |
| 4404 | + <rename/> | |
| 4405 | + <length>-2</length> | |
| 4406 | + <precision>-2</precision> | |
| 4407 | + </field> <field> <name>fcno137</name> | |
| 4408 | + <rename/> | |
| 4409 | + <length>-2</length> | |
| 4410 | + <precision>-2</precision> | |
| 4411 | + </field> <field> <name>fcno138</name> | |
| 4412 | + <rename/> | |
| 4413 | + <length>-2</length> | |
| 4414 | + <precision>-2</precision> | |
| 4415 | + </field> <field> <name>fcno139</name> | |
| 4416 | + <rename/> | |
| 4417 | + <length>-2</length> | |
| 4418 | + <precision>-2</precision> | |
| 4419 | + </field> <field> <name>fcno140</name> | |
| 4420 | + <rename/> | |
| 4421 | + <length>-2</length> | |
| 4422 | + <precision>-2</precision> | |
| 4423 | + </field> <field> <name>fcno141</name> | |
| 4424 | + <rename/> | |
| 4425 | + <length>-2</length> | |
| 4426 | + <precision>-2</precision> | |
| 4427 | + </field> <field> <name>fcno142</name> | |
| 4428 | + <rename/> | |
| 4429 | + <length>-2</length> | |
| 4430 | + <precision>-2</precision> | |
| 4431 | + </field> <field> <name>fcno143</name> | |
| 4432 | + <rename/> | |
| 4433 | + <length>-2</length> | |
| 4434 | + <precision>-2</precision> | |
| 4435 | + </field> <field> <name>fcno144</name> | |
| 4436 | + <rename/> | |
| 4437 | + <length>-2</length> | |
| 4438 | + <precision>-2</precision> | |
| 4439 | + </field> <field> <name>fcno145</name> | |
| 4440 | + <rename/> | |
| 4441 | + <length>-2</length> | |
| 4442 | + <precision>-2</precision> | |
| 4443 | + </field> <field> <name>fcno146</name> | |
| 4444 | + <rename/> | |
| 4445 | + <length>-2</length> | |
| 4446 | + <precision>-2</precision> | |
| 4447 | + </field> <field> <name>fcno147</name> | |
| 4448 | + <rename/> | |
| 4449 | + <length>-2</length> | |
| 4450 | + <precision>-2</precision> | |
| 4451 | + </field> <field> <name>fcno148</name> | |
| 4452 | + <rename/> | |
| 4453 | + <length>-2</length> | |
| 4454 | + <precision>-2</precision> | |
| 4455 | + </field> <field> <name>fcno149</name> | |
| 4456 | + <rename/> | |
| 4457 | + <length>-2</length> | |
| 4458 | + <precision>-2</precision> | |
| 4459 | + </field> <field> <name>fcno150</name> | |
| 4460 | + <rename/> | |
| 4461 | + <length>-2</length> | |
| 4462 | + <precision>-2</precision> | |
| 4463 | + </field> <select_unspecified>N</select_unspecified> | |
| 4464 | + </fields> <cluster_schema/> | |
| 4465 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 4466 | + <xloc>560</xloc> | |
| 4467 | + <yloc>289</yloc> | |
| 4468 | + <draw>Y</draw> | |
| 4469 | + </GUI> | |
| 4470 | + </step> | |
| 4471 | + | |
| 4472 | + <step> | |
| 4473 | + <name>排序记录</name> | |
| 4474 | + <type>SortRows</type> | |
| 4475 | + <description/> | |
| 4476 | + <distribute>Y</distribute> | |
| 4477 | + <custom_distribution/> | |
| 4478 | + <copies>1</copies> | |
| 4479 | + <partitioning> | |
| 4480 | + <method>none</method> | |
| 4481 | + <schema_name/> | |
| 4482 | + </partitioning> | |
| 4483 | + <directory>%%java.io.tmpdir%%</directory> | |
| 4484 | + <prefix>out</prefix> | |
| 4485 | + <sort_size>1000000</sort_size> | |
| 4486 | + <free_memory/> | |
| 4487 | + <compress>N</compress> | |
| 4488 | + <compress_variable/> | |
| 4489 | + <unique_rows>N</unique_rows> | |
| 4490 | + <fields> | |
| 4575 | 4491 | <field> |
| 4576 | - <name>fcno142</name> | |
| 4577 | - <type>String</type> | |
| 4578 | - <format/> | |
| 4492 | + <name>lp</name> | |
| 4493 | + <ascending>Y</ascending> | |
| 4494 | + <case_sensitive>N</case_sensitive> | |
| 4495 | + <presorted>N</presorted> | |
| 4579 | 4496 | </field> |
| 4580 | 4497 | <field> |
| 4581 | - <name>fcno143</name> | |
| 4582 | - <type>String</type> | |
| 4583 | - <format/> | |
| 4498 | + <name>lp_name</name> | |
| 4499 | + <ascending>Y</ascending> | |
| 4500 | + <case_sensitive>N</case_sensitive> | |
| 4501 | + <presorted>N</presorted> | |
| 4584 | 4502 | </field> |
| 4585 | 4503 | <field> |
| 4586 | - <name>fcno144</name> | |
| 4587 | - <type>String</type> | |
| 4588 | - <format/> | |
| 4504 | + <name>j</name> | |
| 4505 | + <ascending>Y</ascending> | |
| 4506 | + <case_sensitive>N</case_sensitive> | |
| 4507 | + <presorted>N</presorted> | |
| 4589 | 4508 | </field> |
| 4590 | 4509 | <field> |
| 4591 | - <name>fcno145</name> | |
| 4592 | - <type>String</type> | |
| 4593 | - <format/> | |
| 4510 | + <name>j_name</name> | |
| 4511 | + <ascending>Y</ascending> | |
| 4512 | + <case_sensitive>N</case_sensitive> | |
| 4513 | + <presorted>N</presorted> | |
| 4594 | 4514 | </field> |
| 4595 | 4515 | <field> |
| 4596 | - <name>fcno146</name> | |
| 4597 | - <type>String</type> | |
| 4598 | - <format/> | |
| 4516 | + <name>cl_zbh</name> | |
| 4517 | + <ascending>Y</ascending> | |
| 4518 | + <case_sensitive>N</case_sensitive> | |
| 4519 | + <presorted>N</presorted> | |
| 4599 | 4520 | </field> |
| 4600 | 4521 | <field> |
| 4601 | - <name>fcno147</name> | |
| 4602 | - <type>String</type> | |
| 4603 | - <format/> | |
| 4522 | + <name>car_plate</name> | |
| 4523 | + <ascending>Y</ascending> | |
| 4524 | + <case_sensitive>N</case_sensitive> | |
| 4525 | + <presorted>N</presorted> | |
| 4604 | 4526 | </field> |
| 4605 | 4527 | <field> |
| 4606 | - <name>fcno148</name> | |
| 4607 | - <type>String</type> | |
| 4608 | - <format/> | |
| 4528 | + <name>fcno</name> | |
| 4529 | + <ascending>Y</ascending> | |
| 4530 | + <case_sensitive>N</case_sensitive> | |
| 4531 | + <presorted>N</presorted> | |
| 4609 | 4532 | </field> |
| 4610 | - <field> | |
| 4611 | - <name>fcno149</name> | |
| 4533 | + </fields> | |
| 4534 | + <cluster_schema/> | |
| 4535 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 4536 | + <xloc>558</xloc> | |
| 4537 | + <yloc>64</yloc> | |
| 4538 | + <draw>Y</draw> | |
| 4539 | + </GUI> | |
| 4540 | + </step> | |
| 4541 | + | |
| 4542 | + <step> | |
| 4543 | + <name>排班明细输入</name> | |
| 4544 | + <type>TableInput</type> | |
| 4545 | + <description/> | |
| 4546 | + <distribute>Y</distribute> | |
| 4547 | + <custom_distribution/> | |
| 4548 | + <copies>1</copies> | |
| 4549 | + <partitioning> | |
| 4550 | + <method>none</method> | |
| 4551 | + <schema_name/> | |
| 4552 | + </partitioning> | |
| 4553 | + <connection>control_jndi</connection> | |
| 4554 | + <sql>select *
from bsth_c_s_sp_info
where xl = ${xlid}
and date_format(schedule_date, '%Y-%m-%d') = '${sdate}'</sql> | |
| 4555 | + <limit>0</limit> | |
| 4556 | + <lookup/> | |
| 4557 | + <execute_each_row>N</execute_each_row> | |
| 4558 | + <variables_active>Y</variables_active> | |
| 4559 | + <lazy_conversion_active>N</lazy_conversion_active> | |
| 4560 | + <cluster_schema/> | |
| 4561 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 4562 | + <xloc>97</xloc> | |
| 4563 | + <yloc>63</yloc> | |
| 4564 | + <draw>Y</draw> | |
| 4565 | + </GUI> | |
| 4566 | + </step> | |
| 4567 | + | |
| 4568 | + <step> | |
| 4569 | + <name>计算发车站名</name> | |
| 4570 | + <type>ScriptValueMod</type> | |
| 4571 | + <description/> | |
| 4572 | + <distribute>Y</distribute> | |
| 4573 | + <custom_distribution/> | |
| 4574 | + <copies>1</copies> | |
| 4575 | + <partitioning> | |
| 4576 | + <method>none</method> | |
| 4577 | + <schema_name/> | |
| 4578 | + </partitioning> | |
| 4579 | + <compatible>N</compatible> | |
| 4580 | + <optimizationLevel>9</optimizationLevel> | |
| 4581 | + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type> | |
| 4582 | + <jsScript_name>Script 1</jsScript_name> | |
| 4583 | + <jsScript_script>//Script here

var fczdName = null; // 发车站点名字
if (bc_type == "in") {
 fczdName = "进场";
} else if (bc_type == "out") {
 fczdName = "出场";
} else {
 fczdName = qdz_name;
}</jsScript_script> | |
| 4584 | + </jsScript> </jsScripts> <fields> <field> <name>fczdName</name> | |
| 4585 | + <rename>fczdName</rename> | |
| 4612 | 4586 | <type>String</type> |
| 4613 | - <format/> | |
| 4614 | - </field> | |
| 4615 | - <field> | |
| 4616 | - <name>fcno150</name> | |
| 4587 | + <length>-1</length> | |
| 4588 | + <precision>-1</precision> | |
| 4589 | + <replace>N</replace> | |
| 4590 | + </field> </fields> <cluster_schema/> | |
| 4591 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 4592 | + <xloc>219</xloc> | |
| 4593 | + <yloc>62</yloc> | |
| 4594 | + <draw>Y</draw> | |
| 4595 | + </GUI> | |
| 4596 | + </step> | |
| 4597 | + | |
| 4598 | + <step> | |
| 4599 | + <name>车牌号查询</name> | |
| 4600 | + <type>DBLookup</type> | |
| 4601 | + <description/> | |
| 4602 | + <distribute>Y</distribute> | |
| 4603 | + <custom_distribution/> | |
| 4604 | + <copies>1</copies> | |
| 4605 | + <partitioning> | |
| 4606 | + <method>none</method> | |
| 4607 | + <schema_name/> | |
| 4608 | + </partitioning> | |
| 4609 | + <connection>control_jndi</connection> | |
| 4610 | + <cache>Y</cache> | |
| 4611 | + <cache_load_all>Y</cache_load_all> | |
| 4612 | + <cache_size>0</cache_size> | |
| 4613 | + <lookup> | |
| 4614 | + <schema/> | |
| 4615 | + <table>bsth_c_cars</table> | |
| 4616 | + <orderby/> | |
| 4617 | + <fail_on_multiple>N</fail_on_multiple> | |
| 4618 | + <eat_row_on_failure>N</eat_row_on_failure> | |
| 4619 | + <key> | |
| 4620 | + <name>cl</name> | |
| 4621 | + <field>id</field> | |
| 4622 | + <condition>=</condition> | |
| 4623 | + <name2/> | |
| 4624 | + </key> | |
| 4625 | + <value> | |
| 4626 | + <name>car_plate</name> | |
| 4627 | + <rename>car_plate</rename> | |
| 4628 | + <default>无</default> | |
| 4617 | 4629 | <type>String</type> |
| 4618 | - <format/> | |
| 4619 | - </field> | |
| 4620 | - </fields> | |
| 4621 | - <custom> | |
| 4622 | - <header_font_name>arial</header_font_name> | |
| 4623 | - <header_font_size>10</header_font_size> | |
| 4624 | - <header_font_bold>N</header_font_bold> | |
| 4625 | - <header_font_italic>N</header_font_italic> | |
| 4626 | - <header_font_underline>no</header_font_underline> | |
| 4627 | - <header_font_orientation>horizontal</header_font_orientation> | |
| 4628 | - <header_font_color>black</header_font_color> | |
| 4629 | - <header_background_color>none</header_background_color> | |
| 4630 | - <header_row_height>255</header_row_height> | |
| 4631 | - <header_alignment>left</header_alignment> | |
| 4632 | - <header_image/> | |
| 4633 | - <row_font_name>arial</row_font_name> | |
| 4634 | - <row_font_size>10</row_font_size> | |
| 4635 | - <row_font_color>black</row_font_color> | |
| 4636 | - <row_background_color>none</row_background_color> | |
| 4637 | - </custom> | |
| 4630 | + </value> | |
| 4631 | + </lookup> | |
| 4638 | 4632 | <cluster_schema/> |
| 4639 | 4633 | <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> |
| 4640 | - <xloc>561</xloc> | |
| 4641 | - <yloc>398</yloc> | |
| 4634 | + <xloc>327</xloc> | |
| 4635 | + <yloc>63</yloc> | |
| 4636 | + <draw>Y</draw> | |
| 4637 | + </GUI> | |
| 4638 | + </step> | |
| 4639 | + | |
| 4640 | + <step> | |
| 4641 | + <name>重新计算数据</name> | |
| 4642 | + <type>ScriptValueMod</type> | |
| 4643 | + <description/> | |
| 4644 | + <distribute>Y</distribute> | |
| 4645 | + <custom_distribution/> | |
| 4646 | + <copies>1</copies> | |
| 4647 | + <partitioning> | |
| 4648 | + <method>none</method> | |
| 4649 | + <schema_name/> | |
| 4650 | + </partitioning> | |
| 4651 | + <compatible>N</compatible> | |
| 4652 | + <optimizationLevel>9</optimizationLevel> | |
| 4653 | + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type> | |
| 4654 | + <jsScript_name>Script 1</jsScript_name> | |
| 4655 | + <jsScript_script>//Script here

// 1、列传行后,需要把班次的相关信息合并到一个字段中
var all_content_array = [];
var all_content = ""; 
all_content_array.push(id); // 排班明细id
all_content_array.push(xl_dir); // 上下行
all_content_array.push(qdz_name); // 起点站名字
all_content_array.push(zdz_name); // 终点站名字
all_content_array.push(fcsj); // 发车时间
all_content_array.push(jhlc); // 计划里程
all_content_array.push(bcsj); // 班次时间
all_content_array.push(bc_type); // 班次类型
 
all_content_array.push(fczdName); // 计算的发车站名

// 修改次数
if (modify_count == null) {
 all_content_array.push(0);
} else {
 all_content_array.push(modify_count);
}

// status(-1 为烂班)
if (status == null) { 
 all_content_array.push(0);
} else {
 all_content_array.push(status);
}

all_content = all_content_array.join(","); // 逗号分隔</jsScript_script> | |
| 4656 | + </jsScript> </jsScripts> <fields> <field> <name>all_content</name> | |
| 4657 | + <rename>all_content</rename> | |
| 4658 | + <type>String</type> | |
| 4659 | + <length>-1</length> | |
| 4660 | + <precision>-1</precision> | |
| 4661 | + <replace>N</replace> | |
| 4662 | + </field> </fields> <cluster_schema/> | |
| 4663 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 4664 | + <xloc>450</xloc> | |
| 4665 | + <yloc>63</yloc> | |
| 4642 | 4666 | <draw>Y</draw> |
| 4643 | 4667 | </GUI> |
| 4644 | 4668 | </step> | ... | ... |
src/main/resources/static/pages/scheduleApp/module/common/dts2/scheduleplan/saPlanInfoView.js
| ... | ... | @@ -14,6 +14,7 @@ angular.module('ScheduleApp').directive( |
| 14 | 14 | scope: { // 独立作用域 |
| 15 | 15 | ds: "=ngModel", |
| 16 | 16 | celldbclickFn: "&celldbclick", |
| 17 | + toolbarLpLbClickFn: "&toolbarlplbclick" | |
| 17 | 18 | }, |
| 18 | 19 | controllerAs: "$saPlanInfoViewCtrl", |
| 19 | 20 | bindToController: true, |
| ... | ... | @@ -36,6 +37,7 @@ angular.module('ScheduleApp').directive( |
| 36 | 37 | } |
| 37 | 38 | |
| 38 | 39 | var $attr_celldbclick = tAttrs["celldbclick"]; // 单元格双击事件名 |
| 40 | + var $atrr_toolbarlplbclick = tAttrs["toolbarlplbclick"]; // 工具栏路牌烂班点击事件 | |
| 39 | 41 | |
| 40 | 42 | // 内部controlAs名字 |
| 41 | 43 | var ctrlAs = '$saPlanInfoViewCtrl'; |
| ... | ... | @@ -64,6 +66,13 @@ angular.module('ScheduleApp').directive( |
| 64 | 66 | } |
| 65 | 67 | } |
| 66 | 68 | }; |
| 69 | + // 工具栏单击事件 | |
| 70 | + scope[ctrlAs].$$toolbar1_dbclick = function() { | |
| 71 | + if ($atrr_toolbarlplbclick) { | |
| 72 | + scope[ctrlAs].toolbarLpLbClickFn()(); | |
| 73 | + } | |
| 74 | + | |
| 75 | + }; | |
| 67 | 76 | } |
| 68 | 77 | |
| 69 | 78 | }; | ... | ... |
src/main/resources/static/pages/scheduleApp/module/common/dts2/scheduleplan/saPlanInfoViewTemplate.html
| ... | ... | @@ -81,7 +81,7 @@ |
| 81 | 81 | |
| 82 | 82 | .detail-body .tt_table dl dd, .detail-body .tt_table dl dt { |
| 83 | 83 | font-size: 14px; |
| 84 | - line-height: 37px; | |
| 84 | + line-height: 30px; | |
| 85 | 85 | } |
| 86 | 86 | |
| 87 | 87 | .tt_table dl dt:nth-of-type(1), .tt_table dl dd:nth-of-type(1) { |
| ... | ... | @@ -259,6 +259,16 @@ |
| 259 | 259 | color: white; |
| 260 | 260 | } |
| 261 | 261 | |
| 262 | + .tt_table dd.islb { | |
| 263 | + background: #53ff34 !important; | |
| 264 | + color: #501a1a; | |
| 265 | + } | |
| 266 | + | |
| 267 | + .tt_table dd.isModify { | |
| 268 | + outline: 2px solid #541aff; | |
| 269 | + outline-offset: -3px; | |
| 270 | + } | |
| 271 | + | |
| 262 | 272 | |
| 263 | 273 | .tt_table_no_border .tt_table>.tt_table_head dl dt { |
| 264 | 274 | font-weight: 600; |
| ... | ... | @@ -339,6 +349,18 @@ |
| 339 | 349 | } |
| 340 | 350 | </style> |
| 341 | 351 | |
| 352 | +<style> | |
| 353 | + .ttInfo_detail .detail-wrap.up .toolbar { | |
| 354 | + margin: 7px 0 5px; | |
| 355 | + text-indent: 5px; | |
| 356 | + margin: 0; | |
| 357 | + height: 31px; | |
| 358 | + line-height: 31px; | |
| 359 | + | |
| 360 | + color: #2765A7; | |
| 361 | + } | |
| 362 | +</style> | |
| 363 | + | |
| 342 | 364 | |
| 343 | 365 | <div class="ttInfo_detail"> |
| 344 | 366 | <div class="container-fluid top-container"> |
| ... | ... | @@ -346,9 +368,22 @@ |
| 346 | 368 | <div class="col-md-12" style="height: 100%"> |
| 347 | 369 | <div class="detail-panel"> |
| 348 | 370 | <div class="detail-wrap up"> |
| 349 | - <!--<h3 class="header-title">--> | |
| 350 | - <!--{{$saTimeTableCtrl.ds.yydesc}}--> | |
| 351 | - <!--</h3>--> | |
| 371 | + | |
| 372 | + <div class="toolbar"> | |
| 373 | + <div style="float: left"> | |
| 374 | + <a href="javascript:" style="padding-right: 5px;" ng-click="$saPlanInfoViewCtrl.$$toolbar1_dbclick()"> | |
| 375 | + <i class="fa fa-th-list" aria-hidden="true"></i> | |
| 376 | + 路牌烂班 | |
| 377 | + </a> | |
| 378 | + </div> | |
| 379 | + | |
| 380 | + <div style="float: right; padding-right: 10px;"> | |
| 381 | + <span style="padding-right: 10px;background: #337ab7;color: white;text-align: center;">出场班次</span> | |
| 382 | + <span style="padding-right: 10px;background: #4e6477;color: white;text-align: center;">进场班次</span> | |
| 383 | + <span style="padding-right: 10px;background: #53ff34;color: #501a1a;text-align: center;">烂班班次</span> | |
| 384 | + <span style="padding-right: 10px;outline: 2px solid #541aff; outline-offset: -3px; text-align: center;">班次修改过</span> | |
| 385 | + </div> | |
| 386 | + </div> | |
| 352 | 387 | |
| 353 | 388 | <div class="detail-body"> |
| 354 | 389 | <div class="tt_table_wrap table_scrollbar" sa-tscrolly1> |
| ... | ... | @@ -459,7 +494,9 @@ |
| 459 | 494 | region: false, |
| 460 | 495 | isfb: false, |
| 461 | 496 | outbc: cell.bcType == 'out', |
| 462 | - inbc: cell.bcType == 'in' | |
| 497 | + inbc: cell.bcType == 'in', | |
| 498 | + islb: cell.status == -1, | |
| 499 | + isModify: cell.modifyCount > 0 | |
| 463 | 500 | }"> |
| 464 | 501 | {{cell.fcsj}} |
| 465 | 502 | </dd> | ... | ... |
src/main/resources/static/pages/scheduleApp/module/common/prj-common-directive.js
| ... | ... | @@ -6624,6 +6624,7 @@ angular.module('ScheduleApp').directive( |
| 6624 | 6624 | scope: { // 独立作用域 |
| 6625 | 6625 | ds: "=ngModel", |
| 6626 | 6626 | celldbclickFn: "&celldbclick", |
| 6627 | + toolbarLpLbClickFn: "&toolbarlplbclick" | |
| 6627 | 6628 | }, |
| 6628 | 6629 | controllerAs: "$saPlanInfoViewCtrl", |
| 6629 | 6630 | bindToController: true, |
| ... | ... | @@ -6646,6 +6647,7 @@ angular.module('ScheduleApp').directive( |
| 6646 | 6647 | } |
| 6647 | 6648 | |
| 6648 | 6649 | var $attr_celldbclick = tAttrs["celldbclick"]; // 单元格双击事件名 |
| 6650 | + var $atrr_toolbarlplbclick = tAttrs["toolbarlplbclick"]; // 工具栏路牌烂班点击事件 | |
| 6649 | 6651 | |
| 6650 | 6652 | // 内部controlAs名字 |
| 6651 | 6653 | var ctrlAs = '$saPlanInfoViewCtrl'; |
| ... | ... | @@ -6674,6 +6676,13 @@ angular.module('ScheduleApp').directive( |
| 6674 | 6676 | } |
| 6675 | 6677 | } |
| 6676 | 6678 | }; |
| 6679 | + // 工具栏单击事件 | |
| 6680 | + scope[ctrlAs].$$toolbar1_dbclick = function() { | |
| 6681 | + if ($atrr_toolbarlplbclick) { | |
| 6682 | + scope[ctrlAs].toolbarLpLbClickFn()(); | |
| 6683 | + } | |
| 6684 | + | |
| 6685 | + }; | |
| 6677 | 6686 | } |
| 6678 | 6687 | |
| 6679 | 6688 | }; | ... | ... |
src/main/resources/static/pages/scheduleApp/module/common/prj-common-ui-route-state.js
| ... | ... | @@ -1007,8 +1007,30 @@ ScheduleApp.config([ |
| 1007 | 1007 | }); |
| 1008 | 1008 | }] |
| 1009 | 1009 | } |
| 1010 | + }) | |
| 1011 | + | |
| 1012 | + .state("schedulePlanReportExtManageListEditLplb", { // 修改班次信息-路牌栏班 | |
| 1013 | + url: '/schedulePlanReportExtManageListEditLplb/:xlId', | |
| 1014 | + views: { | |
| 1015 | + "": {templateUrl: 'pages/scheduleApp/module/core/schedulePlanManage/report/ext/edit-lplb.html'} | |
| 1016 | + }, | |
| 1017 | + resolve: { | |
| 1018 | + deps: ['$ocLazyLoad', function($ocLazyLoad) { | |
| 1019 | + return $ocLazyLoad.load({ | |
| 1020 | + name: 'schedulePlanManage_module', | |
| 1021 | + insertBefore: '#ng_load_plugins_before', // 动态载入模块时放置的位置 | |
| 1022 | + files: [ | |
| 1023 | + "assets/bower_components/angular-ui-select/dist/select.min.css", | |
| 1024 | + "assets/bower_components/angular-ui-select/dist/select.min.js", | |
| 1025 | + "pages/scheduleApp/module/core/schedulePlanManage/report/ext/module.js" | |
| 1026 | + ] | |
| 1027 | + }); | |
| 1028 | + }] | |
| 1029 | + } | |
| 1010 | 1030 | }); |
| 1011 | 1031 | |
| 1032 | + | |
| 1033 | + | |
| 1012 | 1034 | } |
| 1013 | 1035 | ]); |
| 1014 | 1036 | ... | ... |
src/main/resources/static/pages/scheduleApp/module/core/schedulePlanManage/report/ext/edit-detail.html
| ... | ... | @@ -190,6 +190,14 @@ |
| 190 | 190 | |
| 191 | 191 | </div> |
| 192 | 192 | |
| 193 | + <div class="form-group has-success has-feedback"> | |
| 194 | + <label class="col-md-2 control-label">是否烂班:</label> | |
| 195 | + <div class="col-md-3"> | |
| 196 | + <sa-Radiogroup model="ctrl.isLb_temp" dicgroup="truefalseType" name="isLb_temp"></sa-Radiogroup> | |
| 197 | + </div> | |
| 198 | + | |
| 199 | + </div> | |
| 200 | + | |
| 193 | 201 | </div> |
| 194 | 202 | |
| 195 | 203 | <div class="form-actions"> | ... | ... |
src/main/resources/static/pages/scheduleApp/module/core/schedulePlanManage/report/ext/edit-lplb.html
0 → 100644
| 1 | +<div ng-controller="SchedulePlanReportExtManageListEditLplbCtrl as ctrl"> | |
| 2 | + | |
| 3 | + <div class="page-head"> | |
| 4 | + <div class="page-title"> | |
| 5 | + <h1>路牌烂班</h1> | |
| 6 | + </div> | |
| 7 | + </div> | |
| 8 | + | |
| 9 | + <ul class="page-breadcrumb breadcrumb"> | |
| 10 | + <li> | |
| 11 | + <a href="/pages/home.html" data-pjax>首页</a> | |
| 12 | + <i class="fa fa-circle"></i> | |
| 13 | + </li> | |
| 14 | + <li> | |
| 15 | + <span class="active">运营计划管理</span> | |
| 16 | + <i class="fa fa-circle"></i> | |
| 17 | + </li> | |
| 18 | + <li> | |
| 19 | + <a ui-sref="schedulePlanReportExtManage">调度值勤日报</a> | |
| 20 | + <i class="fa fa-circle"></i> | |
| 21 | + </li> | |
| 22 | + <li> | |
| 23 | + <span class="active">路牌烂班</span> | |
| 24 | + </li> | |
| 25 | + </ul> | |
| 26 | + | |
| 27 | + | |
| 28 | + <div class="portlet light bordered"> | |
| 29 | + | |
| 30 | + <div class="portlet-title"> | |
| 31 | + <div class="caption caption-subject font-red-sunglo bold uppercase"> | |
| 32 | + <div class="caption caption-subject font-red-sunglo bold uppercase"> | |
| 33 | + <span ng-bind="ctrl.xlName"></span> | |
| 34 | + 当前排班日期 | |
| 35 | + <span ng-bind="ctrl.scheduleDate | date: 'yyyy年MM月dd日'"></span> | |
| 36 | + </div> | |
| 37 | + </div> | |
| 38 | + </div> | |
| 39 | + | |
| 40 | + <div class="portlet-body form"> | |
| 41 | + <form ng-submit="ctrl.submit()" class="form-horizontal" novalidate name="myForm"> | |
| 42 | + <div class="form-body"> | |
| 43 | + | |
| 44 | + <div class="form-group"> | |
| 45 | + <label class="col-md-2 control-label">路牌:</label> | |
| 46 | + <div class="col-md-3"> | |
| 47 | + <sa-Select5 name="lp" | |
| 48 | + model="ctrl.formInfo" | |
| 49 | + cmaps="{'lpName' : 'lpName'}" | |
| 50 | + dcname="lpName" | |
| 51 | + icname="lpName" | |
| 52 | + dsparams="{{ {type: 'ajax', param:{'xl.id_eq': ctrl.xlId, 'type': 'all'}, atype:'lpInfo2' } | json }}" | |
| 53 | + iterobjname="item" | |
| 54 | + iterobjexp="item.lpName" | |
| 55 | + searchph="输入路牌名字" | |
| 56 | + searchexp="this.lpName" | |
| 57 | + required | |
| 58 | + > | |
| 59 | + </sa-Select5> | |
| 60 | + </div> | |
| 61 | + <!-- 隐藏块,显示验证信息 --> | |
| 62 | + <div class="alert alert-danger well-sm" ng-show="myForm.lp.$error.required"> | |
| 63 | + 请选择路牌 | |
| 64 | + </div> | |
| 65 | + </div> | |
| 66 | + | |
| 67 | + </div> | |
| 68 | + | |
| 69 | + <div class="form-actions"> | |
| 70 | + <div class="row"> | |
| 71 | + <div class="col-md-offset-3 col-md-4"> | |
| 72 | + <button type="submit" class="btn green" | |
| 73 | + ng-disabled="!myForm.$valid"><i class="fa fa-check"></i> 提交</button> | |
| 74 | + <a type="button" class="btn default" | |
| 75 | + href="javascript:" ng-click="ctrl.cancel()" ><i class="fa fa-times"></i> 取消</a> | |
| 76 | + </div> | |
| 77 | + </div> | |
| 78 | + </div> | |
| 79 | + </form> | |
| 80 | + | |
| 81 | + </div> | |
| 82 | + | |
| 83 | + | |
| 84 | + </div> | |
| 85 | + | |
| 86 | +</div> | ... | ... |
src/main/resources/static/pages/scheduleApp/module/core/schedulePlanManage/report/ext/list.html
| ... | ... | @@ -25,14 +25,8 @@ |
| 25 | 25 | </div> |
| 26 | 26 | |
| 27 | 27 | <div ng-if="ctrl.viewId == 1" style="height: {{ctrl.ttHeight}}px;"> |
| 28 | - <div style="padding-bottom: 10px; height: 20px;"> | |
| 29 | - <div style="float: right;"> | |
| 30 | - <span style="padding-right: 10px;background: #337ab7;color: white;text-align: center;">出场班次</span> | |
| 31 | - <span style="padding-right: 10px;background: #4e6477;color: white;text-align: center;">进场班次</span> | |
| 32 | - </div> | |
| 33 | - </div> | |
| 34 | - | |
| 35 | - <sa-Planinfoview name="saPlanView" ng-model="ctrl.saPlanInfoViewData.infos" ng-model-options="{ getterSetter: true }" celldbclick="ctrl.singleEditBcDetail"> | |
| 28 | + <sa-Planinfoview name="saPlanView" ng-model="ctrl.saPlanInfoViewData.infos" ng-model-options="{ getterSetter: true }" | |
| 29 | + celldbclick="ctrl.singleEditBcDetail" toolbarlplbclick="ctrl.routeToLpLbView"> | |
| 36 | 30 | </sa-Planinfoview> |
| 37 | 31 | </div> |
| 38 | 32 | ... | ... |
src/main/resources/static/pages/scheduleApp/module/core/schedulePlanManage/report/ext/module.js
| ... | ... | @@ -345,7 +345,7 @@ angular.module('ScheduleApp').controller( |
| 345 | 345 | }); |
| 346 | 346 | }; |
| 347 | 347 | |
| 348 | - self.ttHeight = 500; // sa-Planinfoview组件的高度 | |
| 348 | + self.ttHeight = 350; // sa-Planinfoview组件的高度 | |
| 349 | 349 | |
| 350 | 350 | |
| 351 | 351 | |
| ... | ... | @@ -362,6 +362,15 @@ angular.module('ScheduleApp').controller( |
| 362 | 362 | }); |
| 363 | 363 | }; |
| 364 | 364 | |
| 365 | + /** | |
| 366 | + * route到路牌烂班view。 | |
| 367 | + */ | |
| 368 | + self.routeToLpLbView = function() { | |
| 369 | + $state.go('schedulePlanReportExtManageListEditLplb', { | |
| 370 | + xlId : service.getSearchCondition()['xlid'] | |
| 371 | + }); | |
| 372 | + }; | |
| 373 | + | |
| 365 | 374 | } |
| 366 | 375 | |
| 367 | 376 | ] |
| ... | ... | @@ -394,6 +403,8 @@ angular.module('ScheduleApp').controller( |
| 394 | 403 | var SchedulePlanInfo = spInfoservice.rest; |
| 395 | 404 | // 车辆信息对象 |
| 396 | 405 | var Cars = carService.rest; |
| 406 | + // 是否烂班临时字段 | |
| 407 | + self.isLb_temp = false; | |
| 397 | 408 | |
| 398 | 409 | // 保存的排班明细数据 |
| 399 | 410 | self.schedulePlanInfoForSave = {}; |
| ... | ... | @@ -401,6 +412,10 @@ angular.module('ScheduleApp').controller( |
| 401 | 412 | SchedulePlanInfo.get({id: $stateParams.spInfoId}, function(value) { |
| 402 | 413 | self.schedulePlanInfoForSave = value; |
| 403 | 414 | |
| 415 | + if (self.schedulePlanInfoForSave.status === -1) { | |
| 416 | + self.isLb_temp = true; | |
| 417 | + } | |
| 418 | + | |
| 404 | 419 | self.headInfo['xlName'] = value['xlName']; |
| 405 | 420 | self.headInfo['lpName'] = value['lpName']; |
| 406 | 421 | self.headInfo['jName'] = value['jName']; |
| ... | ... | @@ -420,6 +435,13 @@ angular.module('ScheduleApp').controller( |
| 420 | 435 | |
| 421 | 436 | // 提交方法 |
| 422 | 437 | self.submit = function() { |
| 438 | + // 是否烂班判定 | |
| 439 | + if (self.isLb_temp) { | |
| 440 | + self.schedulePlanInfoForSave.status = -1; | |
| 441 | + } else { | |
| 442 | + self.schedulePlanInfoForSave.status = null; | |
| 443 | + } | |
| 444 | + | |
| 423 | 445 | self.schedulePlanInfoForSave.$save(function() { |
| 424 | 446 | $state.go("schedulePlanReportExtManage"); |
| 425 | 447 | }); |
| ... | ... | @@ -435,10 +457,6 @@ angular.module('ScheduleApp').controller( |
| 435 | 457 | |
| 436 | 458 | |
| 437 | 459 | |
| 438 | - | |
| 439 | - | |
| 440 | - | |
| 441 | - | |
| 442 | 460 | // edit.html页面 |
| 443 | 461 | angular.module('ScheduleApp').controller( |
| 444 | 462 | 'ScheduleRuleManageExtFormCtrl', |
| ... | ... | @@ -507,3 +525,139 @@ angular.module('ScheduleApp').controller( |
| 507 | 525 | ); |
| 508 | 526 | |
| 509 | 527 | |
| 528 | +// edit-lplb.html页面 | |
| 529 | +angular.module('ScheduleApp').controller( | |
| 530 | + 'SchedulePlanReportExtManageListEditLplbCtrl', | |
| 531 | + [ | |
| 532 | + 'SchedulePlanInfoManageService_g', | |
| 533 | + 'BusInfoManageService_g', | |
| 534 | + '$stateParams', | |
| 535 | + '$state', | |
| 536 | + 'SchedulePlanReportExtManageService', | |
| 537 | + '$q', | |
| 538 | + function(spInfoservice, carService, $stateParams, $state, spViewService, $q) { | |
| 539 | + var self = this; | |
| 540 | + | |
| 541 | + console.log($stateParams.xlId); | |
| 542 | + self.xlId = $stateParams.xlId; | |
| 543 | + | |
| 544 | + self.xlName = spViewService.getSearchCondition().xlname; | |
| 545 | + self.scheduleDate = spViewService.getSearchCondition().sdate; | |
| 546 | + | |
| 547 | + // form数据 | |
| 548 | + self.formInfo = {}; | |
| 549 | + | |
| 550 | + // 初始化时,查询一次数据 | |
| 551 | + self.spPlanInfoList = []; | |
| 552 | + spViewService.getSaPlanInfoViewData().then( | |
| 553 | + function(rst) { | |
| 554 | + self.spPlanInfoList = rst.contents; | |
| 555 | + }, | |
| 556 | + function(err) { | |
| 557 | + | |
| 558 | + } | |
| 559 | + ); | |
| 560 | + | |
| 561 | + // 排班明细对象 | |
| 562 | + var SchedulePlanInfo = spInfoservice.rest; | |
| 563 | + // 保存的排班明细数据 | |
| 564 | + self.schedulePlanInfoForSave = {}; | |
| 565 | + | |
| 566 | + | |
| 567 | + // 路牌烂班方法 | |
| 568 | + self.lplb = function() { | |
| 569 | + var deferred = $q.defer(); | |
| 570 | + | |
| 571 | + var spInfoIdList = []; | |
| 572 | + if (self.spPlanInfoList && self.spPlanInfoList.length > 0) { | |
| 573 | + // 1、查找指定路牌下的班次Id | |
| 574 | + for (let content of self.spPlanInfoList) { | |
| 575 | + if (content[0].lpName == self.formInfo.lpName) { | |
| 576 | + for (let spInfo of content) { | |
| 577 | + if (spInfo.id) { | |
| 578 | + spInfoIdList.push(spInfo.id); | |
| 579 | + } | |
| 580 | + } | |
| 581 | + break; | |
| 582 | + } | |
| 583 | + } | |
| 584 | + if (spInfoIdList.length == 0) { | |
| 585 | + deferred.reject("当前路牌下无班次!"); | |
| 586 | + } else { | |
| 587 | + // ajax调用 | |
| 588 | + var success_counts = 0; // 成功数 | |
| 589 | + var error_counts = 0; // 失败数 | |
| 590 | + for (var n = 0; n < spInfoIdList.length; n++) { | |
| 591 | + (function(index) { | |
| 592 | + SchedulePlanInfo.get({id: spInfoIdList[index]}, | |
| 593 | + function(value) { | |
| 594 | + if (value.status == 'ERROR') { | |
| 595 | + error_counts ++; | |
| 596 | + if (success_counts + error_counts == spInfoIdList.length) { | |
| 597 | + deferred.reject("更新异常!"); | |
| 598 | + } | |
| 599 | + } else { | |
| 600 | + self.schedulePlanInfoForSave = value; | |
| 601 | + | |
| 602 | + self.schedulePlanInfoForSave.status = -1; | |
| 603 | + self.schedulePlanInfoForSave.$save( | |
| 604 | + function(value2) { | |
| 605 | + if (value2.status == 'ERROR') { | |
| 606 | + error_counts ++; | |
| 607 | + if (success_counts + error_counts == spInfoIdList.length) { | |
| 608 | + deferred.reject("更新异常!"); | |
| 609 | + } | |
| 610 | + } else { | |
| 611 | + success_counts ++; | |
| 612 | + if (success_counts + error_counts == spInfoIdList.length) { | |
| 613 | + deferred.resolve(); | |
| 614 | + } | |
| 615 | + } | |
| 616 | + }, | |
| 617 | + function() { | |
| 618 | + error_counts ++; | |
| 619 | + if (success_counts + error_counts == spInfoIdList.length) { | |
| 620 | + deferred.reject("更新异常!"); | |
| 621 | + } | |
| 622 | + }); | |
| 623 | + } | |
| 624 | + }, | |
| 625 | + function() { | |
| 626 | + error_counts ++; | |
| 627 | + if (success_counts + error_counts == spInfoIdList.length) { | |
| 628 | + deferred.reject("更新异常!"); | |
| 629 | + } | |
| 630 | + }); | |
| 631 | + | |
| 632 | + })(n); | |
| 633 | + } | |
| 634 | + } | |
| 635 | + } else { | |
| 636 | + deferred.reject("无班次数据!"); | |
| 637 | + } | |
| 638 | + | |
| 639 | + | |
| 640 | + return deferred.promise; | |
| 641 | + }; | |
| 642 | + | |
| 643 | + // 提交方法 | |
| 644 | + self.submit = function() { | |
| 645 | + self.lplb().then( | |
| 646 | + function() { | |
| 647 | + $state.go("schedulePlanReportExtManage"); | |
| 648 | + }, | |
| 649 | + function(err) { | |
| 650 | + alert(err); | |
| 651 | + }); | |
| 652 | + }; | |
| 653 | + | |
| 654 | + // 取消方法 | |
| 655 | + self.cancel = function() { | |
| 656 | + $state.go("schedulePlanReportExtManage"); | |
| 657 | + }; | |
| 658 | + | |
| 659 | + } | |
| 660 | + ] | |
| 661 | +); | |
| 662 | + | |
| 663 | + | ... | ... |
src/main/resources/static/pages/scheduleApp/module/core/schedulePlanManage/report/ext/route.js
| ... | ... | @@ -71,7 +71,29 @@ ScheduleApp.config([ |
| 71 | 71 | }); |
| 72 | 72 | }] |
| 73 | 73 | } |
| 74 | + }) | |
| 75 | + | |
| 76 | + .state("schedulePlanReportExtManageListEditLplb", { // 修改班次信息-路牌栏班 | |
| 77 | + url: '/schedulePlanReportExtManageListEditLplb/:xlId', | |
| 78 | + views: { | |
| 79 | + "": {templateUrl: 'pages/scheduleApp/module/core/schedulePlanManage/report/ext/edit-lplb.html'} | |
| 80 | + }, | |
| 81 | + resolve: { | |
| 82 | + deps: ['$ocLazyLoad', function($ocLazyLoad) { | |
| 83 | + return $ocLazyLoad.load({ | |
| 84 | + name: 'schedulePlanManage_module', | |
| 85 | + insertBefore: '#ng_load_plugins_before', // 动态载入模块时放置的位置 | |
| 86 | + files: [ | |
| 87 | + "assets/bower_components/angular-ui-select/dist/select.min.css", | |
| 88 | + "assets/bower_components/angular-ui-select/dist/select.min.js", | |
| 89 | + "pages/scheduleApp/module/core/schedulePlanManage/report/ext/module.js" | |
| 90 | + ] | |
| 91 | + }); | |
| 92 | + }] | |
| 93 | + } | |
| 74 | 94 | }); |
| 75 | 95 | |
| 96 | + | |
| 97 | + | |
| 76 | 98 | } |
| 77 | 99 | ]); | ... | ... |